/* 全局样式重置 */
* {
    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;
}

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

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

.z039cdheader .z039cdcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

/* 主要内容区域 */
.z039cdmain-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;
}

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

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

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

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

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

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

.z039cdnav-btn.z039cdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

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

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

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

.z039cdlive-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;
}

.z039cdlive-status.z039cdupcoming {
    background: #ffd700;
    color: #1a1a1a;
}

.z039cdlive-status.z039cdreplay {
    background: #666;
}

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

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

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

.z039cdlive-hall-card.z039cdfeatured h3 {
    color: #fff;
}

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

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

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

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

.z039cdtime {
    color: #666;
}

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

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

.z039cdstat {
    text-align: center;
}

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

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

.z039cdlive-hall-card.z039cdfeatured .z039cdvalue {
    color: #fff;
}

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

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

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

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

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

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

    .z039cdlive-hall-card.z039cdfeatured {
        grid-column: span 1;
    }

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

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

.z039cdmatch-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.z039cdupcoming-nav .z039cdnav-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;
}

.z039cdupcoming-nav .z039cdnav-btn:hover {
    background: #f5f5f5;
}

.z039cdupcoming-nav .z039cdnav-btn.z039cdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

.z039cdupcoming-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;
}

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

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

.z039cdupcoming-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;
}

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

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

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

.z039cdmatch-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;
}

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

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

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

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

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

.z039cdupcoming-card.z039cdfeatured .z039cdvs {
    color: #fff;
}

.z039cdupcoming-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;
}

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

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

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

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

.z039cdupcoming-card.z039cdfeatured .z039cdinfo-label {
    color: rgba(255,255,255,0.8);
}

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

.z039cdupcoming-card.z039cdfeatured .z039cdinfo-value {
    color: #fff;
}

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

.z039cdquality-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;
}

.z039cdupcoming-card.z039cdfeatured .z039cdquality-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

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

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

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

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

    .z039cdupcoming-card.z039cdfeatured {
        grid-column: span 1;
    }

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

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

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

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

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

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

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

    .z039cdinfo-item {
        padding: 0.4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

    .z039cdinfo-item {
        padding: 0.3rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z039cdmatch-grid,
    .z039cdnews-grid,
    .z039cdstats-grid,
    .z039cdfeatures-grid,
    .z039cdlive-hall-grid {
        grid-template-columns: 1fr;
    }

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

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

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

.z039cdmatch-card,
.z039cdnews-card,
.z039cdschedule-item,
.z039cdstats-card,
.z039cdfeature-card,
.z039cdlive-hall-card {
    animation: fadeIn 0.5s ease-out;
}

/* 横幅区域样式 */
.z039cdbanner {
    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;
}

.z039cdbanner::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;
}

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

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

.z039cdbanner-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);
}

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

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

.z039cdfeature {
    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);
}

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

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

.z039cdstat-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);
}

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

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

.z039cdbanner-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) {
    .z039cdbanner {
        padding: 3rem 0;
        min-height: auto;
    }

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

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

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

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

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

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

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

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

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

    .z039cdbanner-features {
        gap: 0.8rem;
    }

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

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

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

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

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

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

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

    .z039cdbanner-features {
        gap: 0.5rem;
    }

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

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

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

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

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

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

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

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

.z039cdfeatured-nav .z039cdnav-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;
}

.z039cdfeatured-nav .z039cdnav-btn:hover {
    background: #f5f5f5;
}

.z039cdfeatured-nav .z039cdnav-btn.z039cdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

.z039cdfeatured-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

.z039cdstat {
    text-align: center;
}

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

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

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

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

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

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

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

.z039cdquality-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) {
    .z039cdfeatured-matches {
        max-width: 1400px;
        margin: 0 auto;
    }

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

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

    .z039cdmatch-content {
        padding: 2rem;
    }

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

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

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

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

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

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

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

    .z039cdmatch-content {
        padding: 1.8rem;
    }

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

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

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

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

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

    .z039cdmatch-content {
        padding: 1.5rem;
    }

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

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

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

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

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

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

    .z039cdmatch-content {
        padding: 0.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z039cdinfo-item {
        padding: 0.3rem;
    }

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

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

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

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

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

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

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

    .z039cdmatch-content {
        padding: 0.6rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .z039cdinfo-item {
        padding: 0.25rem;
    }

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

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

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

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

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

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

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

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

.z039cdnews-nav .z039cdnav-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;
}

.z039cdnews-nav .z039cdnav-btn:hover {
    background: #e0e0e0;
}

.z039cdnews-nav .z039cdnav-btn.z039cdactive {
    background: #1a73e8;
    color: #fff;
}

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

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

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

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

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

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

.z039cdnews-card.z039cdfeatured .z039cdnews-meta {
    color: rgba(255, 255, 255, 0.8);
}

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

.z039cdnews-card.z039cdfeatured .z039cdnews-time {
    color: #fff;
}

.z039cdnews-views {
    color: #666;
}

.z039cdnews-card.z039cdfeatured .z039cdnews-views {
    color: rgba(255, 255, 255, 0.8);
}

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

.z039cdnews-card.z039cdfeatured h3 {
    color: #fff;
    font-size: 1.4rem;
}

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

.z039cdnews-card.z039cdfeatured .z039cdnews-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

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

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

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

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

    .z039cdnews-nav .z039cdnav-btn {
        white-space: nowrap;
    }

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

    .z039cdnews-card.z039cdfeatured {
        grid-column: span 1;
    }

    .z039cdnews-content {
        padding: 1.2rem;
    }

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

    .z039cdnews-card.z039cdfeatured h3 {
        font-size: 1.2rem;
    }
}

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

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

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

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

.z039cdstats-nav .z039cdnav-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;
}

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

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

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

.z039cdstats-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);
}

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

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

.z039cdstats-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;
}

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

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

.z039cdstats-card.z039cdfeatured .z039cdstats-card-header h3 {
    color: #fff;
}

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

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

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

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

.z039cdstats-card.z039cdfeatured .z039cdstats-item {
    background: rgba(255, 255, 255, 0.05);
}

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

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

.z039cdrank {
    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);
}

.z039cdstats-card.z039cdfeatured .z039cdrank {
    background: #fff;
    color: #1a1a1a;
}

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

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

.z039cdstats-card.z039cdfeatured .z039cdplayer-name {
    color: #fff;
}

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

.z039cdstats-card.z039cdfeatured .z039cdteam-name {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.z039cdstats-footer .z039cdload-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);
}

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

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

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

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

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

    .z039cdstats-nav .z039cdnav-btn {
        white-space: nowrap;
    }

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

    .z039cdstats-card.z039cdfeatured {
        grid-column: span 1;
    }

    .z039cdstats-list {
        padding: 1rem;
    }

    .z039cdstats-item {
        padding: 0.8rem;
    }

    .z039cdplayer-info {
        gap: 0.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z039cdlive-hall-grid,
    .z039cdfeatured-grid,
    .z039cdstats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .z039cdlive-hall-card.z039cdfeatured,
    .z039cdfeatured-card.z039cdfeatured,
    .z039cdstats-card.z039cdfeatured {
        grid-column: span 2;
    }
}

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

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

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

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

    .z039cdlive-hall-header,
    .z039cdfeatured-header,
    .z039cdstats-header,
    .z039cdnews-header {
        flex-direction: column;
        gap: 1rem;
    }

    .z039cdlive-hall-nav,
    .z039cdfeatured-nav,
    .z039cdstats-nav,
    .z039cdnews-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }

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

    .z039cdmatch-teams,
    .z039cdupcoming-teams {
        flex-direction: row;
        gap: 1rem;
    }
}

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

    .z039cdheader .z039cdcontainer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

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

    .z039cdmain-nav.z039cdactive {
        display: block;
    }

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

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

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

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

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

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

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

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

    .z039cdmenu-toggle.z039cdactive span:nth-child(2) {
        opacity: 0;
    }

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

    .z039cdbanner {
        padding: 2rem 0;
    }

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

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

    .z039cdbanner-image {
        height: 250px;
    }

    .z039cdlive-hall-grid,
    .z039cdfeatured-grid,
    .z039cdstats-grid,
    .z039cdnews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z039cdlive-hall-card.z039cdfeatured,
    .z039cdfeatured-card.z039cdfeatured,
    .z039cdstats-card.z039cdfeatured {
        grid-column: span 1;
    }

    .z039cdmatch-teams,
    .z039cdupcoming-teams {
        flex-direction: column;
        gap: 1rem;
    }

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

    .z039cdvs {
        margin: 0.5rem 0;
    }

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

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

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

    .z039cdheader {
        padding: 0.3rem 0;
    }

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

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

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

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

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

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

    .z039cdlive-hall-card,
    .z039cdfeatured-card,
    .z039cdstats-card,
    .z039cdnews-card {
        border-radius: 8px;
    }

    .z039cdlive-status,
    .z039cdmatch-status,
    .z039cdupcoming-status {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

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

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

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

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

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

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

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

/* 触摸设备优化 */
@media (hover: none) {
    .z039cdlive-hall-card:hover,
    .z039cdfeatured-card:hover,
    .z039cdstats-card:hover,
    .z039cdnews-card:hover {
        transform: none;
    }

    .z039cdnav-btn:active,
    .z039cdload-more:active {
        opacity: 0.8;
    }

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

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

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

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

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

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

    .z039cdlive-hall-card,
    .z039cdfeatured-card,
    .z039cdstats-card,
    .z039cdnews-card {
        background: #2c2c2c;
        border-color: #3c3c3c;
    }

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

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

    .z039cdnav-btn.z039cdactive {
        background: #1a73e8;
    }
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.z039cdbreadcrumb span {
    margin: 0 0.35rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z039cdarticle-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z039cdpagebar .pagelist li,
.z039cdpagelist li {
    display: inline-flex;
    margin: 0;
}

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

.z039cdpagebar .pagelist a:hover,
.z039cdpagelist a:hover {
    background: #1a1a1a;
    color: #fff;
}

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

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

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

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

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

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

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

.z039cdsidebar-list a:hover,
.z039cdsidebar-list .z039cdthis a {
    color: #1a73e8;
}

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

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

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

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

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

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

.z039cdsidebar-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;
}

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

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

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

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

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

.z039cdarticle-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;
}

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

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

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

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

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

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

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

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

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

.z039cdarticle-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;
}

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

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

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

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

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

    .z039cdsidebar {
        position: static;
    }

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

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

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

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

    .z039cdarticle-panel,
    .z039cdlist-panel,
    .z039cdrelated-panel {
        padding: 1.25rem;
    }

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

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

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

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

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

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

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

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

    .z039cdrelated-thumb {
        flex: none;
    }

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

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

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

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

    .z039cdpagebar .pagelist,
    .z039cdpagelist {
        justify-content: center;
    }
}

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

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

.z039cdsitemap-page .z039cdinner-main {
    padding: 0;
    min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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