.site-header{
    --hdr-brand: #007cc2;
    --hdr-glow: rgba(0, 180, 255, 0.35);
    --hdr-height: clamp(56px, 6vw, 88px);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    background: linear-gradient(180deg, rgba(4, 18, 40, 0.85) 10%, rgba(4, 18, 40, 0) 100%, transparent 100%);
    transition: background 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}
.site-header.is-scrolled{
    background: rgba(8, 28, 52, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}
.site-header .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25vw;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    min-height: 6vw;
    transition: min-height 0.3s ease;
}
.site-header.is-scrolled .header-inner{
    min-height: 4.2vw;
}
.site-header .logo{
    flex-shrink: 0;
    height: 2.2vw;
    min-height: 28px;
    padding: 1.2vw 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.site-header .logo:hover{
    opacity: 0.92;
    transform: translateY(-1px);
}
.site-header .logo img{
    height: 100%;
    width: auto;
    display: block;
}
.site-header .header-center{
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}
.site-header .main-nav{
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-header .nav-list{
    list-style: none;
    margin: 0;
    padding: 0.35vw 0.5vw;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 0.15vw;
    background: rgba(255, 255, 255, 0.06); */
    /* border: 1px solid rgba(255, 255, 255, 0.12); */
    /* border-radius: 999px;
    backdrop-filter: blur(10px); */
    -webkit-backdrop-filter: blur(10px);
    /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12); */
}
.site-header .nav-list li{
    margin: 0 .5vw;
    cursor: pointer;
}
.site-header .nav-link{
    position: relative;
    display: block;
    padding: 0.45vw 1.1vw;
    font-size: var(--font1);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(244, 248, 252, 0.88);
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}
.site-header .nav-link::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.2vw;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--hdr-brand), #00d4ff, var(--hdr-brand), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: width 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    box-shadow: 0 0 12px var(--hdr-glow);
}
.site-header .nav-link:hover{
    color: #fff;
    background: rgba(0, 124, 194, 0.2);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.is-active::after{
    width: 62%;
    opacity: 1;
}
.site-header .nav-link.is-active{
    color: #fff;
    background: rgba(0, 124, 194, 0.28);
    box-shadow: 0 0 20px rgba(0, 124, 194, 0.25);
}
.site-header .nav-item{
    position: relative;
}
.site-header .nav-item-row{
    display: flex;
    align-items: center;
    gap: 0.15rem;
}
.site-header .nav-sub-toggle{
    display: none;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.site-header .nav-sub-toggle:hover{
    background: rgba(0, 124, 194, 0.25);
    color: #fff;
}
.site-header .nav-sublist{
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 11rem;
    border-radius: 14px;
    background: rgba(8, 28, 52, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 120;
}
.site-header .nav-item.has-children:hover .nav-sublist,
.site-header .nav-item.has-children:focus-within .nav-sublist{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.site-header .nav-sublink{
    display: block;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    color: rgba(244, 248, 252, 0.88);
    text-decoration: none;
    font-size: var(--font1);
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: background 0.25s ease, color 0.25s ease;
}
.site-header .nav-sublink:hover,
.site-header .nav-sublink.is-active{
    color: #fff;
    background: rgba(0, 124, 194, 0.28);
}
.site-header .nav-item.is-branch-active > .nav-item-row > .nav-link{
    color: #fff;
}
.site-header .header-end{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.55vw;
}
.site-header .header-tools{
    display: flex;
    align-items: center;
    gap: 0.65vw;
}
.site-header .tool{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45vw;
    padding: 0.45vw 0.75vw;
    min-height: 2.4vw;
    min-width: 2.4vw;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: var(--font1);
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.site-header .tool:hover{
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 124, 194, 0.22);
    box-shadow: 0 0 24px rgba(0, 124, 194, 0.3);
    transform: translateY(-1px);
}
.site-header .tool svg{
    width: 1.35vw;
    height: 1.35vw;
    min-width: 18px;
    min-height: 18px;
    display: block;
}
.site-header .tool-search{
    padding-left: 0.65vw;
    padding-right: 0.65vw;
}
.site-header .tool-tel{
    padding-right: 1vw;
}
.site-header .tool-tel-num{
    margin-left: 0.15vw;
    white-space: nowrap;
}
.site-header .tool-lang-wrap{
    position: relative;
}
.site-header .tool-lang{
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35vw;
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 0;
    color: #fff;
}
.site-header .tool-lang-menu{
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 120;
    min-width: 7.5em;
    margin: 0;
    padding: 6px 0;
    list-style: none;
    background: rgba(8, 24, 48, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.site-header .tool-lang-wrap.is-open .tool-lang-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.site-header .tool-lang-option{
    display: block;
    width: 100%;
    padding: 0.55em 1em;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    white-space: nowrap;
}
.site-header .tool-lang-option:hover,
.site-header .tool-lang-option:focus{
    background: rgba(0, 124, 194, 0.35);
    outline: none;
}
.site-header .tool-lang-option.is-active{
    color: #7ec8f5;
    font-weight: 600;
}
.site-header .tool-lang img{
    width: 1.35vw;
    height: 1.35vw;
    min-width: 16px;
    min-height: 16px;
    margin-left: 0.25vw;
    border-radius: 2px;
}

/* 中英文：文案写在 HTML，仅切换显示（用 revert 保持块级/行内自然布局，避免 inline !important 压扁整页） */
html:not(.lang-en) .lang-en{
    display: none !important;
}
html.lang-en .lang-zh{
    display: none !important;
}
html.lang-en .lang-en{
    display: revert !important;
}
.site-header .nav-mobile-backdrop{
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgba(2, 12, 28, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.site-header.menu-open .nav-mobile-backdrop{
    opacity: 1;
    pointer-events: auto;
}
.site-header .nav-toggle{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
    color: #fff;
}
.site-header .nav-toggle:hover{
    background: rgba(0, 124, 194, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}
.site-header .nav-toggle-bar{
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.35s ease, opacity 0.25s ease;
}
.site-header.menu-open .nav-toggle-bar:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}
.site-header.menu-open .nav-toggle-bar:nth-child(2){
    opacity: 0;
    transform: scaleX(0);
}
.site-header.menu-open .nav-toggle-bar:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1100px){
    .site-header.menu-open{
        z-index: 1000;
        background: rgba(6, 18, 36, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .site-header .header-inner.cont{
        width: 100%;
        max-width: none;
        margin: 0;
        min-height: 52px;
        gap: 8px;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(6px, env(safe-area-inset-right));
        box-sizing: border-box;
    }
    .site-header .logo{
        height: 26px;
        padding: 10px 0;
        flex: 1 1 auto;
        min-width: 0;
    }
    .site-header .tool-tel{
        display: none !important;
    }
    .site-header .tool-lang-label{
        display: none;
    }
    .site-header .header-end{
        z-index: 6;
        position: relative;
        flex-shrink: 0;
        gap: 2px;
    }
    .site-header .header-tools{
        gap: 2px;
    }
    .site-header .tool{
        min-width: 34px;
        min-height: 34px;
        padding: 6px;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    .site-header .tool:hover{
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        transform: none;
    }
    .site-header .tool svg{
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
    .site-header .tool-lang img{
        width: 20px;
        height: 20px;
    }
    .site-header .nav-toggle{
        display: flex;
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        flex-shrink: 0;
    }
    .site-header .nav-toggle:hover{
        background: rgba(255, 255, 255, 0.1);
    }
    .site-header .nav-mobile-backdrop{
        z-index: 2;
    }
    .site-header.menu-open .logo,
    .site-header.menu-open .header-end{
        position: relative;
        z-index: 10;
    }
    .site-header .header-center{
        position: fixed;
        left: 0;
        right: 0;
        top: calc(52px + env(safe-area-inset-top));
        width: 100%;
        max-width: none;
        height: calc(100dvh - 52px - env(safe-area-inset-top));
        height: calc(100vh - 52px - env(safe-area-inset-top));
        z-index: 5;
        flex: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0 0 max(1rem, env(safe-area-inset-bottom));
        background: #0b1a2e;
        border: none;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: opacity 0.28s ease, visibility 0.28s ease;
        pointer-events: none;
        overscroll-behavior: contain;
    }
    .site-header.menu-open .header-center{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .site-header .main-nav{
        width: 100%;
        height: auto;
        min-height: 0;
        align-items: flex-start;
        align-self: flex-start;
        justify-content: flex-start;
    }
    .site-header .nav-list{
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        width: 100%;
        height: auto;
        flex: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        gap: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .site-header .nav-list > li{
        margin: 0;
        width: 100%;
    }
    .site-header .nav-item{
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    .site-header .nav-item:last-child{
        border-bottom: none;
    }
    .site-header .nav-item-row{
        width: 100%;
        min-height: 48px;
        gap: 0;
    }
    .site-header .nav-link{
        flex: 1;
        min-width: 0;
        padding: 13px 16px;
        border-radius: 0;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0;
        background: transparent;
        box-shadow: none;
    }
    .site-header .nav-link::after{
        display: none;
    }
    .site-header .nav-link.is-active,
    .site-header .nav-item.is-branch-active > .nav-item-row > .nav-link{
        color: #4db8ff;
        background: transparent;
        box-shadow: none;
        font-weight: 600;
    }
    .site-header .nav-sub-toggle{
        display: inline-flex;
        flex-shrink: 0;
        width: 44px;
        height: 48px;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        background: transparent;
        color: rgba(255, 255, 255, 0.45);
    }
    .site-header .nav-sub-toggle:hover{
        background: transparent;
        color: rgba(255, 255, 255, 0.75);
    }
    .site-header .nav-item.sub-open .nav-sub-toggle{
        transform: rotate(180deg);
        color: #4db8ff;
    }
    .site-header .nav-sublist,
    .site-header .nav-item.has-children:hover .nav-sublist,
    .site-header .nav-item.has-children:focus-within .nav-sublist{
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        margin: 0;
        padding: 0 0 4px;
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        list-style: none;
    }
    .site-header .nav-item.has-children.sub-open .nav-sublist{
        display: block;
    }
    .site-header .nav-sublist > li{
        margin: 0;
        width: 100%;
    }
    .site-header .nav-sublink{
        display: block;
        padding: 10px 16px 10px 32px;
        font-size: 14px;
        line-height: 1.45;
        border-radius: 0;
        border: none;
        white-space: normal;
        color: rgba(255, 255, 255, 0.72);
        text-decoration: none;
    }
    .site-header .nav-sublink:hover,
    .site-header .nav-sublink.is-active{
        color: #4db8ff;
        background: transparent;
        font-weight: 600;
    }
}
.inx-01{
    --inx01-brand: #007cc2;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.inx-01 .img-box{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
}
@keyframes inx01KenBurns{
    0%{ transform: scale(1.03) translate(0, 0); }
    100%{ transform: scale(1.1) translate(-0.55%, -0.4%); }
}
.inx-01 .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05) contrast(1.03) brightness(1.04);
    animation: inx01KenBurns 26s ease-in-out infinite alternate;
    will-change: transform;
}
.inx-01 .img-box::before{
    position: absolute;
    content: '';
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 90% 70% at 50% 100%, rgba(0, 124, 194, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 55% 45% at 18% 22%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    mix-blend-mode: soft-light;
}
.inx-01 .img-box::after{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(6, 24, 48, 0.45) 0%, rgba(8, 36, 64, 0.22) 38%, rgba(0, 56, 96, 0.08) 62%, rgba(0, 72, 112, 0) 100%),
        linear-gradient(to top, rgba(2, 16, 36, 0.35) 0%, rgba(2, 16, 36, 0) 50%);
}
.inx-01 .swiper,
.inx-01 .swiper-wrapper{min-height: 100vh;}
.inx-01 .swiper-slide{
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding-left: 4%;
    padding-right: 2%;
}
.inx-01 .swiper-slide .info-txt{
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    color: #f4f8fc;
    width: 46%;
    max-width: 52rem;
    will-change: transform;
}
.inx-01 .swiper-slide .info-txt h3,
.inx-01 .swiper-slide .info-txt h4{
    text-transform: uppercase;
    /* transform: perspective(800px) rotateX(10deg); */
    transform-origin: center top;
    color: #f4f8fc;
    -webkit-text-stroke: 1px rgba(180, 220, 255, 0.18);
    text-shadow:
        0 0 28px rgba(0, 124, 194, 0.28),
        0 1px 0 rgba(255, 255, 255, 0.14),
        0 6px 18px rgba(0, 0, 0, 0.22),
        0 14px 32px rgba(2, 12, 28, 0.28);
font-weight: bold;
}
.inx-01 .swiper-slide .info-txt h3{font-size: 3.2vw;letter-spacing: .02em;}
.inx-01 .swiper-slide .info-txt h4{margin-top: 1vw;letter-spacing: .04em;}
.inx-01 .swiper-slide .info-txt>p{
    margin-top: 1vw;
    font-size: var(--font1);
    color: rgba(228, 238, 248, 0.92);
    text-shadow: 0 2px 12px rgba(2, 12, 28, 0.32);
}
.inx-01 .swiper-slide .btn-box{
    margin-top: 1vw;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.inx-01 .swiper-slide .btn-box:hover{
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(0, 124, 194, 0.22);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25), 0 0 28px rgba(0, 124, 194, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.inx-01 .swiper-slide .btn-box p,
.inx-01 .swiper-slide .btn-box:hover p{
    color: #fff;
}
.inx-01 .swiper-slide .btn-box .ico-box{
    background: linear-gradient(145deg, #0090dc 0%, var(--inx01-brand) 100%);
    box-shadow: 0 4px 14px rgba(0, 100, 160, 0.45);
}
.btn-box{padding: .5vw .5vw .5vw 1.5vw;border: 1px solid #fff;border-radius: 3vw;align-items: center;width: max-content;}
.btn-box p{margin-top: 0;color: #000;margin-right: .5vw;font-size:var(--font1);}
.btn-box.on p{color: #fff;}
.btn-box .ico-box{width: 2.4vw;height: 2.4vw;border-radius: 50%;background-color: #007cc2;display: flex;align-items: center;justify-content: center;}
.btn-box .ico-box svg{width: 1.6vw;height: 1.6vw;}
.inx-02{
    --inx02-brand: #007cc2;
    --inx02-brand-glow: rgba(0, 124, 194, 0.45);
    width: 100%;
    height: 100vh;
    background-color: #152a45;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.inx-02 .img-box{width: 100%;height: 100%;position:absolute;left: 0;top: 0;z-index: 1;overflow: hidden;will-change: transform;}
.inx-02 .inx-02-atmos{will-change: transform;}
.inx-02 .gb{will-change: transform;}
.inx-02 .cont{will-change: transform;}
.inx-02 .img-box::after{
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(115deg, rgba(12, 36, 64, 0.28) 0%, rgba(20, 48, 80, 0.08) 45%, rgba(0, 80, 120, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}
.inx-02 .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: brightness(1.05) saturate(1.05);
    animation: inx02KenBurns 28s ease-in-out infinite alternate;
    will-change: transform;
}
@keyframes inx02KenBurns{
    0%{ transform: scale(1.04) translate(0, 0); }
    100%{ transform: scale(1.12) translate(-0.8%, -0.5%); }
}
.inx-02 .inx-02-atmos{
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 85% 65% at 50% 100%, rgba(0, 140, 210, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 15% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse 60% 45% at 88% 35%, rgba(0, 124, 194, 0.08) 0%, transparent 50%);
    mix-blend-mode: soft-light;
}
.inx-02 .inx-02-atmos::before{
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 120% 100% at 50% 50%, transparent 40%, rgba(8, 28, 52, 0.42) 100%);
    mix-blend-mode: multiply;
    opacity: 0.55;
}
.inx-02 .gb{width: 100%;height: 100%;position: absolute;left: 0;top: 0;pointer-events: none;z-index: 3;overflow: hidden;}
.inx-02 .gb img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: saturate(1.06) contrast(1.02) brightness(1.04);
    animation: inx02KenBurns 28s ease-in-out infinite alternate;
    will-change: transform;
    transition: opacity 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.75s ease;
}
.inx-02 .gb.gb-instant img{
    transition: none;
}
@keyframes gbBreathOpacity{
    0%, 100%{ opacity: 0.1; }
    50%{ opacity: 0.3; }
}
.inx-02 .gb img.on{
    animation: inx02KenBurns 28s ease-in-out infinite alternate, gbBreathOpacity 2.4s ease-in-out infinite;
    filter: saturate(1.08) contrast(1.03) brightness(1.06);
}
.inx-02 .cont{position: relative;z-index: 4;height: 100%;box-sizing: border-box;}
.inx-tit{text-transform: uppercase;font-family: MonB;padding-left: 2vw;font-size: 2vw;position: relative;max-height: max-content;}
.inx-tit::after{position: absolute;content: '';width: 1vw;height: 80%;left: 0;top: 10%;background-color: #007cc2;}
.inx-02 .cont .inx-tit{
    color: #f4f8fc;
    letter-spacing: 0.12em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
    animation: inx02TitReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.inx-02 .cont .inx-tit::after{
    width: 0.35vw;
    min-width: 4px;
    background: linear-gradient(180deg, var(--inx02-brand) 0%, rgba(0, 180, 255, 0.85) 100%);
    box-shadow: 0 0 20px var(--inx02-brand-glow);
    animation: inx02BarPulse 4.2s ease-in-out infinite;
}
@keyframes inx02TitReveal{
    from{
        opacity: 0;
        transform: translateX(-1.2vw);
        filter: blur(6px);
    }
    to{
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
@keyframes inx02BarPulse{
    0%, 100%{ box-shadow: 0 0 12px var(--inx02-brand-glow); }
    50%{ box-shadow: 0 0 28px rgba(0, 200, 255, 0.55); }
}
.inx-02 .cont .btn-list{width: 100%;height: 100%;position: absolute;left: 0;top: 0;z-index: 1;}
.inx-02 .cont .btn-list .item{
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55vw 1.6vw 0.55vw 0.55vw;
    border-radius: 4vw;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        inset 0 -1px 0 rgba(0, 0, 0, 0.06);
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    animation: inx02Float 5s ease-in-out infinite;
    -webkit-animation: inx02Float 5s ease-in-out infinite;
    transition:
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}
.inx-02 .cont .btn-list .item::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.2) 0%, transparent 42%, transparent 58%, rgba(255, 255, 255, 0.06) 100%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}
@keyframes inx02Float{
    0%, 100%{ transform: translateY(0); }
    50%{ transform: translateY(-10px); }
}
.inx-02 .cont .btn-list .item::after{
    position: absolute;
    content: '';
    width: 0%;
    height: 100%;
    border-radius: 4vw;
    left: 0;
    top: 0;
    z-index: 1;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(105deg, var(--inx02-brand) 0%, #0095e8 48%, #00b4ff 100%);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.15);
}
.inx-02 .cont .btn-list .item:hover{
    animation-play-state: paused;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 36px var(--inx02-brand-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.02);
}
.inx-02 .cont .btn-list .item:hover::after{width: 100%;}
.inx-02 .cont .btn-list .item p{
    font-size: var(--font1);
    margin-left: 0.5vw;
    position: relative;
    z-index: 2;
    color: rgba(248, 252, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.35s ease, transform 0.35s ease;
}
.inx-02 .cont .btn-list .item:hover p{color: #fff;}
.inx-02 .cont .btn-list .item .ico-box{
    width: 2.8vw;
    height: 2.8vw;
    background: linear-gradient(145deg, #0090dc 0%, var(--inx02-brand) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, box-shadow 0.45s ease;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(0, 100, 160, 0.4);
}
.inx-02 .cont .btn-list .item:hover .ico-box{
    background: #fff;
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.35);
}
.inx-02 .cont .btn-list .item:hover .ico-box svg path{fill: var(--inx02-brand);}
.inx-02 .cont .btn-list .item .ico-box svg{width: 1.6vw;height: 1.6vw;}
.inx-02 .cont .btn-list .item:first-child{position: absolute;left: 15%;top: 18%;animation-delay: 0s;}
.inx-02 .cont .btn-list .item:nth-child(2){position: absolute;left: 28%;top: 55%;animation-delay: 0.45s;}
.inx-02 .cont .btn-list .item:nth-child(3){position: absolute;right: 25%;bottom: 29%;animation-delay: 0.15s;}
.inx-02 .cont .btn-list .item:nth-child(4){position: absolute;left: 35%;top: 13%;animation-delay: 0.75s;}
.inx-02 .cont .btn-list .item:nth-child(5){position: absolute;left: 55%;top: 19%;animation-delay: 0.3s;}
.inx-02 .cont .btn-list .item:nth-child(6){position: absolute;right: 10%;top: 33%;animation-delay: 0.9s;}
.inx-02 .cont .btn-list .item:nth-child(7){position: absolute;right:40%;bottom: 15%;animation-delay: 1.1s;}

@media (prefers-reduced-motion: reduce){
    .inx-01 .img-box img{ animation: none; transform: scale(1.03); }
    .inx-02 .img-box img{ animation: none; transform: scale(1.05); filter: brightness(1.05) saturate(1.05); }
    .inx-02 .gb img{
        animation: none;
        transform: scale(1.05);
    }
    .inx-02 .cont .inx-tit{ animation: none; }
    .inx-02 .cont .inx-tit::after{ animation: none; }
    .inx-02 .cont .btn-list .item{ animation: none; }
    .inx-02 .gb img.on{
        animation: none;
        opacity: 0.5;
        filter: saturate(1.06) contrast(1.02) brightness(1.05);
    }
}

.inx-03 .top-info{align-items: center;}

.inx-03 .swiper{width: 100%;height: 100%;margin-top: 3vw;overflow: visible;}
.inx-03 .swiper-slide{width: 100%;height: 100%;position: relative;background-color: #fff;}
.inx-03 .swiper-slide .link-canvas{position: absolute;left: 0;top: 0;width: 100%;height: 100%;z-index: 1;pointer-events: none;}
.inx-03 .swiper-slide .img-box{width: max-content;height: 32vw;margin-left: auto;position: relative;margin-right: auto;transform: translateX(2vw);}
.inx-03 .swiper-slide .img-box img{width: auto;height: 100%;object-fit: cover;}
.inx-03 .swiper-slide .img-box .dian{position: absolute;width:1vw;height: 1vw;background-color: #007cc2;border-radius: 50%;left: 50%;top: 50%;transform: translate(-50%,-50%);z-index: 2;}
.inx-03 .swiper-slide .info-txt{position: absolute;left: 0;top: 0;z-index: 2;width: 23vw;}
.inx-03 .swiper-slide .info-txt h5{font-size: 1.6vw;margin-bottom: 1vw;}
.inx-03 .swiper-slide .info-txt h5:nth-child(2){color:#007cc2;}
.inx-03 .swiper-slide .info-txt table{width: 90%;border-collapse: collapse;margin-top: 2vw;}
.inx-03 .swiper-slide .info-txt table td{border: 1px solid rgba(0, 0, 0, .1);padding:1vw 1.5vw;text-align: center;vertical-align: middle;font-size: var(--font1);}
.inx-03 .swiper-slide .info-txt table td:first-child{width: 8vw;color: #000;border-color: rgba(0,0,0,.1);}
.inx-03 .swiper-slide .info-txt table td:last-child{width: max-content;}
.inx-03 .swiper-slide .info-txt .btn-box{margin-top: 2vw;border-color: rgba(0,0,0,.2);}
.inx-03 .swiper-slide .info-txt .btn-box p{color: #000;}
.inx-03 .swiper-slide .info-txt .info-txt-inner{
    padding: 1vw 1.1vw 1.15vw;
    border-radius: 0.65vw;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.75) 100%);
    border: 1px solid rgba(0, 60, 100, 0.08);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.06);
    box-sizing: border-box;
}
.inx-03 .swiper-slide .info-txt .info-txt-cap{
    display: flex;
    align-items: center;
    gap: 0.45vw;
    margin-bottom: 0.5vw;
}
.inx-03 .swiper-slide .info-txt .info-txt-cap-line{
    width: 3px;
    height: 0.75vw;
    min-height: 11px;
    border-radius: 2px;
    background: linear-gradient(180deg, #007cc2, #00b4ff);
}
.inx-03 .swiper-slide .info-txt .info-txt-cap-label{
    font-size: 0.65vw;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: #007cc2;
}
.inx-03 .swiper-slide .info-txt .info-tit{
    margin: 0 0 0.35vw;
    font-size: 1.45vw;
    line-height: 1.2;
    color: #0a2540;
}
.inx-03 .swiper-slide .info-txt .info-lead{
    margin: 0 0 0.75vw;
    padding-bottom: 0.65vw;
    border-bottom: 1px solid rgba(0, 60, 100, 0.08);
    font-size: var(--font1);
    line-height: 1.55;
    color: #475569;
}
.inx-03 .swiper-slide .info-txt .txt-box.func-spec{
    display: flex;
    flex-direction: column;
    gap: 0.45vw;
    margin: 0;
    padding: 0;
}
.inx-03 .swiper-slide .info-txt .func-spec > p:not(.func-spec-more){
    position: relative;
    margin: 0;
    padding: 0.55vw 0.65vw 0.55vw 1.35vw;
    font-size: var(--font1);
    line-height: 1.55;
    color: #1e293b;
    background: linear-gradient(105deg, rgba(0, 124, 194, 0.07) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(255, 255, 255, 0.35) 100%);
    border: 1px solid rgba(0, 60, 100, 0.07);
    border-left: 3px solid #007cc2;
    border-radius: 0 0.4vw 0.4vw 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
    transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.inx-03 .swiper-slide .info-txt .func-spec > p:not(.func-spec-more)::before{
    content: '';
    position: absolute;
    left: 0.45vw;
    top: 0.85vw;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #007cc2;
    box-shadow: 0 0 0 2px rgba(0, 124, 194, 0.22);
}
.inx-03 .swiper-slide .info-txt .func-spec > p:not(.func-spec-more):hover{
    border-color: rgba(0, 124, 194, 0.22);
    background: linear-gradient(105deg, rgba(0, 124, 194, 0.11) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow: 0 4px 16px rgba(0, 124, 194, 0.1);
}
.inx-03 .swiper-slide .info-txt .func-spec .func-spec-more{
    margin-top: 0.15vw;
    padding: 0.45vw 0.5vw;
    text-align: center;
    font-size: 0.85vw;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #007cc2;
    background: rgba(0, 124, 194, 0.06);
    border: 1px dashed rgba(0, 124, 194, 0.28);
    border-radius: 0.35vw;
}
.inx-03 .swiper-slide .info-txt .info-read-more{
    margin-top: 1vw;
    border-color: rgba(0, 124, 194, 0.35);
    background: rgba(0, 124, 194, 0.06);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.inx-03 .swiper-slide .info-txt .info-read-more p{color: #0a2540;}
.inx-03 .swiper-slide .info-txt .info-read-more:hover{
    background: #007cc2;
    border-color: #007cc2;
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.35);
}
.inx-03 .swiper-slide .info-txt .info-read-more:hover p{color: #fff;}
.inx-03 .swiper-slide .info-txt .info-read-more:hover .ico-box{background: #fff;}
.inx-03 .swiper-slide .info-txt .info-read-more:hover .ico-box svg path{fill: #007cc2;}
@media (max-width: 1100px){
    .inx-03 .swiper-slide .info-txt .info-txt-cap-label{font-size: 10px;}
    .inx-03 .swiper-slide .info-txt .info-tit{font-size: 18px;}
    .inx-03 .swiper-slide .info-txt .func-spec .func-spec-more{font-size: 13px; letter-spacing: 0.15em;}
}
.inx-03 .pro-list{
    width: 100%;
    margin-top: 3vw;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.65vw;
}
.inx-03 .pro-list .item{
    width: calc((100% - 4 * 0.65vw) / 5);
    flex: 0 0 calc((100% - 4 * 0.65vw) / 5);
    align-items: center;
    padding: 0.55vw 0.6vw;
    box-sizing: border-box;
    position: relative;
    border-radius: 0.65vw;
    overflow: hidden;
    border: 1px solid rgba(0, 60, 100, 0.1);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 255, 0.88) 100%);
    box-shadow: 0 4px 18px rgba(4, 24, 48, 0.06);
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.inx-03 .pro-list .item::after{
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    border-radius: inherit;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(105deg, #007cc2 0%, #0095e8 50%, #00b4ff 100%);
    box-shadow: inset 0 0 32px rgba(255, 255, 255, 0.12);
}
.inx-03 .pro-list .item.on::after{width: 100%;}
.inx-03 .pro-list .item:not(.on):hover{
    border-color: rgba(0, 124, 194, 0.28);
    box-shadow: 0 8px 26px rgba(0, 124, 194, 0.12);
    transform: translateY(-3px);
}
.inx-03 .pro-list .item .img-box{
    width: 45%;
    height: 6vw;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 0.5vw;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.inx-03 .pro-list .item .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.inx-03 .pro-list .item:hover .img-box img{transform: scale(1.06);}
.inx-03 .pro-list .item.on .img-box{
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.inx-03 .pro-list .item .info{
    width: 55%;
    padding-left: 0.55vw;
    padding-right: 0.15vw;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    min-width: 0;
}
.inx-03 .pro-list .item .info h5{
    margin: 0;
    font-size: clamp(11px, 0.95vw, 15px);
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.35s ease;
}
.inx-03 .pro-list .item.on .info h5{color: #fff;}
@media (max-width: 1100px){
    .inx-03 .pro-list{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        flex-wrap: unset;
        justify-content: stretch;
    }
    .inx-03 .pro-list .item{
        width: 100%;
        flex: none;
        max-width: none;
    }
    .inx-03 .pro-list .item .img-box{height: 50px; min-height: 46px;}
    .inx-03 .pro-list .item .info h5{font-size: 12px;}
}
.inx-03 .adv-list{
    --adv-brand: #007cc2;
    --adv-brand-glow: rgba(0, 124, 194, 0.45);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 18vw;
    box-sizing: border-box;
}
.inx-03 .adv-list .adv-list-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2vw;
}
.inx-03 .adv-list .adv-list-grid .item{
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55vw;
    padding: 0.5vw 1.25vw 0.5vw 0.5vw;
    border-radius: 4vw;
    border: 1px solid rgba(0, 60, 100, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 252, 255, 0.62) 100%);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    box-shadow:
        0 4px 22px rgba(4, 24, 48, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65),
        inset 0 -1px 0 rgba(0, 40, 80, 0.04);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition:
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.inx-03 .adv-list .adv-list-grid .item::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.45) 0%, transparent 40%, transparent 60%, rgba(0, 124, 194, 0.04) 100%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}
.inx-03 .adv-list .adv-list-grid .item::after{
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 4vw;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    background: linear-gradient(105deg, var(--adv-brand) 0%, #0095e8 48%, #00b4ff 100%);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.12);
}
.inx-03 .adv-list .adv-list-grid .item:hover{
    border-color: rgba(0, 124, 194, 0.35);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 124, 194, 0.12),
        0 0 28px var(--adv-brand-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transform: translateY(-3px) scale(1.01);
}
.inx-03 .adv-list .adv-list-grid .item:hover::after{width: 100%;}
.inx-03 .adv-list .adv-ico{
    flex-shrink: 0;
    width: 2.8vw;
    height: 2.8vw;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #0090dc 0%, var(--adv-brand) 100%);
    box-shadow: 0 4px 16px rgba(0, 100, 160, 0.4);
    color: #fff;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.45s ease, box-shadow 0.45s ease;
}
.inx-03 .adv-list .adv-ico svg{
    width: 1.6vw;
    height: 1.6vw;
    min-width: 18px;
    min-height: 18px;
    margin: 0;
    display: block;
}
.inx-03 .adv-list .adv-ico svg path{fill: currentColor;}
.inx-03 .adv-list .adv-list-grid .item:hover .adv-ico{
    background: #fff;
    transform: scale(1.08) rotate(-6deg);
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.35);
    color: var(--adv-brand);
}
.inx-03 .adv-list .adv-txt{
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: var(--font1);
    line-height: 1.45;
    color: #0f172a;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 2;
    transition: color 0.35s ease;
}
.inx-03 .adv-list .adv-list-grid .item:hover .adv-txt{color: #fff;}
@media (max-width: 1100px){
    .inx-03 .adv-list{
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        min-width: 0;
        margin: 2vw 0 0;
        padding: 0 0.5vw;
    }
    .inx-03 .adv-list .adv-list-grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
    .inx-03 .adv-list .adv-list-grid .item{
        padding: 10px 18px 10px 10px;
        border-radius: 999px;
    }
    .inx-03 .adv-list .adv-list-grid .item::after{border-radius: 999px;}
    .inx-03 .adv-list .adv-ico{
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }
    .inx-03 .adv-list .adv-ico svg{width: 22px;height: 22px;min-width: 22px;min-height: 22px;}
}

.inx-04{width: 100%;height: 90vh;overflow: hidden;position: relative;}
.inx-04 .cont{position: relative;z-index: 2;}
.inx-04 .cont .inx-tit{color: #fff;}
.inx-04 .swiper{position: absolute;width: 100%;height: 100%;top: 0;left: 0;}
.inx-04 .swiper .swiper-slide{position: relative;}
.inx-04 .swiper .img-box{width: 100%;height: 100%;position: relative;}
.inx-04 .swiper .img-box::after{position: absolute;width: 100%;height: 100%;background-image: linear-gradient(to right,rgba(0,0,0,.6),rgba(0,0,0,0.3));content: '';left: 0;top: 0;}
.inx-04 .swiper .img-box img{width: 100%;height: 100%;object-fit: cover;position: relative;}
.inx-04 .swiper .swiper-slide .info-box{position: absolute;z-index: 2;left: 5%;top: 40%;color: #fff;width: 40%;transform: translateY(-50%);}
.inx-04 .swiper .swiper-slide .info-box h5{font-size: 2vw;margin-bottom: 1vw;font-weight: bold;}
.inx-04 .swiper .swiper-slide .info-box>p{font-size: .9vw;opacity: .8;margin-bottom: 2vw;line-height: 1.5;}
.inx-04 .swiper .swiper-slide .info-box .btn-box p{color: #fff;}
.inx-04 .tab-list.partner-logo-strip{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: clamp(16px, 4.5vw, 48px);
    z-index: 2;
    width: 94vw;
    padding: 0 clamp(12px, 2vw, 28px);
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: clamp(8px, 0.65vw, 12px) clamp(10px, 0.9vw, 14px);
    pointer-events: auto;
}
.inx-04 .tab-list.partner-logo-strip .item{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    padding: clamp(6px, 0.5vw, 10px) clamp(10px, 1.1vw, 16px);
    border-radius: 0.55vw;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    box-shadow:
        0 4px 22px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.inx-04 .tab-list.partner-logo-strip .item::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.2) 0%, transparent 45%);
    opacity: 0.75;
    pointer-events: none;
}
.inx-04 .tab-list.partner-logo-strip .item:hover{
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.42);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.26) 0%, rgba(0, 124, 194, 0.12) 100%);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.22),
        0 0 28px rgba(0, 124, 194, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.inx-04 .tab-list.partner-logo-strip .tab-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(28px, 2.4vw, 40px);
    min-width: clamp(72px, 6.5vw, 100px);
}
.inx-04 .tab-list.partner-logo-strip .item img{
    display: block;
    height: clamp(22px, 1.95vw, 34px);
    width: auto;
    max-width: min(120px, 14vw);
    object-fit: contain;
    opacity: 0.94;
    filter: brightness(1.06) contrast(1.03);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
    position: relative;
    z-index: 1;
}
.inx-04 .tab-list.partner-logo-strip .item:hover img{
    opacity: 1;
    transform: scale(1.07);
    filter: brightness(1.12) contrast(1.05) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}
@media (max-width: 768px){
    .inx-04 .tab-list.partner-logo-strip{
        width: 96%;
        bottom: 12px;
        gap: 8px;
    }
    .inx-04 .tab-list.partner-logo-strip .tab-logo{
        min-width: 64px;
    }
}
.inx-04 .video-box{position: absolute;right: 20%;top: 30%;z-index: 2;color: #fff;cursor: pointer;}
.inx-04 .video-box .ico-box{position: relative;width: 7vw;height:7vw;display: flex;align-items: center;justify-content: center;border-radius: 50%;background-color: rgba(255,255,255,.6);}
.inx-04 .video-box .ico-box svg{width: 60%;height: 60%;position: relative;z-index: 3;}
.inx-04 .video-box p{text-align: center;margin-top: 1vw;}
.fd-video-modal{
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 48px);
    box-sizing: border-box;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.fd-video-modal.is-open{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.fd-video-modal__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.fd-video-modal__panel{
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: 100%;
    border-radius: clamp(8px, 1vw, 16px);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    background: #000;
}
.fd-video-modal__player{
    display: block;
    width: 100%;
    max-height: min(70vh, calc(100vh - 80px));
    height: auto;
}
.fd-video-modal__close{
    position: absolute;
    top: clamp(8px, 1.2vw, 16px);
    right: clamp(8px, 1.2vw, 16px);
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    background: rgba(0, 0, 0, 0.55);
    transition: background 0.25s ease, transform 0.25s ease;
}
.fd-video-modal__close:hover{
    background: rgba(0, 124, 194, 0.85);
    transform: scale(1.05);
}
body.fd-video-open{
    overflow: hidden !important;
}

.inx-05{width: 100%;overflow: hidden;padding-bottom: 7vw;}
.inx-05 .box{align-items: center;margin-top: 2vw;position: relative;}
.inx-05 .box .info{width: 52%;}
.inx-05 .box h4{font-weight: bold;color: #007cc2;margin-bottom: 1vw;}
.inx-05 .box .info>p{font-size: .9vw;color: #7b7b7b;line-height: 1.5;margin-top: 2vw;}
.inx-05 .box .info .btn-box{margin-top: 2vw;border-color: rgba(0,0,0,.2);}
.inx-05 .box .info p{color: #000;}
.inx-05 .box .info .num-list{margin-top: 2vw;}
.inx-05 .box .info .num-list .item svg{width: 2.6vw;height: 2.6vw;margin-bottom: 1vw;}
.inx-05 .box .info .num-list .item .num{display: flex;justify-content: flex-start;align-items: last baseline;}
.inx-05 .box .info .num-list .item h2{font-family: MonB;margin-right: .5vw;}
.inx-05 .box .info .num-list .item p{font-size: .9vw;color: #7b7b7b;margin-top: .5vw;}
.inx-05 .box .inMap{
    width: 46%;
    flex-shrink: 0;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top:60%;
    transform: translateY(-50%);
}
.inx-05 .inMap-inner{
    width: 100%;
    max-width: 100%;
    padding: 0.5vw 0 0 0;
    box-sizing: border-box;
}
.inx-05 .inMap-summary{
    text-align: center;
    margin-bottom: 0.75vw;
    line-height: 1.45;
}
.inx-05 .inMap-summary-line{
    margin: 0.15em 0;
    font-size: clamp(13px, 0.95vw, 16px);
    color: #c62828;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.inx-05 .inMap-summary-line strong{
    font-weight: 800;
    color: #b71c1c;
}
.inx-05 .inMap-chart{
    width: 100%;
    max-width: 100%;
    height: clamp(720px, 72vw, 1160px);
    min-height: 680px;
    margin: 0;
    padding: 0;
    display: block;
    box-sizing: border-box;
    border-radius: 0.65vw;
    /* background: #fafbfd;
    border: 1px solid rgba(0, 60, 100, 0.08);
    box-shadow: 0 8px 28px rgba(4, 24, 48, 0.08); */
    overflow: hidden;
}
.inx-05 .inMap-credit{
    margin: 0.5vw 0 0;
    font-size: clamp(10px, 0.65vw, 12px);
    color: #9e9e9e;
    text-align: right;
    letter-spacing: 0.02em;
}
@media (max-width: 960px){
    .inx-05 .box{flex-direction: column; align-items: stretch;}
    .inx-05 .box .info{width: 100%;}
    .inx-05 .box .inMap{width: 100%; padding-left: 0; margin-top: 4vw;}
    .inx-05 .inMap-inner{padding: 0;}
    .inx-05 .inMap-chart{height: clamp(300px, 82vw, 440px); min-height: 280px;}
}

.inx-06{
    width: 100%;
    position: relative;
    padding-top: 4vw;
    padding-bottom: 5vw;
    box-sizing: border-box;
}
.inx-06 .cont{position: relative;z-index: 2;}
.inx-06 .inx-tit{
    color: #f4f8fc;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.04em;
}
.inx-06 .list.review-list{
    margin-top: 3vw;
    gap: 1.15vw;
    flex-wrap: wrap;
    align-items: stretch;
}
.inx-06 .list.review-list .item.review-card{
    width: 24%;
    flex: 1 1 22%;
    min-width: 200px;
    position: relative;
    padding: 1.75vw 1.35vw 1.5vw;
    box-sizing: border-box;
    border-radius: 1.05vw;
    border: 1px solid rgba(0, 180, 255, 0.22);
    background: linear-gradient(
        168deg,
        rgba(255, 255, 255, 0.14) 0%,
        rgba(255, 255, 255, 0.05) 42%,
        rgba(4, 28, 52, 0.35) 100%
    );
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    box-shadow:
        0 8px 32px rgba(0, 12, 32, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(0, 40, 80, 0.2);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
    overflow: hidden;
}
/* .inx-06 .list.review-list .item.review-card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    min-height: 3px;
    left: 0;
    top: 0;
    background: linear-gradient(90deg, #007cc2 0%, #00b4ff 55%, rgba(0, 200, 255, 0.65) 100%);
    box-shadow: 0 0 18px rgba(0, 124, 194, 0.55);
} */
.inx-06 .list.review-list .item.review-card::after{
    content: '\201C';
    position: absolute;
    right: 0.6vw;
    bottom: 0.2vw;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4.5vw;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    font-weight: 700;
}
.inx-06 .list.review-list .item.review-card:hover{
    transform: translateY(-6px);
    border-color: rgba(0, 200, 255, 0.45);
    box-shadow:
        0 16px 40px rgba(0, 20, 48, 0.45),
        0 0 36px rgba(0, 124, 194, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.inx-06 .list.review-list .item .ico-box.review-avatar{
    width: clamp(52px, 4.2vw, 76px);
    height: clamp(52px, 4.2vw, 76px);
    min-width: 52px;
    min-height: 52px;
    border-radius: 50%;
    padding: 0.5vw;
    box-sizing: border-box;
    background: linear-gradient(155deg, #0f2844 0%, #1a3d5c 42%, #0a1628 100%);
    border: 2px solid rgba(0, 180, 255, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.14),
        inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}
.inx-06 .list.review-list .item .ico-box.review-avatar img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.45));
}
.inx-06 .list.review-list .item.review-card:hover .ico-box.review-avatar{
    border-color: rgba(0, 210, 255, 0.55);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.45),
        0 0 20px rgba(0, 124, 194, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.inx-06 .list.review-list .item .ico-box svg{width: 1.8vw;height: 1.8vw;}
.inx-06 .list.review-list .item h5{
    margin: 1.1vw 0 0;
    font-size: clamp(14px, 1.05vw, 18px);
    line-height: 1.3;
    color: #f0f9ff;
    font-family: MonB, system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}
.inx-06 .list.review-list .item p{
    margin: 0.85vw 0 0;
    padding-left: 0.65vw;
    border-left: 3px solid rgba(0, 124, 194, 0.55);
    font-size: clamp(12px, 0.82vw, 15px);
    line-height: 1.7;
    color: rgba(236, 245, 255, 0.9);
    font-style: italic;
    letter-spacing: 0.015em;
}
@media (max-width: 1100px){
    .inx-06 .list.review-list .item.review-card{
        width: 48%;
        flex: 1 1 calc(50% - 0.6vw);
    }
    .inx-06 .list.review-list .item.review-card::after{font-size: 48px; right: 10px; bottom: 6px;}
}
@media (max-width: 600px){
    .inx-06 .list.review-list .item.review-card{
        width: 100%;
        flex: 1 1 100%;
    }
}
.inx-06 .btn-list{
    margin-top: 3vw;
    width: max-content;
    gap: 1vw;
}
.inx-06 .btn-list .btn-box{
    border-radius: 3vw;
    border: 1px solid rgba(255,255,255,.45);
    padding: .45vw .45vw .45vw 1.3vw;
    transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, border-color .3s ease;
}
.inx-06 .btn-list .btn-box p{
    font-size: .9vw;
    letter-spacing: .01em;
    color: #fff;
}
.inx-06 .btn-list .btn-box:hover{
    transform: translateY(-0.2vw);
}
.inx-06 .btn-list .btn-box.primary{
    background-color: #007cc2;
    border-color: #007cc2;
   
}
.inx-06 .btn-list .btn-box.primary .ico-box{
    background-color: #fff;
}
.inx-06 .btn-list .btn-box.primary .ico-box svg path{
    fill: #007cc2;
}

.inx-06 .btn-list .btn-box.secondary{
    background-color: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.62);
    box-shadow: 0 .5vw 1vw rgba(0,0,0,.2);
}
.inx-06 .btn-list .btn-box.secondary .ico-box{
    background-color: rgba(255,255,255,.2);
}
.inx-06 .btn-list .btn-box.secondary:hover{
    background-color: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.9);
}
.inx-06 .img-box{width: 100%;height: 100%;overflow: hidden;position: absolute;left: 0;top: 0;z-index: 1;}
.inx-06 .img-box::after{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    background:
        linear-gradient(115deg, rgba(6, 22, 48, 0.82) 0%, rgba(0, 72, 120, 0.42) 48%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(to top, rgba(0, 20, 40, 0.55) 0%, transparent 45%);
    pointer-events: none;
}
.inx-06 .img-box img{width: 100%;height: 100%;object-fit: cover;}

.inx-07.news-block{
    background: linear-gradient(180deg, #f4f8fb 0%, #eef3f8 45%, #f7f9fb 100%);
}
.inx-07.news-block .cont{overflow: hidden;}
.inx-07.news-block .inx-tit{color: #0a2540;}
.inx-07.news-block .news-top{
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25vw 2vw;
    justify-content: space-between;
}
.inx-07.news-block .news-filter{
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55vw 0.65vw;
}
.inx-07.news-block .news-filter .btn-box{
    border-radius: 999px;
    padding: 0.42vw 1.15vw 0.42vw 1.05vw;
    border: 1px solid rgba(0, 124, 194, 0.32);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 10px rgba(4, 24, 48, 0.05);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.inx-07.news-block .news-filter .btn-box p{
    color: #1e3a52;
    font-size: clamp(12px, 0.82vw, 15px);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.inx-07.news-block .news-filter .btn-box .ico-box{
    width: 2vw;
    min-width: 28px;
    height: 2vw;
    min-height: 28px;
    border-radius: 50%;
    background: rgba(0, 124, 194, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.inx-07.news-block .news-filter .btn-box .ico-box svg{
    width: 1.05vw;
    min-width: 14px;
    height: 1.05vw;
    min-height: 14px;
}
.inx-07.news-block .news-filter .btn-box .ico-box svg path{fill: #007cc2;}
.inx-07.news-block .news-filter .btn-box:hover{
    border-color: rgba(0, 124, 194, 0.55);
    box-shadow: 0 6px 18px rgba(0, 124, 194, 0.12);
    transform: translateY(-2px);
}
.inx-07.news-block .news-filter .btn-box.on{
    background: linear-gradient(105deg, #007cc2 0%, #0095e8 100%);
    border-color: #007cc2;
    box-shadow: 0 6px 20px rgba(0, 124, 194, 0.35);
}
.inx-07.news-block .news-filter .btn-box.on p{color: #fff;}
.inx-07.news-block .news-filter .btn-box.on .ico-box{background: rgba(255, 255, 255, 0.22);}
.inx-07.news-block .news-filter .btn-box.on .ico-box svg path{fill: #fff;}
.inx-07.news-block .news-swiper{
    margin-top: 2.25vw;
    overflow: visible;
    padding-bottom: 2.5vw;
}
.inx-07.news-block .news-swiper .swiper-slide{
    width: 23.6%;
    height: auto;
    margin-right: 0;
    box-sizing: border-box;
}
.inx-07.news-block .swiper-slide .news-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    border-radius: 0.85vw;
    overflow: hidden;
    border: 1px solid rgba(0, 60, 100, 0.1);
    background: #fff;
    box-shadow: 0 8px 28px rgba(4, 24, 48, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
    position: relative;
}
/* .inx-07.news-block .swiper-slide .news-card::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, #007cc2 0%, #00b4ff 100%);
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
} */
.inx-07.news-block .swiper-slide .news-card:hover{
    transform: translateY(-6px);
    border-color: rgba(0, 124, 194, 0.28);
    box-shadow: 0 16px 40px rgba(0, 60, 100, 0.14), 0 0 0 1px rgba(0, 124, 194, 0.08);
}
.inx-07.news-block .swiper-slide .news-card .img-box{
    width: 100%;
    height: 0;
    padding-bottom: 56%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #e8eef4 0%, #dfe8f2 100%);
}
.inx-07.news-block .swiper-slide .news-card .img-box img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.inx-07.news-block .swiper-slide .news-card:hover .img-box img{transform: scale(1.07);}
.inx-07.news-block .swiper-slide .news-card .info{
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.15vw 1.15vw 1.05vw;
    box-sizing: border-box;
}
.inx-07.news-block .swiper-slide .news-card .info h5{
    font-size: clamp(14px, 0.92vw, 17px);
    color: #0a2540;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.inx-07.news-block .swiper-slide .news-card .info > p{
    margin-top: 0.65vw;
    font-size: clamp(12px, 0.78vw, 14px);
    color: #546e7a;
    line-height: 1.65;
    flex: 1;
    min-height: 3.2em;
}
.inx-07.news-block .swiper-slide .news-card .oth-time{
    margin-top: auto;
    align-items: center;
    padding-top: 0.85vw;
    border-top: 1px solid rgba(0, 60, 100, 0.09);
}
.inx-07.news-block .swiper-slide .news-card .oth-time > p{
    font-size: clamp(11px, 0.72vw, 13px);
    color: #007cc2;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.inx-07.news-block .swiper-slide .news-card .oth-time .ico-box{
    width: 1.85vw;
    min-width: 30px;
    height: 1.85vw;
    min-height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0090dc 0%, #007cc2 100%);
    box-shadow: 0 4px 12px rgba(0, 124, 194, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.inx-07.news-block .swiper-slide .news-card:hover .oth-time .ico-box{
    transform: scale(1.06);
    box-shadow: 0 6px 16px rgba(0, 124, 194, 0.4);
}
.inx-07.news-block .swiper-slide .news-card .oth-time .ico-box svg{
    width: 1.05vw;
    min-width: 14px;
    height: 1.05vw;
    min-height: 14px;
}
@media (max-width: 1100px){
    .inx-07.news-block .news-swiper .swiper-slide{
        width: calc(50% - 10px);
        max-width: none;
        min-width: 0;
    }
}
@media (max-width: 620px){
    .inx-07.news-block .news-top{flex-direction: column; align-items: flex-start;}
    .inx-07.news-block .news-filter{width: 100%;}
    .inx-07.news-block .news-swiper .swiper-slide{
        width: 85%;
        max-width: 360px;
        min-width: 0;
    }
}
footer {
    padding: 6vw 0 2vw 0;
    color: #fff;
    position: relative;
    background-color: #061826;
    background-image:
        linear-gradient(
            165deg,
            rgba(8, 32, 56, 0.97) 0%,
            rgba(6, 40, 72, 0.94) 38%,
            rgba(4, 22, 42, 0.96) 72%,
            rgba(0, 124, 194, 0.22) 100%
        ),
        url(../images/fot-map.png);
    background-repeat: no-repeat, no-repeat;
    background-position: center, bottom center;
    background-size: cover, 100% auto;
}

footer .left {
    width: 26%;
    flex-shrink: 0;
}

footer .footer-top {
    width: 100%;
    align-items: flex-start;
    gap: 2vw;
}

footer .left h4 {
    width: 100%;
    font-weight: 200;
    text-transform: uppercase;
}

footer .left a {
    align-items: center;
    padding: 1vw 3.6vw 1vw 2vw;
    background-color: rgba(255,255,255,.3);
    backdrop-filter: blur(20px);
    border-radius: 2vw;
    position: relative;
    width: max-content;
    margin-top: 2vw;
}

footer .left a p {
    font-size: 1vw;
    color: #fff;
    align-items: center;
}

footer .left a p svg {
    width: 1.2vw;
    height: 1.2vw;
    margin-right: .3vw;
}

footer .left a .ico-btn {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0vw;
    top: 50%;
    transform: translateY(-50%);
}

footer .left a .ico-btn svg {
    width: 70%;
}

footer .left .ewm-box {
    margin-top: 2vw;
    align-items: center;
}

footer .left .ewm-box .item {
    width: 3.6vw;
    height: 3.6vw;
    background-color: rgba(255,255,255,.3);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .3vw;
    border-radius: 50%;
}

footer .left .ewm-box .item svg {
    width: 50%;
    height: auto;
}

footer .left .ewm-box .item:last-child {
    margin-right: auto;
}

footer .left .ewm-box h5 {
    width: 30%;
}

footer .cont>img {
    width: 100%;
    margin-top: 3vw;
    opacity: .1;
}

footer .right {
    width: 28%;
    padding-top: 4vw;
    box-sizing: border-box;
    flex-shrink: 0;
}

footer .right a {
    color: #fff;
    margin-top: .8vw;
    font-size: 1vw;
    opacity: .8;
}

footer .right .tit {
    opacity: .6;
    margin-bottom: 1vw;
    font-size: 1vw;
    font-weight: 200;
}

footer .right p {
    font-size: 1vw;
    margin-bottom: .8vw;
    font-weight: 200;
    opacity: .8;
}

footer .right .fot-cat {
    width: 50%;
}

.fot-message {
    flex: 1 1 280px;
    width: auto;
    min-width: 0;
    margin-top: 4vw;
    padding: 1.4vw 1.6vw 1.6vw;
    box-sizing: border-box;
    border-radius: 1.2vw;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.fot-message .tit {
    opacity: 1;
    margin-bottom: 0.6vw;
    font-size: 1.15vw;
    font-weight: 500;
    color: #fff;
}

.fot-message-lead {
    font-size: 0.82vw;
    line-height: 1.55;
    opacity: 0.72;
    margin-bottom: 1vw;
    font-weight: 200;
}

.fot-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8vw 1vw;
}

.fot-field {
    display: flex;
    flex-direction: column;
    gap: 0.45vw;
}

.fot-field--full {
    grid-column: 1 / -1;
}

.fot-label {
    font-size: 0.88vw;
    opacity: 0.85;
    font-weight: 300;
}

.fot-field input,
.fot-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75vw 1vw;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.6vw;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.95vw;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.fot-field input::placeholder,
.fot-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.fot-field input:focus,
.fot-field textarea:focus {
    border-color: rgba(0, 124, 194, 0.85);
    background: rgba(255, 255, 255, 0.14);
}

.fot-field textarea {
    min-height: 5vw;
    resize: vertical;
}

.fot-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1vw;
    margin-top: 1.2vw;
}

.fot-form-submit {
    padding: 0.65vw 2vw;
    border: none;
    border-radius: 3vw;
    background: #007cc2;
    color: #fff;
    font-size: 0.95vw;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.fot-form-submit:hover {
    background: #0094e0;
}

.fot-form-submit:active {
    transform: scale(0.98);
}

.fot-form-tip {
    font-size: 0.9vw;
    color: #7ec8f5;
    margin: 0;
}

.fot-form-tip[hidden] {
    display: none;
}

@media (max-width: 960px) {
    footer .left,
    footer .right,
    .fot-message {
        width: 100%;
        max-width: none;
        margin-top: 0;
    }

    footer .right {
        padding-top: 0;
    }

    footer .right .fot-nav {
        display: none;
    }

    .fot-message {
        margin-top: 1rem;
    }

    .fot-form-grid {
        grid-template-columns: 1fr;
    }

    .fot-message .tit {
        font-size: 16px;
    }

    .fot-message-lead,
    .fot-label,
    .fot-field input,
    .fot-field textarea,
    .fot-form-submit,
    .fot-form-tip {
        font-size: 14px;
    }

    .fot-field textarea {
        min-height: 100px;
    }
}

.last-fot {
    width: 100%;
    margin-top: 6vw;
    opacity: .4;
}

.make-top {
    position: absolute;
    width: 6vw;
    height: 6vw;
    background-color: #fff;
    z-index: 3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    right: 5%;
    top: -3vw;
    cursor: pointer;
}

.make-top svg {
    margin: 0 auto;
    width: 1.6vw;
    height: 1.6vw;
}

.make-top p {
    font-size: 1.2vw;
    margin-top: 0vw;
    color: #000;
    font-weight: 600;
}

/* --- 右侧快捷联系（微信 / 电话 / 客服） --- */
.side-dock {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    top: 50%;
    transform: translateY(-50%);
    z-index: 95;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.side-dock-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.side-dock-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.side-dock-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(0, 124, 194, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: #007cc2;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(13, 39, 68, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.side-dock-trigger:hover,
.side-dock-trigger:focus-visible {
    background: #007cc2;
    color: #fff;
    box-shadow: 0 10px 32px rgba(0, 124, 194, 0.35);
    outline: none;
}

.side-dock-trigger:active {
    transform: scale(0.96);
}

.side-dock-ico {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.side-dock-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.side-dock-pop {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    width: max-content;
    max-width: min(220px, calc(100vw - 100px));
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 124, 194, 0.15);
    box-shadow: 0 16px 48px rgba(13, 39, 68, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
}

.side-dock-item.is-open .side-dock-pop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

@media (hover: hover) and (pointer: fine) {
    .side-dock-item:hover .side-dock-pop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(-50%) translateX(0);
    }
}

.side-dock-qr {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto 10px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f7fa;
}

.side-dock-pop-txt {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 600;
    color: #0d2744;
    text-align: center;
}

.side-dock-pop-sub {
    margin: 0;
    font-size: 12px;
    color: #546e7a;
    text-align: center;
    line-height: 1.45;
}

@media (max-width: 620px) {
    .side-dock {
        right: max(8px, env(safe-area-inset-right));
    }

    .side-dock-trigger {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .side-dock-ico {
        width: 20px;
        height: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .side-dock-trigger,
    .side-dock-pop {
        transition-duration: 0.01ms;
    }
}
/* ========== 关于我们页面 ========== */
.about-01 {
    --ab-brand: #007cc2;
    --ab-brand-light: #00b4ff;
    --ab-ink: #0a2540;
    width: 100%;
    min-height: clamp(420px, 62vh, 640px);
    overflow: hidden;
    position: relative;
}
.about-01 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transform: scale(1.02);
}
.about-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 15% 80%, rgba(0, 124, 194, 0.35) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 85% 20%, rgba(0, 180, 255, 0.2) 0%, transparent 50%),
        linear-gradient(115deg, rgba(4, 18, 36, 0.9) 0%, rgba(6, 28, 52, 0.72) 48%, rgba(8, 36, 64, 0.45) 100%);
    pointer-events: none;
}
.about-01 .txt {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    height: max-content;
    transform: translate(-50%, -50%);
    text-align: center;
}
.about-hero-wrap {
    width: 100%;
}
.about-crumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.75rem, 0.82vw, 0.875rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
}
.about-crumb a {
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.2s ease;
}
.about-crumb a:hover {
    color: var(--ab-brand-light);
}
.about-crumb-sep {
    opacity: 0.4;
}
.about-crumb-current {
    color: rgba(255, 255, 255, 0.95);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: end;
}
.about-hero-inner {
    color: #fff;
    max-width: 720px;
}
.about-hero-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.about-hero-label-line {
    width: 3px;
    height: 1.1rem;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--ab-brand), var(--ab-brand-light));
    flex-shrink: 0;
}
.about-hero-tag {
    font-size: clamp(0.78rem, 0.88vw, 0.92rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 400;
}
.about-01 .txt h1 {
    font-size: 3vw;
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    text-align: center;
    letter-spacing: 0.03em;
}
.about-hero-desc {
    font-size: clamp(0.92rem, 1.08vw, 1.08rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    max-width: 560px;
    margin: 0;
}
.about-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.about-hero-stats li {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    padding: clamp(0.85rem, 1.2vw, 1.1rem) clamp(1rem, 1.4vw, 1.35rem);
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 8, 24, 0.2);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.about-hero-stats li:hover {
    border-color: rgba(0, 180, 255, 0.45);
    transform: translateX(-4px);
}
.about-hero-stats li strong {
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(1.25rem, 1.6vw, 1.65rem);
    color: var(--ab-brand-light);
    line-height: 1;
    flex-shrink: 0;
    min-width: 3.5rem;
}
.about-hero-stats li span {
    font-size: clamp(0.82rem, 0.9vw, 0.92rem);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 300;
    line-height: 1.4;
}

/* 锚点导航 */
.about-subnav {
    position: sticky;
    top: clamp(56px, 6vw, 80px);
    z-index: 90;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 124, 194, 0.08);
    box-shadow: 0 6px 28px rgba(4, 24, 48, 0.05);
}
.about-subnav .cont {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}
.about-subnav-inner {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.15rem;
    border-radius: 2.5rem;
    background: rgba(0, 124, 194, 0.05);
    border: 1px solid rgba(0, 124, 194, 0.08);
}
.about-subnav-inner::-webkit-scrollbar {
    display: none;
}
.about-subnav-inner a {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1.25rem;
    font-size: clamp(0.82rem, 0.92vw, 0.95rem);
    color: #5a6a7a;
    font-weight: 400;
    white-space: nowrap;
    border-radius: 2rem;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.about-subnav-inner a:hover {
    color: #007cc2;
    background: rgba(255, 255, 255, 0.7);
}
.about-subnav-inner a.is-active {
    color: #fff;
    font-weight: 500;
    background: linear-gradient(135deg, #0090dc 0%, #007cc2 100%);
    box-shadow: 0 4px 16px rgba(0, 124, 194, 0.35);
}

/* 通用区块 */
.ab-sec {
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
    position: relative;
}
.ab-sec[id],
section[id^="ab-"],
section[id^="ws-"] {
    scroll-margin-top: calc(var(--hdr-height, 72px) + 3.5rem);
}
.ab-head {
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}
.ab-head--center {
    text-align: center;
}
.ab-head--left {
    text-align: left;
}
.ab-head-cap {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
}
.ab-head-cap--center {
    justify-content: center;
}
.ab-head-line {
    width: 3px;
    height: 0.85rem;
    border-radius: 2px;
    background: linear-gradient(180deg, #007cc2, #00b4ff);
    flex-shrink: 0;
}
.ab-head-en {
    font-size: clamp(0.7rem, 0.76vw, 0.8rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #007cc2;
    font-weight: 600;
}
.ab-head-tit {
    font-size: clamp(1.65rem, 2.5vw, 2.35rem);
    font-weight: 700;
    color: #0a2540;
    line-height: 1.22;
    letter-spacing: 0.02em;
    margin: 0;
}
.ab-head-desc {
    max-width: 580px;
    margin: 0.9rem auto 0;
    font-size: clamp(0.88rem, 0.95vw, 1rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
}
.ab-head-desc--dark {
    margin-left: 0;
    margin-right: 0;
    color: #5a6a7a;
}
.ab-head--light .ab-head-tit {
    color: #f4f8fc;
}
.ab-head--light .ab-head-en {
    color: #4db3e8;
}
.ab-head--light .ab-head-line {
    background: linear-gradient(180deg, #4db3e8, #7ec8f5);
}

/* 公司简介 */
.ab-profile {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    overflow: hidden;
}
.ab-profile-deco {
    position: absolute;
    top: -20%;
    right: -8%;
    width: 45%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 124, 194, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.ab-profile-layout {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4.5vw, 4.5rem);
}
.ab-profile-media {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    margin: 0;
}
.ab-profile-media-frame {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(4, 24, 48, 0.16);
    position: relative;
}
.ab-profile-media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 24, 48, 0.15) 100%);
    pointer-events: none;
}
.ab-profile-media-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 5 / 5;
    object-fit: cover;
}
.ab-profile-badge {
    position: absolute;
    left: -1rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #007cc2 0%, #0095e8 55%, #00b4ff 100%);
    color: #fff;
    padding: 0.9rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 12px 32px rgba(0, 124, 194, 0.4);
}
.ab-profile-badge svg {
    opacity: 0.9;
    flex-shrink: 0;
}
.ab-profile-badge strong {
    display: block;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(1.15rem, 1.5vw, 1.6rem);
    line-height: 1.1;
}
.ab-profile-badge span {
    display: block;
    font-size: clamp(0.68rem, 0.74vw, 0.8rem);
    opacity: 0.92;
    margin-top: 0.15rem;
    font-weight: 300;
}
.ab-profile-body {
    flex: 1;
    min-width: 0;
}
.ab-quote {
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0.75rem 0.75rem 0;
    border-left: 4px solid #007cc2;
    font-size: clamp(0.95rem, 1.05vw, 1.12rem);
    line-height: 1.75;
    color: #0a2540;
    font-weight: 500;
    background: linear-gradient(105deg, rgba(0, 124, 194, 0.08) 0%, rgba(255, 255, 255, 0.6) 100%);
    box-shadow: 0 4px 20px rgba(0, 124, 194, 0.08);
}
.ab-copy p {
    font-size: clamp(0.88rem, 0.92vw, 0.98rem);
    line-height: 1.9;
    color: #5a6a7a;
    font-weight: 300;
    margin-bottom: 0.9rem;
}
.ab-copy p:last-child {
    margin-bottom: 0;
}
.ab-profile-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.65rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}
.ab-profile-points li {
    font-size: clamp(0.78rem, 0.84vw, 0.88rem);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    color: #007cc2;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.18);
    box-shadow: 0 2px 8px rgba(0, 124, 194, 0.06);
}
.ab-profile-points li .ico{
    width: 2vw;
    height: 2vw;
    margin: 0 auto;
    margin-bottom: .5vw;
}
.ab-profile-points li .ico svg{
    width: 100%;
    height: 100%;
}

/* 企业文化 */
.ab-culture {
    overflow: hidden;
}
.ab-culture-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.ab-culture-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(4, 18, 36, 0.92) 0%, rgba(6, 32, 58, 0.88) 50%, rgba(8, 40, 72, 0.94) 100%);
}
.ab-culture-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ab-culture > .cont {
    position: relative;
    z-index: 1;
}
.ab-motto {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}
.ab-motto-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 1.25rem 0.75rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    color: #fff;
}
.ab-motto-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 180, 255, 0.35);
    transform: translateY(-3px);
}
.ab-motto-item em {
    font-style: normal;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(0.75rem, 0.82vw, 0.85rem);
    color: rgba(0, 180, 255, 0.65);
    letter-spacing: 0.1em;
}
.ab-motto-item em svg{
    width: 2vw;
    height: 2vw;
    margin: 0 auto;
    margin-bottom: .5vw;
}
.ab-motto-item > span {
    font-size: clamp(1rem, 1.4vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.14em;
}
.ab-culture-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}
.ab-glass-card {
    position: relative;
    padding: clamp(1.25rem, 1.8vw, 1.75rem);
    border-radius: 1rem;
    border: 1px solid rgba(0, 180, 255, 0.2);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(4, 28, 52, 0.4) 100%);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    box-shadow: 0 8px 32px rgba(0, 12, 32, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
.ab-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.ab-glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 200, 255, 0.4);.ab-motto-item
    box-shadow: 0 20px 48px rgba(0, 20, 48, 0.45), 0 0 40px rgba(0, 124, 194, 0.15);
}
.ab-glass-card:hover::before {
    opacity: 1;
}
.ab-card-num {
    display: block;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(1.4rem, 1.8vw, 2rem);
    color: rgba(0, 180, 255, 0.4);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.ab-glass-card h3 {
    font-size: clamp(0.95rem, 1.05vw, 1.12rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
}
.ab-glass-card p {
    font-size: clamp(0.82rem, 0.88vw, 0.92rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    margin: 0;
}

/* 我们的优势 */
.ab-advantages {
    background: #fafafa;
}
.ab-advantages .ab-head-tit {
    color: #0a2540;
}
.ab-advantages .ab-head-en {
    color: #007cc2;
}
.ab-advantages .ab-head-line {
    background: linear-gradient(180deg, #007cc2, #00b4ff);
}
.ab-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}
.ab-adv-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(4, 24, 48, 0.06);
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.ab-adv-card:hover {
    border-color: rgba(0, 124, 194, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(4, 24, 48, 0.12);
}
.ab-adv-card-media {
    position: relative;
    height: 15vw;
    overflow: hidden;
}
.ab-adv-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.08) 100%);
}
.ab-adv-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.ab-adv-card:hover .ab-adv-card-media img {
    transform: scale(1.06);
}
.ab-adv-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    position: relative;
}
.ab-adv-index {
    display: block;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(2rem, 2.8vw, 2.75rem);
    line-height: 1;
    color: rgba(0, 124, 194, 0.15);
    margin-bottom: 0.5rem;
}
.ab-adv-card-body h3 {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-weight: 600;
    color: #0a2540;
    margin-bottom: 0.65rem;
    line-height: 1.4;
}
.ab-adv-card-body p {
    font-size: clamp(0.82rem, 0.88vw, 0.92rem);
    line-height: 1.8;
    color: #5a6a7a;
    font-weight: 300;
    margin: 0;
}

/* 研发团队 */
.ab-team {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
    padding-bottom: clamp(4rem, 6vw, 6rem);
    overflow: hidden;
}
.ab-team-deco {
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 40%;
    height: 60%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 124, 194, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.ab-team-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.ab-team-visual {
    position: relative;
    min-height: clamp(320px, 28vw, 420px);
}
.ab-team-photo {
    margin: 0;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(4, 24, 48, 0.14);
}
.ab-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.ab-team-photo:hover img {
    transform: scale(1.04);
}
.ab-team-photo--main {
    position: relative;
    z-index: 1;
    width: 78%;
    border-radius: 1rem;
    aspect-ratio: 4 / 5;
}
.ab-team-photo--accent {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 52%;
    border-radius: 0.85rem;
    border: 4px solid #fff;
    aspect-ratio: 1 / 1;
    box-shadow: 0 12px 40px rgba(4, 24, 48, 0.18);
}
.ab-team-photo--accent::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: calc(0.85rem + 4px);
    border: 2px solid rgba(0, 124, 194, 0.35);
    pointer-events: none;
    z-index: 1;
}
.ab-team-visual-badge {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 124, 194, 0.15);
    box-shadow: 0 8px 24px rgba(4, 24, 48, 0.1);
    color: #007cc2;
    font-size: clamp(0.78rem, 0.84vw, 0.88rem);
    font-weight: 500;
}
.ab-team-visual-badge svg {
    flex-shrink: 0;
}
.ab-team-body {
    min-width: 0;
}
.ab-team-quote {
    margin: 0 0 1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0 0.75rem 0.75rem 0;
    border-left: 4px solid #007cc2;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    line-height: 1.7;
    color: #0a2540;
    font-weight: 500;
    background: linear-gradient(105deg, rgba(0, 124, 194, 0.06) 0%, rgba(255, 255, 255, 0.8) 100%);
    box-shadow: 0 4px 20px rgba(0, 124, 194, 0.06);
}
.ab-team-copy p {
    font-size: clamp(0.88rem, 0.92vw, 0.98rem);
    line-height: 1.9;
    color: #5a6a7a;
    font-weight: 300;
    margin-bottom: 0.9rem;
}
.ab-team-copy p:last-child {
    margin-bottom: 0;
}
.ab-team-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 4vw;
}
.ab-team-pillar {
    padding: clamp(1.25rem, 1.6vw, 1.75rem);
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 4px 24px rgba(4, 24, 48, 0.05);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.ab-team-pillar:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 124, 194, 0.28);
    box-shadow: 0 12px 36px rgba(0, 124, 194, 0.1);
}
.ab-team-pillar-ico {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, rgba(0, 124, 194, 0.1) 0%, rgba(0, 180, 255, 0.06) 100%);
    color: #007cc2;
    margin-bottom: 1rem;
}
.ab-team-pillar-ico svg {
    width: 1.25rem;
    height: 1.25rem;
}
.ab-team-pillar h3 {
    font-size: clamp(0.92rem, 1vw, 1.05rem);
    font-weight: 600;
    color: #0a2540;
    margin: 0 0 0.5rem;
    line-height: 1.35;
}
.ab-team-pillar p {
    font-size: clamp(0.8rem, 0.86vw, 0.88rem);
    line-height: 1.7;
    color: #5a6a7a;
    font-weight: 300;
    margin: 0;
}

/* ========== 智慧系统页面 ========== */
.ws-page .about-01 {
    min-height: clamp(300px, 48vh, 520px);
}
.ws-page .about-01 .txt {
    padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.ws-page .ab-sec {
    padding: clamp(2rem, 3.2vw, 2.75rem) 0;
}
.ws-page .ab-sec.ws-rfid {
    padding-bottom: clamp(2.5rem, 4vw, 3.5rem);
}
.ws-sec-head {
    margin-bottom: clamp(1.1rem, 1.8vw, 1.5rem);
}
.ws-sec-head--center {
    text-align: center;
}
.ws-sec-head--center p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.ws-sec-en {
    display: block;
    font-size: clamp(0.68rem, 0.74vw, 0.78rem);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #007cc2;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.ws-sec-head h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 700;
    color: #0a2540;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.ws-lead {
    margin: 0;
    font-size: clamp(0.88rem, 0.94vw, 0.98rem);
    line-height: 1.72;
    color: #3d4f63;
    font-weight: 400;
}
.ws-intro {
    background: #f4f7fa;
}
.ws-intro-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(1.25rem, 2vw, 1.75rem);
    align-items: stretch;
    padding: clamp(1rem, 1.6vw, 1.35rem);
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 10px 36px rgba(4, 24, 48, 0.07);
}
.ws-intro-media {
    position: relative;
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    min-height: 100%;
}
.ws-intro-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: block;
    object-fit: cover;
}
.ws-intro-stats {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 18, 36, 0.88) 100%);
}
.ws-intro-stats li {
    padding: 0.85rem 0.65rem 0.95rem;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.ws-intro-stats li:last-child {
    border-right: none;
}
.ws-intro-stats strong {
    display: block;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(1.15rem, 1.4vw, 1.45rem);
    line-height: 1.1;
    color: #007cc2;
}
.ws-intro-stats span {
    display: block;
    margin-top: 0.2rem;
    font-size: clamp(0.68rem, 0.74vw, 0.78rem);
    opacity: 0.88;
    font-weight: 300;
}
.ws-intro-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.25rem 0.35rem 0.25rem 0;
}
.ws-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}
.ws-badges li {
    font-size: clamp(0.76rem, 0.82vw, 0.86rem);
    padding: 0.38rem 0.85rem;
    border-radius: 2rem;
    color: #007cc2;
    font-weight: 500;
    background: rgba(0, 124, 194, 0.08);
    border: 1px solid rgba(0, 124, 194, 0.16);
}
.ws-innovation {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 124, 194, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 80%, rgba(77, 179, 232, 0.1) 0%, transparent 50%),
        linear-gradient(165deg, #061a2e 0%, #0a2540 45%, #0d2f4f 100%);
}
.ws-innovation::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
    pointer-events: none;
}
.ws-innovation > .cont {
    position: relative;
    z-index: 1;
}
.ws-innovation .ws-sec-en {
    color: #4db3e8;
}
.ws-innovation .ws-sec-head h2 {
    color: #f4f8fc;
}
.ws-innovation .ws-sec-head--center p {
    color: rgba(255, 255, 255, 0.62);
}
.ws-inno-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
    padding: 0;
    list-style: none;
}
.ws-inno-summary li {
    text-align: center;
    padding: 0.85rem 0.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ws-inno-summary strong {
    display: block;
    font-family: MonB, system-ui, sans-serif;
    font-size: clamp(1.2rem, 1.5vw, 1.55rem);
    line-height: 1.1;
    color: #7ec8f5;
    letter-spacing: 0.02em;
}
.ws-inno-summary span {
    display: block;
    margin-top: 0.25rem;
    font-size: clamp(0.68rem, 0.74vw, 0.78rem);
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
}
.ws-inno-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(min-content, auto);
    align-items: start;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ws-inno-card {
    min-width: 0;
    display: block;
}
.ws-inno-card-inner {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.1rem 1.15rem;
    border-radius: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ws-inno-card:hover .ws-inno-card-inner {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(77, 179, 232, 0.3);
    box-shadow: 0 6px 24px rgba(0, 124, 194, 0.1);
}
.ws-inno-num {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    font-family: MonB, system-ui, sans-serif;
    font-size: 0.88rem;
    line-height: 1;
    color: #fff;
    border-radius: 0.65rem;
    background: linear-gradient(135deg, #007cc2 0%, #0098e0 100%);
    box-shadow: 0 4px 12px rgba(0, 124, 194, 0.35);
}
.ws-inno-card-body {
    flex: 1;
    min-width: 0;
}
.ws-inno-title {
    margin: 0 0 0.45rem;
    font-size: clamp(0.88rem, 0.94vw, 0.98rem);
    font-weight: 600;
    color: #f0f6fc;
    line-height: 1.35;
    letter-spacing: 0.01em;
}
.ws-inno-card p {
    margin: 0;
    font-size: clamp(0.76rem, 0.82vw, 0.84rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 300;
}
.ws-scroll-anchors span {
    display: block;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}
.ws-features-wrap {
    background: #f4f7fa;
}
.ws-safety {
    background: #fff;
}
.ws-swiper-panel {
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 8px 28px rgba(4, 24, 48, 0.06);
    overflow: hidden;
}
.ws-swiper-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
    background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}
.ws-swiper-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.75rem 0.5rem;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    background: transparent;
    font-size: clamp(0.76rem, 0.82vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 400;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.ws-swiper-tab span {
    font-family: MonB, system-ui, sans-serif;
    font-size: 0.78rem;
    color: #007cc2;
    opacity: 0.65;
}
.ws-swiper-tab.is-active {
    color: #0a2540;
    font-weight: 600;
    border-bottom-color: #007cc2;
    background: #fff;
}
.ws-swiper-tab.is-active span {
    opacity: 1;
}
.ws-feature-swiper,
.ws-safety-swiper {
    padding: 0 0 0.25rem;
}
.ws-feature-swiper .swiper-slide,
.ws-safety-swiper .swiper-slide {
    height: auto;
}
.ws-slide-card {
    display: grid;
    grid-template-columns: 36% minmax(0, 1fr);
    gap: 0;
    min-height: 260px;
    max-height: 300px;
}
.ws-slide-media {
    margin: 0;
    overflow: hidden;
}
.ws-slide-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}
.ws-slide-body {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.15rem 0.85rem;
    min-width: 0;
}
.ws-slide-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #007cc2;
    padding: 0.22rem 0.55rem;
    margin-bottom: 0.45rem;
    border-radius: 2rem;
    background: rgba(0, 124, 194, 0.08);
    border: 1px solid rgba(0, 124, 194, 0.14);
}
.ws-slide-body h3 {
    margin: 0 0 0.5rem;
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    font-weight: 600;
    color: #0a2540;
    line-height: 1.35;
}
.ws-slide-text {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 124, 194, 0.3) transparent;
}
.ws-slide-text::-webkit-scrollbar {
    width: 4px;
}
.ws-slide-text::-webkit-scrollbar-thumb {
    background: rgba(0, 124, 194, 0.3);
    border-radius: 4px;
}
.ws-slide-text p {
    margin: 0 0 0.5rem;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    line-height: 1.68;
    color: #5a6a7a;
    font-weight: 300;
}
.ws-slide-text p:last-child {
    margin-bottom: 0;
}
.ws-swiper-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.55rem 1rem 0.85rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
.ws-swiper-foot .swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.ws-swiper-foot .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0;
    background: rgba(0, 124, 194, 0.25);
    opacity: 1;
    transition: width 0.25s ease, background 0.25s ease;
}
.ws-swiper-foot .swiper-pagination-bullet-active {
    width: 18px;
    border-radius: 3px;
    background: #007cc2;
}
.ws-swiper-arrow {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(0, 124, 194, 0.18);
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.ws-swiper-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #007cc2;
    border-right: 1.5px solid #007cc2;
}
.ws-swiper-arrow--prev::after {
    transform: translate(-35%, -50%) rotate(-135deg);
}
.ws-swiper-arrow--next::after {
    transform: translate(-65%, -50%) rotate(45deg);
}
.ws-swiper-arrow:hover {
    border-color: #007cc2;
    background: rgba(0, 124, 194, 0.06);
}
.ws-swiper-arrow.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
}
.ws-rfid {
    background: #fff;
}
.ws-rfid-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 1.25rem;
    align-items: center;
    padding: 1.15rem 1.25rem;
    border-radius: 0.85rem;
    background: linear-gradient(135deg, #f8fbff 0%, #f4f7fa 100%);
    border: 1px solid rgba(0, 124, 194, 0.12);
}
.ws-rfid-thumb {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    background: #fff;
    border-radius: 0.65rem;
    border: 1px solid rgba(0, 124, 194, 0.08);
}
.ws-rfid-thumb img {
    max-width: 100%;
    max-height: 200px;
    height: auto;
    display: block;
}
.ws-rfid-copy p {
    margin: 0 0 0.55rem;
    font-size: clamp(0.82rem, 0.86vw, 0.9rem);
    line-height: 1.68;
    color: #5a6a7a;
    font-weight: 300;
}
.ws-rfid-copy p:last-child {
    margin-bottom: 0;
}
.ws-rfid-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
}
.ws-rfid-tags li {
    font-size: clamp(0.74rem, 0.8vw, 0.82rem);
    padding: 0.32rem 0.75rem;
    border-radius: 2rem;
    background: rgba(0, 124, 194, 0.08);
    border: 1px solid rgba(0, 124, 194, 0.16);
    color: #007cc2;
    font-weight: 500;
}

@media (max-width: 960px) {
    .about-01 {
        height: 30vw;
        min-height: 300px;
    }
    .about-01 .txt {
        align-items: flex-end;
        padding-bottom: 2rem;
    }
    .about-01 .txt h1{
        font-size: 20px;
    }
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .about-hero-stats li {
        flex: 1 1 calc(50% - 0.375rem);
        min-width: 140px;
    }
    .about-crumb {
        justify-content: flex-start;
    }
    .about-subnav-inner a {
        flex: 0 0 auto;
        padding: 0.65rem 1.1rem;
        font-size: 0.82rem;
    }
    .ab-head--left {
        text-align: left;
    }
    .ab-profile-layout,
    .ab-team-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    .ab-profile-layout {
        display: flex;
        flex-direction: column;
    }
    .ab-profile-media {
        width: 100%;
    }
    .ab-profile-badge {
        left: 1rem;
        bottom: 1rem;
        padding: 0.75rem 1rem;
    }
    .ab-motto {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ab-culture-cards,
    .ab-adv-grid {
        grid-template-columns: 1fr;
    }
    .ab-team-visual {
        min-height: 280px;
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .ab-team-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ab-adv-card-media {
        height: 160px;
    }
    .ws-intro-panel,
    .ws-rfid-panel {
        grid-template-columns: 1fr;
    }
    .ws-inno-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ws-inno-grid {
        grid-template-columns: 1fr;
    }
    .ws-slide-card {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .ws-slide-media img {
        min-height: 160px;
        max-height: 180px;
    }
    .ws-slide-text {
        max-height: 140px;
    }
    .ws-swiper-tabs {
        flex-wrap: wrap;
    }
    .ws-swiper-tab {
        flex: 1 1 33.33%;
        font-size: 0.74rem;
        padding: 0.65rem 0.35rem;
    }
}

@media (max-width: 520px) {
    .about-hero-stats li {
        flex: 1 1 100%;
    }
    .ab-motto {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .ab-motto-item {
        padding: 1rem 0.5rem;
    }
    .ab-team-pillars {
        grid-template-columns: 1fr;
    }
    .ab-team-photo--main {
        width: 72%;
    }
    .ab-team-photo--accent {
        width: 48%;
    }
    .about-subnav-inner a {
        flex: 0 0 auto;
        font-size: 0.78rem;
        padding: 0.6rem 0.9rem;
    }
    .ws-inno-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }
    .ws-inno-summary li {
        padding: 0.7rem 0.4rem;
    }
    .ws-inno-card-inner {
        padding: 0.95rem 0.9rem;
        gap: 0.7rem;
    }
    .ws-inno-num {
        width: 2.15rem;
        height: 2.15rem;
        font-size: 0.78rem;
        border-radius: 0.5rem;
    }
    .ws-intro-stats {
        grid-template-columns: 1fr;
    }
    .ws-intro-stats li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.55rem 0.75rem;
    }
    .ws-intro-stats li:last-child {
        border-bottom: none;
    }
    .ws-intro-stats span {
        margin-top: 0;
    }
}

/* ========== 配套设备列表 ========== */
.matching-list {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.matching-list-head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.matching-list-head p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.matching-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-bottom: 1.35rem;
    padding: 1rem 1.15rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(4, 24, 48, 0.04);
}
.matching-filter {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}
.matching-filter-label {
    flex-shrink: 0;
    margin-right: 0.15rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #007cc2;
}
.matching-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.48rem 0.95rem;
    border: 1px solid rgba(0, 124, 194, 0.16);
    border-radius: 2rem;
    background: #f4f8fb;
    color: #0a2540;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.matching-filter-btn:hover {
    border-color: rgba(0, 124, 194, 0.35);
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 124, 194, 0.1);
    transform: translateY(-1px);
}
.matching-filter-btn.is-active {
    background: linear-gradient(105deg, #007cc2 0%, #0095e8 100%);
    border-color: #007cc2;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 124, 194, 0.28);
    transform: none;
}
.matching-filter-name {
    display: block;
}
.matching-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    padding: 0.1rem 0.4rem;
    border-radius: 1rem;
    background: rgba(0, 124, 194, 0.12);
    color: #007cc2;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.35;
}
.matching-filter-btn.is-active .matching-filter-count {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.matching-count {
    flex-shrink: 0;
    margin: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 300;
    white-space: nowrap;
}
.matching-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.matching-card {
    min-width: 0;
}
.matching-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.matching-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 124, 194, 0.22);
    box-shadow: 0 14px 36px rgba(0, 124, 194, 0.12);
}
.matching-card-media {
    position: relative;
    margin: 0;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f9 0%, #f8fbff 100%);
}
.matching-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.matching-card-link:hover .matching-card-media img {
    transform: scale(1.06);
}
.matching-card-tag {
    position: absolute;
    left: 0.65rem;
    top: 0.65rem;
    z-index: 1;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #007cc2;
    padding: 0.28rem 0.55rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 124, 194, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.matching-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.85rem 0.9rem 0.95rem;
}
.matching-card-idx {
    font-family: MonB, system-ui, sans-serif;
    font-size: 0.72rem;
    color: #007cc2;
    opacity: 0.55;
    margin-bottom: 0.35rem;
}
.matching-card-title {
    margin: 0 0 0.55rem;
    font-size: clamp(0.88rem, 0.94vw, 0.96rem);
    font-weight: 600;
    color: #0a2540;
    line-height: 1.35;
    flex: 1;
}
.matching-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    color: #007cc2;
    font-weight: 500;
    opacity: 0.85;
    transition: gap 0.2s ease, opacity 0.2s ease;
}
.matching-card-more::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}
.matching-card-link:hover .matching-card-more {
    gap: 0.5rem;
    opacity: 1;
}
.matching-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
}
.matching-page-nums {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.matching-page-btn,
.matching-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.55rem;
    border: 1px solid rgba(0, 124, 194, 0.16);
    border-radius: 0.5rem;
    background: #fff;
    font-size: 0.82rem;
    color: #5a6a7a;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.matching-page-btn {
    position: relative;
}
.matching-page-btn::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #007cc2;
    border-right: 1.5px solid #007cc2;
}
.matching-page-btn--prev::after {
    transform: rotate(-135deg);
    margin-left: 2px;
}
.matching-page-btn--next::after {
    transform: rotate(45deg);
    margin-right: 2px;
}
.matching-page-btn:hover:not(:disabled),
.matching-page-num:hover:not(.is-active) {
    border-color: #007cc2;
    color: #007cc2;
    background: rgba(0, 124, 194, 0.05);
}
.matching-page-num.is-active {
    border-color: #007cc2;
    background: #007cc2;
    color: #fff;
    font-weight: 600;
    cursor: default;
}
.matching-page-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 1100px) {
    .matching-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 960px) {
    .matching-toolbar,
    .case-toolbar,
    .news-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        box-sizing: border-box;
    }

    .matching-toolbar {
        padding: 12px 14px;
        padding-right: calc(14px + 52px + env(safe-area-inset-right, 0px));
    }

    .case-toolbar,
    .news-toolbar {
        padding-bottom: 12px;
    
    }

    .matching-filter {
        order: 1;
        flex: none;
        width: 100%;
        min-width: 0;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }

    .matching-filter::-webkit-scrollbar {
        display: none;
    }

    .matching-filter-label {
        flex: 0 0 auto;
        position: sticky;
        left: 0;
        z-index: 2;
        margin-right: 0;
        padding-right: 8px;
        background: linear-gradient(90deg, #fff 75%, rgba(255, 255, 255, 0));
    }

    .case-list .matching-filter-label {
        background: linear-gradient(90deg, #f4f7fa 75%, rgba(244, 247, 250, 0));
    }

    .matching-filter-btn {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 13px;
    }

    .matching-filter-count {
        font-size: 11px;
    }

    .matching-count,
    .case-count,
    .news-count {
        order: 2;
        width: 100%;
        flex-shrink: 0;
        text-align: left;
        white-space: normal;
        font-size: 12px;
        line-height: 1.45;
        padding-top: 8px;
        margin-top: 2px;
        border-top: 1px solid rgba(0, 124, 194, 0.08);
    }

    .news-toolbar .news-filter {
        order: 1;
        width: 100%;
        min-width: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding-bottom: 2px;
    }

    .news-toolbar .news-filter::-webkit-scrollbar {
        display: none;
    }

    .news-list .news-filter .btn-box {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .matching-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .matching-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* ========== 合作案例列表 ========== */
.case-list {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.case-list-head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.case-list-head p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.case-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
}
.case-count {
    margin: 0;
    flex-shrink: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 300;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.case-card {
    min-width: 0;
}
.case-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.case-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 124, 194, 0.22);
    box-shadow: 0 14px 36px rgba(0, 124, 194, 0.12);
}
.case-card-media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f9 0%, #f8fbff 100%);
}
.case-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.case-card-link:hover .case-card-media img {
    transform: scale(1.06);
}
.case-card-tag {
    position: absolute;
    left: 0.65rem;
    top: 0.65rem;
    z-index: 1;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #007cc2;
    padding: 0.28rem 0.55rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 124, 194, 0.14);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.case-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0.85rem 0.95rem 1rem;
}
.case-card-idx {
    font-family: MonB, system-ui, sans-serif;
    font-size: 0.72rem;
    color: #007cc2;
    opacity: 0.55;
    margin-bottom: 0.35rem;
}
.case-card-title {
    margin: 0 0 0.45rem;
    font-size: clamp(0.9rem, 0.96vw, 1rem);
    font-weight: 600;
    color: #0a2540;
    line-height: 1.35;
}
.case-card-sum {
    margin: 0 0 0.65rem;
    flex: 1;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    line-height: 1.55;
    color: #5a6a7a;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.case-card-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    color: #007cc2;
    font-weight: 500;
    opacity: 0.85;
    transition: gap 0.2s ease, opacity 0.2s ease;
}
.case-card-more::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: rotate(45deg);
}
.case-card-link:hover .case-card-more {
    gap: 0.5rem;
    opacity: 1;
}
.case-list .matching-pagination {
    margin-top: clamp(1.5rem, 2.5vw, 2rem);
}

@media (max-width: 900px) {
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .case-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* ========== 合作案例详情 ========== */
.case-info {
    background: #f4f7fa;
    padding: clamp(2rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
/* .case-detail-wrap {
    width: 100%;
} */
.case-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    font-size: clamp(0.75rem, 0.82vw, 0.875rem);
    color: #8a96a3;
    margin-bottom: 0.85rem;
    font-weight: 300;
}
.case-crumb a {
    color: #5a6a7a;
    transition: color 0.2s ease;
}
.case-crumb a:hover {
    color: #007cc2;
}
.case-crumb-sep {
    opacity: 0.45;
}
.case-crumb-current {
    color: #0a2540;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.case-back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
    font-size: clamp(0.82rem, 0.88vw, 0.9rem);
    color: #007cc2;
    font-weight: 500;
    transition: gap 0.2s ease, opacity 0.2s ease;
}
.case-back:hover {
    gap: 0.5rem;
    opacity: 0.85;
}
.case-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(1rem, 2vw, 1.75rem);
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 8px 32px rgba(4, 24, 48, 0.06);
    overflow: hidden;
}
.case-detail-gallery {
    flex: 0 0 48%;
    width: 48%;
    max-width: 48%;
    box-sizing: border-box;
    padding: clamp(1.25rem, 2.2vw, 2rem) 0 clamp(1.25rem, 2.2vw, 2rem) clamp(1.25rem, 2.2vw, 2rem);
}
.case-detail-gallery-main {
    margin: 0;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f9 0%, #f8fbff 100%);
}
.case-detail-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.25s ease;
}
.case-detail-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.75rem;
}
.case-detail-thumb {
    flex: 0 0 auto;
    width: clamp(4.5rem, 8vw, 6.5rem);
    aspect-ratio: 4 / 3;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    background: #eef4f9;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}
.case-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.case-detail-thumb:hover {
    opacity: 0.85;
}
.case-detail-thumb.is-active {
    border-color: #007cc2;
}
.case-detail-main {
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
    padding: clamp(1.25rem, 2.2vw, 2rem) clamp(1.25rem, 2.2vw, 2rem) clamp(1.25rem, 2.2vw, 2rem) 0;
}
.case-detail-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: #0a2540;
    line-height: 1.3;
}
.case-detail-intro {
    margin: 0 0 clamp(1.25rem, 2vw, 1.75rem);
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    line-height: 1.75;
    color: #5a6a7a;
    font-weight: 300;
}
.case-detail-form-wrap {
    padding: clamp(1rem, 1.6vw, 1.35rem);
    border-radius: 0.85rem;
    background: #f4f8fb;
    border: 1px solid rgba(0, 124, 194, 0.1);
}
.case-detail-form-title {
    margin: 0 0 0.85rem;
    font-size: clamp(1rem, 1.08vw, 1.12rem);
    font-weight: 600;
    color: #0a2540;
}
.case-detail-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 1rem;
}
.case-detail-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.case-detail-field--full {
    grid-column: 1 / -1;
}
.case-detail-label {
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 400;
}
.case-detail-field input,
.case-detail-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(0, 124, 194, 0.16);
    border-radius: 0.55rem;
    background: #fff;
    color: #0a2540;
    font-size: clamp(0.86rem, 0.92vw, 0.94rem);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.case-detail-field input::placeholder,
.case-detail-field textarea::placeholder {
    color: #a8b4c0;
}
.case-detail-field input:focus,
.case-detail-field textarea:focus {
    border-color: rgba(0, 124, 194, 0.55);
    box-shadow: 0 0 0 3px rgba(0, 124, 194, 0.08);
}
.case-detail-field textarea {
    min-height: 6.5rem;
    resize: vertical;
}
.case-detail-form-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1rem;
}
.case-detail-submit {
    padding: 0.65rem 1.6rem;
    border: none;
    border-radius: 2rem;
    background: #007cc2;
    color: #fff;
    font-size: clamp(0.86rem, 0.92vw, 0.94rem);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.case-detail-submit:hover {
    background: #0094e0;
}
.case-detail-submit:active {
    transform: scale(0.98);
}
.case-detail-form-tip {
    margin: 0;
    font-size: clamp(0.8rem, 0.86vw, 0.88rem);
    color: #007cc2;
}
.case-detail-form-tip[hidden] {
    display: none;
}
.case-detail-actions {
    margin-top: clamp(1rem, 1.6vw, 1.35rem);
    margin-bottom: clamp(1rem, 1.6vw, 1.35rem);
}
.case-detail-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.75rem;
    border-radius: 2rem;
    background: #0a2540;
    color: #fff;
    font-size: clamp(0.86rem, 0.92vw, 0.94rem);
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}
.case-detail-contact-btn:hover {
    background: #123a5c;
    transform: translateY(-1px);
}

@media (max-width: 960px) {
    .case-detail {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        border-radius: 0.75rem;
    }

    .case-detail-gallery {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 16px 16px 0;
    }

    .case-detail-main {
        flex: none;
        width: 100%;
        max-width: 100%;
        padding: 0 16px 16px;
        box-sizing: border-box;
    }

    .case-detail-gallery-main {
        aspect-ratio: 4 / 3;
    }

    .case-detail-form-wrap {
        width: 100%;
        box-sizing: border-box;
        padding: 14px;
    }

    .case-detail-form-grid {
        grid-template-columns: 1fr;
    }

    .case-detail-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .case-detail-submit {
        width: 100%;
    }

    .case-detail-contact-btn {
        display: flex;
        width: 100%;
        box-sizing: border-box;
    }

    .case-detail-title {
        font-size: 1.35rem;
    }

    .case-detail-intro {
        font-size: 14px;
        line-height: 1.65;
    }
}

/* ========== 新闻列表 ========== */
.news-list {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.news-list-head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.news-list-head p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.news-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
}
.news-list .news-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.news-list .news-filter .btn-box {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.9rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 124, 194, 0.18);
    background: #fff;
    text-decoration: none;
    color: #0a2540;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.news-list .news-filter .btn-box .ico-box {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 124, 194, 0.08);
}
.news-list .news-filter .btn-box .ico-box svg {
    width: 0.75rem;
    height: 0.75rem;
}
.news-list .news-filter .btn-box .ico-box svg path {
    fill: #007cc2;
}
.news-list .news-filter .btn-box:hover,
.news-list .news-filter .btn-box.on {
    background: #007cc2;
    border-color: #007cc2;
    color: #fff;
}
.news-list .news-filter .btn-box.on .ico-box,
.news-list .news-filter .btn-box:hover .ico-box {
    background: rgba(255, 255, 255, 0.22);
}
.news-list .news-filter .btn-box.on .ico-box svg path,
.news-list .news-filter .btn-box:hover .ico-box svg path {
    fill: #fff;
}
.news-count {
    margin: 0;
    flex-shrink: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 300;
}

@media (max-width: 960px) {
    .news-list .news-filter {
        flex-wrap: nowrap;
        width: 100%;
        gap: 6px;
    }

    .news-list .news-filter .btn-box {
        flex: 1 1 0;
        min-width: 0;
        justify-content: space-between;
        padding: 8px 8px 8px 12px;
    }

    .news-list .news-filter .btn-box p {
        font-size: 12px;
        margin-right: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-list .news-filter .btn-box .ico-box {
        width: 24px;
        min-width: 24px;
        height: 24px;
        min-height: 24px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .news-list .news-filter .btn-box {
        padding: 7px 6px 7px 10px;
    }

    .news-list .news-filter .btn-box p {
        font-size: 11px;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.news-list-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 0.85rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.news-list-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 124, 194, 0.22);
    box-shadow: 0 14px 36px rgba(0, 124, 194, 0.12);
}
.news-list-card-media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #eef4f9 0%, #f8fbff 100%);
}
.news-list-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.news-list-card-link:hover .news-list-card-media img {
    transform: scale(1.06);
}
.news-list-card-tag {
    position: absolute;
    left: 0.65rem;
    top: 0.65rem;
    z-index: 1;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #007cc2;
    padding: 0.28rem 0.55rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 124, 194, 0.14);
}
.news-list-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.1rem 1.15rem;
    gap: 0.45rem;
}
.news-list-card-title {
    margin: 0;
    font-size: clamp(0.92rem, 0.98vw, 1.02rem);
    font-weight: 600;
    color: #0a2540;
    line-height: 1.45;
}
.news-list-card-sum {
    margin: 0;
    flex: 1;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    line-height: 1.6;
    color: #5a6a7a;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-list-card-date {
    margin: 0;
    font-size: clamp(0.72rem, 0.78vw, 0.8rem);
    color: #8a9aab;
}
.news-list .matching-pagination {
    margin-top: 1.75rem;
}

/* ========== 新闻详情 ========== */
.news-detail {
    background: #f4f7fa;
    padding: clamp(2rem, 3.2vw, 2.75rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.web-all--inner .scoll-move > .news-detail:first-child {
    padding-top: calc(clamp(2rem, 3.2vw, 2.75rem) + var(--hdr-height, 72px));
}
.news-detail-wrap {
    max-width: 820px;
}
.news-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.85rem;
    font-size: clamp(0.76rem, 0.82vw, 0.84rem);
    color: #8a9aab;
}
.news-crumb a {
    color: #5a6a7a;
    text-decoration: none;
}
.news-crumb a:hover {
    color: #007cc2;
}
.news-crumb-sep {
    opacity: 0.5;
}
.news-crumb-current {
    color: #0a2540;
    font-weight: 500;
}
.news-back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
    font-size: clamp(0.8rem, 0.86vw, 0.88rem);
    color: #007cc2;
    text-decoration: none;
}
.news-back:hover {
    text-decoration: underline;
}
.news-article {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 8px 32px rgba(4, 24, 48, 0.06);
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
}
.news-article-head {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
}
.news-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}
.news-article-date {
    margin: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #8a9aab;
}
.news-article-cat {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #007cc2;
    padding: 0.28rem 0.55rem;
    border-radius: 2rem;
    background: rgba(0, 124, 194, 0.08);
    border: 1px solid rgba(0, 124, 194, 0.14);
}
.news-article-title {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    font-weight: 700;
    color: #0a2540;
    line-height: 1.35;
}
.news-article-lead {
    margin: 0.85rem 0 0;
    font-size: clamp(0.9rem, 0.96vw, 1rem);
    line-height: 1.7;
    color: #5a6a7a;
    font-weight: 300;
}
.news-article-cover {
    margin: 0 0 1.5rem;
    border-radius: 0.75rem;
    overflow: hidden;
}
.news-article-cover img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.news-article-body {
    font-size: clamp(0.88rem, 0.94vw, 0.98rem);
    line-height: 1.85;
    color: #3d4f63;
}
.news-article-body p {
    margin: 0 0 1rem;
}
.news-article-body h3 {
    margin: 1.5rem 0 0.65rem;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    color: #0a2540;
}
.news-article-body ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
}
.news-article-body li {
    margin-bottom: 0.35rem;
}
.news-article-body a {
    color: #007cc2;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}
.news-article-body a:hover {
    color: #005a94;
}
.news-article-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.25rem auto;
    border-radius: 0.65rem;
}
.news-article-body h2,
.news-article-body h4 {
    margin: 1.5rem 0 0.65rem;
    font-size: clamp(1.05rem, 1.2vw, 1.18rem);
    color: #0a2540;
    font-weight: 600;
    line-height: 1.4;
}
.news-article-body blockquote {
    margin: 1.25rem 0;
    padding: 0.85rem 1.1rem;
    border-left: 3px solid #007cc2;
    border-radius: 0 0.5rem 0.5rem 0;
    background: rgba(0, 124, 194, 0.06);
    color: #3d4f63;
}
.news-article-body blockquote p:last-child {
    margin-bottom: 0;
}
.news-article-body strong {
    color: #0a2540;
    font-weight: 600;
}
.news-article-body table {
    width: 100%;
    margin: 1.25rem 0;
    border-collapse: collapse;
    font-size: 0.88rem;
}
.news-article-body th,
.news-article-body td {
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(0, 124, 194, 0.14);
    text-align: left;
}
.news-article-body th {
    background: rgba(0, 124, 194, 0.08);
    color: #0a2540;
    font-weight: 600;
}
.news-article-foot {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 124, 194, 0.1);
}
.news-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #5a6a7a;
}

/* ========== 联系我们 ========== */
.contact-page {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.contact-page-head {
    text-align: center;
    margin-bottom: clamp(1.5rem, 2.4vw, 2rem);
}
.contact-page-head p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.contact-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1rem, 1.6vw, 1.5rem);
    margin-bottom: clamp(1.5rem, 2.4vw, 2rem);
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}
.contact-info-card {
    background: #fff;
    border-radius: 0.85rem;
    border: 1px solid rgba(0, 124, 194, 0.1);
    padding: 1.1rem 1.15rem;
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.04);
}
.contact-info-card--full {
    grid-column: 1 / -1;
}
.contact-info-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: clamp(0.72rem, 0.78vw, 0.8rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #007cc2;
    font-weight: 600;
}
.contact-info-value {
    margin: 0;
    font-size: clamp(0.9rem, 0.96vw, 1rem);
    line-height: 1.55;
    color: #0a2540;
    font-weight: 500;
}
.contact-info-value a {
    color: inherit;
    text-decoration: none;
}
.contact-info-value a:hover {
    color: #007cc2;
}
.contact-page-map {
    border-radius: 0.85rem;
    overflow: hidden;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.04);
    background: #fff;
    min-height: 280px;
}
.contact-page-map img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.contact-page-form-wrap {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 8px 32px rgba(4, 24, 48, 0.06);
    padding: clamp(1.35rem, 2vw, 1.85rem);
}
.contact-page-form-wrap .tit {
    margin: 0 0 0.35rem;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    font-weight: 600;
    color: #0a2540;
}
.contact-page-form-wrap .fot-message-lead {
    margin: 0 0 1.1rem;
    font-size: clamp(0.82rem, 0.88vw, 0.9rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 站内搜索 ========== */
.search-page {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.search-page-head {
    text-align: center;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
}
.search-page-head p {
    max-width: 640px;
    margin: 0.55rem auto 0;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.65;
    color: #5a6a7a;
    font-weight: 300;
}
.search-form-wrap {
    max-width: 720px;
    margin: 0 auto clamp(1.25rem, 2vw, 1.75rem);
}
.search-form {
    display: flex;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.45rem;
    border-radius: 2.5rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.16);
    box-shadow: 0 8px 28px rgba(4, 24, 48, 0.06);
}
.search-form-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0.75rem 1rem;
    font-size: clamp(0.9rem, 0.96vw, 1rem);
    color: #0a2540;
    outline: none;
}
.search-form-input::placeholder {
    color: #8a9aab;
}
.search-form-submit {
    flex-shrink: 0;
    border: 0;
    border-radius: 2rem;
    padding: 0.72rem 1.5rem;
    background: #007cc2;
    color: #fff;
    font-size: clamp(0.84rem, 0.9vw, 0.92rem);
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease;
}
.search-form-submit:hover {
    background: #006aa8;
}
.search-hot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}
.search-hot-label {
    font-size: clamp(0.76rem, 0.82vw, 0.84rem);
    color: #8a9aab;
}
.search-hot-btn {
    border: 1px solid rgba(0, 124, 194, 0.18);
    background: #fff;
    color: #0a2540;
    border-radius: 2rem;
    padding: 0.28rem 0.75rem;
    font-size: clamp(0.74rem, 0.8vw, 0.82rem);
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.search-hot-btn:hover {
    border-color: #007cc2;
    color: #007cc2;
}
.search-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 124, 194, 0.1);
}
.search-page .search-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.search-page .search-filter .btn-box {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.9rem;
    border-radius: 2rem;
    border: 1px solid rgba(0, 124, 194, 0.18);
    background: #fff;
    color: #0a2540;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.search-page .search-filter .btn-box.on,
.search-page .search-filter .btn-box:hover {
    background: #007cc2;
    border-color: #007cc2;
    color: #fff;
}
.search-count {
    margin: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
    font-weight: 300;
}
.search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.search-result-item {
    display: flex;
    min-width: 0;
    min-height: 0;
}
.search-result-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    min-height: 0;
    padding: 1.1rem 1.15rem;
    border-radius: 0.85rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 6px 24px rgba(4, 24, 48, 0.04);
    text-decoration: none;
    color: inherit;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.search-result-link:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 124, 194, 0.22);
    box-shadow: 0 12px 32px rgba(0, 124, 194, 0.1);
}
.search-result-head {
    margin-bottom: 0.45rem;
}
.search-result-type {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #007cc2;
    padding: 0.22rem 0.5rem;
    border-radius: 2rem;
    background: rgba(0, 124, 194, 0.08);
    border: 1px solid rgba(0, 124, 194, 0.14);
}
.search-result-title {
    margin: 0;
    font-size: clamp(0.94rem, 1vw, 1.04rem);
    font-weight: 600;
    color: #0a2540;
    line-height: 1.45;
}
.search-result-sum {
    margin: 0;
    flex: 1 1 auto;
    min-height: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    line-height: 1.6;
    color: #5a6a7a;
    font-weight: 300;
}
.search-result-more {
    flex-shrink: 0;
    margin-top: 0.65rem;
    font-size: clamp(0.74rem, 0.8vw, 0.82rem);
    color: #007cc2;
    font-weight: 500;
}
.search-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #5a6a7a;
    font-size: clamp(0.86rem, 0.92vw, 0.94rem);
}

@media (max-width: 768px) {
    .search-form {
        flex-direction: column;
        border-radius: 1rem;
        padding: 0.75rem;
    }
    .search-form-submit {
        width: 100%;
    }
    .search-results {
        grid-template-columns: 1fr;
    }
    .search-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== Cookie 同意与政策 ========== */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    padding: 0 0 max(12px, env(safe-area-inset-bottom));
    pointer-events: none;
    animation: cookieConsentIn 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes cookieConsentIn {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-inner {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    background: rgba(8, 28, 52, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.cookie-consent-title {
    margin: 0 0 0.35rem;
    font-size: clamp(0.92rem, 0.98vw, 1rem);
    font-weight: 600;
    color: #fff;
}
.cookie-consent-desc {
    margin: 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    line-height: 1.6;
    color: rgba(236, 245, 255, 0.88);
    font-weight: 300;
}
.cookie-consent-link {
    color: #7ec8f5;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent-link:hover {
    color: #fff;
}
.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}
.cookie-consent-btn {
    border: none;
    border-radius: 999px;
    padding: 0.55rem 1.1rem;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cookie-consent-btn--ghost {
    background: transparent;
    color: rgba(236, 245, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.cookie-consent-btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}
.cookie-consent-btn--primary {
    background: #007cc2;
    color: #fff;
    border: 1px solid #007cc2;
}
.cookie-consent-btn--primary:hover {
    background: #0094e0;
    border-color: #0094e0;
}
.last-fot-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
}
.last-fot-meta a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.85;
}
.last-fot-meta a:hover {
    opacity: 1;
    color: #7ec8f5;
}
.last-fot-sep {
    opacity: 0.45;
}
.cookie-policy-page {
    background: #f4f7fa;
    padding: clamp(2.25rem, 3.5vw, 3rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.cookie-policy-head {
    text-align: center;
    margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}
.cookie-policy-head h2 {
    margin-top: 0.35rem;
    color: #0a2540;
}
.cookie-policy-updated {
    margin: 0.55rem 0 0;
    font-size: clamp(0.78rem, 0.84vw, 0.86rem);
    color: #5a6a7a;
}
.cookie-policy-body {
    max-width: 820px;
    margin: 0 auto;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    border-radius: 1rem;
    background: #fff;
    border: 1px solid rgba(0, 124, 194, 0.1);
    box-shadow: 0 8px 28px rgba(4, 24, 48, 0.05);
}
.cookie-policy-block + .cookie-policy-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 60, 100, 0.08);
}
.cookie-policy-block h3 {
    margin: 0 0 0.65rem;
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    color: #0a2540;
}
.cookie-policy-block p {
    margin: 0 0 0.75rem;
    font-size: clamp(0.84rem, 0.9vw, 0.94rem);
    line-height: 1.75;
    color: #5a6a7a;
    font-weight: 300;
}
.cookie-policy-block p:last-child {
    margin-bottom: 0;
}
.cookie-policy-block a {
    color: #007cc2;
}
.cookie-policy-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.cookie-policy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: clamp(0.8rem, 0.86vw, 0.9rem);
}
.cookie-policy-table th,
.cookie-policy-table td {
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(0, 60, 100, 0.1);
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}
.cookie-policy-table th {
    background: rgba(0, 124, 194, 0.06);
    color: #0a2540;
    font-weight: 600;
}
.cookie-policy-table td {
    color: #5a6a7a;
}
.cookie-policy-settings-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.2rem;
    border: 1px solid rgba(0, 124, 194, 0.25);
    border-radius: 999px;
    background: rgba(0, 124, 194, 0.08);
    color: #007cc2;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.cookie-policy-settings-btn:hover {
    background: #007cc2;
    border-color: #007cc2;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }
    .cookie-consent-actions {
        width: 100%;
        justify-content: stretch;
    }
    .cookie-consent-btn {
        flex: 1;
        text-align: center;
    }
    .last-fot-meta {
        justify-content: center;
    }
    .inx-01{
        height: 120vw;
    }
    .inx-01 .swiper, .inx-01 .swiper-wrapper,.inx-01 .swiper-slide{
        min-height: 120vw!important;
    }
}