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

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

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

.z718bdheader .z718bdcontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdnav-btn.z718bdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

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

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

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

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

.z718bdlive-status.z718bdupcoming {
    background: #ffd700;
    color: #1a1a1a;
}

.z718bdlive-status.z718bdreplay {
    background: #666;
}

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

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

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

.z718bdlive-hall-card.z718bdfeatured h3 {
    color: #fff;
}

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

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

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

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

.z718bdtime {
    color: #666;
}

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

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

.z718bdstat {
    text-align: center;
}

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

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

.z718bdlive-hall-card.z718bdfeatured .z718bdvalue {
    color: #fff;
}

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

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

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

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

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

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

    .z718bdlive-hall-card.z718bdfeatured {
        grid-column: span 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdupcoming-nav .z718bdnav-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;
}

.z718bdupcoming-nav .z718bdnav-btn:hover {
    background: #f5f5f5;
}

.z718bdupcoming-nav .z718bdnav-btn.z718bdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdupcoming-card.z718bdfeatured .z718bdvs {
    color: #fff;
}

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

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

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

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

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

.z718bdupcoming-card.z718bdfeatured .z718bdinfo-label {
    color: rgba(255,255,255,0.8);
}

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

.z718bdupcoming-card.z718bdfeatured .z718bdinfo-value {
    color: #fff;
}

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

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

.z718bdupcoming-card.z718bdfeatured .z718bdquality-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

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

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

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

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

    .z718bdupcoming-card.z718bdfeatured {
        grid-column: span 1;
    }

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

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

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

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

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

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

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

    .z718bdinfo-item {
        padding: 0.4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

    .z718bdinfo-item {
        padding: 0.3rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdmatch-grid,
    .z718bdnews-grid,
    .z718bdstats-grid,
    .z718bdfeatures-grid,
    .z718bdlive-hall-grid {
        grid-template-columns: 1fr;
    }

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

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

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

.z718bdmatch-card,
.z718bdnews-card,
.z718bdschedule-item,
.z718bdstats-card,
.z718bdfeature-card,
.z718bdlive-hall-card {
    animation: fadeIn 0.5s ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdbanner-features {
        gap: 0.8rem;
    }

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

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

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

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

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

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

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

    .z718bdbanner-features {
        gap: 0.5rem;
    }

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

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

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

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

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

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

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

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

.z718bdfeatured-nav .z718bdnav-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;
}

.z718bdfeatured-nav .z718bdnav-btn:hover {
    background: #f5f5f5;
}

.z718bdfeatured-nav .z718bdnav-btn.z718bdactive {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdstat {
    text-align: center;
}

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

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

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

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

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

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

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

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

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

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

    .z718bdmatch-content {
        padding: 2rem;
    }

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

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

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

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

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

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

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

    .z718bdmatch-content {
        padding: 1.8rem;
    }

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

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

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

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

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

    .z718bdmatch-content {
        padding: 1.5rem;
    }

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

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

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

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

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

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

    .z718bdmatch-content {
        padding: 0.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdinfo-item {
        padding: 0.3rem;
    }

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

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

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

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

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

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

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

    .z718bdmatch-content {
        padding: 0.6rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdinfo-item {
        padding: 0.25rem;
    }

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

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

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

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

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

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

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

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

.z718bdnews-nav .z718bdnav-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;
}

.z718bdnews-nav .z718bdnav-btn:hover {
    background: #e0e0e0;
}

.z718bdnews-nav .z718bdnav-btn.z718bdactive {
    background: #1a73e8;
    color: #fff;
}

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

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

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

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

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

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

.z718bdnews-card.z718bdfeatured .z718bdnews-meta {
    color: rgba(255, 255, 255, 0.8);
}

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

.z718bdnews-card.z718bdfeatured .z718bdnews-time {
    color: #fff;
}

.z718bdnews-views {
    color: #666;
}

.z718bdnews-card.z718bdfeatured .z718bdnews-views {
    color: rgba(255, 255, 255, 0.8);
}

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

.z718bdnews-card.z718bdfeatured h3 {
    color: #fff;
    font-size: 1.4rem;
}

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

.z718bdnews-card.z718bdfeatured .z718bdnews-excerpt {
    color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

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

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

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

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

    .z718bdnews-nav .z718bdnav-btn {
        white-space: nowrap;
    }

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

    .z718bdnews-card.z718bdfeatured {
        grid-column: span 1;
    }

    .z718bdnews-content {
        padding: 1.2rem;
    }

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

    .z718bdnews-card.z718bdfeatured h3 {
        font-size: 1.2rem;
    }
}

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

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

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

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

.z718bdstats-nav .z718bdnav-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;
}

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

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

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

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

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

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

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

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

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

.z718bdstats-card.z718bdfeatured .z718bdstats-card-header h3 {
    color: #fff;
}

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

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

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

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

.z718bdstats-card.z718bdfeatured .z718bdstats-item {
    background: rgba(255, 255, 255, 0.05);
}

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

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

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

.z718bdstats-card.z718bdfeatured .z718bdrank {
    background: #fff;
    color: #1a1a1a;
}

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

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

.z718bdstats-card.z718bdfeatured .z718bdplayer-name {
    color: #fff;
}

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

.z718bdstats-card.z718bdfeatured .z718bdteam-name {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

.z718bdstats-footer .z718bdload-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);
}

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

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

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

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

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

    .z718bdstats-nav .z718bdnav-btn {
        white-space: nowrap;
    }

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

    .z718bdstats-card.z718bdfeatured {
        grid-column: span 1;
    }

    .z718bdstats-list {
        padding: 1rem;
    }

    .z718bdstats-item {
        padding: 0.8rem;
    }

    .z718bdplayer-info {
        gap: 0.8rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdlive-hall-grid,
    .z718bdfeatured-grid,
    .z718bdstats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .z718bdlive-hall-card.z718bdfeatured,
    .z718bdfeatured-card.z718bdfeatured,
    .z718bdstats-card.z718bdfeatured {
        grid-column: span 2;
    }
}

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

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

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

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

    .z718bdlive-hall-header,
    .z718bdfeatured-header,
    .z718bdstats-header,
    .z718bdnews-header {
        flex-direction: column;
        gap: 1rem;
    }

    .z718bdlive-hall-nav,
    .z718bdfeatured-nav,
    .z718bdstats-nav,
    .z718bdnews-nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }

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

    .z718bdmatch-teams,
    .z718bdupcoming-teams {
        flex-direction: row;
        gap: 1rem;
    }
}

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

    .z718bdheader .z718bdcontainer {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

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

    .z718bdmain-nav.z718bdactive {
        display: block;
    }

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

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

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

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

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

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

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

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

    .z718bdmenu-toggle.z718bdactive span:nth-child(2) {
        opacity: 0;
    }

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

    .z718bdbanner {
        padding: 2rem 0;
    }

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

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

    .z718bdbanner-image {
        height: 250px;
    }

    .z718bdlive-hall-grid,
    .z718bdfeatured-grid,
    .z718bdstats-grid,
    .z718bdnews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .z718bdlive-hall-card.z718bdfeatured,
    .z718bdfeatured-card.z718bdfeatured,
    .z718bdstats-card.z718bdfeatured {
        grid-column: span 1;
    }

    .z718bdmatch-teams,
    .z718bdupcoming-teams {
        flex-direction: column;
        gap: 1rem;
    }

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

    .z718bdvs {
        margin: 0.5rem 0;
    }

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

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

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

    .z718bdheader {
        padding: 0.3rem 0;
    }

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

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

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

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

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

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

    .z718bdlive-hall-card,
    .z718bdfeatured-card,
    .z718bdstats-card,
    .z718bdnews-card {
        border-radius: 8px;
    }

    .z718bdlive-status,
    .z718bdmatch-status,
    .z718bdupcoming-status {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

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

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

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

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

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

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

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

/* 触摸设备优化 */
@media (hover: none) {
    .z718bdlive-hall-card:hover,
    .z718bdfeatured-card:hover,
    .z718bdstats-card:hover,
    .z718bdnews-card:hover {
        transform: none;
    }

    .z718bdnav-btn:active,
    .z718bdload-more:active {
        opacity: 0.8;
    }

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

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

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

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

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

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

    .z718bdlive-hall-card,
    .z718bdfeatured-card,
    .z718bdstats-card,
    .z718bdnews-card {
        background: #2c2c2c;
        border-color: #3c3c3c;
    }

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

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

    .z718bdnav-btn.z718bdactive {
        background: #1a73e8;
    }
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdbreadcrumb span {
    margin: 0 0.35rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.z718bdpagebar .pagelist li,
.z718bdpagelist li {
    display: inline-flex;
    margin: 0;
}

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

.z718bdpagebar .pagelist a:hover,
.z718bdpagelist a:hover {
    background: #1a1a1a;
    color: #fff;
}

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

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

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

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

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

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

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

.z718bdsidebar-list a:hover,
.z718bdsidebar-list .z718bdthis a {
    color: #1a73e8;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .z718bdsidebar {
        position: static;
    }

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

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

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

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

    .z718bdarticle-panel,
    .z718bdlist-panel,
    .z718bdrelated-panel {
        padding: 1.25rem;
    }

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

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

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

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

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

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

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

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

    .z718bdrelated-thumb {
        flex: none;
    }

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

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

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

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

    .z718bdpagebar .pagelist,
    .z718bdpagelist {
        justify-content: center;
    }
}

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

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

.z718bdsitemap-page .z718bdinner-main {
    padding: 0;
    min-height: 1px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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