/* 全局样式重置 */
* {
    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;
    }
}

/* 容器 */
.z60dbecontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z60dbeheader {
    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;
}

.z60dbeheader .z60dbecontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z60dbelogo {
    display: flex;
    flex-direction: column;
}

.z60dbelogo_text {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.z60dbelogo_subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.z60dbenav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.z60dbenav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.z60dbenav_link:hover,
.z60dbenav_link.z60dbeactive {
    background-color: rgba(255,255,255,0.2);
}


.z60dbemenu_checkbox {
    display: none;
}

.z60dbemobile_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.z60dbemenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.z60dbemenu_icon::before,
.z60dbemenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.z60dbemenu_icon::before {
    top: -10px;
}

.z60dbemenu_icon::after {
    top: 10px;
}

/* 轮播横幅 */
.z60dbebanner {
    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;
}

.z60dbebanner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z60dbebanner_content {
    text-align: left;
    z-index: 2;
    position: relative;
}

.z60dbebanner_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z60dbebanner_desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.z60dbebanner_btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z60dbebanner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.z60dbebanner_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);
    }
}

.z60dbebtn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.z60dbebtn_primary {
    background-color: #ff6b6b;
    color: #fff;
}

.z60dbebtn_primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.z60dbebtn_secondary {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.z60dbebtn_secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

/* 主要内容区域 */
.z60dbemain {
    padding: 40px 0;
}

.z60dbesection {
    margin-bottom: 40px;
}

.z60dbesection:last-of-type {
    margin-bottom: 30px;
}

.z60dbesection_header {
    text-align: center;
    margin-bottom: 40px;
}

.z60dbesection_title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.z60dbesection_subtitle {
    color: #666;
    font-size: 16px;
}

/* 今日热门茶席 - 框架布局 */
.z60dbehot_matches {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 0;
    border-radius: 15px;
}

.z60dbehot_matches_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z60dbehot_matches_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 焦点茶席大卡片 */
.z60dbefeatured_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;
}

.z60dbefeatured_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); }
}

.z60dbefeatured_match_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z60dbefeatured_match_league {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z60dbeleague_badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.z60dbebadge_premier {
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.z60dbebadge_laliga {
    background-color: rgba(255, 200, 0, 0.9);
    color: #1e3c72;
}

.z60dbebadge_nba {
    background-color: rgba(255, 80, 0, 0.9);
    color: #fff;
}

.z60dbebadge_cba {
    background-color: rgba(0, 150, 255, 0.9);
    color: #fff;
}

.z60dbebadge_bundesliga {
    background-color: rgba(220, 20, 60, 0.9);
    color: #fff;
}

.z60dbematch_round {
    font-size: 13px;
    opacity: 0.9;
}

.z60dbefeatured_match_status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.z60dbestatus_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.z60dbestatus_live_dot {
    background-color: #ff6b6b;
    animation: pulse 2s infinite;
}

.z60dbeviewers {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.z60dbefeatured_match_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z60dbefeatured_team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z60dbefeatured_team_home {
    justify-content: flex-start;
}

.z60dbefeatured_team_away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.z60dbeteam_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);
}

.z60dbeteam_info {
    flex: 1;
}

.z60dbeteam_name_large {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z60dbeteam_stats {
    font-size: 12px;
    opacity: 0.9;
}

.z60dbescore_large {
    font-size: 36px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z60dbefeatured_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);
}

.z60dbematch_minute {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z60dbematch_events {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.z60dbefeatured_match_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.z60dbebtn_featured {
    background-color: #fff;
    color: #667eea;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.z60dbebtn_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.z60dbematch_highlights {
    display: flex;
    gap: 10px;
}

.z60dbehighlight_item {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* 紧凑茶席列表 */
.z60dbecompact_matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z60dbecompact_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;
}

.z60dbecompact_match:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.z60dbecompact_live {
    border-left-color: #ff6b6b;
}

.z60dbecompact_upcoming {
    border-left-color: #4ecdc4;
}

.z60dbecompact_match_left {
    flex: 1;
}

.z60dbecompact_league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.z60dbecompact_time {
    font-size: 12px;
    color: #999;
}

.z60dbecompact_teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.z60dbecompact_team {
    font-weight: bold;
    color: #333;
}

.z60dbecompact_score {
    font-weight: bold;
    color: #1e3c72;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
}

.z60dbecompact_separator {
    color: #999;
    font-size: 12px;
}

.z60dbecompact_info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.z60dbecompact_viewers {
    color: #ff6b6b;
    font-weight: 500;
}

.z60dbecompact_remind {
    color: #4ecdc4;
    font-weight: 500;
}

.z60dbecompact_events {
    color: #999;
}

.z60dbecompact_importance {
    color: #ffa500;
    font-weight: 500;
}

.z60dbecompact_match_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.z60dbestatus_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z60dbestatus_live_badge {
    background-color: #ff6b6b;
    color: #fff;
    animation: pulse 2s infinite;
}

.z60dbestatus_upcoming_badge {
    background-color: #4ecdc4;
    color: #fff;
}

.z60dbecompact_btn {
    padding: 6px 18px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.z60dbecompact_btn:hover {
    background-color: #2a5298;
    transform: scale(1.05);
}

/* 右侧信息栏 */
.z60dbehot_matches_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z60dbesidebar_stats,
.z60dbesidebar_trending,
.z60dbesidebar_upcoming {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z60dbesidebar_stats_title,
.z60dbesidebar_trending_title,
.z60dbesidebar_upcoming_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z60dbestats_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.z60dbestats_item:last-child {
    border-bottom: none;
}

.z60dbestats_label {
    font-size: 14px;
    color: #666;
}

.z60dbestats_value {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
}

.z60dbetrending_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z60dbetrending_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z60dbetrending_item:hover {
    background-color: #f0f0f0;
}

.z60dbetrending_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;
}

.z60dbetrending_content {
    flex: 1;
}

.z60dbetrending_match {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z60dbetrending_meta {
    font-size: 12px;
    color: #999;
}

.z60dbeupcoming_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z60dbeupcoming_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z60dbeupcoming_item:hover {
    background-color: #f0f0f0;
}

.z60dbeupcoming_time {
    min-width: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.z60dbeupcoming_match {
    flex: 1;
}

.z60dbeupcoming_teams {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z60dbeupcoming_league {
    font-size: 12px;
    color: #999;
}

/* 内容网格布局 */
.z60dbecontent_grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.z60dbecontent_main {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 品类标签 */
.z60dbeleague_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.z60dbetab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.z60dbetab:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.z60dbetab.z60dbetab_active {
    background-color: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

/* 茶席列表 */
.z60dbematch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z60dbematch_item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z60dbematch_item:hover {
    background-color: #f0f0f0;
}

.z60dbematch_time_small {
    min-width: 60px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.z60dbematch_details {
    flex: 1;
    margin-left: 15px;
}

.z60dbematch_league_small {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.z60dbematch_teams_small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.z60dbeteam_small {
    font-weight: bold;
}

.z60dbescore_small {
    color: #1e3c72;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z60dbematch_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z60dbelive_badge {
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z60dbeupcoming_badge {
    padding: 5px 10px;
    background-color: #4ecdc4;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z60dbewatch_btn {
    padding: 8px 20px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.z60dbewatch_btn:hover {
    background-color: #2a5298;
}

/* 侧边栏 */
.z60dbesidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z60dbesidebar_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z60dbesidebar_title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.z60dbetable_wrapper {
    overflow-x: auto;
}

.z60dbetable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.z60dbetable thead {
    background-color: #f5f5f5;
}

.z60dbetable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.z60dbetable td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z60dbetable tbody tr:hover {
    background-color: #f9f9f9;
}

/* 平台特色 - 框架布局 */
.z60dbefeatures {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 0;
    border-radius: 15px;
    margin-bottom: 0;
}

.z60dbefeatures_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z60dbefeatures_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 核心特色大卡片 */
.z60dbefeature_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;
}

.z60dbefeature_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;
}

.z60dbefeature_hero_content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.z60dbefeature_hero_icon {
    flex-shrink: 0;
}

.z60dbehero_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);
}

.z60dbeicon_hd_bg {
    background: rgba(255,255,255,0.25);
}

.z60dbefeature_hero_text {
    flex: 1;
}

.z60dbefeature_hero_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.z60dbefeature_hero_desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z60dbefeature_hero_stats {
    display: flex;
    gap: 30px;
}

.z60dbehero_stat_item {
    text-align: center;
}

.z60dbehero_stat_value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z60dbehero_stat_label {
    font-size: 13px;
    opacity: 0.9;
}

/* 紧凑特色功能网格 */
.z60dbefeatures_grid_compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z60dbefeature_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;
}

.z60dbefeature_card_compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.z60dbefeature_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.z60dbefeature_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;
}

.z60dbeicon_text {
    font-size: 14px;
}

.z60dbeicon_realtime_bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z60dbeicon_multi_bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z60dbeicon_mobile_bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z60dbeicon_speed_bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.z60dbeicon_interactive_bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.z60dbeicon_free_bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.z60dbefeature_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z60dbebadge_hot {
    background-color: #ff6b6b;
    color: #fff;
}

.z60dbebadge_new {
    background-color: #4ecdc4;
    color: #fff;
}

.z60dbefeature_title_compact {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 8px;
}

.z60dbefeature_desc_compact {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.z60dbefeature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.z60dbefeature_tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
}

/* 右侧信息栏 */
.z60dbefeatures_sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z60dbefeatures_stats,
.z60dbefeatures_advantages {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z60dbefeatures_stats_title,
.z60dbefeatures_advantages_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z60dbefeatures_stats_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z60dbefeatures_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z60dbefeatures_stat_item:hover {
    background-color: #f0f0f0;
}

.z60dbefeatures_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.z60dbestat_icon_users {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.z60dbestat_icon_matches {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z60dbestat_icon_quality {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z60dbestat_icon_uptime {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z60dbefeatures_stat_content {
    flex: 1;
}

.z60dbefeatures_stat_value {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 4px;
}

.z60dbefeatures_stat_label {
    font-size: 12px;
    color: #999;
}

/* 核心优势列表 */
.z60dbeadvantages_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z60dbeadvantage_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z60dbeadvantage_item:hover {
    background-color: #f0f0f0;
}

.z60dbeadvantage_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;
}

.z60dbeadvantage_text {
    flex: 1;
}

.z60dbeadvantage_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z60dbeadvantage_desc {
    font-size: 12px;
    color: #999;
}


/* 页脚 */
.z60dbefooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.z60dbefooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z60dbefooter_section {
    display: flex;
    flex-direction: column;
}

.z60dbefooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z60dbefooter_text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.z60dbefooter_list {
    list-style: none;
}

.z60dbefooter_list li {
    margin-bottom: 10px;
}

.z60dbefooter_link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z60dbefooter_link:hover {
    color: #fff;
}

.z60dbefooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z60dbecopyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式设计 */
/* 中等屏幕（平板横屏） */
@media (max-width: 1024px) {
    .z60dbecontainer {
        padding: 0 20px;
    }

    .z60dbebanner_wrapper {
        gap: 30px;
    }

    .z60dbebanner_title {
        font-size: 36px;
    }

    .z60dbehot_matches_wrapper {
        gap: 20px;
    }

    .z60dbefeatures_wrapper {
        gap: 20px;
    }

    .z60dbefeatures_grid_compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板竖屏和小屏幕 */
@media (max-width: 768px) {
    .z60dbeheader .z60dbecontainer {
        flex-wrap: wrap;
        position: relative;
    }

    .z60dbemobile_menu {
        display: block;
        order: 2;
    }

    .z60dbenav {
        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;
    }

    .z60dbemenu_checkbox:checked ~ .z60dbenav {
        display: block;
    }

    .z60dbemenu_checkbox:checked ~ .z60dbemobile_menu .z60dbemenu_icon {
        background-color: transparent;
    }

    .z60dbemenu_checkbox:checked ~ .z60dbemobile_menu .z60dbemenu_icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .z60dbemenu_checkbox:checked ~ .z60dbemobile_menu .z60dbemenu_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .z60dbenav_list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .z60dbenav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z60dbenav_item:last-child {
        border-bottom: none;
    }

    .z60dbenav_link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .z60dbenav_link:hover,
    .z60dbenav_link.z60dbeactive {
        background-color: rgba(255,255,255,0.15);
    }

    .z60dbebanner_title {
        font-size: 28px;
    }

    .z60dbebanner_desc {
        font-size: 16px;
    }

    .z60dbebanner {
        padding: 40px 0;
        min-height: auto;
    }

    .z60dbebanner_wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z60dbebanner_content {
        text-align: center;
        order: 2;
    }

    .z60dbebanner_btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .z60dbebanner_image {
        order: 1;
        max-width: 100%;
    }

    .z60dbebanner_img {
        max-width: 85%;
        height: auto;
    }

    .z60dbesection_title {
        font-size: 24px;
    }

    .z60dbematch_grid {
        grid-template-columns: 1fr;
    }

    /* 今日热门茶席响应式 */
    .z60dbehot_matches_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z60dbefeatured_match {
        padding: 20px;
    }

    .z60dbefeatured_match_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .z60dbeteam_name_large {
        font-size: 18px;
    }

    .z60dbescore_large {
        font-size: 28px;
    }

    .z60dbefeatured_match_footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .z60dbematch_highlights {
        justify-content: center;
    }

    .z60dbecompact_match {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }

    .z60dbecompact_match_left {
        width: 100%;
    }

    .z60dbecompact_match_right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z60dbecontent_grid {
        grid-template-columns: 1fr;
    }

    .z60dbeleague_tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .z60dbeleague_tabs::-webkit-scrollbar {
        height: 4px;
    }

    .z60dbeleague_tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .z60dbetab {
        white-space: nowrap;
        min-width: fit-content;
    }

    .z60dbematch_item {
        flex-wrap: wrap;
        padding: 12px;
    }

    .z60dbematch_time_small {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }

    .z60dbematch_details {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }

    .z60dbematch_action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z60dbewatch_btn {
        min-width: 80px;
        text-align: center;
    }

    .z60dbefeatures_grid {
        grid-template-columns: 1fr;
    }

    /* 平台特色响应式 */
    .z60dbefeatures_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z60dbefeature_hero {
        padding: 20px;
    }

    .z60dbefeature_hero_content {
        flex-direction: column;
        text-align: center;
    }

    .z60dbefeature_hero_stats {
        justify-content: center;
    }

    .z60dbefeatures_grid_compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z60dbefeature_card_compact {
        padding: 18px;
    }

    .z60dbefooter_content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z60dbefooter {
        margin-top: 20px;
        padding: 40px 0 15px;
    }

    /* 表格响应式优化 */
    .z60dbetable_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z60dbetable {
        min-width: 300px;
        font-size: 13px;
    }

    .z60dbetable th,
    .z60dbetable td {
        padding: 8px 6px;
    }

    /* 侧边栏优化 */
    .z60dbesidebar {
        margin-top: 0;
    }

    .z60dbehot_matches_sidebar,
    .z60dbefeatures_sidebar {
        margin-top: 0;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .z60dbecontainer {
        padding: 0 12px;
    }

    .z60dbeheader {
        padding: 12px 0;
    }

    .z60dbelogo_text {
        font-size: 18px;
    }

    .z60dbelogo_subtitle {
        font-size: 11px;
    }

    .z60dbemobile_menu {
        padding: 5px;
    }

    .z60dbemenu_icon,
    .z60dbemenu_icon::before,
    .z60dbemenu_icon::after {
        width: 25px;
    }

    .z60dbenav {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z60dbebanner {
        padding: 30px 0;
        min-height: auto;
    }

    .z60dbebanner_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .z60dbebanner_desc {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .z60dbebanner_wrapper {
        gap: 20px;
    }

    .z60dbebanner_img {
        max-width: 90%;
    }

    .z60dbebanner_btns {
        flex-direction: column;
        width: 100%;
    }

    .z60dbebtn {
        width: 100%;
        text-align: center;
    }

    .z60dbebtn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .z60dbesection_title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .z60dbesection_subtitle {
        font-size: 13px;
    }

    .z60dbesection_header {
        margin-bottom: 25px;
    }

    .z60dbematch_card {
        padding: 15px;
    }

    .z60dbecontent_main {
        padding: 15px;
    }

    .z60dbefeature_card {
        padding: 20px;
    }

    .z60dbemain {
        padding: 30px 0;
    }

    .z60dbesection {
        margin-bottom: 30px;
    }

    .z60dbesection:last-of-type {
        margin-bottom: 20px;
    }

    /* 平台特色小屏幕响应式 */
    .z60dbefeature_hero {
        padding: 15px;
    }

    .z60dbefeature_hero_title {
        font-size: 22px;
    }

    .z60dbefeature_hero_desc {
        font-size: 14px;
    }

    .z60dbehero_icon_bg {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .z60dbefeature_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .z60dbehero_stat_value {
        font-size: 20px;
    }

    .z60dbefeature_card_compact {
        padding: 15px;
    }

    /* 今日热门茶席小屏幕响应式 */
    .z60dbefeatured_match {
        padding: 15px;
    }

    .z60dbeteam_name_large {
        font-size: 16px;
    }

    .z60dbescore_large {
        font-size: 24px;
        min-width: 40px;
    }

    .z60dbeteam_logo_placeholder {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .z60dbeteam_stats {
        font-size: 11px;
    }

    .z60dbecompact_match {
        padding: 12px;
    }

    .z60dbecompact_teams {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .z60dbecompact_score {
        font-size: 13px;
    }

    .z60dbecompact_info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .z60dbesidebar_stats,
    .z60dbesidebar_trending,
    .z60dbesidebar_upcoming {
        padding: 15px;
    }

    .z60dbefeatures_stats_list,
    .z60dbeadvantages_list {
        gap: 10px;
    }

    .z60dbefeatures_stat_item,
    .z60dbeadvantage_item {
        padding: 10px;
    }

    /* 触摸优化 */
    .z60dbebtn,
    .z60dbetab,
    .z60dbewatch_btn,
    .z60dbecompact_btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* 文字可读性优化 */
    .z60dbefeature_desc_compact,
    .z60dbecompact_time {
        font-size: 12px;
    }

    /* 间距优化 */
    .z60dbehot_matches_wrapper,
    .z60dbefeatures_wrapper {
        gap: 15px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .z60dbecontainer {
        padding: 0 10px;
    }

    .z60dbebanner_title {
        font-size: 20px;
    }

    .z60dbebanner_desc {
        font-size: 12px;
    }

    .z60dbesection_title {
        font-size: 16px;
    }

    .z60dbebtn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .z60dbeheader,
    .z60dbefooter,
    .z60dbebanner,
    .z60dbematch_link,
    .z60dbewatch_btn {
        display: none;
    }

    .z60dbemain {
        padding: 0;
    }
}
