﻿/* common start */
:root {
    --container-width: 1280px;
}

.zb-detail a.news-item {
            width: 49%;
            display: inline-block;
        }
 .news-wrapper a.news-item {
            width: 49%;
            display: inline-block;
        }
body {
    background: var(--bg-color);
    font-size: 14px;
    color: var(--primary-text-color);
    line-height: 1.5;
}

.container {
    width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

a {
    color: inherit;
    text-decoration: none;
   
}

a:hover {color: #EA3443;}
a:active {
    color: var(--primary-color);
}

.bottom-line {
    border-bottom: 1px solid #e5e5e5;
}

.one-line {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.two-line {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* common end */
/* header start */
header {
    position: relative;
    height: 80px;
}

.header-inner {
    width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
}

.header-inner .logo {
    margin-right: 27px;
    font-size: 32px;
    font-weight: bold;
    color: var(--logo-color);
}

.nav-list {
    display: flex;
    align-items: center;
    color: var(--secondary-text-color);
}

.nav-link {
    width: 114px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    font-weight: 600;
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.nav-link img {
    width: 14px;
    height: 14px;
}

.nav-link.active {
    color: var(--logo-color);
}

.nav-menu {
    position: absolute;
    width: 108px;
    top: 64px;
    left: 50%;
    background: var(--bg-light-color);
    z-index: 200;
    transform: translateX(-50%);
    padding: 12px 0;
    display: none;
    box-shadow: 0 2px 5px 0 rgba(173, 173, 173, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

.nav-menu a {
    display: block;
    width: auto;
    line-height: 35px;
    text-align: center;
}

.nav-link:hover .nav-menu {
    display: block;
}

.nav-menu:hover {
    display: block;
}

/* header end */
/* main start */
.box {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
}

.inner-box {
    background: #FFFFFF;
    border-radius: 8px;
}

.box-header {
    display: flex;
    align-items: flex-end;
}

.box-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--regular-text-color);
    line-height: 33px;
}

.box-subtitle {
    margin-left: 5px;
    font-size: 20px;
    font-weight: 600;
    color: #DFE6F0;
    line-height: 28px;
}

main {
    min-height: calc(100vh - 80px - 250px);
}

.hot-wrapper {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    margin-top: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
}

.hot-left {
    width: 890px;
}

.hot-right {
    width: 300px;
}

.hot-match-wrapper {
    background: var(--inner-bg-color);
    border-radius: 8px;
    margin-top: 16px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
}

.hot-match-item {
    display: block;
    color: #ffffff;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
}

.hot-match-item:hover {
    color: #ffffff;
}

.hot-match-item img {
    object-fit: cover;
}

.hot-match-item-big {
    width: 630px;
    height: 332px;
}

.hot-match-item-big .line1 {
    position: absolute;
    left: 32px;
    bottom: 75px;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 25px;
}

.hot-match-item-big .status {
    position: absolute;
    left: 32px;
    bottom: 29px;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 25px;
}

.hot-match-item-big .team1 {
    position: absolute;
    left: 84px;
    right: 395px;
    bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-match-item-big .icon1 {
    position: absolute;
    left: 247px;
    bottom: 32px;
    width: 20px;
    height: 20px;
}

.hot-match-item-big .score {
    position: absolute;
    left: 270px;
    right: 270px;
    bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 33px;
    text-align: center;
}

.hot-match-item-big .icon2 {
    position: absolute;
    left: 363px;
    bottom: 32px;
    width: 20px;
    height: 20px;
}

.hot-match-item-big .team2 {
    position: absolute;
    left: 395px;
    right: 84px;
    bottom: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 22px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-match-item-big-1 {
    background-image: url("../images/hot-zq-bg-big.jpg");
}

.hot-match-item-big-2 {
    background-image: url("../images/hot-lq-bg-big.jpg");
}

.hot-match-item-small {
    width: 217px;
    height: 104px;
}

.hot-match-item-small .line1 {
    position: absolute;
    top: 12px;
    left: 12px;
}

.hot-match-item-small .icon1 {
    position: absolute;
    left: 68px;
    bottom: 47px;
    width: 16px;
    height: 16px;
}

.hot-match-item-small .team1 {
    position: absolute;
    left: 90px;
    right: 16px;
    bottom: 46px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-match-item-small .icon2 {
    position: absolute;
    left: 68px;
    bottom: 25px;
    width: 16px;
    height: 16px;
}

.hot-match-item-small .team2 {
    position: absolute;
    left: 90px;
    right: 16px;
    bottom: 24px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hot-match-item-small:not(:first-child) {
    margin-top: 10px;
}

.hot-match-item-small-1 {
    background-image: url("../images/hot-zq-bg.jpg");
}

.hot-match-item-small-2 {
    background-image: url("../images/hot-lq-bg.jpg");
}

.hot-league-wrapper {
    background: var(--inner-bg-color);
    border-radius: 8px;
    margin-top: 16px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    height: 364px;
    box-sizing: border-box;
    padding: 20px 6px;
}

.hot-league-item {
    width: 62px;
    height: 107px;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hot-league-item img {
    margin-top: 8px;
    width: 60px;
    height: 60px;
}

.hot-league-item div {
    margin-top: 12px;
    color: var(--secondary-text-color);
    font-size: 12px;
    text-align: center;
}

.tabs-wrapper {
    margin: 24px 0 16px;
    height: 40px;
    display: flex;
}

.tabs-item {
    display: block;
    text-align: center;
    width: 114px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-text-color);
    line-height: 40px;
    position: relative;
}

.tabs-item.active {
    color: var(--regular-text-color);
}

.tabs-item.active:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--primary-color);
}

/* main start */
/* footer start */
.footer-container {
    width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    margin-top: 24px;
    padding: 24px;
    color: var(--regular-text-color);
}

.footer-bq {
    margin-top: 24px;
    width: 1230px;
    height: auto;
    display: block;
}

.footer-wrapper {
    margin-top: 36px;
    display: flex;
    align-items: flex-start;
}

.footer-area {
    flex: 1;
}

.footer-line {
    margin: 0 60px;
    width: 1px;
    height: 90px;
    background: var(--placeholder-text-color);
}

.footer-title {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: bold;
}

.footer-title img {
    width: 22px;
    height: 22px;
    margin-right: 16px;
    background-color: #fff;
    border-radius: 50%;
}

.footer-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
}

.footer-list a {
    margin: 10px 20px;
}

.footer-content {
    margin-top: 36px;
    padding: 32px 0 40px;
    width: 100%;
    background: var(--bg-dark-color);
    text-align: center;
    color: var(--light-text-color);
}

.footer-content .container > * + * {
    margin-top: 20px;
}

.footer-content a:not(:first-child):before {
    content: '|';
    margin: 0 22px;
}

/* footer end */
/*
live start
 */
.main-wrapper {
    display: flex;
    justify-content: space-between;
}

.main-left {
    width: 840px;
}

.main-left > * + * {
    margin-top: 10px;
}

.main-right {
    width: 420px;
}

.main-right > * + * {
    margin-top: 10px;
}

.date-wrapper {
    margin-top: 10px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.date-wrapper::-webkit-scrollbar {
    display: none;
}

.date-item {
    display: block;
    flex-shrink: 0;
    width: 106px;
    height: 30px;
    border-radius: 4px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: var(--regular-text-color);
    line-height: 30px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.date-item.active {
    color: var(--regular-text-color);
    border: 1px solid var(--regular-text-color);
}

.live-wrapper {
    padding: 17px;
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
}

.live-header {
    margin: 16px 0 6px;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    color: #A0B9DB;
    line-height: 17px;
}

.live-header .text1 {
    margin-left: 68px;
    width: 55px;
    text-align: center;
}

.live-header .text2 {
    width: 160px;
    text-align: center;
}

.live-header .text3 {
    width: 328px;
    text-align: center;
}

.live-header .text4 {
    width: 120px;
    text-align: center;
}

.live-item {
    display: flex;
    align-items: center;
    height: 52px;
    font-size: 14px;
}

.live-item:nth-child(even) {
    background: var(--row-bg-color);
}

.live-icon {
    margin: 0 25px;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
}

.live-time {
    width: 55px;
    font-size: 14px;
    color: var(--primary-text-color);
    text-align: center;
}

.live-date {
    width: 55px;
    font-size: 12px;
    color: var(--secondary-text-color);
    text-align: center;
}

.live-match {
    width: 160px;
    text-align: center;
}

.live-team {
    width: 106px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.live-team-h {
    text-align: right;
}

.live-team-a {
    text-align: left;
}

.live-logo {
    margin: 0 8px;
    width: 14px;
    height: auto;
}

.live-score {
    width: 56px;
    text-align: center;
    color: var(--red-color);
}

.live-status {
    width: 120px;
    text-align: center;
}

.live-see {
    margin-left: 12px;
}

.live-see img {
    margin-left: 10px;
    width: 22px;
    height: auto;
}

/*
live end
*/
/* news start */
.news-wrapper {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    padding: 24px;
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-more {
    padding-right: 14px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 400;
    color: var(--regular-text-color);
    position: relative;
}

.news-more:after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("../images/right.png");
    background-size: 100% 100%;
}

.news-item {
    display: flex;
    align-items: center;
    line-height: 41px;
    font-size: 12px;
    border-bottom: 1px solid #ECEFF3;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.news-item:first-child {
    margin-top: 12px;
}

.sp-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sp-item {
    margin-top: 16px;
    display: block;
    width: 171px;
}

.sp-item img {
    width: 100%;
    height: 92px;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
}

.sp-item span {
    margin-top: 8px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 600;
    line-height: 17px;
}

/* news end */
/* article start */
.article-wrapper {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    padding: 24px;
}

.article-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #e5e5e5;
}

.article-img {
    width: 186px;
    height: 113px;
    object-fit: cover;
    border-radius: 8px;
    overflow: hidden;
}

.article-right {
    margin-left: 24px;
    display: block;
    flex: 1;
}

.article-right span {
    display: block;
}

.article-title {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
    color: var(--regular-text-color);
    line-height: 35px;
    letter-spacing: 1px;
}

.article-content {
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 400;
    color: var(--primary-text-color);
    line-height: 17px;
    letter-spacing: 1px;
    height: 34px;
}

.article-time {
    margin-top: 21px;
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-text-color);
    line-height: 17px;
    letter-spacing: 1px;
}

/* article end */
/* page start */
.page-wrapper {
    padding: 8px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.page-wrapper a {
    margin: 4px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
    background: #ffffff;
    color: #323233;
    line-height: 20px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
}

.page-wrapper a.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* page end */
/* zhibo start */
.zb-box {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    padding: 24px;
}

.zb-name {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--regular-text-color);
    line-height: 35px;
    letter-spacing: 1px;
}

.zb-wrapper {
    position: relative;
    margin: 26px auto 0;
    width: 630px;
    height: 332px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.zb-wrapper-lq {
    background-image: url(../images/zb-lq.png);
}

.zb-wrapper-zq {
    background-image: url(../images/zb-zq.png);
}

.zb-team {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zb-team img {
    margin-bottom: 8px;
    width: 80px;
    height: 80px;
}

.zb-match {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 25px;
}

.zb-info {
    width: 200px;
    font-size: 30px;
    text-align: center;
}

.zb-score {
    margin: 16px 0 50px;
}

.zb-detail {
    margin: 25px auto 0;
    width: 630px;
    font-size: 14px;
    padding: 12px 0;
}

.zb-detail > * + * {
    margin-top: 10px;
}

.zb-detail > div {
    display: inline-block;
    align-items: center;
}

.zb-btn {
    padding: 5px 6px;
    border-radius: 4px;
    color: #fff;
    background: var(--btn-bg-color);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 5px;
    align-items: center;
}

.zb-btn > img {
    margin-right: 7px;
    width: 22px;
    height: auto;
}

.zb-btn:hover {
    color: #fff;
}

/* zhibo end */
.breadcrumbs {
    padding-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    line-height: 20px;
    border-bottom: 1px solid #ECEFF3;
}

.breadcrumbs a {
    color: inherit;
}

.breadcrumbs a.active {
    color: var(--primary-color);
}

.xw-wrapper {
    background: var(--bg-light-color);
    border-radius: var(--box-radius);
    padding: 24px;
}

.xw-title {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--regular-text-color);
    line-height: 35px;
    letter-spacing: 1px;
}

.xw-info {
    font-size: 12px;
    font-weight: 400;
    color: var(--secondary-text-color);
    line-height: 17px;
    letter-spacing: 1px;
}

.xw-content {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-text-color);
    line-height: 30px;
    letter-spacing: 1px;
    padding: 12px 0;
}

.xw-content p, .xw-content div {
    text-indent: 2em;
}

.xw-content img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    padding: 5px;
}

@media screen and (min-width: 999px) {
    .mb-visible {
        display: none !important;
    }
}

@media screen and (max-width: 998px) {
    .pc-visible {
        display: none !important;
    }

    :root {
        --container-width: 100%;
        --box-radius: 8px;
    }

    body {
        font-size: 12px;
    }

    header {
        height: auto;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .header-inner .logo {
        margin: 16px 0 6px;
        width: 100%;
        text-align: center;
    }

    .nav-list {
        width: auto;
        overflow-x: auto;
    }

    .nav-list::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex-shrink: 0;
        width: auto;
        height: 38px;
        padding: 0 20px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .nav-link.active:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 36px;
        height: 3px;
        background: #3A87FD;
        border-radius: 2px;
    }

    .nav-link img {
        display: none;
    }

    main {
        padding: 0 16px;
        box-sizing: border-box;
    }

    main > * + * {
        margin-top: 16px;
    }

    .box-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 22px;
    }

    .box-subtitle {
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
    }

    .hot-wrapper {
        margin-top: 16px;
        /*display: block;*/
        padding: 12px;
        display: none;
    }

    .hot-match-wrapper {
        background: transparent;
        padding: 0;
        display: flex;
        overflow-x: auto;
    }

    .hot-match-wrapper::-webkit-scrollbar {
        display: none;
    }

    .hot-match-item {
        flex-shrink: 0;
        margin-right: 12px;
    }

    .hot-match-item-big {
        height: 142px;
        width: 295px;
        border-radius: 8px;
        overflow: hidden;
    }

    .hot-match-item-big .line1 {
        top: 12px;
        left: 12px;
        bottom: auto;
        right: auto;
        font-size: 12px;
        font-weight: 400;
    }

    .hot-match-item-big .time {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 12px;
        font-weight: 400;
    }

    .hot-match-item-big .status {
        position: absolute;
        left: 50%;
        bottom: 88px;
        font-size: 12px;
        font-weight: 400;
        transform: translateX(-50%);
    }

    .hot-match-item-big .team1 {
        position: absolute;
        left: 25%;
        right: auto;
        bottom: 36px;
        font-size: 12px;
        font-weight: 400;
        max-width: 90px;
        transform: translateX(-50%);
    }

    .hot-match-item-big .icon1 {
        position: absolute;
        left: 25%;
        bottom: 68px;
        width: 30px;
        height: 30px;
        transform: translateX(-50%);
    }

    .hot-match-item-big .score {
        position: absolute;
        left: 50%;
        right: auto;
        bottom: 50%;
        font-size: 24px;
        font-weight: 600;
        color: #FFFFFF;
        line-height: 33px;
        transform: translate(-50%, 50%);
    }

    .hot-match-item-big .icon2 {
        position: absolute;
        right: 25%;
        bottom: 68px;
        left: auto;
        width: 30px;
        height: 30px;
        transform: translateX(50%);
    }

    .hot-match-item-big .team2 {
        position: absolute;
        right: 25%;
        left: auto;
        bottom: 36px;
        font-size: 12px;
        font-weight: 400;
        max-width: 90px;
        transform: translateX(50%);
    }

    .hot-wrapper:nth-child(2) {
        /*display: flex;*/
        display: none;
        align-items: center;
        flex-shrink: 1;
        overflow-x: auto;
    }

    .hot-wrapper:nth-child(2)::-webkit-scrollbar {
        display: none;
    }

    .hot-wrapper:nth-child(2) .box-header {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hot-wrapper:nth-child(2) .box-subtitle {
        font-size: 12px;
        font-weight: 600;
        color: #DFE6F0;
        line-height: 12px;
    }

    .hot-league-wrapper {
        height: auto;
        margin: 0;
        background: transparent;
        padding: 0 14px;
        flex-wrap: nowrap;
        flex-shrink: 0;
    }

    .hot-league-item {
        width: auto;
        height: auto;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .hot-league-item img {
        width: 22px;
        height: 22px;
    }

    .hot-league-item div {
        margin-top: 1px;
        font-size: 10px;
        line-height: 14px;
    }

    .tabs-wrapper {
        margin: 14px 0 12px;
        height: auto;
        display: flex;
        overflow-x: auto;
    }

    .tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tabs-item {
        margin-right: 8px;
        height: auto;
        width: auto;
        text-align: center;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding: 5px 10px;
        color: var(--secondary-text-color);
        position: relative;
        background: transparent;
        border-radius: 15px;
    }

    .tabs-item.active {
        color: #fff;
        background: var(--tab-bg-color);
    }

    .tabs-item.active:after {
        content: none;
    }

    .date-wrapper {
        margin-top: 10px;
        display: flex;
        align-items: center;
    }

    .date-item {
        display: block;
        width: auto;
        height: auto;
        border-radius: 4px;
        padding: 4px 6px;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
        color: var(--regular-text-color);
        line-height: 17px;
    }

    .date-item.active {
        border: 1px solid var(--regular-text-color);
    }

    .live-box {
        margin: 0 -4px;
        padding: 0 10px;
        background: var(--row-bg-color);
        border-radius: 4px;
    }

    .live-top {
        margin-top: 12px;
        display: flex;
        align-items: center;
        height: 30px;
        border-bottom: 1px solid #F2F4F7;
        width: 100%;
    }

    .live-top-see {
        width: 16px;
        height: 16px;
    }

    .live-top img {
        background: #fff;
        border-radius: 50%;
        width: 16px;
        height: 16px;
    }

    .live-top-left {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .live-top-left a {
        margin-left: 4px;
        max-width: 110px;
        font-size: 14px;
        font-weight: 400;
        color: var(--primary-text-color);
        line-height: 20px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .live-top-right {
        flex: 1;
        text-align: right;
        font-size: 12px;
        font-weight: 600;
        color: var(--primary-text-color);
        line-height: 17px;
    }

    .live-content {
        width: 100%;
        display: flex;
        align-items: center;
        height: 78px;
    }

    .live-content-team {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .live-content-team img {
        width: 36px;
        height: 36px;
    }

    .live-content-team div {
        font-size: 13px;
        font-weight: 400;
        color: var(--primary-text-color);
        line-height: 18px;
        margin-top: 4px;
        max-width: 120px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .live-content-score {
        font-size: 24px;
        font-weight: 600;
        color: var(--regular-text-color);
        line-height: 33px;
    }

    .main-wrapper {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .main-left {
        width: 100%;
    }

    .main-left > * + * {
        margin-top: 10px;
    }

    .main-right {
        margin-top: 10px;
        width: 100%;
    }

    .main-right > * + * {
        margin-top: 10px;
    }

    .sp-item {
        margin-top: 12px;
        width: calc(50% - 6px);
    }

    .sp-item img {
        height: auto;
        background: #ffffff;
        aspect-ratio: 2/1;
    }

    .footer-container {
        background: var(--bg-light-color);
        border-radius: var(--box-radius);
        width: calc(100% - 24px);
        margin: 10px auto;
        padding: 12px;
        color: var(--regular-text-color);
        box-sizing: border-box;
    }

    .footer-bq {
        margin-top: 12px;
        width: 100%;
        height: auto;
        display: block;
    }

    .footer-wrapper {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .footer-area {
        flex: auto;
    }

    .footer-line {
        margin: 12px 0 12px 36px;
        height: 1px;
        width: auto;
    }

    .footer-content {
        box-sizing: border-box;
        padding: 16px 20px;
    }

    .news-wrapper {
        padding: 12px;
    }

    .article-wrapper {
        background: var(--bg-light-color);
        border-radius: var(--box-radius);
        padding: 0 12px;
    }
    

.live-wrapper div.breadcrumbs,.article-wrapper div.breadcrumbs{
    margin-bottom: 10px;
    padding-bottom: 0;
    line-height: 35px;
}

    .article-item {
        display: flex;
        align-items: center;
        padding: 12px 0;
    }

    .article-img {
        flex-shrink: 0;
        width: 100px;
        height: 78px;
    }

    .article-right {
        overflow: hidden;
        margin-left: 12px;
        flex: 1;
    }

    .article-content {
        margin-top: 4px;
    }

    .article-time {
        margin-top: 3px;
    }

    .xw-wrapper {
        padding: 12px;
    }

    .breadcrumbs {
        padding-bottom: 12px;
    }

    .zb-box {
        padding: 12px;
    }

    .zb-wrapper {
        position: relative;
        margin: 12px auto 0;
        width: 327px;
        height: 160px;
        border-radius: 8px;
        font-size: 16px;
    }

    .zb-team img {
        margin-bottom: 8px;
        width: 30px;
        height: 30px;
    }

    .zb-match {
        position: absolute;
        top: 8px;
        left: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #FFFFFF;
        line-height: 25px;
    }

    .zb-info {
        width: 120px;
        font-size: 24px;
        text-align: center;
    }

    .zb-score {
        margin: 8px 0 20px;
    }

    .zb-detail {
        margin: 12px auto 0;
        font-size: 14px;
        padding: 12px 0;
        width: auto;
    }

    .zb-detail > * + * {
        margin-top: 10px;
    }

    .zb-detail > div {
        display: inline-block;
        align-items: center;
    }
}

        @media screen and (max-width: 998px) {
            :root {
                --container-width: 100% !important;
                --box-radius: 8px;
            }
        }
/*# sourceMappingURL=base.css.map */