﻿/* ========== 1. BASELINE (cwl PC 风格) ========== */
* {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
    color: #333;
    background: #f5f5f5;
    line-height: 1.6;
}

body {
    min-width: 1200px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: #e60012;
}

img {
    max-width: 100%;
    border: 0;
    vertical-align: middle;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-wrap {
    width: 1200px;
    margin: 0 auto;
}

.c-red {
    color: #e60012;
}

.c-gray {
    color: #999;
}

.w_2e17074::after {
    content: "";
    display: table;
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.more-btn {
    display: inline-block;
    color: #999;
    font-size: 13px;
    border: 1px solid #ddd;
    padding: 3px 10px;
    border-radius: 3px;
}

.more-btn:hover {
    color: #e60012;
    border-color: #e60012;
}

/* ---------- ① 顶栏红条 ---------- */
.c-topbar {
    background: #c00000;
    color: #fff;
    height: 34px;
    line-height: 34px;
    font-size: 13px;
}

.c-topbar a {
    color: #fff;
    margin: 0 8px;
}

.c-topbar a:hover {
    color: #ffe95a;
}

.c-topbar-left b {
    margin-right: 10px;
    letter-spacing: 1px;
}

.c-topbar-right span {
    margin: 0 6px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- ② 头部 Logo + 搜索 + 导航 ---------- */
.c-header {
    background: #fff;
}

.c-header-inner {
    padding: 18px 0;
    display: flex;
    align-items: center;
}

.c-logo {
    flex: 0 0 260px;
}

.c-logo img {
    height: 62px;
}

.c-header-center {
    flex: 1;
    text-align: center;
    padding: 0 30px;
}

.c-slogan {
    font-family: "KaiTi", "楷体", sans-serif;
    font-size: 22px;
    letter-spacing: 8px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 6px;
    margin-bottom: 10px;
}

.c-search {
    display: inline-flex;
    max-width: 420px;
    width: 100%;
    border: 1px solid #e60012;
    border-radius: 4px;
    overflow: hidden;
}

.c-search input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.c-search button {
    flex: 0 0 84px;
    border: 0;
    background: #e60012;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.c-header-right {
    flex: 0 0 220px;
    text-align: right;
    font-size: 13px;
    color: #666;
}

.c-header-right .tel {
    font-size: 18px;
    color: #e60012;
    font-weight: bold;
    letter-spacing: 1px;
}

.c-nav {
    background: #c00000;
    border-top: 2px solid #9b0000;
}

.c-nav-list {
    display: flex;
    height: 52px;
    line-height: 52px;
}

.c-nav-item {
    flex: 1;
    text-align: center;
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background .2s;
}

.c-nav-item:last-child {
    border-right: 0;
}

.c-nav-item:hover,
.c-nav-item.active {
    background: #9b0000;
    color: #fff;
}

.c-nav-item .ico-live {
    display: inline-block;
    width: 22px;
    height: 16px;
    vertical-align: middle;
    background: #ffe95a;
    color: #c00000;
    font-size: 11px;
    border-radius: 2px;
    margin-right: 4px;
    line-height: 16px;
    font-weight: 700;
}

/* ---------- ③ Hero Banner ---------- */
.c-hero {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.c-hero-banner {
    height: 420px;
    width: 100%;
    background: linear-gradient(135deg, #c00000 0%, #e24040 60%, #ffb3a0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.c-hero-inner {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
}

.c-hero-left h1 {
    font-size: 42px;
    margin: 0 0 14px;
    line-height: 1.3;
    letter-spacing: 2px;
    font-weight: 700;
}

.c-hero-left p {
    font-size: 18px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
}

.c-hero-btn a {
    display: inline-block;
    padding: 11px 30px;
    border-radius: 30px;
    font-size: 15px;
    margin-right: 14px;
    transition: all .2s;
}

.c-hero-btn .btn-primary {
    background: #ffe95a;
    color: #c00000;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255, 233, 90, 0.3);
}

.c-hero-btn .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 233, 90, 0.45);
}

.c-hero-btn .btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.c-hero-btn .btn-outline:hover {
    background: #fff;
    color: #c00000;
}

.c-hero-right img {
    max-height: 330px;
    width: auto;
}

/* ---------- ④ 彩种开奖卡片 ---------- */
.c-kj {
    padding: 30px 0 10px;
}

.c-kj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.c-kj-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #f0f0f0;
    transition: all .25s;
}

.c-kj-card:hover {
    box-shadow: 0 6px 20px rgba(192, 0, 0, 0.08);
    transform: translateY(-3px);
}

.c-kj-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px dashed #f0f0f0;
}

.c-kj-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.c-kj-title img {
    width: 32px;
    height: 32px;
}

.c-kj-issue {
    font-size: 13px;
    color: #999;
    text-align: right;
}

.c-kj-prize {
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    min-height: 20px;
}

.c-kj-prize b {
    color: #e60012;
}

.c-kj-balls {
    margin-bottom: 14px;
    min-height: 40px;
}

.qiu-r,
.qiu-b {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin: 2px 4px 2px 0;
    font-size: 15px;
}

.qiu-r {
    background: radial-gradient(circle at 30% 30%, #ff5a5a, #d60000);
}

.qiu-b {
    background: radial-gradient(circle at 30% 30%, #6aa5ff, #0c4fbf);
}

.qiu-s {
    display: inline-block;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background: #e60012;
    color: #fff;
    margin: 2px 3px 2px 0;
    font-size: 13px;
    font-weight: 700;
}

.c-kj-extra {
    font-size: 12px;
    color: #999;
    padding: 8px 0 12px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 12px;
}

.c-kj-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.c-kj-btns a {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 6px 0;
    font-size: 12px;
    color: #666;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all .2s;
}

.c-kj-btns a:hover {
    border-color: #e60012;
    color: #e60012;
    background: #fff5f6;
}

.c-kj-info {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
    border: 1px solid #f0f0f0;
    font-size: 13px;
    color: #666;
}

.c-kj-info .c-kj-info-row {
    display: flex;
    padding: 4px 0;
    align-items: flex-start;
    gap: 10px;
}

.c-kj-info .tag {
    flex: 0 0 100px;
    color: #e60012;
    font-weight: 700;
}

.c-kj-info .channels {
    color: #444;
    flex: 1;
}

/* ---------- ⑤ / ⑥ Tab 资讯区（5 Tab + 7 Tab） ---------- */
.c-news {
    padding: 20px 0;
}

/* ---------- 5 Banner 大图轮播（1:1 参考 cwl.gov.cn 首页 banner_container.home-mt15） ---------- */
.flex.flex-row.justify-between.align-start {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-top: 0;
}

.swiper-container.haaugz_container.marginTop.home-mt15,
.haaugz_container.marginTop.home-mt15 {
    margin-top: 15px;
    width: 100%;
}

.swiper-container.haaugz_container,
.haaugz_container {
    position: relative;
    width: 100%;
    height: 390px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.swiper-wrapper,
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide.banner-item,
.banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    transition: transform .9s ease;
    transform: scale(1);
}

.swiper-slide.banner-item a,
.banner-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.swiper-slide.banner-item img,
.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 6s ease;
}

.swiper-slide.banner-item.is-active img,
.banner-item.is-active img {
    transform: scale(1.05);
}

.swiper-slide.banner-item .w_0fac9e4,
.banner-item .w_0fac9e4 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0 26px;
    height: 58px;
    line-height: 58px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .25) 80%, rgba(0, 0, 0, 0));
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 3;
}

.swiper-slide.banner-item .w_0fac9e4 span,
.banner-item .w_0fac9e4 span {
    display: inline-block;
    max-width: 100%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow: 0 1px 3px rgba(0, 0, 0, .45);
}

/* 7 张轮播：每张展示约 5.5s，总周期 38.5s（7×5.5）。相邻段 overlap 1.5%（~578ms）交叉淡入+z-index 3/2 分层，彻底消除白屏 */
@keyframes bannerShow_0 {
    0% {
        opacity: 0;
        z-index: 0
    }

    1.50% {
        opacity: 1;
        z-index: 3
    }

    12.78% {
        opacity: 1;
        z-index: 3
    }

    14.28% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_1 {

    0%,
    12.78% {
        opacity: 0;
        z-index: 0
    }

    14.28% {
        opacity: 0;
        z-index: 2
    }

    15.78% {
        opacity: 1;
        z-index: 3
    }

    27.06% {
        opacity: 1;
        z-index: 3
    }

    28.56% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_2 {

    0%,
    27.06% {
        opacity: 0;
        z-index: 0
    }

    28.56% {
        opacity: 0;
        z-index: 2
    }

    30.06% {
        opacity: 1;
        z-index: 3
    }

    41.34% {
        opacity: 1;
        z-index: 3
    }

    42.84% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_3 {

    0%,
    41.34% {
        opacity: 0;
        z-index: 0
    }

    42.84% {
        opacity: 0;
        z-index: 2
    }

    44.34% {
        opacity: 1;
        z-index: 3
    }

    55.62% {
        opacity: 1;
        z-index: 3
    }

    57.12% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_4 {

    0%,
    55.62% {
        opacity: 0;
        z-index: 0
    }

    57.12% {
        opacity: 0;
        z-index: 2
    }

    58.62% {
        opacity: 1;
        z-index: 3
    }

    69.90% {
        opacity: 1;
        z-index: 3
    }

    71.40% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_5 {

    0%,
    69.90% {
        opacity: 0;
        z-index: 0
    }

    71.40% {
        opacity: 0;
        z-index: 2
    }

    72.90% {
        opacity: 1;
        z-index: 3
    }

    84.18% {
        opacity: 1;
        z-index: 3
    }

    85.68% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

@keyframes bannerShow_6 {

    0%,
    84.18% {
        opacity: 0;
        z-index: 0
    }

    85.68% {
        opacity: 0;
        z-index: 2
    }

    87.18% {
        opacity: 1;
        z-index: 3
    }

    98.46% {
        opacity: 1;
        z-index: 3
    }

    99.96% {
        opacity: 0;
        z-index: 2
    }

    100% {
        opacity: 0;
        z-index: 0
    }
}

.swiper-slide.banner-item:nth-child(1),
.banner-item:nth-child(1) {
    animation: bannerShow_0 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(2),
.banner-item:nth-child(2) {
    animation: bannerShow_1 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(3),
.banner-item:nth-child(3) {
    animation: bannerShow_2 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(4),
.banner-item:nth-child(4) {
    animation: bannerShow_3 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(5),
.banner-item:nth-child(5) {
    animation: bannerShow_4 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(6),
.banner-item:nth-child(6) {
    animation: bannerShow_5 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(7),
.banner-item:nth-child(7) {
    animation: bannerShow_6 38.5s linear infinite;
}

.swiper-slide.banner-item:nth-child(1).is-active,
.swiper-slide.banner-item:nth-child(1):hover,
.banner-item:nth-child(1).is-active,
.banner-item:nth-child(1):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(2).is-active,
.swiper-slide.banner-item:nth-child(2):hover,
.banner-item:nth-child(2).is-active,
.banner-item:nth-child(2):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(3).is-active,
.swiper-slide.banner-item:nth-child(3):hover,
.banner-item:nth-child(3).is-active,
.banner-item:nth-child(3):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(4).is-active,
.swiper-slide.banner-item:nth-child(4):hover,
.banner-item:nth-child(4).is-active,
.banner-item:nth-child(4):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(5).is-active,
.swiper-slide.banner-item:nth-child(5):hover,
.banner-item:nth-child(5).is-active,
.banner-item:nth-child(5):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(6).is-active,
.swiper-slide.banner-item:nth-child(6):hover,
.banner-item:nth-child(6).is-active,
.banner-item:nth-child(6):hover {
    animation-play-state: paused;
}

.swiper-slide.banner-item:nth-child(7).is-active,
.swiper-slide.banner-item:nth-child(7):hover,
.banner-item:nth-child(7).is-active,
.banner-item:nth-child(7):hover {
    animation-play-state: paused;
}

/* 底部 pagination 小圆点（与 cwl pagination 视觉一致） */
.swiper-container.haaugz_container .pagination,
.haaugz_container .pagination {
    position: absolute;
    bottom: 18px;
    right: 24px;
    z-index: 5;
    display: flex;
    gap: 10px;
}

.swiper-container.haaugz_container .pagination i,
.haaugz_container .pagination i {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transition: all .3s;
    list-style: none;
    font-style: normal;
}

.swiper-container.haaugz_container .pagination i:nth-child(1),
.haaugz_container .pagination i:nth-child(1) {
    background: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .3);
}

.haaugz_container:has(.swiper-slide.banner-item:nth-child(2):hover) .pagination i:nth-child(2),
.haaugz_container:has(.banner-item:nth-child(2):hover) .pagination i:nth-child(2),
.haaugz_container:has(.swiper-slide.banner-item:nth-child(2)) .pagination i:nth-child(2),
.haaugz_container:has(.banner-item:nth-child(2)) .pagination i:nth-child(2) {
    background: rgba(255, 255, 255, .45);
}

.c-news-block {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    margin-bottom: 22px;
    overflow: hidden;
}

.c-news-head {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.c-news-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 120px;
    height: 2px;
    background: #e60012;
}

.c-tab-list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.c-tab-item {
    padding: 14px 18px;
    font-size: 15px;
    color: #666;
    position: relative;
    cursor: pointer;
    transition: all .2s;
}

.c-tab-item:hover,
.c-tab-item.active {
    color: #e60012;
    font-weight: 600;
}

.c-news-head .more-btn {
    margin-left: auto;
}

.c-news-body {
    padding: 14px 20px 20px;
}

.c-news-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 40px;
}

.c-news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px dashed #f4f4f4;
}

.c-news-list li:last-child {
    border-bottom: 0;
}

.c-news-list li a {
    display: block;
    flex: 1;
    padding-right: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.c-news-list li a::before {
    content: "·";
    color: #c00000;
    margin-right: 6px;
    font-weight: 700;
}

.c-news-list li .date {
    color: #bbb;
    font-size: 12px;
    flex: 0 0 auto;
}

/* ---------- ⑦ 公益金专栏 + 功能卡 ---------- */
.c-gy {
    padding: 6px 0 30px;
}

.c-gy-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
}

.c-gy-banner {
    background: linear-gradient(135deg, #e65c00, #e60012 55%, #c00000);
    border-radius: 10px;
    color: #fff;
    padding: 30px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(198, 0, 0, .08);
    transition: all .3s ease;
    cursor: pointer;
    text-decoration: none;
}

.c-gy-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(198, 0, 0, .18);
}

.c-gy-banner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255, 233, 90, 0.22), transparent 70%);
    border-radius: 50%;
    right: -70px;
    top: -70px;
    z-index: 1;
}

.c-gy-banner::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
    border-radius: 50%;
    left: -40px;
    bottom: -50px;
    z-index: 1;
}

.c-gy-text {
    position: relative;
    z-index: 2;
}

.c-gy-text h3 {
    font-family: "SimHei", sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

.c-gy-text p {
    font-size: 15px;
    margin: 0 0 22px;
    color: #fff;
    max-width: 440px;
    line-height: 1.85;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
}

.c-gy-text .btn {
    display: inline-block;
    padding: 10px 28px;
    background: #fff;
    color: #c00000 !important;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .12);
    transition: all .25s;
}

.c-gy-banner:hover .c-gy-text .btn {
    background: #fff6e9;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transform: translateY(-1px);
}

.c-gy-ico {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.c-gy-ico img {
    width: 130px;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .2));
}

.c-gy-cards {
    display: grid;
    grid-auto-rows: minmax(84px, auto);
    gap: 12px;
}

.c-gy-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .25s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.c-gy-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: #e60012;
    transition: height .3s ease;
}

.c-gy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(198, 0, 0, .1);
    border-color: #f3b7b7;
}

.c-gy-card:hover::before {
    height: 100%;
}

.c-gy-card:hover .ttl {
    color: #c00000;
}

.c-gy-card img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 7px;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff5f5, #fff0e6);
    border: 1px solid #f6dfdf;
    box-sizing: border-box;
    object-fit: contain;
}

.c-gy-card .txt {
    flex: 1;
    min-width: 0;
}

.c-gy-card .ttl {
    font-family: "SimHei", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    letter-spacing: .5px;
    transition: color .2s;
}

.c-gy-card .w_f09d642 {
    font-size: 12.5px;
    color: #888;
    margin-top: 4px;
    line-height: 1.6;
}

/* ---------- ⑧ Footer ---------- */
.c-footer {
    background: #fafafa;
    border-top: 1px solid #eee;
    padding: 28px 0 24px;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

.c-foot-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
}

.c-foot-logo {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.c-foot-logo img {
    height: 42px;
}

.c-foot-copy p {
    margin: 5px 0;
    line-height: 1.8;
}

.c-foot-copy a {
    color: #e60012;
}

.c-foot-col h4 {
    font-size: 15px;
    margin: 0 0 10px;
    color: #333;
}

.c-foot-col ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.c-foot-col li a {
    color: #666;
    font-size: 13px;
}

.c-foot-col li a:hover {
    color: #e60012;
}

.c-foot-qr {
    text-align: center;
}

.c-foot-qr img {
    width: 180px;
    height: auto;
    border: 1px solid #f0f0f0;
    padding: 6px;
    background: #fff;
    border-radius: 4px;
}

.c-foot-qr p {
    color: #999;
    margin-top: 6px;
    font-size: 12px;
}

.c-foot-links {
    padding: 16px 0 6px;
    text-align: center;
    color: #999;
    font-size: 12px;
}

.c-foot-links a {
    color: #666;
    margin: 0 6px;
}

.c-foot-tip {
    background: #fff6e9;
    border: 1px solid #ffe0a3;
    color: #a86000;
    border-radius: 6px;
    padding: 10px 16px;
    text-align: center;
    font-size: 13px;
    margin-top: 10px;
}

/* ========== 2. PC GUARD >=1200px 显式锁死，与移动端互斥 ========== */
@media (min-width: 1200px) {
    body {
        min-width: 1200px !important;
        width: auto !important;
    }

    .c-wrap {
        width: 1200px !important;
        max-width: 1200px !important;
    }

    .c-kj-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .c-nav-list {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        height: 52px !important;
    }

    .c-nav-item {
        flex: 1 !important;
        width: auto !important;
        border-bottom: 0 !important;
    }

    .c-news-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Banner：PC GUARD 显式锁死，与移动端互斥 */
    .flex.flex-row.justify-between.align-start {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: flex-start !important;
        gap: 18px !important;
    }

    .swiper-container.haaugz_container,
    .haaugz_container {
        height: 390px !important;
        width: 100% !important;
        border-radius: 10px !important;
    }

    .swiper-slide.banner-item,
    .banner-item {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide.banner-item .w_0fac9e4,
    .banner-item .w_0fac9e4 {
        height: 58px !important;
        line-height: 58px !important;
        padding: 0 26px !important;
    }

    .swiper-slide.banner-item .w_0fac9e4 span,
    .banner-item .w_0fac9e4 span {
        font-size: 16px !important;
    }

    .swiper-container.haaugz_container .pagination,
    .haaugz_container .pagination {
        display: flex !important;
    }

    .c-gy-grid {
        grid-template-columns: 2fr 1fr !important;
        gap: 18px !important;
    }

    .c-gy-banner {
        flex-direction: row !important;
        justify-content: space-between !important;
        text-align: left !important;
        padding: 30px !important;
        gap: 0 !important;
        min-height: 220px !important;
    }

    .c-gy-cards {
        grid-auto-rows: minmax(84px, auto) !important;
        gap: 12px !important;
    }

    .c-gy-card {
        flex-direction: row !important;
        align-items: center !important;
        padding: 14px 16px !important;
        gap: 14px !important;
    }

    .c-gy-card img {
        width: 44px !important;
        height: 44px !important;
        flex: 0 0 44px !important;
        padding: 7px !important;
    }

    .c-gy-text h3 {
        font-size: 26px !important;
    }

    .c-gy-text p {
        font-size: 15px !important;
    }

    .c-gy-ico img {
        width: 130px !important;
    }

    .c-foot-main {
        grid-template-columns: 1.3fr 2fr 1fr !important;
    }
}

/* ========== 3. MOBILE <=767px cwl H5 流体风格 ========== */
@media (max-width: 767px) {

    html,
    body {
        min-width: 0 !important;
        width: 100% !important;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    body {
        font-size: 15px;
        background: #f5f5f5;
    }

    .c-wrap {
        width: 100% !important;
        padding: 0 12px;
        box-sizing: border-box;
    }

    .fl,
    .fr {
        float: none !important;
    }

    /* 顶栏：两行吗，溢出滚动 */
    .c-topbar {
        height: auto !important;
        line-height: 1.6;
        padding: 6px 10px;
        font-size: 12px;
    }

    .c-topbar .fl,
    .c-topbar .fr {
        float: none !important;
        display: block;
        width: 100%;
        text-align: center;
        padding: 2px 0;
    }

    .c-topbar a {
        margin: 0 4px;
    }

    .c-topbar-right span {
        margin: 0 3px;
    }

    /* 头部：Logo居中堆叠 */
    .c-header-inner {
        flex-direction: column !important;
        padding: 14px 12px !important;
        gap: 12px;
    }

    .c-logo {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .c-logo img {
        height: 48px !important;
    }

    .c-header-center {
        padding: 0 !important;
    }

    .c-slogan {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .c-search {
        max-width: 100%;
    }

    .c-header-right {
        flex: none;
        width: 100%;
        text-align: center;
    }

    /* 导航：3列网格 */
    .c-nav-list {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        height: auto !important;
        line-height: 44px;
    }

    .c-nav-item {
        flex: 0 0 33.33% !important;
        width: 33.33% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
        font-size: 14px;
    }

    .c-nav-item:nth-child(3n) {
        border-right: 0 !important;
    }

    /* Hero：单列堆叠 */
    .c-hero-banner {
        height: auto !important;
        min-height: 260px;
        padding: 24px 0;
    }

    .c-hero-inner {
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 20px;
        text-align: center;
        gap: 20px;
    }

    .c-hero-left h1 {
        font-size: 24px !important;
    }

    .c-hero-left p {
        font-size: 14px !important;
    }

    .c-hero-btn a {
        padding: 9px 20px;
        font-size: 14px;
        margin: 0 6px 10px;
    }

    .c-hero-right img {
        max-height: 180px;
    }

    /* 彩种卡片：单列堆叠 */
    .c-kj {
        padding: 14px 0;
    }

    .c-kj-grid {
        grid-template-columns: 100% !important;
        gap: 12px;
    }

    .c-kj-card {
        padding: 14px;
    }

    .qiu-r,
    .qiu-b {
        width: 30px !important;
        height: 30px !important;
        line-height: 30px !important;
        font-size: 13px;
    }

    .qiu-s {
        width: 28px;
        height: 28px;
        line-height: 28px;
        font-size: 12px;
    }

    .c-kj-btns a {
        flex: 0 0 32%;
        font-size: 12px;
    }

    .c-kj-info {
        padding: 12px 14px;
    }

    /* 资讯 Tab：滚动或换行，2列变1列 */
    .c-news-head {
        padding: 0 12px;
        overflow-x: auto;
    }

    .c-tab-list {
        flex-wrap: nowrap !important;
    }

    .c-tab-item {
        padding: 12px 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .c-news-head::after {
        width: 80px;
    }

    .c-news-body {
        padding: 12px;
    }

    .c-news-row {
        grid-template-columns: 100% !important;
        gap: 0;
    }

    .c-news-list li {
        font-size: 14px;
        padding: 9px 0;
    }

    /* Banner：移动端收缩适配，与 PC GUARD 互斥 */
    .flex.flex-row.justify-between.align-start {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .swiper-container.haaugz_container,
    .haaugz_container {
        height: 220px !important;
        border-radius: 8px !important;
        width: 100% !important;
    }

    .swiper-slide.banner-item,
    .banner-item {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }

    .swiper-slide.banner-item .w_0fac9e4,
    .banner-item .w_0fac9e4 {
        height: 44px !important;
        line-height: 44px !important;
        padding: 0 14px !important;
    }

    .swiper-slide.banner-item .w_0fac9e4 span,
    .banner-item .w_0fac9e4 span {
        font-size: 14px !important;
        letter-spacing: 0 !important;
    }

    .swiper-container.haaugz_container .pagination,
    .haaugz_container .pagination {
        bottom: 12px !important;
        right: 14px !important;
        gap: 7px !important;
    }

    .swiper-container.haaugz_container .pagination i,
    .haaugz_container .pagination i {
        width: 7px !important;
        height: 7px !important;
    }

    .swiper-container.haaugz_container.home-mt15,
    .haaugz_container.home-mt15 {
        margin-top: 0 !important;
    }

    /* 公益区：堆叠 */
    .c-gy-grid {
        grid-template-columns: 100% !important;
        gap: 12px;
    }

    .c-gy-banner {
        flex-direction: column !important;
        text-align: center;
        padding: 22px 18px !important;
        gap: 16px;
        min-height: 180px;
        justify-content: center !important;
    }

    .c-gy-text h3 {
        font-size: 20px !important;
        letter-spacing: 1px !important;
    }

    .c-gy-text p {
        font-size: 14px !important;
        margin-bottom: 16px !important;
        line-height: 1.75 !important;
    }

    .c-gy-text .btn {
        padding: 9px 24px !important;
        font-size: 13px !important;
    }

    .c-gy-ico {
        display: none;
    }

    .c-gy-card {
        padding: 12px 14px !important;
        gap: 12px !important;
    }

    .c-gy-card img {
        width: 40px !important;
        height: 40px !important;
        flex: 0 0 40px !important;
        padding: 6px !important;
    }

    .c-gy-card .ttl {
        font-size: 14.5px !important;
    }

    .c-gy-card .w_f09d642 {
        font-size: 12px !important;
        margin-top: 2px !important;
    }

    /* Footer：单列堆叠 */
    .c-foot-main {
        grid-template-columns: 100% !important;
        gap: 18px;
        text-align: center;
    }

    .c-foot-logo {
        justify-content: center;
    }

    .c-foot-col ul {
        justify-content: center;
    }

    .c-foot-qr img {
        margin: 0 auto;
    }

    /* cwl H5 字号阶梯 */
    h1 {
        font-size: 24px !important;
    }

    h2,
    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 16px !important;
    }

    p,
    li,
    a,
    div {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }
}

/* ========== 4. SMALL MOBILE <=576px ========== */
@media (max-width: 576px) {
    .c-nav-item {
        flex: 0 0 50% !important;
        width: 50% !important;
        font-size: 13px !important;
    }

    .c-nav-item:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .c-nav-item:nth-child(2n) {
        border-right: 0 !important;
    }

    .c-kj-btns a {
        flex: 0 0 49%;
    }

    h1 {
        font-size: 22px !important;
    }

    h3 {
        font-size: 17px !important;
    }
}

/* 5c14f7 */
:root {
    tab-size: 4;
}
[data-196] {
    scroll-behavior: auto;
}
html {
    scroll-behavior: auto;
}
[data-196] {
    -webkit-tap-highlight-color: transparent;
}
