
.menu-language {
    color: black;

}

.club_container {
    padding: 0 5px;
}

.game_title {
    margin-top: 40px;
    margin-left: 36px;
    color: #000;
    font-family: -apple-system, Source Han Sans CN;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.news_list {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;

}

/* .news_box {
    box-sizing: border-box;
    padding: 0 36px;
    width: 100%;
    transition: transform 0.4s ease-in-out;
}


.news_box:hover {
    transform: translateY(-7px);
} */
.news_box {
    cursor: pointer;
    width: calc(100% - 20px);
    margin: 0 auto 45px auto;
    animation-name: appear;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.news_box:hover .introduce_box {
    transition: all 1s ease-out;
    background-color: #ececec;
}


.news_box img {
    display: block;
    width: 100%;
}

.introduce_box {
    box-sizing: border-box;
    padding: 35px 15px 35px 15px;
    background-color: #ffffff;
}

.top_title {
    width: 100%;
    font-weight: bold;
    font-size: 28.601px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top_title:hover {
    color: #D80C24;
    transition: all .3s ease-out;

}

.below_title {
    font-size: 18px;
    line-height: 25px;
    margin: 15px 0 33px 0;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.detail {
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.detail>span {
    color: rgba(204, 204, 204, 1);
    font-size: 20px;
}

.more {
    background-color: #ffffff;
    width: 142.737px;
    height: 46.389px;
    line-height: 46px;
    font-size: 12px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

.more_btn {
    background-color: #ffffff;
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    margin: 80px auto 60px auto;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
}

.more_btn:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

.empty {
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    margin: 80px auto 60px auto;
    text-align: center;
}