/* 全局样式重置 */
* {
    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;
    }
}

/* 容器 */
.z1033econtainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 */
.z1033eheader {
    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;
}

.z1033eheader .z1033econtainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z1033elogo {
    display: flex;
    flex-direction: column;
}

.z1033elogo_text {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.z1033elogo_subtitle {
    font-size: 12px;
    opacity: 0.9;
    margin: 0;
}

.z1033enav_list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.z1033enav_link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.z1033enav_link:hover,
.z1033enav_link.z1033eactive {
    background-color: rgba(255,255,255,0.2);
}


.z1033emenu_checkbox {
    display: none;
}

.z1033emobile_menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.z1033emenu_icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: background-color 0.3s;
}

.z1033emenu_icon::before,
.z1033emenu_icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    left: 0;
    transition: transform 0.3s, top 0.3s;
}

.z1033emenu_icon::before {
    top: -10px;
}

.z1033emenu_icon::after {
    top: 10px;
}

/* 轮播横幅 */
.z1033ebanner {
    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;
}

.z1033ebanner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.z1033ebanner_content {
    text-align: left;
    z-index: 2;
    position: relative;
}

.z1033ebanner_title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.z1033ebanner_desc {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.z1033ebanner_btns {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.z1033ebanner_image {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.z1033ebanner_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);
    }
}

.z1033ebtn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.z1033ebtn_primary {
    background-color: #ff6b6b;
    color: #fff;
}

.z1033ebtn_primary:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.z1033ebtn_secondary {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.z1033ebtn_secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

/* 主要内容区域 */
.z1033emain {
    padding: 40px 0;
}

.z1033esection {
    margin-bottom: 40px;
}

.z1033esection:last-of-type {
    margin-bottom: 30px;
}

.z1033esection_header {
    text-align: center;
    margin-bottom: 40px;
}

.z1033esection_title {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

.z1033esection_subtitle {
    color: #666;
    font-size: 16px;
}

/* 今日热门茶席 - 框架布局 */
.z1033ehot_matches {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 30px 0;
    border-radius: 15px;
}

.z1033ehot_matches_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z1033ehot_matches_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 焦点茶席大卡片 */
.z1033efeatured_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;
}

.z1033efeatured_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); }
}

.z1033efeatured_match_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z1033efeatured_match_league {
    display: flex;
    align-items: center;
    gap: 10px;
}

.z1033eleague_badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.z1033ebadge_premier {
    background-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}

.z1033ebadge_laliga {
    background-color: rgba(255, 200, 0, 0.9);
    color: #1e3c72;
}

.z1033ebadge_nba {
    background-color: rgba(255, 80, 0, 0.9);
    color: #fff;
}

.z1033ebadge_cba {
    background-color: rgba(0, 150, 255, 0.9);
    color: #fff;
}

.z1033ebadge_bundesliga {
    background-color: rgba(220, 20, 60, 0.9);
    color: #fff;
}

.z1033ematch_round {
    font-size: 13px;
    opacity: 0.9;
}

.z1033efeatured_match_status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.z1033estatus_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.z1033estatus_live_dot {
    background-color: #ff6b6b;
    animation: pulse 2s infinite;
}

.z1033eviewers {
    background-color: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.z1033efeatured_match_body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.z1033efeatured_team {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z1033efeatured_team_home {
    justify-content: flex-start;
}

.z1033efeatured_team_away {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.z1033eteam_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);
}

.z1033eteam_info {
    flex: 1;
}

.z1033eteam_name_large {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z1033eteam_stats {
    font-size: 12px;
    opacity: 0.9;
}

.z1033escore_large {
    font-size: 36px;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z1033efeatured_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);
}

.z1033ematch_minute {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.z1033ematch_events {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
}

.z1033efeatured_match_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.z1033ebtn_featured {
    background-color: #fff;
    color: #667eea;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s;
}

.z1033ebtn_featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.z1033ematch_highlights {
    display: flex;
    gap: 10px;
}

.z1033ehighlight_item {
    background-color: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    backdrop-filter: blur(10px);
}

/* 紧凑茶席列表 */
.z1033ecompact_matches {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z1033ecompact_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;
}

.z1033ecompact_match:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.z1033ecompact_live {
    border-left-color: #ff6b6b;
}

.z1033ecompact_upcoming {
    border-left-color: #4ecdc4;
}

.z1033ecompact_match_left {
    flex: 1;
}

.z1033ecompact_league {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.z1033ecompact_time {
    font-size: 12px;
    color: #999;
}

.z1033ecompact_teams {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 15px;
}

.z1033ecompact_team {
    font-weight: bold;
    color: #333;
}

.z1033ecompact_score {
    font-weight: bold;
    color: #1e3c72;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
}

.z1033ecompact_separator {
    color: #999;
    font-size: 12px;
}

.z1033ecompact_info {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.z1033ecompact_viewers {
    color: #ff6b6b;
    font-weight: 500;
}

.z1033ecompact_remind {
    color: #4ecdc4;
    font-weight: 500;
}

.z1033ecompact_events {
    color: #999;
}

.z1033ecompact_importance {
    color: #ffa500;
    font-weight: 500;
}

.z1033ecompact_match_right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.z1033estatus_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z1033estatus_live_badge {
    background-color: #ff6b6b;
    color: #fff;
    animation: pulse 2s infinite;
}

.z1033estatus_upcoming_badge {
    background-color: #4ecdc4;
    color: #fff;
}

.z1033ecompact_btn {
    padding: 6px 18px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 15px;
    font-size: 13px;
    transition: all 0.3s;
}

.z1033ecompact_btn:hover {
    background-color: #2a5298;
    transform: scale(1.05);
}

/* 右侧信息栏 */
.z1033ehot_matches_sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.z1033esidebar_stats,
.z1033esidebar_trending,
.z1033esidebar_upcoming {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z1033esidebar_stats_title,
.z1033esidebar_trending_title,
.z1033esidebar_upcoming_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z1033estats_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.z1033estats_item:last-child {
    border-bottom: none;
}

.z1033estats_label {
    font-size: 14px;
    color: #666;
}

.z1033estats_value {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
}

.z1033etrending_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z1033etrending_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z1033etrending_item:hover {
    background-color: #f0f0f0;
}

.z1033etrending_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;
}

.z1033etrending_content {
    flex: 1;
}

.z1033etrending_match {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z1033etrending_meta {
    font-size: 12px;
    color: #999;
}

.z1033eupcoming_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z1033eupcoming_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z1033eupcoming_item:hover {
    background-color: #f0f0f0;
}

.z1033eupcoming_time {
    min-width: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #1e3c72;
    text-align: center;
}

.z1033eupcoming_match {
    flex: 1;
}

.z1033eupcoming_teams {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z1033eupcoming_league {
    font-size: 12px;
    color: #999;
}

/* 内容网格布局 */
.z1033econtent_grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.z1033econtent_main {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* 品类标签 */
.z1033eleague_tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.z1033etab {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.z1033etab:hover {
    border-color: #1e3c72;
    color: #1e3c72;
}

.z1033etab.z1033etab_active {
    background-color: #1e3c72;
    color: #fff;
    border-color: #1e3c72;
}

/* 茶席列表 */
.z1033ematch_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z1033ematch_item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.z1033ematch_item:hover {
    background-color: #f0f0f0;
}

.z1033ematch_time_small {
    min-width: 60px;
    font-size: 14px;
    color: #666;
    font-weight: bold;
}

.z1033ematch_details {
    flex: 1;
    margin-left: 15px;
}

.z1033ematch_league_small {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.z1033ematch_teams_small {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.z1033eteam_small {
    font-weight: bold;
}

.z1033escore_small {
    color: #1e3c72;
    font-weight: bold;
    min-width: 50px;
    text-align: center;
}

.z1033ematch_action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.z1033elive_badge {
    padding: 5px 10px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z1033eupcoming_badge {
    padding: 5px 10px;
    background-color: #4ecdc4;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.z1033ewatch_btn {
    padding: 8px 20px;
    background-color: #1e3c72;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.z1033ewatch_btn:hover {
    background-color: #2a5298;
}

/* 侧边栏 */
.z1033esidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.z1033esidebar_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.z1033esidebar_title {
    font-size: 18px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.z1033etable_wrapper {
    overflow-x: auto;
}

.z1033etable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.z1033etable thead {
    background-color: #f5f5f5;
}

.z1033etable th {
    padding: 10px;
    text-align: left;
    font-weight: bold;
    color: #333;
}

.z1033etable td {
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.z1033etable tbody tr:hover {
    background-color: #f9f9f9;
}

/* 平台特色 - 框架布局 */
.z1033efeatures {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 0;
    border-radius: 15px;
    margin-bottom: 0;
}

.z1033efeatures_wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: start;
}

/* 左侧主要区域 */
.z1033efeatures_main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 核心特色大卡片 */
.z1033efeature_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;
}

.z1033efeature_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;
}

.z1033efeature_hero_content {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.z1033efeature_hero_icon {
    flex-shrink: 0;
}

.z1033ehero_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);
}

.z1033eicon_hd_bg {
    background: rgba(255,255,255,0.25);
}

.z1033efeature_hero_text {
    flex: 1;
}

.z1033efeature_hero_title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}

.z1033efeature_hero_desc {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 20px;
    line-height: 1.6;
}

.z1033efeature_hero_stats {
    display: flex;
    gap: 30px;
}

.z1033ehero_stat_item {
    text-align: center;
}

.z1033ehero_stat_value {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.z1033ehero_stat_label {
    font-size: 13px;
    opacity: 0.9;
}

/* 紧凑特色功能网格 */
.z1033efeatures_grid_compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.z1033efeature_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;
}

.z1033efeature_card_compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
    border-left-color: #667eea;
}

.z1033efeature_card_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.z1033efeature_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;
}

.z1033eicon_text {
    font-size: 14px;
}

.z1033eicon_realtime_bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z1033eicon_multi_bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z1033eicon_mobile_bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z1033eicon_speed_bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.z1033eicon_interactive_bg {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.z1033eicon_free_bg {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #333;
}

.z1033efeature_badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

.z1033ebadge_hot {
    background-color: #ff6b6b;
    color: #fff;
}

.z1033ebadge_new {
    background-color: #4ecdc4;
    color: #fff;
}

.z1033efeature_title_compact {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 8px;
}

.z1033efeature_desc_compact {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.z1033efeature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.z1033efeature_tag {
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 12px;
    font-size: 11px;
    color: #666;
}

/* 右侧信息栏 */
.z1033efeatures_sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z1033efeatures_stats,
.z1033efeatures_advantages {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.z1033efeatures_stats_title,
.z1033efeatures_advantages_title {
    font-size: 16px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.z1033efeatures_stats_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.z1033efeatures_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z1033efeatures_stat_item:hover {
    background-color: #f0f0f0;
}

.z1033efeatures_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.z1033estat_icon_users {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.z1033estat_icon_matches {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.z1033estat_icon_quality {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.z1033estat_icon_uptime {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.z1033efeatures_stat_content {
    flex: 1;
}

.z1033efeatures_stat_value {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 4px;
}

.z1033efeatures_stat_label {
    font-size: 12px;
    color: #999;
}

/* 核心优势列表 */
.z1033eadvantages_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.z1033eadvantage_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.z1033eadvantage_item:hover {
    background-color: #f0f0f0;
}

.z1033eadvantage_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;
}

.z1033eadvantage_text {
    flex: 1;
}

.z1033eadvantage_title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.z1033eadvantage_desc {
    font-size: 12px;
    color: #999;
}


/* 页脚 */
.z1033efooter {
    background-color: #1e3c72;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 30px;
}

.z1033efooter_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.z1033efooter_section {
    display: flex;
    flex-direction: column;
}

.z1033efooter_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.z1033efooter_text {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

.z1033efooter_list {
    list-style: none;
}

.z1033efooter_list li {
    margin-bottom: 10px;
}

.z1033efooter_link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.z1033efooter_link:hover {
    color: #fff;
}

.z1033efooter_bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.z1033ecopyright {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* 响应式设计 */
/* 中等屏幕（平板横屏） */
@media (max-width: 1024px) {
    .z1033econtainer {
        padding: 0 20px;
    }

    .z1033ebanner_wrapper {
        gap: 30px;
    }

    .z1033ebanner_title {
        font-size: 36px;
    }

    .z1033ehot_matches_wrapper {
        gap: 20px;
    }

    .z1033efeatures_wrapper {
        gap: 20px;
    }

    .z1033efeatures_grid_compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 平板竖屏和小屏幕 */
@media (max-width: 768px) {
    .z1033eheader .z1033econtainer {
        flex-wrap: wrap;
        position: relative;
    }

    .z1033emobile_menu {
        display: block;
        order: 2;
    }

    .z1033enav {
        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;
    }

    .z1033emenu_checkbox:checked ~ .z1033enav {
        display: block;
    }

    .z1033emenu_checkbox:checked ~ .z1033emobile_menu .z1033emenu_icon {
        background-color: transparent;
    }

    .z1033emenu_checkbox:checked ~ .z1033emobile_menu .z1033emenu_icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .z1033emenu_checkbox:checked ~ .z1033emobile_menu .z1033emenu_icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .z1033enav_list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .z1033enav_item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z1033enav_item:last-child {
        border-bottom: none;
    }

    .z1033enav_link {
        display: block;
        padding: 15px 20px;
        width: 100%;
        text-align: left;
        border-radius: 0;
    }

    .z1033enav_link:hover,
    .z1033enav_link.z1033eactive {
        background-color: rgba(255,255,255,0.15);
    }

    .z1033ebanner_title {
        font-size: 28px;
    }

    .z1033ebanner_desc {
        font-size: 16px;
    }

    .z1033ebanner {
        padding: 40px 0;
        min-height: auto;
    }

    .z1033ebanner_wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .z1033ebanner_content {
        text-align: center;
        order: 2;
    }

    .z1033ebanner_btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .z1033ebanner_image {
        order: 1;
        max-width: 100%;
    }

    .z1033ebanner_img {
        max-width: 85%;
        height: auto;
    }

    .z1033esection_title {
        font-size: 24px;
    }

    .z1033ematch_grid {
        grid-template-columns: 1fr;
    }

    /* 今日热门茶席响应式 */
    .z1033ehot_matches_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z1033efeatured_match {
        padding: 20px;
    }

    .z1033efeatured_match_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .z1033eteam_name_large {
        font-size: 18px;
    }

    .z1033escore_large {
        font-size: 28px;
    }

    .z1033efeatured_match_footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .z1033ematch_highlights {
        justify-content: center;
    }

    .z1033ecompact_match {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 15px;
    }

    .z1033ecompact_match_left {
        width: 100%;
    }

    .z1033ecompact_match_right {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z1033econtent_grid {
        grid-template-columns: 1fr;
    }

    .z1033eleague_tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .z1033eleague_tabs::-webkit-scrollbar {
        height: 4px;
    }

    .z1033eleague_tabs::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 2px;
    }

    .z1033etab {
        white-space: nowrap;
        min-width: fit-content;
    }

    .z1033ematch_item {
        flex-wrap: wrap;
        padding: 12px;
    }

    .z1033ematch_time_small {
        width: 100%;
        margin-bottom: 8px;
        text-align: left;
    }

    .z1033ematch_details {
        margin-left: 0;
        width: 100%;
        flex: 1;
    }

    .z1033ematch_action {
        width: 100%;
        justify-content: space-between;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .z1033ewatch_btn {
        min-width: 80px;
        text-align: center;
    }

    .z1033efeatures_grid {
        grid-template-columns: 1fr;
    }

    /* 平台特色响应式 */
    .z1033efeatures_wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .z1033efeature_hero {
        padding: 20px;
    }

    .z1033efeature_hero_content {
        flex-direction: column;
        text-align: center;
    }

    .z1033efeature_hero_stats {
        justify-content: center;
    }

    .z1033efeatures_grid_compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .z1033efeature_card_compact {
        padding: 18px;
    }

    .z1033efooter_content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .z1033efooter {
        margin-top: 20px;
        padding: 40px 0 15px;
    }

    /* 表格响应式优化 */
    .z1033etable_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z1033etable {
        min-width: 300px;
        font-size: 13px;
    }

    .z1033etable th,
    .z1033etable td {
        padding: 8px 6px;
    }

    /* 侧边栏优化 */
    .z1033esidebar {
        margin-top: 0;
    }

    .z1033ehot_matches_sidebar,
    .z1033efeatures_sidebar {
        margin-top: 0;
    }
}

/* 小屏幕手机 */
@media (max-width: 480px) {
    .z1033econtainer {
        padding: 0 12px;
    }

    .z1033eheader {
        padding: 12px 0;
    }

    .z1033elogo_text {
        font-size: 18px;
    }

    .z1033elogo_subtitle {
        font-size: 11px;
    }

    .z1033emobile_menu {
        padding: 5px;
    }

    .z1033emenu_icon,
    .z1033emenu_icon::before,
    .z1033emenu_icon::after {
        width: 25px;
    }

    .z1033enav {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .z1033ebanner {
        padding: 30px 0;
        min-height: auto;
    }

    .z1033ebanner_title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .z1033ebanner_desc {
        font-size: 13px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .z1033ebanner_wrapper {
        gap: 20px;
    }

    .z1033ebanner_img {
        max-width: 90%;
    }

    .z1033ebanner_btns {
        flex-direction: column;
        width: 100%;
    }

    .z1033ebtn {
        width: 100%;
        text-align: center;
    }

    .z1033ebtn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .z1033esection_title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .z1033esection_subtitle {
        font-size: 13px;
    }

    .z1033esection_header {
        margin-bottom: 25px;
    }

    .z1033ematch_card {
        padding: 15px;
    }

    .z1033econtent_main {
        padding: 15px;
    }

    .z1033efeature_card {
        padding: 20px;
    }

    .z1033emain {
        padding: 30px 0;
    }

    .z1033esection {
        margin-bottom: 30px;
    }

    .z1033esection:last-of-type {
        margin-bottom: 20px;
    }

    /* 平台特色小屏幕响应式 */
    .z1033efeature_hero {
        padding: 15px;
    }

    .z1033efeature_hero_title {
        font-size: 22px;
    }

    .z1033efeature_hero_desc {
        font-size: 14px;
    }

    .z1033ehero_icon_bg {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .z1033efeature_hero_stats {
        flex-direction: column;
        gap: 15px;
    }

    .z1033ehero_stat_value {
        font-size: 20px;
    }

    .z1033efeature_card_compact {
        padding: 15px;
    }

    /* 今日热门茶席小屏幕响应式 */
    .z1033efeatured_match {
        padding: 15px;
    }

    .z1033eteam_name_large {
        font-size: 16px;
    }

    .z1033escore_large {
        font-size: 24px;
        min-width: 40px;
    }

    .z1033eteam_logo_placeholder {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .z1033eteam_stats {
        font-size: 11px;
    }

    .z1033ecompact_match {
        padding: 12px;
    }

    .z1033ecompact_teams {
        font-size: 13px;
        flex-wrap: wrap;
    }

    .z1033ecompact_score {
        font-size: 13px;
    }

    .z1033ecompact_info {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .z1033esidebar_stats,
    .z1033esidebar_trending,
    .z1033esidebar_upcoming {
        padding: 15px;
    }

    .z1033efeatures_stats_list,
    .z1033eadvantages_list {
        gap: 10px;
    }

    .z1033efeatures_stat_item,
    .z1033eadvantage_item {
        padding: 10px;
    }

    /* 触摸优化 */
    .z1033ebtn,
    .z1033etab,
    .z1033ewatch_btn,
    .z1033ecompact_btn {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* 文字可读性优化 */
    .z1033efeature_desc_compact,
    .z1033ecompact_time {
        font-size: 12px;
    }

    /* 间距优化 */
    .z1033ehot_matches_wrapper,
    .z1033efeatures_wrapper {
        gap: 15px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 360px) {
    .z1033econtainer {
        padding: 0 10px;
    }

    .z1033ebanner_title {
        font-size: 20px;
    }

    .z1033ebanner_desc {
        font-size: 12px;
    }

    .z1033esection_title {
        font-size: 16px;
    }

    .z1033ebtn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* 打印样式 */
@media print {
    .z1033eheader,
    .z1033efooter,
    .z1033ebanner,
    .z1033ematch_link,
    .z1033ewatch_btn {
        display: none;
    }

    .z1033emain {
        padding: 0;
    }
}
