/*=========================================================
* Reset
*=========================================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f3f5f9;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}

/*=========================================================
* 首页背景
*=========================================================*/
body.is-home {
    background: #f3f5f9 url("/web/templates/img/index_page_bg.webp") center top no-repeat;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #1677ff;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/*=========================================================
* Container
*=========================================================*/
.container {
    width: 1200px;
    margin: auto;
}

/*=========================================================
* 页眉
*=========================================================*/
.header {
    background: #2f8be6;
    margin-bottom: 10px;
}

.header .container {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.logo a img {
    height: 40px;
    width: auto;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 45px;
}

.nav a {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
}

.nav a:hover {
    color: #ffe082;
}

/*=========================================================
* Main & Layout
*=========================================================*/
main {
    margin-top: 20px;
}

.content {
    display: flex;
    gap: 20px;
}

.left {
    width: 860px;
}

.right {
    width: 320px;
}

/*=========================================================
* Card
*=========================================================*/
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
    height: 50px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.card-title {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #409eff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.card-title::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 50px solid #409eff;
    border-right: 20px solid transparent;
}

.card-icon {
    margin-right: 8px;
    font-size: 16px;
}

.card-tabs {
    display: flex;
    align-items: center;
    gap: 45px;
    margin-left: 50px;
}

.card-tabs a {
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    text-decoration: none;
    transition: 0.2s;
}

.card-tabs a:hover {
    color: #409eff;
}

.card-tabs a.active {
    color: #409eff;
    font-weight: 600;
}

.card-tabs a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #409eff;
}

/*=========================================================
* 导航栏入口按钮样式
*=========================================================*/
.entry-btn {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-left: 12px;
    padding: 0 18px;
    color: #fff !important;
    text-decoration: none;
    background: linear-gradient(180deg,
            #5aa8f3 0%,
            #4095e5 100%);
    border: 1px solid #6cb5f8;
    border-radius: 5px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 1px 3px rgba(0, 0, 0, .15);
    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

/* 鼠标悬停 */
.entry-btn:hover {
    color: #fff !important;
    background: linear-gradient(180deg,
            #6cb5f8 0%,
            #4a9df0 100%);
    border-color: #82c1fb;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 3px 8px rgba(64, 149, 229, .35);
    transform: translateY(-1px);
}

/* 点击 */
.entry-btn:active {
    transform: translateY(0);
}

/* 流光效果 */
.entry-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: left .8s ease;
}

.entry-btn:hover::before {
    left: 180%;
}

/*=========================================================
* 赛事日期
*=========================================================*/
.match-date {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    background: linear-gradient(135deg,
            #409eff 0%,
            #60a5fa 50%,
            #38bdf8 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border-bottom: 0;
    box-shadow:
        0 2px 10px rgba(64, 158, 255, .18);
}

/* 流光 */
.match-date::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    animation: dateShine 4s linear infinite;
}

@keyframes dateShine {
    from {
        left: -120%;
    }

    to {
        left: 150%;
    }
}

/* 左侧标识 */
.date-slash {
    width: 6px;
    height: 24px;
    background: #fff;
    border-radius: 3px;
    transform: skew(-20deg);
    margin-right: 12px;
    flex-shrink: 0;
}

/*=========================================================
* 平板
*=========================================================*/
@media (max-width: 992px) {
    .match-date {
        font-size: 18px;
        padding: 0 20px;
    }
}

/*=========================================================
* 手机
*=========================================================*/
@media (max-width: 768px) {
    .match-date {
        height: auto;
        min-height: 48px;
        padding: 12px 15px;
        font-size: 16px;
        line-height: 1.6;
        flex-wrap: wrap;
    }

    .date-slash {
        height: 20px;
        margin-right: 10px;
    }
}

/*=========================================================
* 赛事列表
*=========================================================*/
.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid #eeeeee;
    background: #fff;
    transition: all .25s ease;
}

.match-row:hover {
    background: #f5f9ff;
    transform: translateY(-1px);
    box-shadow: inset 3px 0 0 #409eff;
}

.match-time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
    transition: all .25s ease;
    transform-origin: center;
    cursor: pointer;
    width: 100px;
    font-size: 14px;
}

.match-time:hover {
    transform: scale(1.08);
    color: #2563eb;
}

.match-time .ball {
    transition: all .25s ease;
}

.match-time:hover .ball {
    transform: rotate(15deg);
}

.match-league {
    width: 150px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.match-league .league-name {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-team {
    width: 480px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

.match-home,
.match-away {
    width: 210px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.match-home {
    justify-content: flex-start;
}

.match-away {
    justify-content: flex-end;
}

.match-home span,
.match-away span {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-vs {
    width: 20px;
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    color: #999;
}

.match-home img,
.match-away img,
.match-league img,
.match-logo-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

.match-btn {
    background: #409eff;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.match-btn:hover {
    background: #5f94cc;
    cursor: pointer;
}

.match-hot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/*=========================================================
* 首页右侧新闻列表
*=========================================================*/
.news-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.news-image {
    flex-shrink: 0;
}

.news-item .news-image img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.news-content {
    flex: 1;
    min-width: 0;
}

.news-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    word-break: break-word;
    overflow-wrap: break-word;
}

.news-item:hover .news-title {
    color: #1677ff;
}

/*=========================================================
* 新闻列表
*=========================================================*/
.news-detais-card {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-detais-card:hover .news-detais-title {
    color: #0066cc;
}

.news-detais-thumb {
    display: block;
    width: 240px;
    height: 135px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-detais-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.news-detais-card:hover .news-detais-thumb img {
    transform: scale(1.08);
}

.news-detais-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.news-detais-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-detais-summary {
    margin-top: 8px;
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.news-detais-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.news-detais-tag {
    background: #f4f4f5;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
}

.news-detais-date {
    font-size: 12px;
    color: #999;
}

.origin-link {
    color: #e60012;
    font-weight: 700;
    transition: color .2s ease;
}

a:hover .origin-link {
    color: #1677ff;
}

/*=========================================================
* 页码
*=========================================================*/
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

/* 普通页码 + 当前页 共用样式 */
.pagination a,
.pagination .current-page {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .2s ease;
}

/* 鼠标悬停 */
.pagination a:hover {
    color: #409eff;
    border-color: #409eff;
}

/* 当前页 */
.pagination .active {
    background: #409eff;
    border-color: #409eff;
    color: #fff;
}

/* 省略号 */
.page-dots {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 24px;
    height: 38px;
    color: #999;
    user-select: none;
}

/*=========================================================
* 页码移动端
*=========================================================*/
/* 平板 */
@media (max-width: 992px) {
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }

    .pagination a {
        min-width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
}

/* 手机 */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        padding: 0 10px;
    }

    .pagination a {
        min-width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }
}

/*=========================================================
* 新闻详情
*=========================================================*/
.breadcrumb {
    color: #999;
    font-size: 13px;
    margin-bottom: 30px;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #409eff;
}

.article-meta {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.article-page {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.prev-article,
.next-article {
    line-height: 2.2;
    margin-bottom: 10px;
}

.prev-article a,
.next-article a {
    color: #333;
}

.prev-article a:hover,
.next-article a:hover {
    color: #409eff;
}

/*=========================================================
* 文章正文大图专属样式
*=========================================================*/
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 6px;
}

/*=========================================================
* 相关新闻推荐
*=========================================================*/
.related {
    margin-top: 40px;
}

.related-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 4px solid #409eff;
}

.related-list {
    margin-top: 15px;
}

.related-list a {
    display: block;
    height: 40px;
    line-height: 40px;
    color: #333;
    border-bottom: 1px dashed #eee;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.related-list a:hover {
    color: #409eff;
}

.related-wrapper {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.related-item {
    margin-bottom: 10px;
}

.related-link {
    display: flex;
    justify-content: space-between;
    color: #333;
    font-size: 14px;
}

.related-link:hover .related-title {
    color: #007bff;
}

.related-date {
    color: #999;
    font-size: 14px;
}

/*===============================================================
* About & Article & Contact & Disclaimer & News & Privacy & Terms
*================================================================*/
.about-wrap,
.article-wrap,
.contact-wrap,
.disclaimer-wrap,
.news-list-wrap,
.privacy-wrap,
.terms-wrap {
    background: #fff;
    padding: 40px 60px;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-title,
.article-title,
.contact-title,
.disclaimer-title,
.news-list-title,
.privacy-title,
.terms-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

/*=========================================================
* 联系我们
*=========================================================*/
.contact-item {
    margin: 15px 0;
    padding: 12px 16px;
    background: #f8f9fa;
    border-left: 4px solid #1677ff;
    border-radius: 6px;
    line-height: 1.8;
}

.contact-label {
    font-weight: 600;
    color: #333;
}

.contact-link {
    color: #1677ff;
    text-decoration: none;
    word-break: break-all;
    transition: all .2s ease;
}

.contact-link:hover {
    color: #0958d9;
    text-decoration: underline;
}

/*=========================================================
* 服务条款
*=========================================================*/
.page-content h2 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    border-left: 4px solid #0052cc;
    /* 呼应你 AI 网关里定义的 theme_color */
    padding-left: 10px;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1rem;
    text-align: justify;
}

.page-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.page-content li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0.5rem;
}

.legal-notice strong {
    color: #d9383a;
    /* 对核心免责和禁止 AI 抓取条款进行高亮变红显示，增强法律效力 */
}

/**
 * ============================================================================
 * 404 Error Page Standard Stylesheet (Isolated Version)
 * ============================================================================
 * 职责：负责 404 独立死链页面的整体排版与元素高亮。
 * 安全机制：全量样式收拢于 .error-page-404 命名空间下，绝不污染全局 body。
 * ============================================================================
 */
/* 1. 专属命名空间布局与局部重置 */
.error-page-404 {
    text-align: center;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    background-color: #fff;
    margin: 0;
    /* 确保作为伪 body 时能撑开一定高度 */
    min-height: 100vh;
    box-sizing: border-box;
}

/* 2. 状态码大标题（严格限定在 404 页面内） */
.error-page-404 h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 10px;
    color: #d9534f;
    /* 警示红 */
    font-weight: 700;
}

/* 3. 核心错误提示文案 */
.error-page-404 p {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 15px;
    color: #444;
}

/* 4. 倒计时提示小字 */
.error-page-404 .tips {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* 5. 倒计时数字高亮 */
.error-page-404 #countdown {
    color: #d9534f;
}

/* 6. 返回首页主动作按钮 */
.error-page-404 .btn {
    display: inline-block;
    padding: 10px 24px;
    background: #007bff;
    /* 标准蓝 */
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.2s ease-in-out;
}

/* 7. 按钮悬停状态 */
.error-page-404 .btn:hover,
.error-page-404 .btn:focus {
    background: #0056b3;
    outline: none;
}

/* ============================================================================
   响应式断点：针对 PC 电脑端大屏进行视觉放大
   ============================================================================ */
@media (min-width: 768px) {
    .error-page-404 {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .error-page-404 h1 {
        font-size: 80px;
    }
}

/*=========================================================
* 友情链接
*=========================================================*/
.friend-links {
    background: #fff;
    margin-top: 10px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.friend-links .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.friend-title {
    color: #409eff;
    font-weight: 600;
    margin-right: 10px;
}

.friend-links a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f5f7fa;
    color: #666;
    text-decoration: none;

    transition: all .25s ease;
}

.friend-links a:hover {
    background: #409eff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, .25);
}

/*=========================================================
* 友情链接移动端
*=========================================================*/
@media (max-width:768px) {
    .friend-links {
        padding: 12px 0;
    }

    .friend-links .container {
        gap: 8px;
    }

    .friend-title {
        width: 100%;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .friend-links a {
        padding: 5px 10px;
        font-size: 13px;
    }
}

/*=========================================================
* 页脚
*=========================================================*/
.footer {
    background: #2d2d2d;
    margin-top: 30px;
    padding: 25px 0;
}

.footer-line {
    height: 1px;
    background: rgba(255, 255, 255, .15);
    margin-bottom: 20px;
}

.footer p {
    color: #999;
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.footer-desc,
.footer-tip {
    text-align: center;
}

.footer-copy {
    text-align: center;
    margin-top: 10px;
}

.footer-nav {
    text-align: center;
    margin-top: 8px;
    white-space: nowrap;
}

.footer-nav a {
    display: inline-block;
    color: #999;
    margin: 0 8px;
    text-decoration: none;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #409eff;
}

/*=========================================================
* 页脚移动端适配
*=========================================================*/
@media (max-width:768px) {
    .footer {
        margin-top: 20px;
        padding: 20px 12px;
    }

    .footer p {
        font-size: 12px;
    }

    /* 说明文字左对齐 */
    .footer-desc,
    .footer-tip {
        text-align: left;
        line-height: 1.9;
    }

    /* 版权保持居中 */
    .footer-copy {
        text-align: center;
    }

    /* 导航在移动端实现自动折行且完美居中 */
    .footer-nav {
        /* 1. 核心：开启 Flexbox 弹性布局 */
        display: flex;

        /* 2. 核心：允许子元素在空间不足时自动换行（转为多行显示） */
        flex-wrap: nowrap;

        /* 3. 核心：多行状态下，所有子元素在主轴（横向）上整体居中对齐 */
        justify-content: center;

        /* 4. 清理旧网关残余：允许换行后，必须解除“强制不换行”限制 */
        white-space: normal;

        /* 5. 清理旧网关残余：干掉之前的横向滚动轴，避免触发多余的系统调用 */
        overflow-x: visible;
        overflow-y: visible;
        -webkit-overflow-scrolling: auto;

        /* 6. 移动端体验优化：控制整块导航的左右内边距，防止贴边难看 */
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* 7. 进阶保障：如果你的子元素（如 a 标签）之前没写间距，建议加上这个 */
    .footer-nav a {
        display: inline-block;
        /* 关键：给每个导航项上下、左右拉开合适的间距，折行后上下两行才不会死死贴在一起 */
        margin: 6px 10px;
    }

    /* ============================================================================
   特定导航项移动端隐藏机制
   ============================================================================ */
    /* 默认样式（移动优先）：在手机移动端，直接将该导航项隐藏 */
    .footer-nav .nav-sitemap {
        display: none !important;
        /* 隐藏元素，且不占用任何网页空间 */
    }
}

/* 响应式断点：当屏幕宽度大于 768px（电脑、Pad 横屏）时，重新将其显示出来 */
@media (min-width: 768px) {
    .footer-nav .nav-sitemap {
        display: inline-block;
        /* 恢复电脑端的正常显示（如果是 flex 布局也可以写 inline-flex 或 flex） */
    }
}

/*=========================================================
* 首页数据请求加载框
*=========================================================*/
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
}

.loading .spinner {
    width: 42px;
    height: 42px;
    border: 3px solid #e5e7eb;
    border-top-color: #1677ff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin-bottom: 12px;
}

.loading span {
    font-size: 14px;
    color: #666;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*=========================================================
* Responsive
*=========================================================*/
@media (max-width:1200px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    .content {
        flex-direction: column;
        align-items: center;
    }

    .left,
    .right {
        width: 100%;
        margin: 0 auto;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
    }
}

/* 平板专用断点 */
@media (max-width:992px) {

    .left,
    .right {
        width: 100%;
    }

    .match-team {
        width: auto;
    }

    .news-detais-thumb {
        width: 200px;
        height: 112px;
    }
}

/* 移动端断点 */
@media (max-width:768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .left,
    .right {
        width: 100%;
        margin: 0 auto;
    }

    .match-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .match-time,
    .match-league,
    .match-team {
        width: 100%;
        justify-content: center;
    }

    .match-home,
    .match-away {
        width: auto;
        justify-content: center;
    }

    .match-team {
        gap: 15px;
    }

    .match-btn {
        width: 120px;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
    }

    .news-item .news-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .about-wrap,
    .article-wrap,
    .contact-wrap,
    .disclaimer-wrap,
    .news-list-wrap,
    .privacy-wrap,
    .terms-wrap {
        padding: 20px;
    }

    .about-title,
    .article-title,
    .contact-title,
    .disclaimer-title,
    .news-list-title,
    .privacy-title,
    .terms-title {
        font-size: 28px;
    }

    .article-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .header .container {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav {
        width: 100%;
        justify-content: space-around;
        gap: 0;
    }

    .nav a {
        font-size: 16px;
    }

    .card-header {
        height: auto;
        flex-wrap: wrap;
    }

    .card-title {
        width: 100%;
    }

    .card-title::after {
        display: none;
    }

    .card-tabs {
        width: 100%;
        margin-left: 0;
        justify-content: center;
        gap: 20px;
    }

    /* 新闻列表移动端 */
    .news-detais-card {
        flex-direction: column;
    }

    .news-detais-thumb {
        width: 100%;
        height: auto;
    }

    .news-detais-thumb img {
        width: 100%;
        height: auto;
    }

    .news-detais-title {
        font-size: 16px;
    }

    .news-detais-summary {
        -webkit-line-clamp: 2;
    }
}