/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.zc2e9acontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 头部导航样式 */
.zc2e9aheader {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.zc2e9aheader .zc2e9acontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zc2e9aheader_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
}

.zc2e9alogo_text {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.zc2e9anav {
    width: auto;
    margin-top: 0;
}

.zc2e9anav_list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.zc2e9anav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.zc2e9anav_link:hover,
.zc2e9anav_link.zc2e9aactive {
    background-color: rgba(255, 255, 255, 0.2);
}

.zc2e9amobile_menu {
    display: none;
    cursor: pointer;
}

.zc2e9amenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
}

.zc2e9amenu_icon::before,
.zc2e9amenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
}

.zc2e9amenu_icon::before {
    top: -10px;
}

.zc2e9amenu_icon::after {
    top: 10px;
}

/* 轮播横幅样式 */
.zc2e9abanner {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-bottom: 30px;
}

.zc2e9abanner_container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.zc2e9abanner_slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.zc2e9abanner_item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s;
    top: 0;
    left: 0;
}

.zc2e9abanner_item.zc2e9aactive {
    opacity: 1;
}

.zc2e9abanner_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.zc2e9abanner_image {
    flex: 0 0 auto;
    width: 45%;
    max-width: 500px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zc2e9abanner_img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zc2e9abanner_content {
    flex: 1;
    text-align: left;
    color: #fff;
    z-index: 1;
    position: relative;
}

.zc2e9abanner_title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.zc2e9abanner_desc {
    font-size: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.zc2e9abanner_dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.zc2e9adot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.zc2e9adot.zc2e9aactive {
    background-color: #fff;
}

/* 主要内容区域 */
.zc2e9amain {
    padding: 20px 0 40px;
}

.zc2e9asection {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    scroll-margin-top: 80px;
}

.zc2e9asection_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.zc2e9asection_title {
    font-size: 24px;
    font-weight: bold;
    color: #1e3c72;
}

.zc2e9asection_more {
    color: #2a5298;
    cursor: pointer;
    font-size: 14px;
}

.zc2e9asection_more:hover {
    text-decoration: underline;
}

/* 直播卡片网格 */
.zc2e9alive_grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.zc2e9alive_card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.zc2e9alive_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.zc2e9alive_image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.zc2e9alive_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.zc2e9alive_badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    z-index: 2;
}

.zc2e9alive_badge.zc2e9alive_ing {
    background-color: #e74c3c;
    animation: pulse 2s infinite;
}

.zc2e9alive_badge.zc2e9alive_upcoming {
    background-color: #3498db;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.zc2e9alive_info {
    padding: 15px;
}

.zc2e9alive_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.zc2e9alive_meta {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.zc2e9alive_time {
    color: #2a5298;
    font-weight: 500;
}

.zc2e9alive_view {
    color: #999;
}

/* 分类标签 */
.zc2e9acategory_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.zc2e9atab {
    padding: 8px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s;
}

.zc2e9atab:hover {
    border-color: #2a5298;
    color: #2a5298;
}

.zc2e9atab.zc2e9atab_active {
    background-color: #2a5298;
    border-color: #2a5298;
    color: #fff;
}

/* 比赛列表 */
.zc2e9amatch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zc2e9amatch_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2a5298;
    transition: background-color 0.3s;
}

.zc2e9amatch_item:hover {
    background-color: #f0f0f0;
}

.zc2e9amatch_teams {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.zc2e9ateam {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.zc2e9ateam_home {
    text-align: right;
    flex: 1;
}

.zc2e9ateam_away {
    text-align: left;
    flex: 1;
}

.zc2e9amatch_vs {
    color: #999;
    font-size: 14px;
    font-weight: bold;
}

.zc2e9amatch_info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.zc2e9amatch_time {
    color: #666;
    font-size: 14px;
}

.zc2e9amatch_status {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.zc2e9astatus_live {
    background-color: #e74c3c;
    animation: pulse 2s infinite;
}

.zc2e9astatus_upcoming {
    background-color: #3498db;
}

/* 篮球直播框架布局 */
.zc2e9abasketball_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.zc2e9abasketball_card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.zc2e9abasketball_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(42, 82, 152, 0.15);
    border-color: #2a5298;
}

.zc2e9abasketball_card.zc2e9afeatured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: 2px solid #667eea;
    grid-column: span 2;
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_team_name,
.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_score,
.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_time,
.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_viewers {
    color: #fff;
}

.zc2e9abasketball_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_header {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.zc2e9abasketball_league {
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    background-color: #2a5298;
    color: #fff;
    border-radius: 12px;
    text-transform: uppercase;
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_league {
    background-color: rgba(255, 255, 255, 0.2);
}

.zc2e9abasketball_status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.zc2e9abasketball_teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 15px;
    flex: 1;
}

.zc2e9abasketball_team {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.zc2e9abasketball_team_logo {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    flex-shrink: 0;
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_team_logo {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.zc2e9abasketball_team_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

.zc2e9abasketball_team_name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zc2e9abasketball_score {
    font-size: 24px;
    font-weight: bold;
    color: #2a5298;
    line-height: 1;
}

.zc2e9abasketball_vs {
    font-size: 14px;
    font-weight: bold;
    color: #999;
    flex-shrink: 0;
    padding: 0 5px;
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_vs {
    color: rgba(255, 255, 255, 0.8);
}

.zc2e9abasketball_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
}

.zc2e9abasketball_card.zc2e9afeatured .zc2e9abasketball_footer {
    border-top-color: rgba(255, 255, 255, 0.3);
}

.zc2e9abasketball_time {
    color: #666;
    font-weight: 500;
}

.zc2e9abasketball_viewers {
    color: #999;
    font-size: 12px;
}

/* 响应式设计 */
/* 响应式设计 - 平板端 */
@media (max-width: 1024px) {
    .zc2e9acontainer {
        padding: 0 15px;
    }

    .zc2e9abasketball_card.zc2e9afeatured {
        grid-column: span 1;
    }

    .zc2e9abasketball_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zc2e9alive_grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .zc2e9abanner_title {
        font-size: 40px;
    }

    .zc2e9abanner_desc {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .zc2e9abasketball_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zc2e9abasketball_card {
        padding: 15px;
    }

    .zc2e9abasketball_team_logo {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .zc2e9abasketball_team_name {
        font-size: 14px;
    }

    .zc2e9abasketball_score {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .zc2e9abasketball_card {
        padding: 12px;
    }

    .zc2e9abasketball_teams {
        gap: 10px;
    }

    .zc2e9abasketball_team_logo {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .zc2e9abasketball_team_name {
        font-size: 13px;
    }

    .zc2e9abasketball_score {
        font-size: 18px;
    }

    .zc2e9abasketball_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* 赛程表 */
.zc2e9aschedule {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zc2e9aschedule_item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.zc2e9aschedule_item:hover {
    background-color: #f0f0f0;
}

.zc2e9aschedule_time {
    min-width: 60px;
    font-size: 16px;
    font-weight: bold;
    color: #2a5298;
}

.zc2e9aschedule_match {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.zc2e9aschedule_team {
    font-size: 15px;
    color: #333;
}

.zc2e9aschedule_vs {
    color: #999;
    font-size: 12px;
}

.zc2e9aschedule_type {
    padding: 5px 12px;
    background-color: #2a5298;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}


/* 新闻资讯 */
.zc2e9anews_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.zc2e9anews_featured {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.zc2e9anews_featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.zc2e9anews_image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.zc2e9anews_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.zc2e9anews_tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.zc2e9anews_content {
    padding: 20px;
}

.zc2e9anews_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.zc2e9anews_excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.zc2e9anews_meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.zc2e9anews_category {
    padding: 3px 10px;
    background-color: #2a5298;
    color: #fff;
    border-radius: 10px;
}

.zc2e9anews_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.zc2e9anews_item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.zc2e9anews_item:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.zc2e9anews_item_title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    line-height: 1.4;
}

.zc2e9anews_item_excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}


/* 底部样式 */
.zc2e9afooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 50px;
}

.zc2e9afooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.zc2e9afooter_section {
    margin-bottom: 20px;
}

.zc2e9afooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.zc2e9afooter_text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.zc2e9afooter_list {
    list-style: none;
}

.zc2e9afooter_list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: color 0.3s;
}

.zc2e9afooter_list li:hover {
    color: #fff;
}

.zc2e9afriend_links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.zc2e9afriend_links li a:hover {
    color: #fff;
    text-decoration: underline;
}

.zc2e9afooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zc2e9afooter_bottom p {
    margin: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.zc2e9afooter_bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.zc2e9afooter_bottom a:hover {
    color: #fff;
    text-decoration: underline;
}

.zc2e9acopyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式设计 - 移动端和平板 (768px以下) */
@media (max-width: 768px) {
    .zc2e9acontainer {
        padding: 0 15px;
    }

    /* 导航优化 */
    .zc2e9aheader .zc2e9acontainer {
        flex-direction: column;
        align-items: flex-start;
    }

    .zc2e9aheader_top {
        width: 100%;
    }

    .zc2e9anav {
        display: block;
        width: 100%;
        margin-top: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zc2e9anav_list {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        padding: 0;
        margin: 0;
        list-style: none;
        min-width: max-content;
    }

    .zc2e9anav_item {
        flex-shrink: 0;
    }

    .zc2e9anav_link {
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        padding: 4px 8px;
        border-radius: 0;
        background-color: transparent;
        border: none;
        white-space: nowrap;
        display: block;
    }

    .zc2e9anav_link:hover,
    .zc2e9anav_link.zc2e9aactive {
        background-color: transparent;
        text-decoration: none;
        opacity: 0.8;
    }

    .zc2e9amobile_menu {
        display: none;
    }

    .zc2e9aheader {
        padding: 10px 0;
    }

    .zc2e9alogo_text {
        font-size: 20px;
    }

    /* 横幅优化 */
    .zc2e9abanner {
        height: auto;
        min-height: 300px;
        padding: 30px 0;
        margin-bottom: 25px;
    }

    .zc2e9abanner_container {
        padding: 0 15px;
        height: auto;
        min-height: 300px;
    }

    .zc2e9abanner_slider {
        height: auto;
        min-height: 300px;
    }

    .zc2e9abanner_item {
        position: relative !important;
        height: auto !important;
        min-height: auto;
        padding: 20px 0;
    }

    .zc2e9abanner_item:not(.zc2e9aactive) {
        display: none !important;
    }

    .zc2e9abanner_wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        width: 100%;
        height: auto;
    }

    .zc2e9abanner_image {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 200px;
        order: 2;
        flex: none;
    }

    .zc2e9abanner_img {
        max-height: 200px;
        width: auto;
        margin: 0 auto;
    }

    .zc2e9abanner_content {
        text-align: center;
        order: 1;
        flex: none;
        width: 100%;
    }

    .zc2e9abanner_title {
        font-size: 26px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .zc2e9abanner_desc {
        font-size: 15px;
        line-height: 1.5;
    }

    /* 板块优化 */
    .zc2e9asection {
        padding: 20px 15px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .zc2e9asection_title {
        font-size: 20px;
    }

    .zc2e9asection_header {
        margin-bottom: 18px;
        padding-bottom: 12px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .zc2e9asection_more {
        font-size: 13px;
    }

    /* 直播卡片优化 */
    .zc2e9alive_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .zc2e9alive_card {
        border-radius: 8px;
        overflow: hidden;
    }

    .zc2e9alive_image {
        height: 150px;
    }

    .zc2e9alive_info {
        padding: 12px;
    }

    .zc2e9alive_title {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .zc2e9alive_meta {
        font-size: 12px;
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .zc2e9alive_badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* 篮球直播卡片优化 */
    .zc2e9abasketball_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zc2e9abasketball_card {
        padding: 15px;
    }

    .zc2e9abasketball_team_logo {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .zc2e9abasketball_team_name {
        font-size: 14px;
    }

    .zc2e9abasketball_score {
        font-size: 20px;
    }

    /* 比赛列表优化 */
    .zc2e9amatch_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }

    .zc2e9amatch_teams {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }

    .zc2e9ateam_home,
    .zc2e9ateam_away {
        text-align: center;
        font-size: 15px;
    }

    .zc2e9amatch_info {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .zc2e9amatch_time {
        font-size: 13px;
    }

    .zc2e9amatch_status {
        padding: 5px 12px;
        font-size: 11px;
    }

    /* 赛程表优化 */
    .zc2e9aschedule_item {
        flex-wrap: wrap;
        padding: 12px;
        gap: 10px;
    }

    .zc2e9aschedule_time {
        min-width: 50px;
        font-size: 14px;
    }

    .zc2e9aschedule_match {
        flex: 1;
        min-width: 0;
    }

    .zc2e9aschedule_team {
        font-size: 13px;
    }

    .zc2e9aschedule_type {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* 新闻资讯优化 */
    .zc2e9anews_layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .zc2e9anews_image {
        height: 180px;
    }

    .zc2e9anews_content {
        padding: 18px;
    }

    .zc2e9anews_title {
        font-size: 18px;
        line-height: 1.4;
    }

    .zc2e9anews_excerpt {
        font-size: 13px;
        line-height: 1.6;
    }

    .zc2e9anews_item {
        padding: 12px;
    }

    .zc2e9anews_item_title {
        font-size: 15px;
        line-height: 1.4;
    }

    .zc2e9anews_item_excerpt {
        font-size: 12px;
    }

    /* 标签页优化 */
    .zc2e9acategory_tabs {
        gap: 8px;
        margin-bottom: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .zc2e9acategory_tabs::-webkit-scrollbar {
        display: none;
    }

    .zc2e9atab {
        padding: 6px 15px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 底部优化 */
    .zc2e9afooter_content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zc2e9afooter {
        padding: 35px 0 20px;
    }
}

/* 响应式设计 - 小屏移动端 (480px以下) */
@media (max-width: 480px) {
    /* 容器和基础 */
    .zc2e9acontainer {
        padding: 0 10px;
    }

    /* 头部优化 */
    .zc2e9alogo_text {
        font-size: 18px;
    }

    .zc2e9aheader {
        padding: 8px 0;
    }

    .zc2e9anav {
        margin-top: 6px;
    }

    .zc2e9anav_list {
        gap: 10px;
    }

    .zc2e9anav_link {
        font-size: 12px;
        padding: 3px 6px;
    }

    /* 横幅优化 */
    .zc2e9abanner {
        height: auto;
        min-height: 240px;
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .zc2e9abanner_container {
        padding: 0 10px;
        height: auto;
        min-height: 240px;
    }

    .zc2e9abanner_slider {
        height: auto;
        min-height: 240px;
    }

    .zc2e9abanner_item {
        position: relative !important;
        height: auto !important;
        min-height: auto;
        padding: 15px 0;
    }

    .zc2e9abanner_item:not(.zc2e9aactive) {
        display: none !important;
    }

    .zc2e9abanner_wrapper {
        gap: 15px;
        min-height: 200px;
    }

    .zc2e9abanner_image {
        max-height: 140px;
        width: 100%;
    }

    .zc2e9abanner_img {
        max-height: 140px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .zc2e9abanner_content {
        width: 100%;
    }

    .zc2e9abanner_title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .zc2e9abanner_desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .zc2e9abanner_dots {
        bottom: 15px;
        position: relative;
        margin-top: 15px;
    }

    .zc2e9adot {
        width: 10px;
        height: 10px;
    }

    /* 板块优化 */
    .zc2e9asection {
        padding: 15px 10px;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .zc2e9asection_header {
        margin-bottom: 15px;
        padding-bottom: 10px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .zc2e9asection_title {
        font-size: 18px;
        line-height: 1.3;
    }

    .zc2e9asection_more {
        font-size: 12px;
    }

    /* 直播卡片优化 */
    .zc2e9alive_grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .zc2e9alive_card {
        border-radius: 6px;
        transition: transform 0.2s;
    }

    .zc2e9alive_card:active {
        transform: scale(0.98);
    }

    .zc2e9alive_image {
        height: 140px;
    }

    .zc2e9alive_info {
        padding: 12px;
    }

    .zc2e9alive_title {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .zc2e9alive_meta {
        font-size: 11px;
        gap: 4px;
    }

    .zc2e9alive_time {
        font-size: 11px;
    }

    .zc2e9alive_view {
        font-size: 10px;
    }

    .zc2e9alive_badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }

    /* 篮球直播卡片优化 */
    .zc2e9abasketball_card {
        padding: 12px;
    }

    .zc2e9abasketball_teams {
        gap: 10px;
    }

    .zc2e9abasketball_team_logo {
        width: 40px;
        height: 40px;
        font-size: 11px;
    }

    .zc2e9abasketball_team_name {
        font-size: 13px;
    }

    .zc2e9abasketball_score {
        font-size: 18px;
    }

    .zc2e9abasketball_vs {
        font-size: 12px;
    }

    .zc2e9abasketball_footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding-top: 10px;
    }

    .zc2e9abasketball_time {
        font-size: 12px;
    }

    .zc2e9abasketball_viewers {
        font-size: 11px;
    }

    .zc2e9abasketball_header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .zc2e9abasketball_league {
        font-size: 11px;
        padding: 3px 10px;
    }

    .zc2e9abasketball_status {
        font-size: 10px;
        padding: 3px 10px;
    }

    /* 标签页优化 */
    .zc2e9acategory_tabs {
        gap: 6px;
        margin-bottom: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 5px;
    }

    .zc2e9acategory_tabs::-webkit-scrollbar {
        display: none;
    }

    .zc2e9atab {
        padding: 5px 12px;
        font-size: 12px;
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 32px;
        touch-action: manipulation;
    }

    /* 比赛列表优化 */
    .zc2e9amatch_item {
        padding: 12px;
        gap: 10px;
        border-radius: 6px;
    }

    .zc2e9amatch_teams {
        gap: 6px;
    }

    .zc2e9ateam {
        font-size: 14px;
    }

    .zc2e9amatch_vs {
        font-size: 11px;
    }

    .zc2e9amatch_info {
        gap: 8px;
    }

    .zc2e9amatch_time {
        font-size: 12px;
    }

    .zc2e9amatch_status {
        padding: 4px 10px;
        font-size: 10px;
    }

    /* 赛程表优化 */
    .zc2e9aschedule_item {
        padding: 10px;
        gap: 8px;
        border-radius: 6px;
    }

    .zc2e9aschedule_time {
        min-width: 45px;
        font-size: 13px;
    }

    .zc2e9aschedule_match {
        gap: 6px;
    }

    .zc2e9aschedule_team {
        font-size: 12px;
    }

    .zc2e9aschedule_vs {
        font-size: 11px;
    }

    .zc2e9aschedule_type {
        padding: 4px 10px;
        font-size: 11px;
    }

    /* 新闻资讯优化 */
    .zc2e9anews_layout {
        gap: 12px;
    }

    .zc2e9anews_image {
        height: 160px;
    }

    .zc2e9anews_content {
        padding: 15px;
    }

    .zc2e9anews_title {
        font-size: 16px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .zc2e9anews_excerpt {
        font-size: 12px;
        margin-bottom: 12px;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .zc2e9anews_meta {
        font-size: 11px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .zc2e9anews_category {
        padding: 2px 8px;
        font-size: 10px;
    }

    .zc2e9anews_item {
        padding: 10px;
        border-radius: 6px;
    }

    .zc2e9anews_item_title {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .zc2e9anews_item_excerpt {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .zc2e9anews_tag {
        font-size: 11px;
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }

    /* 底部优化 */
    .zc2e9afooter {
        padding: 30px 0 15px;
    }

    .zc2e9afooter_content {
        gap: 20px;
    }

    .zc2e9afooter_title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .zc2e9afooter_text {
        font-size: 13px;
        line-height: 1.7;
    }

    .zc2e9afooter_list li {
        font-size: 13px;
        margin-bottom: 8px;
        padding: 4px 0;
    }

    .zc2e9acopyright {
        font-size: 12px;
        padding-top: 15px;
    }

    /* 触摸优化 */
    a, button {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        touch-action: manipulation;
    }

    /* 防止文本选择（移动端） */
    .zc2e9alive_card,
    .zc2e9abasketball_card,
    .zc2e9amatch_item,
    .zc2e9anews_item {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}
