:root {
    --primary-color: #253f46;
    /* --header-bg: linear-gradient(-180deg, #fff 0%, #D02D54 100%) !important; */
    --header-bg: #874FEF;
    --navbar-link-hover: #94f28c !important;
    --match-header-color: #ffffff;
    --match-header-active: #00509d;
    --match-list-font-size: 50px !important;
    --match-signal-end-bg-color: #eef4ed;
    --match-signal-end-color: #000;
    --match-signal-end-bg-border: 1px solid #253f46;
    --news-text-color: #253f46;
    --news-text-before-bg-color: #253f46;
    --footer-border-color: #253f46;
    --footer-bg-color: #001233;
    --footer-link-text-color: #a2c1ef !important;
    --friendly-bg-color: #619b8a;
    --search-btn-bg-color: #0466c8;
    --search-btn-text-color: #fff;
    --leaderboard-header-bg-color: #a11f9d;
    --leaderboard-header-text-color: #fff;
    --pagination-bg-active-color: #253f46;
    --pagination-text-active-color: #fff;
    --pagination-bg-hover-color: #619bd2;
    --data-tab-after-bg-color: #b04848;
    --post-comment-btn-bg-color: #611443;
    --post-comment-btn-bg-text-color: #fff;
    --tv-title-bg-color: #a11f9d;
    --tv-title-bg-text-color: #000;
    --tv-title-bg-border-bottom-color: #b04848;
    --all-game-title-border: 1px solid #253f46;
    --all-game-title-text-color: #253f46;
    --all-game-data-list-a-hover-color: #253f46;
    --all-game-data-list-a-active-bg-color: #253f46;
    --all-game-data-list-a-active-color: #fff;
    --all-game-data-list-a-active-hover-color: #253f46;
    --mobile-navbar-item-bg-color: rgb(176, 72, 72);
    --stream-content-bg-color: #253f46;
    --tv-item-bg-color: #b04848;
    --tv-item-text-color: #fff;
    --rocket-rotate: rotate(-45deg);
    --one-flex: 0 0 48.5%;
    --two-flex: 0 0 48.5%;
    --three-flex: 0 0 98%;
    --data-order-flex-direction: row;
    --info-page-one-flex: 0 0 60%;
    --bg-color: #f5f5f5;
    --bg-light-color: linear-gradient(90deg, #0073e8, #046fca);
    --inner-bg-color: #fff;
}

* {
    transition: .3s;
}

.info-content {
    background-color: #fff;
    display: flex;
    /* flex-direction: row;
    flex-wrap: wrap; */
    /* padding: 24px; */
    justify-content: space-between;
    border-radius: 15px;
}

.one {
    flex: var(--one-flex);
}

.two {
    flex: var(--two-flex);
}

.three {
    flex: var(--three-flex);
}

.info-content .news {
    width: 890px;
}

.info-content .news .title {
    font-size: 22px;
    color: var(--match-header-color);
    background-image: url('../images/topbaricon.png');
    background-repeat: no-repeat;
}

.info-content .news .title h4 {
    line-height: 2;
    /* overflow: hidden; */
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 150px;
    display: inline-block;
    text-align: center;
}


.info-content .news .news-item {
    /* margin-top: 20px; */
    background: #fff;
    border-radius: 8px;
    margin-top: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
}



.info-content .news .news-item a span {
    text-align: right;
}

.info-content .news .tag {
    margin: 10px;
}

.pc {
    display: block;
}

.mobile {
    display: none;
}

header .login-area {
    background-color: #000;
    color: #fff;
}

header .login-area .login-area-content {
    width: 300px;
    padding: 10px;
}

header .login-area .login-area-content a {
    font-size: 16px;
    margin-right: 10px;
    cursor: pointer;
}

header .login-area .login-area-content a:hover {
    color: var(--primary);
}

.a71_content-top {
    display: flex;
    justify-content: space-between;
}

.a71_content-topvideo {
    /* width: 32%; */
    height: 400px;
    background: #FFFFFF;
    border-radius: 10px;
}

.a71_content-topvideo .news-item {
    padding: 10px auto;
}

.a71_content-topvideo .title {
    background-image: url('../images/topbaricon.png');
    background-repeat: no-repeat;
    font-size: 22px;
    color: var(--match-header-color);
}

.a71_content-topvideo.title h4::before {
    content: '';
    position: relative;
    top: 2px;
    display: inline-block;
    width: 6px;
    height: 19px;
    border-radius: 5px;
    margin-right: 10px;
    background-color: var(--news-text-before-bg-color);
}

.a71_content-topvideo .news-item a {
    line-height: 35px;
    width: 100%;
    color: #000000;
    font-size: 13px;
    text-align: center;
    display: block;
}

.a71_topBar_menu {
    height: 108px;
    width: 1200px;
    margin: 0 auto;
}

.mainbox {
    display: flex;
    gap: 16px;
    /* padding-bottom: 50px; */
}

@media screen and (max-width:900px) {
    .info-content {
        flex-direction: column;
        padding-right: 5px;
        display: none;
    }

    .info-content .news {
        max-height: unset;
        margin: 20px 5%;
        padding: 2%;
    }

    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }

    .a71_content-top {
        flex-direction: column;
    }
}