.carousel-container {
    width: 1200px;
    margin: 20px auto 0;
    height: 327px;
    position: relative;
}

.carousel-container .carousel {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-container .match-item {
    flex: 0.5;
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
}

.carousel-container .match-item.active {
    flex: 3;
}

.carousel-container .match-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), rgba(0,0,0,0));
    color: #fff;
    padding: 15px 15px 40px 15px; /* 增加底部填充为查看详情按钮留出空间 */
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 5px 5px;
}

.carousel-container .match-item.active .match-details {
    opacity: 1;
}

.carousel-container .match-item.active::after {
    content: '查看详情';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(51, 153, 102, 0.8);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 100;
    transition: all 0.3s ease;
}

.carousel-container .match-item.active:hover::after {
    background: rgba(51, 153, 102, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) scale(1.05);
    cursor: pointer;
}

.carousel-container .match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.carousel-container .match-league {
    flex: 1;
}

.carousel-container .league-name {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

.carousel-container .match-time {
    margin: 0 10px;
    font-size: 12px;
    color: #ccc;
}

.carousel-container .match-time i {
    margin-right: 5px;
}

.carousel-container .match-status-container {
    text-align: right;
}

.carousel-container .match-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.carousel-container .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 35%;
}

.carousel-container .team.home {
    text-align: right;
}

.carousel-container .team.away {
    text-align: left;
}

.carousel-container .team-logo {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.carousel-container .team-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.carousel-container .team-name {
    font-size: 14px;
    font-weight: bold;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.carousel-container .match-score {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background: rgba(0,0,0,0.3);
    padding: 5px 20px;
    border-radius: 20px;
    min-width: 100px;
    text-align: center;
    margin: 0 10px;
}

.carousel-container .match-info-collapsed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: center;
    padding: 10px;
    opacity: 1;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.6);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.carousel-container .match-item.active .match-info-collapsed {
    opacity: 0;
    pointer-events: none;
}

.carousel-container .match-info-teams {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-container .home-team-short,
.carousel-container .away-team-short {
    font-weight: bold;
    font-size: 13px;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-container .vs {
    font-weight: bold;
    color: #ccc;
    font-size: 16px;
    margin: 5px 0;
}

.carousel-container .match-info-status {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-top: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}

.carousel-container .match-info-status.not-started {
    background: rgba(0, 128, 0, 0.7);
    color: #fff;
}

.carousel-container .match-info-status.in-progress {
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
}

.carousel-container .match-info-status.finished {
    background: rgba(128, 128, 128, 0.7);
    color: #fff;
}

.carousel-container .match-details > div {
    margin-bottom: 8px;
}

.carousel-container .match-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    display: inline-block;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.carousel-container .match-status.not-started {
    background: rgba(0, 128, 0, 0.7);
    color: #fff;
}

.carousel-container .match-status.in-progress {
    background: rgba(255, 0, 0, 0.7);
    color: #fff;
}

.carousel-container .match-status.finished {
    background: rgba(128, 128, 128, 0.7);
    color: #fff;
}

.hot-events{display:flex;align-items:center;width:1200px;margin:10px auto 0;background-color:#fff;padding:15px;box-sizing:border-box;border-radius:5px;font-size:14px}
.hot-events .title{width:70px;font-weight:700;color:#396;font-size:16px;padding-right:10px}
.hot-events .events-container{flex:1;display:flex;overflow-x:auto;gap:10px;padding:0 10px;scrollbar-width:none;-ms-overflow-style:none}
.hot-events .events-container::-webkit-scrollbar{display:none}
.hot-events .event-item{white-space:nowrap}
.hot-events .event-item a{text-decoration:none;color:#333;transition:color .3s ease}
.hot-events .event-item a:hover{color:#396}
.hot-events .more{width:70px;text-align:right;padding-left:10px}
.hot-events .more a{color:#396;text-decoration:none}
.news-section{display:flex;justify-content:space-between;width:1200px;margin:10px auto 0}
.news-section .hot-news,.news-section .latest-news{background-color:#fff;border-radius:5px;padding:10px}
.news-section .latest-news{width:890px}
.news-section .hot-news{width:300px;margin-left:10px}
.news-section .section-title{color:#396;margin-bottom:10px;padding:0 0 10px 10px;border-bottom:1px solid #eee;border-left:solid 5px #396}
.news-section .news-columns{display:flex}
.news-section .main-news{width:543px;height:363px;position:relative;margin-right:10px}
.news-section .main-news-link{display:block;width:100%;height:100%;text-decoration:none}
.news-section .main-news img{width:100%;height:100%;object-fit:cover}
.news-section .news-overlay{position:absolute;bottom:0;left:0;right:0;background:rgba(0,0,0,.5);color:#fff;padding:10px}
.news-section .sub-news{width:327px}
.news-section .sub-news-item{display:flex;margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid #eee}
.news-section .sub-news-item:last-child{margin-bottom:0;padding-bottom:0;border-bottom:none}
.news-section .sub-news-item img{width:133px;height:75px;margin-right:10px}
.news-section .sub-news-img{display:block;font-size:0;text-decoration:none}
.news-section .hot-news-title,.news-section .sub-news-title{color:#333;font-size:14px;line-height:24px;text-decoration:none;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;max-height:48px}
.news-section .hot-news-title{max-width:200px;display:inline-block}
.news-section .hot-news-title:hover{color:#396}
.news-section .hot-news-container{position:relative}
.news-section .hot-news-item{padding:7px 0;border-bottom:1px solid #eee}
.news-section .hot-news-header{padding:0 10px;display:flex;justify-content:space-between}
.news-section .hot-degree{color:red}
.news-section .news-description{display:none;background:#f5f5f5;padding:2px 10px}
.news-section .news-description p{margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.news-section .hot-news-item.active,.news-section .hot-news-item:hover{background-color:#f5f5f5}
.news-section .hot-news-item.active .news-description{display:block}
.news-section .hot-news-item:hover .news-description{display:block}
.news-section .hot-news-item:hover+.hot-news-item{padding-top:20px}
.news-section .refresh-link{float:right;font-size:12px;color:#666;text-decoration:none;transition:color .3s ease;font-weight:400;margin-top:5px}
.news-section .refresh-link:hover{color:#396}
.match-schedule,.scoreboard-table{width:100%;border-collapse:collapse}
.match-schedule .match-header,.match-schedule .match-row,.scoreboard-table .scoreboard-row{display:flex;align-items:center;border-bottom:1px solid #e5e5e5}
.match-schedule .match-header,.scoreboard-table .scoreboard-row.header{background-color:#f5f5f5;font-weight:700}
.match-schedule .match-cell,.scoreboard-table .scoreboard-cell{flex:1;padding:10px;text-align:center}
.match-schedule .match-status{display:flex;padding:10px;background-color:#f9f9f9;border-bottom:1px solid #e5e5e5;justify-content:center;align-items:center}
.match-schedule .match-status .status-icon{width:12px;height:12px;border-radius:50%;margin-right:8px}
.match-schedule .match-status .status-icon.in-progress{background-color:#4caf50}
.match-schedule .match-status .status-icon.finished{background-color:#9e9e9e}
.match-schedule .match-status .status-icon.not-started{background-color:#f44336}
.match-schedule .match-status span{font-size:14px;color:#333}
.match-schedule .match-cell:nth-child(1){flex:0 0 60px}
.match-schedule .match-cell:nth-child(2){flex:0 0 50px;font-weight:700}
.match-schedule .match-cell:nth-child(3){flex:0 0 120px;color:#396;font-weight:700}
.match-schedule .match-cell:nth-child(4){flex:0 0 60px}
.match-schedule .match-cell:nth-child(4).in-progress{color:#4caf50}
.match-schedule .match-cell:nth-child(4).finished{color:#9e9e9e}
.match-schedule .match-cell:nth-child(4).not-started{color:#f44336}
.match-schedule .match-cell:nth-child(5),.match-schedule .match-cell:nth-child(7){flex:1;display:flex;align-items:center}
.match-schedule .match-cell:nth-child(5){justify-content:flex-end}
.match-schedule .match-cell:nth-child(7){justify-content:flex-start}
.match-schedule .team-icon{width:16px;height:16px;background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block}
.match-schedule .match-cell:nth-child(5) .team-icon{margin-left:5px;order:2}
.match-schedule .match-cell:nth-child(7) .team-icon{margin-right:5px;order:-1}
.match-schedule .match-cell:nth-child(6){flex:0 0 80px;font-weight:700}
.match-schedule .match-cell:nth-child(8){flex:0 0 50px}
.match-schedule .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.match-schedule .live-button{display:inline-block;padding:5px 10px;background-color:#396;color:#fff;text-decoration:none;border-radius:3px}
.match-schedule .live-button:hover{background-color:#2a7d54}
.scoreboard-table .scoreboard-cell:nth-child(1){flex:0 0 30px}
.scoreboard-table .scoreboard-cell:nth-child(2){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(3){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(4){flex:0 0 50px}
.scoreboard-table .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.live-content,.scoreboard-content{padding:10px}
.live-container .match-schedule .match-row{transition:background-color .3s ease}
.live-container .match-schedule .match-row:hover{background-color:#f9f9f9}
.live-content .match-link,.live-content .team-link{text-decoration:none;color:inherit;display:flex;align-items:center;width:100%;height:100%}
.live-content .match-link{justify-content:center}
.live-content .team-link{justify-content:flex-end}
.live-content .match-cell:nth-child(7) .team-link{justify-content:flex-start}
.live-content .team-link span{display:inline-block}
.live-content .match-cell:nth-child(5) .team-link .team-icon{order:2;margin-left:5px}
.live-content .match-cell:nth-child(7) .team-link .team-icon{order:-1;margin-right:5px}
.scoreboard-container{width:290px;float:right;margin-left:10px}
.scoreboard-header{padding:0 10px;background-color:#fff;border-radius:5px}
.scoreboard-header-bottom,.scoreboard-header-top{height:45px;line-height:45px;padding:0;margin:0}
.scoreboard-header-top{border-bottom:1px solid #e5e5e5}
.scoreboard-header .scoreboard-type{display:inline-block;height:42px;padding:0 10px}
.scoreboard-header-bottom .league-tab{display:inline-block;height:42px}
.scoreboard-content{background-color:#fff;border-radius:5px;margin-top:10px;padding:10px}
.scoreboard-table{width:100%;border-collapse:collapse}
.scoreboard-table .scoreboard-row{display:flex;align-items:center;border-bottom:1px solid #e5e5e5}
.scoreboard-table .scoreboard-row.header{background-color:#f5f5f5;font-weight:700}
.scoreboard-table .scoreboard-cell{flex:1;padding:10px;text-align:center;display:flex;align-items:center;justify-content:center}
.scoreboard-table .scoreboard-cell:not(:first-child){justify-content:flex-start}
.scoreboard-table .scoreboard-cell:nth-child(1){flex:0 0 30px}
.scoreboard-table .scoreboard-cell:nth-child(2){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(3){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(4){flex:0 0 40px}
.scoreboard-table .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.scoreboard-container .left{float:left}
.scoreboard-container .right{float:right}
.scoreboard-container .league-tab,.scoreboard-container .scoreboard-type{margin-right:10px}
.scoreboard-container .active,.scoreboard-container .league-tab:hover,.scoreboard-container .more-link,.scoreboard-container .scoreboard-type:hover{color:#396}
.scoreboard-container .active{border-bottom:3px solid #396;font-weight:700}
.scoreboard-container a.more-link{text-decoration:none}
.scoreboard-table .scoreboard-cell:first-child{padding:5px}
.scoreboard-table .rank-number{width:20px;height:20px;border-radius:50%;background-color:#e3e3e3;color:#333;display:flex;justify-content:center;align-items:center;margin:auto;font-size:12px}
.scoreboard-table .scoreboard-row:nth-child(2) .rank-number,.scoreboard-table .scoreboard-row:nth-child(3) .rank-number,.scoreboard-table .scoreboard-row:nth-child(4) .rank-number{background-color:#ff4136;color:#fff}
.scoreboard-table .team-link{text-decoration:none;color:inherit;display:inline-block;text-align:left;width:100%}
.scoreboard-table .team-link:hover{text-decoration:underline}
.live-scoreboard-container{width:1200px;margin:10px auto 0 auto;height:auto;overflow:hidden}
.live-scoreboard-container a{text-decoration:none;color:inherit}
.live-scoreboard-container .live-container{width:900px;float:left}
.live-scoreboard-container .scoreboard-container{width:290px;float:right;margin-left:10px}
.live-scoreboard-container .live-content,.live-scoreboard-container .live-header,.live-scoreboard-container .scoreboard-content{background-color:#fff;border-radius:5px}
.live-scoreboard-container .live-header{padding:0 10px;height: auto; overflow: hidden;}
.live-scoreboard-container .live-header-top{border-bottom:1px solid #e5e5e5;padding:0 10px;line-height:45px;height:45px;overflow:hidden}
.live-scoreboard-container .live-header-bottom{padding:10px}
.live-scoreboard-container .live-header-bottom{padding:0 10px;line-height:45px}
.live-scoreboard-container .live-content,.live-scoreboard-container .scoreboard-content{margin-top:10px}
.live-scoreboard-container .left{float:left}
.live-scoreboard-container .right{float:right}
.live-scoreboard-container .league-tab,.live-scoreboard-container .scoreboard-type,.live-scoreboard-container .section-title,.live-scoreboard-container .tab-link{margin-right:10px}
.live-scoreboard-container .section-title{color:#396;padding:0 0 10px 10px;border-left:solid 5px #396;font-size:18px;font-weight:700}
.live-scoreboard-container .tab-link{display:inline-block;padding:0 10px;height:39px;line-height:39px}
.live-scoreboard-container .active,.live-scoreboard-container .league-tab:hover,.live-scoreboard-container .more-link,.live-scoreboard-container .scoreboard-type:hover,.live-scoreboard-container .tab-link:hover{color:#396}
.live-scoreboard-container .active{border-bottom:3px solid #396;font-weight:700}
.live-scoreboard-container a.sort-link{border:1px solid #396;color:#396;padding:2px 5px;margin-left:10px;border-radius:5px}
.live-scoreboard-container a.sort-link:hover{background-color:#396;color:#fff!important}
.live-scoreboard-container .match-schedule,.live-scoreboard-container .scoreboard-table{width:100%;border-collapse:collapse}
.live-scoreboard-container .match-schedule td,.live-scoreboard-container .match-schedule th,.live-scoreboard-container .scoreboard-table td,.live-scoreboard-container .scoreboard-table th{padding:10px;text-align:center}

.table-title{font-size:16px;font-weight:700;color:#333;background-color:#f5f5f5;padding:10px 15px;border-radius:5px;margin:15px 0}
.table-title:first-child{margin-top:0}
.table-title .competitionName{margin-right:15px}
.table-title .season{color:#666;font-size:14px;margin-right:15px}
.table-title .type{font-size:14px;color:#fff;font-weight:400;border-radius:5px;padding:3px 5px;background:#333;font-size:12px}
.table-title .type.RegularSeason{background:#4a90e2}
.table-title .type.Playoffs{background:#ff4500}

footer{margin:10px auto 0;height:auto;overflow:hidden;background:#fff}
footer .bgwhite{background:#fff;padding:10px}
footer .partner{width:1200px;margin:0 auto;height:auto;overflow:hidden;padding:10px}
footer .partner-title{font-size:18px;font-weight:700;text-align:center;margin:10px 10px 20px;color:#396}
footer .partner-list{display:grid;grid-template-columns:repeat(6,1fr);grid-gap:10px;list-style-type:none;padding:0;height:auto;overflow:hidden}
footer .partner-list li {line-height: 0;}
footer .contact{display:flex;justify-content:space-between;width:1200px;margin:0 auto;height:auto;overflow:hidden}
footer .contact .left,footer .contact .right{flex:1}
footer .contact h6{font-size:14px;font-weight:700;margin:10px 0 10px 0}
footer .contact ul{display:grid;grid-template-columns:repeat(3,1fr);gap:0;list-style-type:none;padding:0}
footer .contact li{margin:0;line-height:24px}
footer .contact p{line-height:24px}
footer .copyright{background:#1f1f1f;padding:20px;text-align:center;color:#fff}
footer .copyright a{color:#fff;text-decoration:none;transition:color .3s ease}
footer .copyright a:hover{color:#396}
.match-schedule,.scoreboard-table{width:100%;border-collapse:collapse}
.match-schedule .match-header,.match-schedule .match-row,.scoreboard-table .scoreboard-row{display:flex;align-items:center;border-bottom:1px solid #e5e5e5}
.match-schedule .match-header,.scoreboard-table .scoreboard-row.header{background-color:#f5f5f5;font-weight:700}
.match-schedule .match-cell,.scoreboard-table .scoreboard-cell{flex:1;padding:10px;text-align:center}
.match-schedule .match-status{display:flex;padding:10px;background-color:#f9f9f9;border-bottom:1px solid #e5e5e5;justify-content:center;align-items:center}
.match-schedule .match-status .status-icon{width:12px;height:12px;border-radius:50%;margin-right:8px}
.match-schedule .match-status .status-icon.in-progress{background-color:#4caf50}
.match-schedule .match-status .status-icon.finished{background-color:#9e9e9e}
.match-schedule .match-status .status-icon.not-started{background-color:#f44336}
.match-schedule .match-status span{font-size:14px;color:#333}
.match-schedule .match-cell:nth-child(1){flex:0 0 60px}
.match-schedule .match-cell:nth-child(2){flex:0 0 50px;font-weight:700}
.match-schedule .match-cell:nth-child(3){flex:0 0 120px;color:#396;font-weight:700}
.match-schedule .match-cell:nth-child(4){flex:0 0 60px}
.match-schedule .match-cell:nth-child(4).in-progress{color:#4caf50}
.match-schedule .match-cell:nth-child(4).finished{color:#9e9e9e}
.match-schedule .match-cell:nth-child(4).not-started{color:#f44336}
.match-schedule .match-cell:nth-child(5),.match-schedule .match-cell:nth-child(7){flex:1;display:flex;align-items:center}
.match-schedule .match-cell:nth-child(5){justify-content:flex-end}
.match-schedule .match-cell:nth-child(7){justify-content:flex-start}
.match-schedule .team-icon{width:16px;height:16px;background-size:contain;background-repeat:no-repeat;background-position:center;display:inline-block}
.match-schedule .match-cell:nth-child(5) .team-icon{margin-left:5px;order:2}
.match-schedule .match-cell:nth-child(7) .team-icon{margin-right:5px;order:-1}
.match-schedule .match-cell:nth-child(6){flex:0 0 80px;font-weight:700}
.match-schedule .match-cell:nth-child(8){flex:0 0 50px}
.match-schedule .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.match-schedule .live-button{display:inline-block;padding:5px 10px;background-color:#396;color:#fff;text-decoration:none;border-radius:3px}
.match-schedule .live-button:hover{background-color:#2a7d54}
.scoreboard-table .scoreboard-cell:nth-child(1){flex:0 0 30px}
.scoreboard-table .scoreboard-cell:nth-child(2){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(3){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(4){flex:0 0 50px}
.scoreboard-table .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.live-content,.scoreboard-content{padding:10px}
.live-container .match-schedule .match-row{transition:background-color .3s ease}
.live-container .match-schedule .match-row:hover{background-color:#f9f9f9}
.live-content .match-link,.live-content .team-link{text-decoration:none;color:inherit;display:flex;align-items:center;width:100%;height:100%}
.live-content .match-link{justify-content:center}
.live-content .team-link{justify-content:flex-end}
.live-content .match-cell:nth-child(7) .team-link{justify-content:flex-start}
.live-content .team-link span{display:inline-block}
.live-content .match-cell:nth-child(5) .team-link .team-icon{order:2;margin-left:5px}
.live-content .match-cell:nth-child(7) .team-link .team-icon{order:-1;margin-right:5px}
.scoreboard-container{width:290px;float:right;margin-left:10px}
.scoreboard-header{padding:0 10px;background-color:#fff;border-radius:5px}
.scoreboard-header-bottom,.scoreboard-header-top{height:45px;line-height:45px;padding:0;margin:0}
.scoreboard-header-top{border-bottom:1px solid #e5e5e5}
.scoreboard-header .scoreboard-type{display:inline-block;height:42px;padding:0 10px}
.scoreboard-header-bottom .league-tab{display:inline-block;height:42px}
.scoreboard-content{background-color:#fff;border-radius:5px;margin-top:10px;padding:10px}
.scoreboard-table{width:100%;border-collapse:collapse}
.scoreboard-table .scoreboard-row{display:flex;align-items:center;border-bottom:1px solid #e5e5e5}
.scoreboard-table .scoreboard-row.header{background-color:#f5f5f5;font-weight:700}
.scoreboard-table .scoreboard-cell{flex:1;padding:10px;text-align:center;display:flex;align-items:center;justify-content:center}
.scoreboard-table .scoreboard-cell:not(:first-child){justify-content:flex-start}
.scoreboard-table .scoreboard-cell:nth-child(1){flex:0 0 30px}
.scoreboard-table .scoreboard-cell:nth-child(2){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(3){flex:2}
.scoreboard-table .scoreboard-cell:nth-child(4){flex:0 0 40px}
.scoreboard-table .team-logo{width:20px;height:20px;vertical-align:middle;margin-right:5px}
.scoreboard-container .right{float:right}
.scoreboard-container .league-tab,.scoreboard-container .scoreboard-type{margin-right:10px}
.scoreboard-container .active,.scoreboard-container .league-tab:hover,.scoreboard-container .more-link,.scoreboard-container .scoreboard-type:hover{color:#396}
.scoreboard-container .active{border-bottom:3px solid #396;font-weight:700}
.scoreboard-container a.more-link{text-decoration:none}
.scoreboard-table .scoreboard-cell:first-child{padding:5px}
.scoreboard-table .rank-number{width:20px;height:20px;border-radius:50%;background-color:#e3e3e3;color:#333;display:flex;justify-content:center;align-items:center;margin:auto;font-size:12px}
.scoreboard-table .scoreboard-row:nth-child(2) .rank-number,.scoreboard-table .scoreboard-row:nth-child(3) .rank-number,.scoreboard-table .scoreboard-row:nth-child(4) .rank-number{background-color:#ff4136;color:#fff}
.scoreboard-table .team-link{text-decoration:none;color:inherit;display:inline-block;text-align:left;width:100%}
.scoreboard-table .team-link:hover{text-decoration:underline}
.live-scoreboard-container{width:1200px;margin:10px auto 0 auto;height:auto;overflow:hidden}
.live-scoreboard-container a{text-decoration:none;color:inherit}
.live-scoreboard-container .live-container{width:900px;float:left}
.live-scoreboard-container .scoreboard-container{width:290px;float:right;margin-left:10px}
.live-scoreboard-container .live-content,.live-scoreboard-container .live-header,.live-scoreboard-container .scoreboard-content{background-color:#fff;border-radius:5px}
.live-scoreboard-container .live-header{padding:0 10px}
.live-scoreboard-container .live-header-top{border-bottom:1px solid #e5e5e5;padding:0 10px;line-height:45px;height:45px;overflow:hidden}
.live-scoreboard-container .live-header-bottom{padding:10px}
.live-scoreboard-container .live-header-bottom{padding:0 10px;line-height:45px}
.live-scoreboard-container .live-content,.live-scoreboard-container .scoreboard-content{margin-top:10px}
.live-scoreboard-container .left{float:left}
.live-scoreboard-container .right{float:right}
.live-scoreboard-container .league-tab,.live-scoreboard-container .scoreboard-type,.live-scoreboard-container .section-title,.live-scoreboard-container .tab-link{margin-right:10px}
.live-scoreboard-container .section-title{color:#396;padding:0 0 10px 10px;border-left:solid 5px #396;font-size:18px;font-weight:700}
.live-scoreboard-container .tab-link{display:inline-block;padding:0 10px;height:39px;line-height:39px}
.live-scoreboard-container .active,.live-scoreboard-container .league-tab:hover,.live-scoreboard-container .more-link,.live-scoreboard-container .scoreboard-type:hover,.live-scoreboard-container .tab-link:hover{color:#396}
.live-scoreboard-container .active{border-bottom:3px solid #396;font-weight:700}
.live-scoreboard-container a.sort-link{border:1px solid #396;color:#396;padding:2px 5px;margin-left:10px;border-radius:5px}
.live-scoreboard-container a.sort-link:hover{background-color:#396;color:#fff!important}
.live-scoreboard-container .match-schedule,.live-scoreboard-container .scoreboard-table{width:100%;border-collapse:collapse}
.live-scoreboard-container .match-schedule td,.live-scoreboard-container .match-schedule th,.live-scoreboard-container .scoreboard-table td,.live-scoreboard-container .scoreboard-table th{padding:10px;text-align:center}

.table-title{font-size:16px;font-weight:700;color:#333;background-color:#f5f5f5;padding:10px 15px;border-radius:5px;margin:15px 0}
.table-title:first-child{margin-top:0}
.table-title .competitionName{margin-right:15px}
.table-title .season{color:#666;font-size:14px;margin-right:15px}
.table-title .type{font-size:14px;color:#fff;font-weight:400;border-radius:5px;padding:3px 5px;background:#333;font-size:12px}
.table-title .type.RegularSeason{background:#4a90e2}
.table-title .type.Playoffs{background:#ff4500}

footer{margin:10px auto 0;height:auto;overflow:hidden;background:#fff}
footer .bgwhite{background:#fff;padding:10px}
footer .partner{width:1200px;margin:0 auto;height:auto;overflow:hidden;padding:10px}
footer .partner-title{font-size:18px;font-weight:700;text-align:center;margin:10px 10px 20px;color:#396}
footer .partner-list{display:grid;grid-template-columns:repeat(6,1fr);grid-gap:10px;list-style-type:none;padding:0;height:auto;overflow:hidden}
footer .partner-list li {line-height: 0;}
footer .contact{display:flex;justify-content:space-between;width:1200px;margin:0 auto;height:auto;overflow:hidden}
footer .contact .left,footer .contact .right{flex:1}
footer .contact h6{font-size:14px;font-weight:700;margin:10px 0 10px 0}
footer .contact ul{display:grid;grid-template-columns:repeat(3,1fr);gap:0;list-style-type:none;padding:0}
footer .contact li{margin:0;line-height:24px}
footer .contact p{line-height:24px}
footer .copyright{background:#1f1f1f;padding:20px;text-align:center;color:#fff}
footer .copyright a{color:#fff;text-decoration:none;transition:color .3s ease}
footer .copyright a:hover{color:#396}

.PAGE_league .team-search{background:linear-gradient(135deg,#396 0,#44b78b 100%);border:1px solid #dee2e6;border-radius:5px;padding:10px;display:flex;align-items:center;justify-content:space-between;margin-bottom:20px;color:#fff}
.PAGE_league .letter-index{background:#fff;padding:15px;margin-bottom:15px;border-radius:4px;display:flex;flex-wrap:wrap;gap:8px;box-shadow:0 1px 3px rgba(0,0,0,.1)}
.PAGE_league .letter-link{width:30px;height:30px;display:flex;align-items:center;justify-content:center;background:#f8f8f8;border-radius:4px;color:#333;text-decoration:none;font-weight:500;transition:all .3s ease}
.PAGE_league .letter-link:hover{background:#396;color:#fff!important}
.PAGE_league .league-group{margin-bottom:20px}
.PAGE_league .group-header{border-bottom:2px solid #396;margin-bottom:10px}
.PAGE_league .group-header .header-content{display:flex;justify-content:space-between;align-items:center}
.PAGE_league .group-header h3{font-size:18px;color:#333;padding:8px 0;margin:0}
.PAGE_league .back-to-top{font-size:13px;color:#666;text-decoration:none;padding:4px 10px;border-radius:3px;background:#f8f8f8;transition:all .3s ease}
.PAGE_league .back-to-top:hover{background:#396;color:#fff!important}
.PAGE_league .group-content{display:flex;flex-wrap:wrap;margin:0 -10px}
.PAGE_league .league-item{width:25%;padding:0 10px;box-sizing:border-box;margin-bottom:15px}
.PAGE_league .league-logo{width:24px;height:24px;margin-right:10px;object-fit:contain}
.PAGE_league .league-name{font-size:14px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.PAGE_league .no-data{text-align:center;padding:40px 0;color:#999}
.PAGE_league .team-search{background-color:#fff;border:1px solid #dee2e6;border-radius:5px;padding:10px;display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.PAGE_league .team-search input[type=text],.PAGE_league .team-search select{flex:1;padding:8px;border:1px solid #ced4da;border-radius:4px;margin-right:10px;font-size:14px;background-color:#fff;appearance:none;-webkit-appearance:none;-moz-appearance:none}
.PAGE_league .team-search select{flex:0 0 auto;width:100px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 8px center;padding-right:28px}
.PAGE_league .team-search button{background-color:#396;color:#fff;border:none;border-radius:4px;padding:8px 16px;cursor:pointer;font-size:14px;transition:background-color .3s ease;flex:0 0 auto}
.PAGE_league .team-search button:hover{background-color:#187044}
.PAGE_league .team-search input[type=text]:focus,.PAGE_league .team-search select:focus{outline:0;border-color:#396;box-shadow:0 0 0 2px rgba(51,153,102,.2)}
.PAGE_league .league-tabs{margin-bottom:20px}
.PAGE_league .league-tab-header{background:#f1f1f1;height:50px;display:flex;border-bottom:1px solid #ddd}
.PAGE_league .league-tab-header .tab-item{padding:0 20px;line-height:50px;background:#fff;cursor:pointer;margin-right:2px;font-size:14px;position:relative;top:0;transition:all .3s ease;text-decoration:none;color:#333;display:block}
.PAGE_league .league-tab-header .tab-item.active,.PAGE_league .league-tab-header .tab-item:hover{color:#396;font-weight:700}
.PAGE_league .league-tab-header .tab-item.active{border-top:3px solid #396;height:51px}
.PAGE_league .league-tab-content{background:#fff;padding:20px}
.PAGE_league .league-tab-pane{display:none}
.PAGE_league .league-tab-pane.active{display:block}
.PAGE_league .league-item{position:relative}
.PAGE_league .league-main{position:relative}
.PAGE_league .league-main>a{background:#f8f8f8;border-radius:4px;transition:all .3s ease;display:flex;align-items:center;padding:10px;text-decoration:none;color:#333}
.PAGE_league .league-main>a:hover{background:#e8f5f0}
.PAGE_league .league-submenu{display:none;position:absolute;left:0;right:0;top:100%;background:#fff;border-radius:4px;box-shadow:0 2px 8px rgba(0,0,0,.15);z-index:100;padding:5px 0}
.PAGE_league .league-item:hover .league-submenu{display:block}
.PAGE_league .submenu-item{display:flex;align-items:center;padding:8px 15px;color:#333;text-decoration:none;font-size:13px;transition:all .3s ease}
.PAGE_league .submenu-item i{margin-right:8px;font-size:14px;width:16px;text-align:center;color:#666;position:relative;top:1px;line-height:1}
.PAGE_league .submenu-item:hover{background:#e8f5f0;color:#396}
.PAGE_league .submenu-item:hover i{color:#396}
.PAGE_league .league-list{margin:0;padding:0;list-style:none}
.PAGE_league .league-list .league-item{margin-bottom:10px}
.PAGE_league .league-list .league-item:last-child{margin-bottom:0}
.PAGE_league .league-item img{width:24px;height:24px;margin-right:10px;border-radius:50%}
.PAGE_league .league-item .league-name{flex:1}
.PAGE_league .Right_standings{padding:10px}
.PAGE_league .Right_standings_list{list-style:none;padding:0;margin:0}
.PAGE_league .Right_standings_list li{margin-bottom:12px;border-bottom:1px solid #f0f0f0;padding-bottom:12px;position:relative;padding-left:15px}
.PAGE_league .Right_standings_list li::before{content:'';position:absolute;left:0;top:9px;width:6px;height:6px;background-color:#ccc;border-radius:50%}
.PAGE_league .Right_standings_list li:last-child{margin-bottom:0;border-bottom:none;padding-bottom:0}
.PAGE_league .Right_standings_list a{display:flex;justify-content:space-between;align-items:center;text-decoration:none;color:#333;font-size:14px;transition:color .3s ease;min-height:20px}
.PAGE_league .Right_standings_list a:hover{color:#396}
.PAGE_league .standing-name{flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;margin-right:10px}
.PAGE_league .standing-time{font-size:12px;color:#999;white-space:nowrap}

/* 球队 */
.PAGE_team .teamlist{margin:10px;display:flex;flex-wrap:wrap;justify-content:space-between}
.PAGE_team .teamlist .team-item{width:18%;margin-bottom:20px;text-align:center}
.PAGE_team .teamlist .team-item img{width:100%;height:auto}
.PAGE_team .team-search{background-color:#fff;border:1px solid #dee2e6;border-radius:5px;padding:10px;display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
.PAGE_team .team-search input[type=text]{flex:1;padding:8px;border:1px solid #ced4da;border-radius:4px;margin-right:10px;font-size:14px}
.PAGE_team .team-search button{background-color:#396;color:#fff;border:none;border-radius:4px;padding:7px 16px;cursor:pointer;font-size:14px;transition:background-color .3s ease}
.PAGE_team .team-search button:hover{background-color:#187044}
.PAGE_team .modify-logs{width:calc(100% - 20px)!important;border-collapse:collapse;margin:10px;font-size:14px}
.PAGE_team .modify-logs th{background-color:#f5f5f5;padding:8px 12px;text-align:left;border:1px solid #e0e0e0;font-weight:700;text-align:center}
.PAGE_team .modify-logs td{text-align:center;padding:8px 12px;border:1px solid #e0e0e0;line-height:22px!important}
.PAGE_team .modify-logs tr:nth-child(even){background-color:#f9f9f9}
.PAGE_team .modify-logs tr:hover{background-color:#f0f0f0}
.PAGE_team .modify-type{display:inline-block;padding:2px 6px;border-radius:3px;font-size:12px;font-weight:700;color:#fff}
.PAGE_team .modify-type-time{background-color:#4caf50}
.PAGE_team .modify-type-cancel{background-color:#f44336}
.PAGE_team .match-status-0{color:#2196f3;font-weight:700}
.PAGE_team .match-status-1{color:#4caf50;font-weight:700}
.PAGE_team .match-status-2{color:#9e9e9e;font-weight:700}
.PAGE_team .match-status-3{color:#ff9800;font-weight:700}
.PAGE_team .match-status-4{color:#f44336;font-weight:700}
.PAGE_team .match-status-5{color:#607d8b;font-weight:700}
.PAGE_team .modify-empty{padding:20px;text-align:center;color:#999}
.PAGE_team .match-info{display:flex;align-items:center;justify-content:space-between}
.PAGE_team .team-name{flex:1;text-align:center}
.PAGE_team .vs{margin:0 10px;color:#999;font-weight:700}
