/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.z9d19econtainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 头部样式 */
.z9d19eheader {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.z9d19eheader .z9d19econtainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.z9d19elogo h1 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.z9d19elogo-tagline {
    color: #ffd700;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.z9d19emain-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z9d19emain-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.z9d19emain-nav a:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}

/* 主要内容区域 */
.z9d19emain-content {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

/* 直播大厅样式 */
.z9d19elive-hall {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.z9d19elive-hall-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.z9d19elive-hall-header h2 {
    margin: 0;
    border: none;
}

.z9d19elive-hall-nav {
    display: flex;
    gap: 1rem;
}

.z9d19enav-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.z9d19enav-btn:hover {
    background: #f5f5f5;
}

.z9d19enav-btn.z9d19eactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.z9d19elive-hall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.z9d19elive-hall-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    border: 1px solid #e0e0e0;
}

.z9d19elive-hall-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.z9d19elive-hall-card.z9d19efeatured {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
}

.z9d19elive-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: #ff4444;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
}

.z9d19elive-status.z9d19eupcoming {
    background: #ffd700;
    color: #1a1a1a;
}

.z9d19elive-status.z9d19ereplay {
    background: #666;
}

.z9d19elive-hall-content {
    padding: 1.5rem;
}

.z9d19elive-hall-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.z9d19elive-hall-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.z9d19elive-hall-card.z9d19efeatured h3 {
    color: #fff;
}

.z9d19elive-match {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: bold;
}

.z9d19eteam {
    flex: 1;
    text-align: center;
}

.z9d19evs {
    padding: 0 1rem;
    color: #666;
}

.z9d19elive-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.z9d19etime {
    color: #666;
}

.z9d19equality {
    color: #ffd700;
    font-weight: bold;
}

.z9d19elive-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.z9d19estat {
    text-align: center;
}

.z9d19elabel {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.z9d19evalue {
    font-weight: bold;
    color: #1a1a1a;
}

.z9d19elive-hall-card.z9d19efeatured .z9d19evalue {
    color: #fff;
}

.z9d19elive-hall-footer {
    text-align: center;
}

.z9d19eload-more {
    padding: 0.8rem 2rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.z9d19eload-more:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z9d19elive-hall-header {
        flex-direction: column;
        gap: 1rem;
    }

    .z9d19elive-hall-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .z9d19enav-btn {
        white-space: nowrap;
    }

    .z9d19elive-hall-card.z9d19efeatured {
        grid-column: span 1;
    }

    .z9d19elive-stats {
        grid-template-columns: 1fr;
    }
}

/* 比赛卡片样式 */
.z9d19ematch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.z9d19ematch-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.z9d19ematch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.z9d19ematch-time {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.z9d19ematch-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.z9d19ematch-status {
    color: #ff4444;
    font-weight: bold;
    margin-bottom: 1rem;
}

.z9d19ematch-score {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.z9d19ematch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.z9d19ematch-preview {
    font-style: italic;
    color: #666;
    text-align: center;
    margin-top: 1rem;
}

.z9d19ematch-quality {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.z9d19equality-tag {
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* 直播预告样式 */
.z9d19eupcoming-matches {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.z9d19eupcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.z9d19eupcoming-header h2 {
    margin: 0;
    border: none;
    font-size: 1.8rem;
    color: #1a1a1a;
    padding-bottom: 0.5rem;
}

.z9d19eupcoming-nav {
    display: flex;
    gap: 1rem;
}

.z9d19eupcoming-nav .z9d19enav-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.z9d19eupcoming-nav .z9d19enav-btn:hover {
    background: #f5f5f5;
}

.z9d19eupcoming-nav .z9d19enav-btn.z9d19eactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.z9d19eupcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.z9d19eupcoming-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
    border: 1px solid #e0e0e0;
    min-height: 360px;
    padding-top: 2.5rem;
}

.z9d19eupcoming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.z9d19eupcoming-card.z9d19efeatured {
    grid-column: span 2;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
}

.z9d19eupcoming-status {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    background: #ffd700;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 1;
    white-space: nowrap;
}

.z9d19eupcoming-content {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.z9d19eupcoming-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.z9d19ematch-time {
    font-size: 1.1rem;
    font-weight: bold;
    color: #666;
}

.z9d19ematch-type {
    font-size: 0.9rem;
    color: #666;
    padding: 0.2rem 0.6rem;
    background: rgba(0,0,0,0.05);
    border-radius: 15px;
    white-space: nowrap;
}

.z9d19eupcoming-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    flex: 1;
    gap: 0.8rem;
}

.z9d19eteam {
    flex: 1;
    text-align: center;
    padding: 0 0.8rem;
}

.z9d19eteam-logo {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.z9d19eteam-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0.4rem 0;
    word-break: break-word;
    line-height: 1.2;
}

.z9d19evs {
    padding: 0 0.8rem;
    color: #666;
    font-weight: bold;
    white-space: nowrap;
}

.z9d19eupcoming-card.z9d19efeatured .z9d19evs {
    color: #fff;
}

.z9d19eupcoming-preview {
    font-style: italic;
    color: #666;
    text-align: center;
    margin: 1rem 0;
    padding: 0.8rem;
    background: rgba(0,0,0,0.05);
    border-radius: 8px;
    word-break: break-word;
    line-height: 1.4;
}

.z9d19eupcoming-card.z9d19efeatured .z9d19eupcoming-preview {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.z9d19eupcoming-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1rem 0;
}

.z9d19einfo-item {
    text-align: center;
    padding: 0.4rem;
}

.z9d19einfo-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.z9d19eupcoming-card.z9d19efeatured .z9d19einfo-label {
    color: rgba(255,255,255,0.8);
}

.z9d19einfo-value {
    font-weight: bold;
    color: #1a1a1a;
    font-size: 0.95rem;
    line-height: 1.2;
}

.z9d19eupcoming-card.z9d19efeatured .z9d19einfo-value {
    color: #fff;
}

.z9d19eupcoming-quality {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
    padding: 0.8rem 0;
}

.z9d19equality-tag {
    background: #ffd700;
    color: #1a1a1a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    white-space: nowrap;
    line-height: 1.2;
}

.z9d19eupcoming-card.z9d19efeatured .z9d19equality-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.z9d19eupcoming-footer {
    text-align: center;
    margin-top: 1rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z9d19eupcoming-header {
        flex-direction: column;
        gap: 1rem;
    }

    .z9d19eupcoming-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .z9d19enav-btn {
        white-space: nowrap;
    }

    .z9d19eupcoming-card.z9d19efeatured {
        grid-column: span 1;
    }

    .z9d19eupcoming-card {
        min-height: 320px;
    }

    .z9d19eupcoming-content {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .z9d19eupcoming-teams {
        margin: 0.8rem 0;
    }

    .z9d19eteam-logo {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .z9d19eteam-name {
        font-size: 1rem;
        margin: 0.4rem 0;
    }

    .z9d19eupcoming-preview {
        margin: 0.8rem 0;
        padding: 0.8rem;
    }

    .z9d19eupcoming-info {
        margin: 0.8rem 0;
        gap: 0.8rem;
    }

    .z9d19einfo-item {
        padding: 0.4rem;
    }

    .z9d19einfo-label {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .z9d19einfo-value {
        font-size: 0.9rem;
    }

    .z9d19eupcoming-quality {
        margin-top: 0.8rem;
        padding: 0.6rem 0;
        gap: 0.6rem;
    }

    .z9d19equality-tag {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .z9d19eupcoming-card {
        min-height: 280px;
    }

    .z9d19eupcoming-content {
        padding: 1rem;
        gap: 0.6rem;
    }

    .z9d19eupcoming-teams {
        margin: 0.6rem 0;
    }

    .z9d19eteam-logo {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .z9d19eteam-name {
        font-size: 0.9rem;
        margin: 0.3rem 0;
    }

    .z9d19eupcoming-preview {
        margin: 0.6rem 0;
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .z9d19eupcoming-info {
        margin: 0.6rem 0;
        gap: 0.6rem;
    }

    .z9d19einfo-item {
        padding: 0.3rem;
    }

    .z9d19einfo-label {
        font-size: 0.75rem;
    }

    .z9d19einfo-value {
        font-size: 0.85rem;
    }

    .z9d19eupcoming-quality {
        margin-top: 0.6rem;
        padding: 0.6rem 0;
        gap: 0.4rem;
    }

    .z9d19equality-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }
}

/* 直播特色样式 */
.z9d19efeatures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.z9d19efeature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.z9d19efeature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.z9d19efeature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.z9d19efeature-card h3 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

/* 页脚样式 */
.z9d19efooter {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 0 2rem;
}

.z9d19efooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.z9d19efooter-section h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.z9d19efooter-section ul {
    list-style: none;
}

.z9d19efooter-section ul li {
    margin-bottom: 0.5rem;
}

.z9d19ecopyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .z9d19eheader .z9d19econtainer {
        flex-direction: column;
        text-align: center;
    }

    .z9d19emain-nav ul {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .z9d19ematch-grid,
    .z9d19enews-grid,
    .z9d19estats-grid,
    .z9d19efeatures-grid,
    .z9d19elive-hall-grid {
        grid-template-columns: 1fr;
    }

    .z9d19eschedule-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .z9d19efooter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z9d19ematch-card,
.z9d19enews-card,
.z9d19eschedule-item,
.z9d19estats-card,
.z9d19efeature-card,
.z9d19elive-hall-card {
    animation: fadeIn 0.5s ease-out;
}

/* 横幅区域样式 */
.z9d19ebanner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.z9d19ebanner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>') repeat;
    opacity: 0.1;
    z-index: 1;
}

.z9d19ebanner-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.z9d19ebanner-text {
    max-width: 600px;
}

.z9d19ebanner-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.z9d19ebanner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: #ffd700;
    opacity: 0.9;
}

.z9d19ebanner-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.z9d19efeature {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.z9d19ebanner-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.z9d19estat-item {
    text-align: center;
}

.z9d19estat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.z9d19estat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.z9d19ebanner-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z9d19ebanner-img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .z9d19ebanner {
        padding: 3rem 0;
        min-height: auto;
    }

    .z9d19ebanner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .z9d19ebanner-text {
        max-width: 100%;
    }

    .z9d19ebanner-text h2 {
        font-size: 2.5rem;
    }

    .z9d19ebanner-features {
        justify-content: center;
    }

    .z9d19ebanner-stats {
        justify-content: center;
    }

    .z9d19ebanner-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .z9d19ebanner {
        padding: 2rem 0;
    }

    .z9d19ebanner-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .z9d19ebanner-text p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .z9d19ebanner-features {
        gap: 0.8rem;
    }

    .z9d19efeature {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .z9d19ebanner-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .z9d19estat-number {
        font-size: 1.8rem;
    }

    .z9d19ebanner-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .z9d19ebanner {
        padding: 1.5rem 0;
    }

    .z9d19ebanner-text h2 {
        font-size: 1.8rem;
    }

    .z9d19ebanner-text p {
        font-size: 1rem;
    }

    .z9d19ebanner-features {
        gap: 0.5rem;
    }

    .z9d19efeature {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }

    .z9d19estat-number {
        font-size: 1.5rem;
    }

    .z9d19estat-label {
        font-size: 0.9rem;
    }

    .z9d19ebanner-image {
        height: 200px;
    }
}

/* 焦点赛事样式 */
.z9d19efeatured-matches {
    padding: 2rem 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.z9d19efeatured-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.z9d19efeatured-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin: 0;
    border: none;
}

.z9d19efeatured-nav {
    display: flex;
    gap: 1rem;
}

.z9d19efeatured-nav .z9d19enav-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.z9d19efeatured-nav .z9d19enav-btn:hover {
    background: #f5f5f5;
}

.z9d19efeatured-nav .z9d19enav-btn.z9d19eactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.z9d19efeatured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.z9d19efeatured-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: auto;
    min-height: 400px;
    border: 1px solid #eee;
}

.z9d19efeatured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.z9d19ematch-content {
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.z9d19ematch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.z9d19ematch-time {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.z9d19ematch-type {
    font-size: 0.85rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.z9d19ematch-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.8rem 0;
    flex: 1;
}

.z9d19eteam {
    text-align: center;
    flex: 1;
    padding: 0 0.8rem;
}

.z9d19eteam-logo {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.z9d19eteam-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0.4rem 0;
    line-height: 1.2;
}

.z9d19eteam-score {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a73e8;
}

.z9d19evs {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0.8rem;
    font-weight: 500;
}

.z9d19ematch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin: 0.8rem 0;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.z9d19estat {
    text-align: center;
}

.z9d19estat-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.z9d19estat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    line-height: 1.2;
}

.z9d19ematch-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0.8rem 0;
}

.z9d19einfo-item {
    text-align: center;
    padding: 0.4rem;
    background: #f8f9fa;
    border-radius: 6px;
}

.z9d19einfo-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.z9d19einfo-value {
    font-weight: bold;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.2;
}

.z9d19ematch-quality {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.8rem;
    padding: 0.8rem 0;
    border-top: 1px solid #eee;
}

.z9d19equality-tag {
    font-size: 0.8rem;
    color: #1a73e8;
    background: rgba(26,115,232,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1.2;
}

/* 大屏幕响应式 */
@media (min-width: 1201px) {
    .z9d19efeatured-matches {
        max-width: 1400px;
        margin: 0 auto;
    }

    .z9d19efeatured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9d19efeatured-card {
        min-height: 450px;
    }

    .z9d19ematch-content {
        padding: 2rem;
    }

    .z9d19eteam-logo {
        font-size: 3rem;
    }

    .z9d19eteam-name {
        font-size: 1.3rem;
    }

    .z9d19eteam-score {
        font-size: 1.8rem;
    }

    .z9d19eupcoming-status {
        top: 0.8rem;
        font-size: 0.85rem;
        padding: 0.25rem 0.7rem;
    }

    .z9d19eupcoming-card {
        padding-top: 2.2rem;
    }
}

/* 中等屏幕响应式 */
@media (max-width: 1200px) {
    .z9d19efeatured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z9d19efeatured-card {
        min-height: 420px;
    }

    .z9d19ematch-content {
        padding: 1.8rem;
    }

    .z9d19eupcoming-status {
        top: 0.7rem;
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .z9d19eupcoming-card {
        padding-top: 2rem;
    }
}

/* 平板响应式 */
@media (max-width: 991px) {
    .z9d19efeatured-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .z9d19efeatured-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .z9d19efeatured-card {
        min-height: 400px;
    }

    .z9d19ematch-content {
        padding: 1.5rem;
    }

    .z9d19eupcoming-status {
        top: 0.6rem;
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .z9d19eupcoming-card {
        padding-top: 1.8rem;
    }
}

/* 移动端响应式 */
@media (max-width: 767px) {
    .z9d19efeatured-matches {
        padding: 1.5rem 0;
    }

    .z9d19efeatured-header {
        padding: 0 1.5rem;
    }

    .z9d19efeatured-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .z9d19efeatured-card {
        min-height: 320px;
    }

    .z9d19ematch-content {
        padding: 0.8rem;
    }

    .z9d19ematch-header {
        margin-bottom: 0.6rem;
    }

    .z9d19ematch-time {
        font-size: 0.9rem;
    }

    .z9d19ematch-type {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }

    .z9d19ematch-teams {
        flex-direction: column;
        gap: 0.6rem;
        margin: 0.6rem 0;
    }

    .z9d19eteam {
        width: 100%;
        padding: 0 0.6rem;
    }

    .z9d19eteam-logo {
        font-size: 1.6rem;
        margin-bottom: 0.2rem;
    }

    .z9d19eteam-name {
        font-size: 0.9rem;
        margin: 0.2rem 0;
    }

    .z9d19eteam-score {
        font-size: 1.2rem;
    }

    .z9d19evs {
        margin: 0.2rem 0;
        font-size: 0.85rem;
    }

    .z9d19ematch-stats {
        margin: 0.6rem 0;
        padding: 0.6rem;
        gap: 0.4rem;
    }

    .z9d19estat-label {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .z9d19estat-value {
        font-size: 0.85rem;
    }

    .z9d19ematch-info {
        margin: 0.6rem 0;
        gap: 0.4rem;
    }

    .z9d19einfo-item {
        padding: 0.3rem;
    }

    .z9d19einfo-label {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }

    .z9d19einfo-value {
        font-size: 0.85rem;
    }

    .z9d19ematch-quality {
        margin-top: 0.6rem;
        padding: 0.6rem 0;
        gap: 0.4rem;
    }

    .z9d19equality-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.5rem;
    }

    .z9d19eupcoming-status {
        top: 0.5rem;
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }

    .z9d19eupcoming-card {
        padding-top: 1.6rem;
    }
}

@media (max-width: 480px) {
    .z9d19efeatured-card {
        min-height: 280px;
    }

    .z9d19ematch-content {
        padding: 0.6rem;
    }

    .z9d19ematch-header {
        margin-bottom: 0.4rem;
    }

    .z9d19ematch-time {
        font-size: 0.85rem;
    }

    .z9d19ematch-type {
        font-size: 0.75rem;
        padding: 0.15rem 0.4rem;
    }

    .z9d19ematch-teams {
        gap: 0.4rem;
        margin: 0.4rem 0;
    }

    .z9d19eteam-logo {
        font-size: 1.4rem;
        margin-bottom: 0.15rem;
    }

    .z9d19eteam-name {
        font-size: 0.85rem;
        margin: 0.15rem 0;
    }

    .z9d19eteam-score {
        font-size: 1.1rem;
    }

    .z9d19evs {
        margin: 0.15rem 0;
        font-size: 0.8rem;
    }

    .z9d19ematch-stats {
        margin: 0.4rem 0;
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .z9d19estat-label {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .z9d19estat-value {
        font-size: 0.8rem;
    }

    .z9d19ematch-info {
        margin: 0.4rem 0;
        gap: 0.3rem;
    }

    .z9d19einfo-item {
        padding: 0.25rem;
    }

    .z9d19einfo-label {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .z9d19einfo-value {
        font-size: 0.8rem;
    }

    .z9d19ematch-quality {
        margin-top: 0.4rem;
        padding: 0.4rem 0;
        gap: 0.3rem;
    }

    .z9d19equality-tag {
        font-size: 0.7rem;
        padding: 0.15rem 0.4rem;
    }
}

/* 新闻资讯样式 */
.z9d19enews-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.z9d19enews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.z9d19enews-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin: 0;
}

.z9d19enews-nav {
    display: flex;
    gap: 1rem;
}

.z9d19enews-nav .z9d19enav-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    color: #666;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z9d19enews-nav .z9d19enav-btn:hover {
    background: #e0e0e0;
}

.z9d19enews-nav .z9d19enav-btn.z9d19eactive {
    background: #1a73e8;
    color: #fff;
}

.z9d19enews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.z9d19enews-card {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.z9d19enews-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.z9d19enews-card.z9d19efeatured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
}

.z9d19enews-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z9d19enews-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.z9d19enews-card.z9d19efeatured .z9d19enews-meta {
    color: rgba(255, 255, 255, 0.8);
}

.z9d19enews-time {
    color: #1a73e8;
}

.z9d19enews-card.z9d19efeatured .z9d19enews-time {
    color: #fff;
}

.z9d19enews-views {
    color: #666;
}

.z9d19enews-card.z9d19efeatured .z9d19enews-views {
    color: rgba(255, 255, 255, 0.8);
}

.z9d19enews-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.z9d19enews-card.z9d19efeatured h3 {
    color: #fff;
    font-size: 1.4rem;
}

.z9d19enews-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.z9d19enews-card.z9d19efeatured .z9d19enews-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

.z9d19enews-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.z9d19enews-tag {
    padding: 0.3rem 0.8rem;
    background: #e8f0fe;
    color: #1a73e8;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.z9d19enews-card.z9d19efeatured .z9d19enews-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.z9d19enews-footer {
    text-align: center;
    margin-top: 2rem;
}

.z9d19enews-footer .z9d19eload-more {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    background: #1a73e8;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z9d19enews-footer .z9d19eload-more:hover {
    background: #1557b0;
    transform: translateY(-1px);
}

@media (max-width: 1200px) {
    .z9d19enews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .z9d19enews-section {
        padding: 1.5rem;
    }

    .z9d19enews-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .z9d19enews-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .z9d19enews-nav .z9d19enav-btn {
        white-space: nowrap;
    }

    .z9d19enews-grid {
        grid-template-columns: 1fr;
    }

    .z9d19enews-card.z9d19efeatured {
        grid-column: span 1;
    }

    .z9d19enews-content {
        padding: 1.2rem;
    }

    .z9d19enews-card h3 {
        font-size: 1.1rem;
    }

    .z9d19enews-card.z9d19efeatured h3 {
        font-size: 1.2rem;
    }
}

/* 数据统计样式 */
.z9d19estats-section {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.z9d19estats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.z9d19estats-header h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 0;
    font-weight: 700;
}

.z9d19estats-nav {
    display: flex;
    gap: 1rem;
}

.z9d19estats-nav .z9d19enav-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 12px;
    background: #f5f5f5;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.z9d19estats-nav .z9d19enav-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.z9d19estats-nav .z9d19enav-btn.z9d19eactive {
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.z9d19estats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.z9d19estats-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.z9d19estats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.z9d19estats-card.z9d19efeatured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    border: none;
}

.z9d19estats-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.z9d19estats-card.z9d19efeatured .z9d19estats-card-header {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.z9d19estats-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.z9d19estats-card.z9d19efeatured .z9d19estats-card-header h3 {
    color: #fff;
}

.z9d19estats-period {
    font-size: 0.9rem;
    color: #666;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    font-weight: 500;
}

.z9d19estats-card.z9d19efeatured .z9d19estats-period {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
}

.z9d19estats-list {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.z9d19estats-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.z9d19estats-card.z9d19efeatured .z9d19estats-item {
    background: rgba(255, 255, 255, 0.05);
}

.z9d19estats-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.z9d19eplayer-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.z9d19erank {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.z9d19estats-card.z9d19efeatured .z9d19erank {
    background: #fff;
    color: #1a1a1a;
}

.z9d19eplayer-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.z9d19eplayer-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.z9d19estats-card.z9d19efeatured .z9d19eplayer-name {
    color: #fff;
}

.z9d19eteam-name {
    font-size: 0.9rem;
    color: #666;
}

.z9d19estats-card.z9d19efeatured .z9d19eteam-name {
    color: rgba(255, 255, 255, 0.8);
}

.z9d19estats-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.z9d19estats-card.z9d19efeatured .z9d19estats-value {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.z9d19estats-footer {
    text-align: center;
    margin-top: 2rem;
}

.z9d19estats-footer .z9d19eload-more {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 12px;
    background: #1a1a1a;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.2);
}

.z9d19estats-footer .z9d19eload-more:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 26, 26, 0.3);
}

@media (max-width: 1200px) {
    .z9d19estats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .z9d19estats-section {
        padding: 1.5rem;
    }

    .z9d19estats-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .z9d19estats-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .z9d19estats-nav .z9d19enav-btn {
        white-space: nowrap;
    }

    .z9d19estats-grid {
        grid-template-columns: 1fr;
    }

    .z9d19estats-card.z9d19efeatured {
        grid-column: span 1;
    }

    .z9d19estats-list {
        padding: 1rem;
    }

    .z9d19estats-item {
        padding: 0.8rem;
    }

    .z9d19eplayer-info {
        gap: 0.8rem;
    }

    .z9d19erank {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .z9d19eplayer-name {
        font-size: 1rem;
    }

    .z9d19estats-value {
        font-size: 1.2rem;
        padding: 0.3rem 0.8rem;
    }
}

/* 响应式设计优化 */
/* 大屏幕 (1200px以上) */
@media (min-width: 1201px) {
    .z9d19econtainer {
        max-width: 1200px;
        padding: 0 20px;
    }

    .z9d19ebanner-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .z9d19ebanner-text h2 {
        font-size: 3rem;
    }

    .z9d19elive-hall-grid,
    .z9d19efeatured-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9d19estats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9d19enews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 中等屏幕 (992px - 1200px) */
@media (max-width: 1200px) {
    .z9d19econtainer {
        padding: 0 20px;
    }

    .z9d19ebanner-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .z9d19ebanner-text h2 {
        font-size: 2.5rem;
    }

    .z9d19ebanner-stats {
        justify-content: center;
    }

    .z9d19elive-hall-grid,
    .z9d19efeatured-grid,
    .z9d19estats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z9d19enews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z9d19elive-hall-card.z9d19efeatured,
    .z9d19efeatured-card.z9d19efeatured,
    .z9d19estats-card.z9d19efeatured {
        grid-column: span 2;
    }
}

/* 平板 (768px - 991px) */
@media (max-width: 991px) {
    .z9d19ebanner {
        height: auto;
        padding: 3rem 0;
    }

    .z9d19ebanner-text h2 {
        font-size: 2rem;
    }

    .z9d19ebanner-features {
        justify-content: center;
    }

    .z9d19ebanner-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .z9d19elive-hall-header,
    .z9d19efeatured-header,
    .z9d19estats-header,
    .z9d19enews-header {
        flex-direction: column;
        gap: 1rem;
    }

    .z9d19elive-hall-nav,
    .z9d19efeatured-nav,
    .z9d19estats-nav,
    .z9d19enews-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }

    .z9d19enav-btn {
        white-space: nowrap;
    }

    .z9d19ematch-teams,
    .z9d19eupcoming-teams {
        flex-direction: row;
        gap: 1rem;
    }
}

/* 手机 (576px - 767px) */
@media (max-width: 767px) {
    .z9d19eheader {
        position: relative;
    }

    .z9d19eheader .z9d19econtainer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .z9d19emain-nav {
        width: 100%;
        background: #2c2c2c;
        border-radius: 8px;
        padding: 0.5rem;
        margin-top: 1rem;
        display: none;
    }

    .z9d19emain-nav.z9d19eactive {
        display: block;
    }

    .z9d19emain-nav ul {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .z9d19emain-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .z9d19emain-nav li:last-child {
        border-bottom: none;
    }

    .z9d19emain-nav a {
        display: block;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        text-align: left;
        border-radius: 4px;
        color: #fff;
        transition: all 0.3s ease;
    }

    .z9d19emain-nav a:hover {
        background-color: rgba(255,255,255,0.1);
        color: #ffd700;
    }

    /* 汉堡菜单按钮 */
    .z9d19emenu-toggle {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        background: none;
        border: none;
        padding: 0;
    }

    .z9d19emenu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
        transition: all 0.3s ease;
    }

    .z9d19emenu-toggle.z9d19eactive span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .z9d19emenu-toggle.z9d19eactive span:nth-child(2) {
        opacity: 0;
    }

    .z9d19emenu-toggle.z9d19eactive span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .z9d19ebanner {
        padding: 2rem 0;
    }

    .z9d19ebanner-text h2 {
        font-size: 1.8rem;
    }

    .z9d19ebanner-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z9d19ebanner-image {
        height: 250px;
    }

    .z9d19elive-hall-grid,
    .z9d19efeatured-grid,
    .z9d19estats-grid,
    .z9d19enews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z9d19elive-hall-card.z9d19efeatured,
    .z9d19efeatured-card.z9d19efeatured,
    .z9d19estats-card.z9d19efeatured {
        grid-column: span 1;
    }

    .z9d19ematch-teams,
    .z9d19eupcoming-teams {
        flex-direction: column;
        gap: 1rem;
    }

    .z9d19eteam {
        width: 100%;
        text-align: center;
    }

    .z9d19evs {
        margin: 0.5rem 0;
    }

    .z9d19ematch-stats,
    .z9d19eupcoming-info {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .z9d19efooter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

/* 小屏手机 (575px以下) */
@media (max-width: 575px) {
    .z9d19econtainer {
        padding: 0 15px;
    }

    .z9d19eheader {
        padding: 0.3rem 0;
    }

    .z9d19elogo h1 {
        font-size: 1.5rem;
    }

    .z9d19elogo-tagline {
        font-size: 0.8rem;
    }

    .z9d19ebanner-text h2 {
        font-size: 1.5rem;
    }

    .z9d19ebanner-text p {
        font-size: 1rem;
    }

    .z9d19ebanner-features {
        flex-wrap: wrap;
    }

    .z9d19efeature {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .z9d19elive-hall-card,
    .z9d19efeatured-card,
    .z9d19estats-card,
    .z9d19enews-card {
        border-radius: 8px;
    }

    .z9d19elive-status,
    .z9d19ematch-status,
    .z9d19eupcoming-status {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .z9d19eteam-name {
        font-size: 1rem;
    }

    .z9d19eteam-score {
        font-size: 1.2rem;
    }

    .z9d19estats-value {
        font-size: 1.1rem;
    }

    .z9d19enews-card h3 {
        font-size: 1.1rem;
    }

    .z9d19enews-excerpt {
        font-size: 0.9rem;
    }

    .z9d19eload-more {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .z9d19emenu-toggle {
        top: 0.8rem;
        right: 0.8rem;
        width: 26px;
        height: 20px;
    }
}

/* 触摸设备优化 */
@media (hover: none) {
    .z9d19elive-hall-card:hover,
    .z9d19efeatured-card:hover,
    .z9d19estats-card:hover,
    .z9d19enews-card:hover {
        transform: none;
    }

    .z9d19enav-btn:active,
    .z9d19eload-more:active {
        opacity: 0.8;
    }

    .z9d19estats-item:hover {
        transform: none;
    }

    .z9d19emain-nav a:active {
        background-color: rgba(255,255,255,0.15);
    }
}

/* 深色模式支持 */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #fff;
    }

    .z9d19eheader {
        background-color: #2c2c2c;
    }

    .z9d19emain-nav a {
        color: #fff;
    }

    .z9d19emain-nav a:hover {
        background-color: rgba(255,255,255,0.1);
    }

    .z9d19elive-hall-card,
    .z9d19efeatured-card,
    .z9d19estats-card,
    .z9d19enews-card {
        background: #2c2c2c;
        border-color: #3c3c3c;
    }

    .z9d19enav-btn {
        background: #3c3c3c;
        color: #fff;
    }

    .z9d19enav-btn:hover {
        background: #4c4c4c;
    }

    .z9d19enav-btn.z9d19eactive {
        background: #1a73e8;
    }
}

html {
    scroll-behavior: smooth;
}

/* 添加滚动偏移，防止导航栏遮挡内容 */
section[id] {
    scroll-margin-top: 80px;
}

@media (max-width: 767px) {
    section[id] {
        scroll-margin-top: 120px;
    }
} 
.z9d19ebanner,
.z9d19ebanner-text,
.z9d19ebanner-text h2,
.z9d19ebanner-text p {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.z9d19ebanner::before {
    background: rgba(0,0,0,0.6) !important;
}

@media (max-width: 768px) {
  .z9d19ebanner,
  .z9d19ebanner-text,
  .z9d19ebanner-text h2,
  .z9d19ebanner-text p {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  }
  .z9d19ebanner::before {
    background: rgba(0,0,0,0.6) !important;
  }
}
@media (max-width: 480px) {
  .z9d19ebanner,
  .z9d19ebanner-text,
  .z9d19ebanner-text h2,
  .z9d19ebanner-text p {
    color: #fff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  }
  .z9d19ebanner::before {
    background: rgba(0,0,0,0.7) !important;
  }
}

@media (max-width: 768px) {
  .z9d19emenu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1002;
  }
  .z9d19emain-nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #222;
    display: none;
    flex-direction: column;
    z-index: 1001;
    padding: 1rem 0;
  }
  .z9d19emain-nav.z9d19eactive {
    display: flex;
  }
  .z9d19emain-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding: 0;
  }
  .z9d19enav-btn {
    width: 90vw;
    text-align: center;
    margin: 0.2rem 0;
  }
  .z9d19ebanner-content {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
  }
  .z9d19ebanner-text {
    text-align: center;
    padding: 0.5rem 0;
  }
  .z9d19ebanner-img {
    width: 90vw;
    max-width: 320px;
    height: auto;
    margin: 1rem 0 0 0;
    display: block;
  }
}

@media (max-width: 768px) {
  .z9d19ebanner-content {
    display: grid;
    grid-template-columns: 1fr;
  }
  .z9d19ebanner-text {
    order: 1;
    grid-row: 1;
  }
  .z9d19ebanner-image {
    order: 2;
    grid-row: 2;
    margin-top: 1.5rem;
  }
}

/* ========== 内页通用 ========== */
.z9d19einner-page .z9d19emain-content {
    padding: 0;
}

.z9d19epage-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #fff;
    padding: 2.5rem 0 2rem;
}

.z9d19epage-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.z9d19epage-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.75rem;
    max-width: 720px;
}

.z9d19ebreadcrumb {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.z9d19ebreadcrumb a {
    color: #ffd700;
    text-decoration: none;
}

.z9d19ebreadcrumb a:hover {
    text-decoration: underline;
}

.z9d19ebreadcrumb span {
    margin: 0 0.35rem;
}

.z9d19einner-main {
    padding: 2rem 0 3rem;
}

.z9d19einner-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 2rem;
    align-items: start;
}

.z9d19einner-content {
    min-width: 0;
}

/* ========== 内容页 ========== */
.z9d19earticle-panel,
.z9d19elist-panel,
.z9d19erelated-panel {
    background: #fff;
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.z9d19earticle-header h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.z9d19earticle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.z9d19earticle-meta a {
    color: #1a73e8;
    text-decoration: none;
}

.z9d19earticle-cover {
    margin: 1.25rem 0;
}

.z9d19ethumb-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.z9d19earticle-content {
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
}

.z9d19earticle-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 0.75rem 0;
}

.z9d19earticle-gallery-item {
    margin: 1rem 0;
    text-align: center;
}

.z9d19earticle-gallery-item img {
    max-width: 100%;
    border-radius: 8px;
}

.z9d19earticle-gallery-item figcaption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 0.5rem;
}

.z9d19ediyfield {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed #ddd;
}

.z9d19emeta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
}

.z9d19etagitem a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
}

.z9d19etagitem a:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.z9d19earticle-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.z9d19eprenext-item {
    flex: 1;
    font-size: 0.95rem;
}

.z9d19eprenext-next {
    text-align: right;
}

.z9d19epanel-title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
    color: #1a1a1a;
}

.z9d19erelated-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.z9d19erelated-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.z9d19erelated-item:last-child {
    border-bottom: none;
}

.z9d19erelated-thumb {
    flex: 0 0 120px;
    display: block;
}

.z9d19erelated-thumb img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.z9d19erelated-body h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.z9d19erelated-body h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.z9d19erelated-body h3 a:hover {
    color: #1a73e8;
}

.z9d19erelated-body p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========== 列表页 ========== */
.z9d19elist-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.z9d19elist-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.z9d19elist-item:last-child {
    border-bottom: none;
}

.z9d19elist-thumb {
    flex: 0 0 180px;
    display: block;
}

.z9d19elist-thumb img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.z9d19elist-body {
    flex: 1;
    min-width: 0;
}

.z9d19elist-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.z9d19elist-cat {
    color: #1a73e8;
}

.z9d19elist-title {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    line-height: 1.4;
}

.z9d19elist-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.z9d19elist-title a:hover {
    color: #1a73e8;
}

.z9d19elist-intro {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 翻页左右分布 */
.z9d19epagebar {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #eee;
}

.z9d19epagebar .pagelist,
.z9d19epagelist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.z9d19epagebar .pagelist li,
.z9d19epagelist li {
    display: inline-flex;
    margin: 0;
}

.z9d19epagebar .pagelist a,
.z9d19epagebar .pagelist span,
.z9d19epagelist a,
.z9d19epagelist span {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    background: #f5f5f5;
    font-size: 0.9rem;
}

.z9d19epagebar .pagelist a:hover,
.z9d19epagelist a:hover {
    background: #1a1a1a;
    color: #fff;
}

.z9d19epagebar .pagelist .thisclass,
.z9d19epagebar .pagelist .thisclass a,
.z9d19epagelist .thisclass,
.z9d19epagelist .thisclass a {
    background: #ffd700;
    color: #1a1a1a;
    font-weight: bold;
}

/* ========== 侧栏 ========== */
.z9d19esidebar {
    position: sticky;
    top: 90px;
}

.z9d19esidebar-block {
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.25rem;
}

.z9d19esidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
    color: #1a1a1a;
}

.z9d19esidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.z9d19esidebar-list li {
    margin-bottom: 0.5rem;
}

.z9d19esidebar-list a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
}

.z9d19esidebar-list a:hover,
.z9d19esidebar-list .z9d19ethis a {
    color: #1a73e8;
}

.z9d19esidebar-articles {
    list-style: none;
    margin: 0;
    padding: 0;
}

.z9d19esidebar-article-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #f5f5f5;
}

.z9d19esidebar-article-item:last-child {
    border-bottom: none;
}

.z9d19esidebar-thumb {
    flex: 0 0 72px;
    display: block;
}

.z9d19esidebar-thumb img {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.z9d19esidebar-article-info {
    flex: 1;
    min-width: 0;
}

.z9d19esidebar-article-info > a {
    display: block;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z9d19esidebar-article-info > a:hover {
    color: #1a73e8;
}

.z9d19esidebar-date {
    font-size: 0.8rem;
    color: #999;
}

/* ========== 首页文章板块 ========== */
.z9d19earticle-home-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.z9d19earticle-home-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.z9d19earticle-home-header h2 {
    margin: 0;
    border: none;
    padding: 0;
}

.z9d19earticle-more {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #1a1a1a;
    color: #ffd700;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.z9d19earticle-more:hover {
    background: #ffd700;
    color: #1a1a1a;
}

.z9d19earticle-home-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.z9d19earticle-home-card {
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.z9d19earticle-home-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.z9d19earticle-home-thumb {
    display: block;
    overflow: hidden;
}

.z9d19earticle-home-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.z9d19earticle-home-card:hover .z9d19earticle-home-thumb img {
    transform: scale(1.05);
}

.z9d19earticle-home-body {
    padding: 0.85rem;
}

.z9d19earticle-home-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 0.5rem;
    gap: 0.25rem;
}

.z9d19earticle-home-body h3 {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z9d19earticle-home-body h3 a {
    color: #1a1a1a;
    text-decoration: none;
}

.z9d19earticle-home-body h3 a:hover {
    color: #1a73e8;
}

/* 当前栏目高亮 */
.z9d19emain-nav .z9d19ethis a,
.z9d19emain-nav li.z9d19ethis a {
    color: #ffd700;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* ========== 内页移动端自适应 ========== */
@media (max-width: 1200px) {
    .z9d19earticle-home-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .z9d19einner-layout {
        grid-template-columns: 1fr;
    }

    .z9d19esidebar {
        position: static;
    }

    .z9d19earticle-home-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .z9d19elist-thumb {
        flex: 0 0 140px;
    }

    .z9d19elist-thumb img {
        width: 140px;
        height: 94px;
    }
}

@media (max-width: 767px) {
    .z9d19epage-title {
        font-size: 1.35rem;
    }

    .z9d19earticle-panel,
    .z9d19elist-panel,
    .z9d19erelated-panel {
        padding: 1.25rem;
    }

    .z9d19earticle-header h1 {
        font-size: 1.3rem;
    }

    .z9d19earticle-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .z9d19earticle-nav {
        flex-direction: column;
    }

    .z9d19eprenext-next {
        text-align: left;
    }

    .z9d19elist-item {
        flex-direction: column;
    }

    .z9d19elist-thumb {
        flex: none;
        width: 100%;
    }

    .z9d19elist-thumb img {
        width: 100%;
        height: 180px;
    }

    .z9d19erelated-item {
        flex-direction: column;
    }

    .z9d19erelated-thumb {
        flex: none;
    }

    .z9d19erelated-thumb img {
        width: 100%;
        height: 160px;
    }

    .z9d19ethumb-cover {
        max-height: 220px;
    }

    .z9d19earticle-home-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .z9d19earticle-home-thumb img {
        height: 100px;
    }

    .z9d19epagebar .pagelist,
    .z9d19epagelist {
        justify-content: center;
    }
}

/* 网站地图 */
.z9d19esitemap-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.15rem;
}

.z9d19esitemap-links a:hover {
    color: #ffd700;
}

.z9d19esitemap-page .z9d19einner-main {
    padding: 0;
    min-height: 1px;
}

.z9d19esitemap-panel {
    min-height: 1px;
}

.z9d19esitemap-group {
    margin-bottom: 2rem;
}

.z9d19esitemap-group:last-child {
    margin-bottom: 0;
}

.z9d19esitemap-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffd700;
    color: #1a1a1a;
}

.z9d19esitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem 1.5rem;
}

.z9d19esitemap-articles {
    grid-template-columns: repeat(2, 1fr);
}

.z9d19esitemap-list a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
}

.z9d19esitemap-list a:hover {
    color: #1a73e8;
}

@media (max-width: 767px) {
    .z9d19esitemap-list,
    .z9d19esitemap-articles {
        grid-template-columns: 1fr;
    }

    .z9d19esitemap-links {
        display: block;
        margin-top: 0.5rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .z9d19earticle-home-grid {
        grid-template-columns: 1fr;
    }

    .z9d19earticle-home-thumb img {
        height: 140px;
    }

    .z9d19elist-thumb img {
        height: 150px;
    }
}