.menu-item a {
    color: black;
}

.menu-language {
    color: black;

}

.club_container {
    padding: 0 5px;
}

.game_title {
    margin-top: 138px;
    margin-left: 10px;
    color: #000;
    font-family: Source Han Sans CN;
    font-size: 1.6vw;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

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

}

.news_box {
    margin: 5px;
    width: calc(33.3% - 10px);
    transition: transform 0.4s ease-in-out;
}


.news_box:hover {
    transform: translateY(-7px);
}

.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-size: 24px;
    white-space: nowrap;
    /* 不换行 */
    overflow: hidden;
    /* 隐藏超出的内容 */
    text-overflow: ellipsis;
}
.top_title:hover{
    color: #D80C24;
    transition: all .3s ease-out;

}

.below_title {
    font-size: 14px;
    line-height: 25px;
    height: 47px;
    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: 128px;
    height: 41px;
    line-height: 41px;
    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;
}