/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    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;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* 锚点定位偏移（考虑固定头部导航栏） */
section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 768px) {
    section[id] {
        scroll-margin-top: 60px;
    }
}

/* 容器 */
.z9785dcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z9785dheader {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.z9785dheader .z9785dcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z9785dlogo {
    display: flex;
    flex-direction: column;
}

.z9785dlogo_text {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.z9785dlogo_subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.z9785dnav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.z9785dnav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.z9785dnav_link:hover,
.z9785dnav_link.z9785dactive {
    background-color: rgba(255,255,255,0.2);
}


.z9785dmenu_checkbox {
    display: none;
}

.z9785dmobile_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.z9785dmenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.z9785dmenu_icon::before,
.z9785dmenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.z9785dmenu_icon::before {
    top: -10px;
}

.z9785dmenu_icon::after {
    top: 10px;
}

/* 轮播横幅 */
.z9785dbanner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.z9785dbanner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z9785dbanner_content {
    text-align: left;
    z-index: 2;
    position: relative;
}

.z9785dbanner_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z9785dbanner_desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.z9785dbanner_btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z9785dbanner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.z9785dbanner_img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
    display: block;
}

/* 图片响应式优化 */
img {
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.z9785dbtn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.z9785dbtn_primary {
    background-color: #ff6b6b;
    color: #fff;
}

.z9785dbtn_primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.z9785dbtn_secondary {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.z9785dbtn_secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

/* 主要内容区域 */
.z9785dmain {
    padding: 40px 0;
}

.z9785dsection {
    margin-bottom: 40px;
}

.z9785dsection:last-of-type {
    margin-bottom: 30px;
}

.z9785dsection_header {
    text-align: center;
    margin-bottom: 40px;
}

.z9785dsection_title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.z9785dsection_subtitle {
    color: #666;
    font-size: 16px;
}

/* 今日热门茶席 - 框架布局 */
.z9785dhot_matches {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 0;
    border-radius: 15px;
}

.z9785dhot_matches_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z9785dhot_matches_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 焦点茶席大卡片 */
.z9785dfeatured_match {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.z9785dfeatured_match::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.z9785dfeatured_match_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z9785dfeatured_match_league {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z9785dleague_badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.z9785dbadge_premier {
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.z9785dbadge_laliga {
    background-color: rgba(255, 200, 0, 0.9);
    color: #1e3c72;
}

.z9785dbadge_nba {
    background-color: rgba(255, 80, 0, 0.9);
    color: #fff;
}

.z9785dbadge_cba {
    background-color: rgba(0, 150, 255, 0.9);
    color: #fff;
}

.z9785dbadge_bundesliga {
    background-color: rgba(220, 20, 60, 0.9);
    color: #fff;
}

.z9785dmatch_round {
    font-size: 13px;
    opacity: 0.9;
}

.z9785dfeatured_match_status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.z9785dstatus_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.z9785dstatus_live_dot {
    background-color: #ff6b6b;
    animation: pulse 2s infinite;
}

.z9785dviewers {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.z9785dfeatured_match_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z9785dfeatured_team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z9785dfeatured_team_home {
    justify-content: flex-start;
}

.z9785dfeatured_team_away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.z9785dteam_logo_placeholder {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.z9785dteam_info {
    flex: 1;
}

.z9785dteam_name_large {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z9785dteam_stats {
    font-size: 12px;
    opacity: 0.9;
}

.z9785dscore_large {
    font-size: 36px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z9785dfeatured_vs {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.z9785dmatch_minute {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z9785dmatch_events {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.z9785dfeatured_match_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.z9785dbtn_featured {
    background-color: #fff;
    color: #667eea;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.z9785dbtn_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.z9785dmatch_highlights {
    display: flex;
    gap: 10px;
}

.z9785dhighlight_item {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* 紧凑茶席列表 */
.z9785dcompact_matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z9785dcompact_match {
    background: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.z9785dcompact_match:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.z9785dcompact_live {
    border-left-color: #ff6b6b;
}

.z9785dcompact_upcoming {
    border-left-color: #4ecdc4;
}

.z9785dcompact_match_left {
    flex: 1;
}

.z9785dcompact_league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.z9785dcompact_time {
    font-size: 12px;
    color: #999;
}

.z9785dcompact_teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.z9785dcompact_team {
    font-weight: bold;
    color: #333;
}

.z9785dcompact_score {
    font-weight: bold;
    color: #1e3c72;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
}

.z9785dcompact_separator {
    color: #999;
    font-size: 12px;
}

.z9785dcompact_info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.z9785dcompact_viewers {
    color: #ff6b6b;
    font-weight: 500;
}

.z9785dcompact_remind {
    color: #4ecdc4;
    font-weight: 500;
}

.z9785dcompact_events {
    color: #999;
}

.z9785dcompact_importance {
    color: #ffa500;
    font-weight: 500;
}

.z9785dcompact_match_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.z9785dstatus_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z9785dstatus_live_badge {
    background-color: #ff6b6b;
    color: #fff;
    animation: pulse 2s infinite;
}

.z9785dstatus_upcoming_badge {
    background-color: #4ecdc4;
    color: #fff;
}

.z9785dcompact_btn {
    padding: 6px 18px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.z9785dcompact_btn:hover {
    background-color: #2a5298;
    transform: scale(1.05);
}

/* 右侧信息栏 */
.z9785dhot_matches_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z9785dsidebar_stats,
.z9785dsidebar_trending,
.z9785dsidebar_upcoming {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z9785dsidebar_stats_title,
.z9785dsidebar_trending_title,
.z9785dsidebar_upcoming_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z9785dstats_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.z9785dstats_item:last-child {
    border-bottom: none;
}

.z9785dstats_label {
    font-size: 14px;
    color: #666;
}

.z9785dstats_value {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
}

.z9785dtrending_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z9785dtrending_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z9785dtrending_item:hover {
    background-color: #f0f0f0;
}

.z9785dtrending_rank {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.z9785dtrending_content {
    flex: 1;
}

.z9785dtrending_match {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z9785dtrending_meta {
    font-size: 12px;
    color: #999;
}

.z9785dupcoming_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z9785dupcoming_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z9785dupcoming_item:hover {
    background-color: #f0f0f0;
}

.z9785dupcoming_time {
    min-width: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.z9785dupcoming_match {
    flex: 1;
}

.z9785dupcoming_teams {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z9785dupcoming_league {
    font-size: 12px;
    color: #999;
}

/* 内容网格布局 */
.z9785dcontent_grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.z9785dcontent_main {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 品类标签 */
.z9785dleague_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.z9785dtab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.z9785dtab:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.z9785dtab.z9785dtab_active {
    background-color: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

/* 茶席列表 */
.z9785dmatch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z9785dmatch_item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z9785dmatch_item:hover {
    background-color: #f0f0f0;
}

.z9785dmatch_time_small {
    min-width: 60px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.z9785dmatch_details {
    flex: 1;
    margin-left: 15px;
}

.z9785dmatch_league_small {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.z9785dmatch_teams_small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.z9785dteam_small {
    font-weight: bold;
}

.z9785dscore_small {
    color: #1e3c72;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z9785dmatch_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z9785dlive_badge {
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z9785dupcoming_badge {
    padding: 5px 10px;
    background-color: #4ecdc4;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z9785dwatch_btn {
    padding: 8px 20px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.z9785dwatch_btn:hover {
    background-color: #2a5298;
}

/* 侧边栏 */
.z9785dsidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z9785dsidebar_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z9785dsidebar_title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.z9785dtable_wrapper {
    overflow-x: auto;
}

.z9785dtable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.z9785dtable thead {
    background-color: #f5f5f5;
}

.z9785dtable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.z9785dtable td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z9785dtable tbody tr:hover {
    background-color: #f9f9f9;
}

/* 平台特色 - 框架布局 */
.z9785dfeatures {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 0;
    border-radius: 15px;
    margin-bottom: 0;
}

.z9785dfeatures_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z9785dfeatures_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 核心特色大卡片 */
.z9785dfeature_hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.z9785dfeature_hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.z9785dfeature_hero_content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.z9785dfeature_hero_icon {
    flex-shrink: 0;
}

.z9785dhero_icon_bg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.z9785dicon_hd_bg {
    background: rgba(255,255,255,0.25);
}

.z9785dfeature_hero_text {
    flex: 1;
}

.z9785dfeature_hero_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.z9785dfeature_hero_desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z9785dfeature_hero_stats {
    display: flex;
    gap: 30px;
}

.z9785dhero_stat_item {
    text-align: center;
}

.z9785dhero_stat_value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z9785dhero_stat_label {
    font-size: 13px;
    opacity: 0.9;
}

/* 紧凑特色功能网格 */
.z9785dfeatures_grid_compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z9785dfeature_card_compact {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.z9785dfeature_card_compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.z9785dfeature_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.z9785dfeature_icon_compact {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.z9785dicon_text {
    font-size: 14px;
}

.z9785dicon_realtime_bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z9785dicon_multi_bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z9785dicon_mobile_bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z9785dicon_speed_bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.z9785dicon_interactive_bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.z9785dicon_free_bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.z9785dfeature_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z9785dbadge_hot {
    background-color: #ff6b6b;
    color: #fff;
}

.z9785dbadge_new {
    background-color: #4ecdc4;
    color: #fff;
}

.z9785dfeature_title_compact {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 8px;
}

.z9785dfeature_desc_compact {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.z9785dfeature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.z9785dfeature_tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
}

/* 右侧信息栏 */
.z9785dfeatures_sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z9785dfeatures_stats,
.z9785dfeatures_advantages {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z9785dfeatures_stats_title,
.z9785dfeatures_advantages_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z9785dfeatures_stats_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z9785dfeatures_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z9785dfeatures_stat_item:hover {
    background-color: #f0f0f0;
}

.z9785dfeatures_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.z9785dstat_icon_users {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.z9785dstat_icon_matches {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z9785dstat_icon_quality {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z9785dstat_icon_uptime {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z9785dfeatures_stat_content {
    flex: 1;
}

.z9785dfeatures_stat_value {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 4px;
}

.z9785dfeatures_stat_label {
    font-size: 12px;
    color: #999;
}

/* 核心优势列表 */
.z9785dadvantages_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z9785dadvantage_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z9785dadvantage_item:hover {
    background-color: #f0f0f0;
}

.z9785dadvantage_check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.z9785dadvantage_text {
    flex: 1;
}

.z9785dadvantage_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z9785dadvantage_desc {
    font-size: 12px;
    color: #999;
}


/* 页脚 */
.z9785dfooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.z9785dfooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z9785dfooter_section {
    display: flex;
    flex-direction: column;
}

.z9785dfooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z9785dfooter_text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.z9785dfooter_list {
    list-style: none;
}

.z9785dfooter_list li {
    margin-bottom: 10px;
}

.z9785dfooter_link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z9785dfooter_link:hover {
    color: #fff;
}

.z9785dfooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z9785dcopyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式设计 */
/* 中等屏幕（平板横屏） */
@media (max-width: 1024px) {
    .z9785dcontainer {
        padding: 0 20px;
    }

    .z9785dbanner_wrapper {
        gap: 30px;
    }

    .z9785dbanner_title {
        font-size: 36px;
    }

    .z9785dhot_matches_wrapper {
        gap: 20px;
    }

    .z9785dfeatures_wrapper {
        gap: 20px;
    }

    .z9785dfeatures_grid_compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板竖屏和小屏幕 */
@media (max-width: 768px) {
    .z9785dheader .z9785dcontainer {
        flex-wrap: wrap;
        position: relative;
    }

    .z9785dmobile_menu {
        display: block;
        order: 2;
    }

    .z9785dnav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        z-index: 1000;
    }

    .z9785dmenu_checkbox:checked ~ .z9785dnav {
        display: block;
    }

    .z9785dmenu_checkbox:checked ~ .z9785dmobile_menu .z9785dmenu_icon {
        background-color: transparent;
    }

    .z9785dmenu_checkbox:checked ~ .z9785dmobile_menu .z9785dmenu_icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .z9785dmenu_checkbox:checked ~ .z9785dmobile_menu .z9785dmenu_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .z9785dnav_list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .z9785dnav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z9785dnav_item:last-child {
        border-bottom: none;
    }

    .z9785dnav_link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .z9785dnav_link:hover,
    .z9785dnav_link.z9785dactive {
        background-color: rgba(255,255,255,0.15);
    }

    .z9785dbanner_title {
        font-size: 28px;
    }

    .z9785dbanner_desc {
        font-size: 16px;
    }

    .z9785dbanner {
        padding: 40px 0;
        min-height: auto;
    }

    .z9785dbanner_wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z9785dbanner_content {
        text-align: center;
        order: 2;
    }

    .z9785dbanner_btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .z9785dbanner_image {
        order: 1;
        max-width: 100%;
    }

    .z9785dbanner_img {
        max-width: 85%;
        height: auto;
    }

    .z9785dsection_title {
        font-size: 24px;
    }

    .z9785dmatch_grid {
        grid-template-columns: 1fr;
    }

    /* 今日热门茶席响应式 */
    .z9785dhot_matches_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z9785dfeatured_match {
        padding: 20px;
    }

    .z9785dfeatured_match_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .z9785dteam_name_large {
        font-size: 18px;
    }

    .z9785dscore_large {
        font-size: 28px;
    }

    .z9785dfeatured_match_footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .z9785dmatch_highlights {
        justify-content: center;
    }

    .z9785dcompact_match {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }

    .z9785dcompact_match_left {
        width: 100%;
    }

    .z9785dcompact_match_right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z9785dcontent_grid {
        grid-template-columns: 1fr;
    }

    .z9785dleague_tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .z9785dleague_tabs::-webkit-scrollbar {
        height: 4px;
    }

    .z9785dleague_tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .z9785dtab {
        white-space: nowrap;
        min-width: fit-content;
    }

    .z9785dmatch_item {
        flex-wrap: wrap;
        padding: 12px;
    }

    .z9785dmatch_time_small {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }

    .z9785dmatch_details {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }

    .z9785dmatch_action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z9785dwatch_btn {
        min-width: 80px;
        text-align: center;
    }

    .z9785dfeatures_grid {
        grid-template-columns: 1fr;
    }

    /* 平台特色响应式 */
    .z9785dfeatures_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z9785dfeature_hero {
        padding: 20px;
    }

    .z9785dfeature_hero_content {
        flex-direction: column;
        text-align: center;
    }

    .z9785dfeature_hero_stats {
        justify-content: center;
    }

    .z9785dfeatures_grid_compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z9785dfeature_card_compact {
        padding: 18px;
    }

    .z9785dfooter_content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z9785dfooter {
        margin-top: 20px;
        padding: 40px 0 15px;
    }

    /* 表格响应式优化 */
    .z9785dtable_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z9785dtable {
        min-width: 300px;
        font-size: 13px;
    }

    .z9785dtable th,
    .z9785dtable td {
        padding: 8px 6px;
    }

    /* 侧边栏优化 */
    .z9785dsidebar {
        margin-top: 0;
    }

    .z9785dhot_matches_sidebar,
    .z9785dfeatures_sidebar {
        margin-top: 0;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .z9785dcontainer {
        padding: 0 12px;
    }

    .z9785dheader {
        padding: 12px 0;
    }

    .z9785dlogo_text {
        font-size: 18px;
    }

    .z9785dlogo_subtitle {
        font-size: 11px;
    }

    .z9785dmobile_menu {
        padding: 5px;
    }

    .z9785dmenu_icon,
    .z9785dmenu_icon::before,
    .z9785dmenu_icon::after {
        width: 25px;
    }

    .z9785dnav {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z9785dbanner {
        padding: 30px 0;
        min-height: auto;
    }

    .z9785dbanner_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .z9785dbanner_desc {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .z9785dbanner_wrapper {
        gap: 20px;
    }

    .z9785dbanner_img {
        max-width: 90%;
    }

    .z9785dbanner_btns {
        flex-direction: column;
        width: 100%;
    }

    .z9785dbtn {
        width: 100%;
        text-align: center;
    }

    .z9785dbtn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .z9785dsection_title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .z9785dsection_subtitle {
        font-size: 13px;
    }

    .z9785dsection_header {
        margin-bottom: 25px;
    }

    .z9785dmatch_card {
        padding: 15px;
    }

    .z9785dcontent_main {
        padding: 15px;
    }

    .z9785dfeature_card {
        padding: 20px;
    }

    .z9785dmain {
        padding: 30px 0;
    }

    .z9785dsection {
        margin-bottom: 30px;
    }

    .z9785dsection:last-of-type {
        margin-bottom: 20px;
    }

    /* 平台特色小屏幕响应式 */
    .z9785dfeature_hero {
        padding: 15px;
    }

    .z9785dfeature_hero_title {
        font-size: 22px;
    }

    .z9785dfeature_hero_desc {
        font-size: 14px;
    }

    .z9785dhero_icon_bg {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .z9785dfeature_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .z9785dhero_stat_value {
        font-size: 20px;
    }

    .z9785dfeature_card_compact {
        padding: 15px;
    }

    /* 今日热门茶席小屏幕响应式 */
    .z9785dfeatured_match {
        padding: 15px;
    }

    .z9785dteam_name_large {
        font-size: 16px;
    }

    .z9785dscore_large {
        font-size: 24px;
        min-width: 40px;
    }

    .z9785dteam_logo_placeholder {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .z9785dteam_stats {
        font-size: 11px;
    }

    .z9785dcompact_match {
        padding: 12px;
    }

    .z9785dcompact_teams {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .z9785dcompact_score {
        font-size: 13px;
    }

    .z9785dcompact_info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .z9785dsidebar_stats,
    .z9785dsidebar_trending,
    .z9785dsidebar_upcoming {
        padding: 15px;
    }

    .z9785dfeatures_stats_list,
    .z9785dadvantages_list {
        gap: 10px;
    }

    .z9785dfeatures_stat_item,
    .z9785dadvantage_item {
        padding: 10px;
    }

    /* 触摸优化 */
    .z9785dbtn,
    .z9785dtab,
    .z9785dwatch_btn,
    .z9785dcompact_btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* 文字可读性优化 */
    .z9785dfeature_desc_compact,
    .z9785dcompact_time {
        font-size: 12px;
    }

    /* 间距优化 */
    .z9785dhot_matches_wrapper,
    .z9785dfeatures_wrapper {
        gap: 15px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .z9785dcontainer {
        padding: 0 10px;
    }

    .z9785dbanner_title {
        font-size: 20px;
    }

    .z9785dbanner_desc {
        font-size: 12px;
    }

    .z9785dsection_title {
        font-size: 16px;
    }

    .z9785dbtn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .z9785dheader,
    .z9785dfooter,
    .z9785dbanner,
    .z9785dmatch_link,
    .z9785dwatch_btn {
        display: none;
    }

    .z9785dmain {
        padding: 0;
    }
}
