        /* 配色变量 */
        .mzcttyh {
            --primary-blue: #007bb6;
            --primary-orange: #f5a623;
            --text-dark: #333333;
            --text-gray: #666666;
            --text-light-gray: #999999;
            --bg-white: #ffffff;
            --bg-gray: #f7f9fb;
            --border-color: #e5e9f0;
            --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            --card-hover-shadow: 0 12px 24px rgba(0, 123, 182, 0.12);
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* 基础重置 */
        .mzcttyh * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.mzcttyh .gallery-slide-title{
    position: absolute;
    height: 41.13px;
    opacity: 0.6;
    background: rgba(0, 0, 0, 1);
    color: #fff;
    z-index: 2;
    width: 100%;
    bottom: 0px;
    line-height: 41px;
    font-size: 16px;
    padding-left: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

        .mzcttyh {
            font-family: var(--font-family);
            background-color: #f4f6f9;
            color: var(--text-dark);
            line-height: 1.6;
            /* padding: 40px 20px; */
        }

        .mzcttyh .mac_header {
            width: 100%;
            position: relative;
            /* position: absolute; */
        }
        .mzcttyh .mac_header .img1{
            /* width: 100%; */
            height: 112px;
            position: absolute;
            margin-left: 19%;
            top: 20px;
        }
        .mzcttyh .mac_header .img2{
            width: 100%;
        }
        .mzcttyh .container {
            max-width: 1400px;
            margin: 0 auto;
            background: var(--bg-white);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            position: relative;
            top: -125px;
        }

        /* 通用部分标题 */
        .mzcttyh .section-header {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            padding: 0 10px;
        }

        .mzcttyh .section-header .line {
            height: 2px;
            flex: 1;
            background: linear-gradient(to right, transparent, #b3d4f0);
            max-width: 150px;
            transition: max-width 0.4s ease;
            /* 添加标题线动效 */
        }

        .mzcttyh .section-header:hover .line {
            max-width: 180px !important;
        }

        .mzcttyh .section-header .line:last-child {
            background: linear-gradient(to left, transparent, #b3d4f0);
        }

        .mzcttyh .section-header .circle {
            width: 8px;
            height: 8px;
            border: 2px solid var(--primary-blue);
            border-radius: 50%;
            background: var(--bg-white);
            margin: 0 8px;
            flex-shrink: 0;
            transition: background 0.3s ease, transform 0.3s ease;
            /* 添加圆点动效 */
        }

        .mzcttyh .section-header:hover .circle {
            background: var(--primary-blue) !important;
            transform: rotate(90deg) scale(1.2) !important;
        }

        .mzcttyh .section-header .title {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-blue);
            margin: 0 15px;
            letter-spacing: 2px;
            width: 100%;
        }

        .mzcttyh .section-header .title.orange {
            color: var(--primary-orange);
        }

        /* ================== 赛事公告区块 ================== */
        .mzcttyh .main-title-wrap {
            text-align: center;
            margin-bottom: 20px;
        }

        .mzcttyh .main-title {
            font-size: 26px;
            font-weight: bold;
            color: #0a4e8c;
            margin-bottom: 10px;
            letter-spacing: 1px;
            transition: transform 0.3s ease, text-shadow 0.3s ease;
            /* 添加大标题动效 */
        }

        .mzcttyh .main-title:hover {
            transform: scale(1.01);
            text-shadow: 0 4px 8px rgba(10, 78, 140, 0.08) !important;
        }

        .mzcttyh .main-subtitle {
            font-size: 14px;
            color: var(--text-gray);
            letter-spacing: 0.5px;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .mzcttyh .card-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 50px;
        }

        /* 卡片动效核心部分 */
        .mzcttyh .card-item {
            display: flex;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            background: var(--bg-white);
            box-shadow: var(--card-shadow);
            transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
            will-change: transform;
        }

        .mzcttyh .card-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-hover-shadow) !important;
            border-color: var(--primary-blue) !important;
        }

        .mzcttyh .card-date {
            background: var(--bg-gray);
            padding: 15px 20px;
            min-width: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-right: 1px solid var(--border-color);
            text-align: center;
            transition: background 0.3s ease;
        }

        .mzcttyh .card-item:hover .card-date {
            background: #eef4fa !important;
        }

        .mzcttyh .card-date .day {
            font-size: 28px;
            font-weight: bold;
            color: var(--primary-blue);
            line-height: 1.1;
        }

        .mzcttyh .card-date .year {
            font-size: 13px;
            color: var(--text-light-gray);
        }

        .mzcttyh .card-content {
            padding: 12px 15px;
            display: flex;
            align-items: center;
            font-size: 18px;
            color: var(--text-dark);
            line-height: 1.5;
            transition: color 0.3s ease;
        }

        .mzcttyh .card-item:hover .card-content {
            color: var(--primary-blue) !important;
        }

        /* ================== 赛事资讯区块 ================== */
        .mzcttyh .info-section {
            display: flex;
            gap: 25px;
            margin-bottom: 50px;
        }

        /* 图片占位符区块动效 */
        .mzcttyh .image-placeholder-wrapper {
            flex: 0 0 45%;
            position: relative;
            background: #000;
            border-radius: 4px;
            overflow: hidden;
            aspect-ratio: 4 / 3;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .mzcttyh .image-placeholder-wrapper:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15) !important;
        }

        .mzcttyh .image-placeholder-wrapper .caption-overlay {
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 10px 15px;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .mzcttyh .image-placeholder-wrapper:hover .caption-overlay {
            background: rgba(0, 0, 0, 0.8) !important;
        }

        .mzcttyh .image-placeholder-wrapper .caption-overlay .pagination {
            display: flex;
            gap: 4px;
        }

        .mzcttyh .image-placeholder-wrapper .caption-overlay .pagination span {
            display: block;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transition: background 0.2s ease;
        }

        .mzcttyh .image-placeholder-wrapper:hover .caption-overlay .pagination span {
            background: rgba(255, 255, 255, 0.5) !important;
        }

        .mzcttyh .image-placeholder-wrapper .caption-overlay .pagination span.active {
            background: #fff;
            border-radius: 2px;
            width: 10px;
        }

        /* 列表项动效 */
        .mzcttyh .info-list {
            flex: 1;
            display: flex;
            flex-direction: column;
            /* justify-content: space-between; */
            padding: 5px 0;
        }

        .mzcttyh .info-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px dashed #eaeaea;
            font-size: 18px;
            transition: background 0.25s ease, padding-left 0.25s ease, border-bottom-color 0.25s ease;
            border-radius: 4px;
        }

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

        .mzcttyh .info-item:hover {
            background: #f8faff !important;
            padding-left: 10px !important;
            border-bottom-color: var(--primary-blue) !important;
        }

        .mzcttyh .info-item .info-text {
            display: flex;
            align-items: center;
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 80%;
            transition: color 0.25s ease;
        }

        .mzcttyh .info-item:hover .info-text {
            color: var(--primary-blue) !important;
        }

        .mzcttyh .info-item .info-text::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 5px;
            background: var(--primary-blue);
            margin-right: 10px;
            flex-shrink: 0;
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .mzcttyh .info-item:hover .info-text::before {
            background: var(--primary-orange) !important;
            transform: scale(1.5) !important;
        }

        .mzcttyh .info-item .info-date {
            color: var(--text-light-gray);
            font-size: 18px;
            white-space: nowrap;
            margin-left: 10px;
        }

        /* ================== 赛事图文区块 (仅标题) ================== */
        .mzcttyh .footer-spacer {
            margin-top: 30px;
        }

        /* ================== 自适应媒体查询 ================== */
        @media (max-width: 768px) {
            .mzcttyh .mac_header{
                    height: 277px;

            }
            .mzcttyh .mac_header .img1{
                    height: 17px;
    margin-left: 10px;
            }
            .mzcttyh .container {
                width: 100%;
                padding: 20px !important;
            }

            .mzcttyh .card-grid {
                grid-template-columns: 1fr 1fr !important;
                gap: 15px !important;
            }

            .mzcttyh .card-date {
                min-width: 60px !important;
                padding: 10px 12px !important;
            }

            .mzcttyh .card-date .day {
                font-size: 22px !important;
            }

            .mzcttyh .info-section {
                flex-direction: column !important;
                gap: 20px !important;
            }

            .mzcttyh .image-placeholder-wrapper {
                flex: unset !important;
                width: 100% !important;
                aspect-ratio: 16 / 9 !important;
            }

            .mzcttyh .info-item .info-text {
                max-width: 70% !important;
            }
        }

        @media (max-width: 480px) {
            .mzcttyh .container {
                width: 100%;
                padding: 15px !important;
                border-radius: 4px;
            }

            .mzcttyh .section-header .title {
                font-size: 18px !important;
                margin: 0 8px !important;
            }

            .mzcttyh .section-header .line {
                max-width: 40px !important;
            }

            .mzcttyh .section-header:hover .line {
                max-width: 60px !important;
                /* 小屏也能动 */
            }

            .mzcttyh .section-header .circle {
                width: 6px !important;
                height: 6px !important;
                margin: 0 4px !important;
            }

            .mzcttyh .main-title {
                font-size: 20px !important;
            }

            .mzcttyh .main-subtitle {
                font-size: 13px !important;
                padding: 0 5px !important;
            }

            .mzcttyh .card-grid {
                grid-template-columns: 1fr !important;
                gap: 12px !important;
            }

            .mzcttyh .card-date {
                min-width: 70px !important;
            }

            .mzcttyh .info-section {
                gap: 15px !important;
            }

            .mzcttyh .image-placeholder-wrapper {
                min-height: 150px !important;
            }

            .mzcttyh .info-item {
                font-size: 13px !important;
                padding: 8px 0 !important;
            }

            .mzcttyh .info-item .info-text {
                max-width: 65% !important;
                white-space: normal !important;
                display: -webkit-box !important;
                -webkit-line-clamp: 2 !important;
                -webkit-box-orient: vertical !important;
            }

            .mzcttyh .info-item .info-date {
                font-size: 12px !important;
            }

            /* 手机端禁用不必要的缩放动效避免干扰 */
            .mzcttyh .image-placeholder-wrapper:hover {
                transform: none !important;
            }
        }

/* 图集网格外层：保证宽度100%且内容居中 */
.mzcttyh .gallery-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
}

        /* 轮播图容器 */
.mzcttyh .gallery-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;  /* 居中，避免偏左 */
}

/* ==================== 顶部Banner轮播(xwswiper)：图片占满容器 ==================== */
.mzcttyh .xwswiper {
    width: 100%;
    height: 100%;        /* 占满父级 image-placeholder-wrapper */
    overflow: hidden;
    position: relative;
    border-radius: 4px;  /* 与父级圆角一致 */
    float: none;         /* 覆盖HTML上的fl类，避免异常浮动 */
}

/* 单个slide：直接占满轮播宽高 */
.mzcttyh .xwswiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* a链接：块级+占满slide，使img可按百分比撑开 */
.mzcttyh .xwswiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* 核心：img宽高100% + object-fit:cover → 图片占满不留白边 */
.mzcttyh .xwswiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* 按比例裁切填满，不变形 */
    display: block;      /* 消除inline默认间隙 */
}

/* 底部标题遮罩条 */
.mzcttyh .xwswiper .swiper-slide p {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0 120px 0 20px; /* 右侧留空间给分页器 */
    width: 100%;
    height: 44px;
    line-height: 44px;
    color: #fff;
    font-size: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
    background: #0000007a;
}

/* 分页器：右下角 */
.mzcttyh .xwswiper .swiper-pagination {
    width: auto !important;
    left: auto !important;
    right: 19px;
    bottom: 7px;
    text-align: right;
    z-index: 10;
    /* position: relative; */
}

/* 左右箭头按钮 */
.mzcttyh .xwswiper .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 32px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
    /* background: rgba(0,0,0,0.25); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.mzcttyh .xwswiper:hover .btn {
    opacity: 1; /* hover时才显示箭头，更美观 */
}
.mzcttyh .xwswiper .xwprev {
    left: 0px;
}
.mzcttyh .xwswiper .xwnext {
    right: 0px;
}
.mzcttyh .xwswiper .btn img {
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    display: block;
}

/* 分页圆点样式 */
.mzcttyh .xwswiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.6);
    opacity: 1;
    width: 6px;
    height: 6px;
    border-radius: 0px;
    margin: 0 3px;
    transition: all 0.3s;
    vertical-align: middle;
}
.mzcttyh .xwswiper .swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 8px;
}

/* 响应式：小屏下调整标题与按钮 */
@media (max-width: 1024px) {
    .mzcttyh .xwswiper .swiper-slide p {
        padding: 0 16px;
        height: 36px;
        line-height: 36px;
        font-size: 13px;
    }
    .mzcttyh .xwswiper .btn {
        width: 26px;
        height: 26px;
    }
    .mzcttyh .xwswiper .swiper-pagination {
        right: 8px;
        bottom: 8px;
    }
    .mzcttyh .xwswiper .swiper-pagination-bullet {
        width: 12px;
        height: 5px;
    }
    .mzcttyh .xwswiper .swiper-pagination-bullet-active {
        width: 20px;
    }
}

.mzcttyh .ztswiper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mzcttyh .ztswiper .swiper-slide {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 300px;
}

.mzcttyh .ztswiper .swiper-slide a {
        display: block;
    text-decoration: none;
    color: var(--text-dark);
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* 轮播图片：撑满slide容器，确保3张均匀分布 */
.mzcttyh .ztswiper .swiper-slide img {
    width: 100%;       /* 宽度撑满slide，让3张等分的区域都被图片占满 */
    height: 100%;      /* 高度撑满slide（slide固定高300px） */
    object-fit: cover; /* 保持比例裁切，不变形 */
    display: block;    /* 消除img默认的inline间隙 */
    transition: transform 0.5s;
}

.mzcttyh .ztswiper .swiper-slide:hover img {
    transform: scale(1.08);
}

.mzcttyh .ztswiper .ztprev,
.mzcttyh .ztswiper .ztnext,
.mzcttyh .ztswiper .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.mzcttyh .ztswiper .ztprev img,
.mzcttyh .ztswiper .ztnext img,
.mzcttyh .ztswiper .btn img {
    width: 101%;
    height: 126%;
    object-fit: contain;
}

.mzcttyh .ztswiper .ztprev,
.mzcttyh .ztswiper .btn.ztprev {
    left: -8px;
}

.mzcttyh .ztswiper .ztnext,
.mzcttyh .ztswiper .btn.ztnext {
    right: -9px;
}

.mzcttyh .ztswiper .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mzcttyh .ztswiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    margin: 0 6px;
}

.mzcttyh .ztswiper .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 40px;
    border-radius: 6px;
}
.foot-wrap{
    background: #204d99de;
    padding: 60px 20px;
}