html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    -webkit-font-feature-settings: 'kern'1;
            font-feature-settings: 'kern'1;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
}

@media (min-width: 992px) and (max-width: 1600px) {
    html {
        font-size: 54.6875%;
    }
}

:root {
    --html-fontSize: 1.6rem;
    --html-body-padding: 2rem;
    --html-body-lr: 4%;
    --html-body-color: #010103;
    --html-color-main: #02ca1c;
    --html-bg-color: #1C1C1C;
    --scrollbar-track: #070707;
    --scrollbar-thumb: #adb5bd;
    --scrollbar-thumb-hover: #6c757d;
    --scrollbar-width: 6px;
    --scrollbar-radius: 6px;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    font-size: var(--html-fontSize);
    font-family: -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", "Source Han Sans CN", sans-serif;
    background-color: var(--html-body-color);
    color: rgba(255, 255, 255, 0.8);
}

/* WebKit 浏览器 */
::-webkit-scrollbar {
    width: var(--scrollbar-width);
    height: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
    background: var(--scrollbar-track);
    border-radius: var(--scrollbar-radius);
}

::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb);
    border-radius: var(--scrollbar-radius);
    border: 0;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

/* IE/Edge 旧版 */
body {
    -ms-overflow-style: none;
    /* 隐藏默认滚动条 */
}

/* 隐藏滚动条但保持功能 */
.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

a {
    text-decoration: none;
    color: #fff;
    outline: none;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover {
    color: var(--html-color-main);
}

.aMore {
    margin-top: 3rem;
}

.aMore a {
    line-height: 5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    color: var(--html-color-main);
}

.aMore span {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 5rem;
    border-radius: 2rem 0 0 2rem;
    background-color: var(--html-bg-color);
    border: 1px solid var(--html-color-main);
    padding-left: 2rem;
}

.aMore i {
    width: 5rem;
    height: 100%;
    background-color: var(--html-color-main);
    color: #000;
    text-align: center;
    border-radius: 2rem 2rem 0 0;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 2rem;
}

@media (min-width: 1024px) {
    .aMore {
        text-align: center;
        margin-top: 5rem;
    }

    .aMore a {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
    }

    .aMore span {
        height: 5rem;
        border-radius: 2.5rem;
        background-color: var(--html-color-main);
        border: none;
        padding: 0 2rem;
        color: #000;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .aMore i {
        display: block;
        width: 5rem;
        height: 5rem;
        background-color: var(--html-color-main);
        color: #000;
        text-align: center;
        border-radius: 50%;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg);
        font-size: 3rem;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .aMore a:hover span {
        background-color: #fff;
    }

    .aMore a:hover i {
        background-color: #fff;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }
}

img {
    border: 0;
}

.zwnr {
    line-height: 180%;
}

.zwnr img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

.zwnr ul,
.zwnr ol {
    padding-left: 2rem;
}

.resetDiv ul,
.resetDiv li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.boxWidth {
    width: 100%;
    padding: 0 var(--html-body-lr);
}

.sp01 {
    height: 6rem;
}

@media (min-width: 992px) {
    .sp01 {
        height: 12rem;
    }

    .boxWidth {
        max-width: 1300px;
        padding: 0 3rem;
        margin: 0 auto;
    }

    @media (min-width: 1400px) {
        .boxWidth {
            padding: 0;
        }
    }
}

.webTitle {
    padding-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.webTitle h1,
.webTitle h2 {
    margin: 0;
    padding: 0;
    font-size: 2.6rem;
    line-height: 1;
}

.webTitle span {
    display: block;
    font-size: 1.6rem;
    font-weight: normal;
    padding-top: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.webTitle i {
    display: inline-block;
    padding-right: 5px;
}

.webTitle .icon-jiantou {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

@media (min-width: 992px) {

    .webTitle {
        padding-bottom: 4rem;
    }

    .webTitle h1,
    .webTitle h2 {
        font-size: 3.6rem;
    }

    .webTitle span {
        font-size: 2rem;
    }
}

.webHeader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 7rem;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
    padding: 0 var(--html-body-lr);
    z-index: 999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.webHeaderNav,
.webHeaderTel {
    display: none;
}

.webHeaderLogo img {
    display: block;
    height: 4rem
}

.btn-mob-menu .iconfont {
    font-size: 2.3rem;
    color: var(--html-color-main);
}

body.menu-open {
    overflow: hidden;
}

.popWebMenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--html-bg-color);
    text-align: center;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999998;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.popWebMenu.active {
    right: 0;
}

.popWebMenu>h2 {
    margin: 0;
    margin-top: 7rem;
    padding: 2rem var(--html-body-lr);
    font-size: 2rem;
}

.popWebMenu>div {
    margin: 0 var(--html-body-lr);
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
}

.popWebMenu>div a {
    display: block;
    padding: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.popWebMenu>div a.active {
    color: var(--html-color-main);
}

.popWebMenu>div a i {
    margin: 0 1rem;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.8);
}

.popWebMenu>div>a:last-child i {
    -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
            transform: rotate(0);
}

@media (min-width: 992px) {
    .homebg {
        background:
            -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 1)), to(rgba(0, 0, 0, 0.7))) fixed,
            url('../imgs/home-bg.jpg') center/cover no-repeat fixed;
        background:
            -o-linear-gradient(top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7)) fixed,
            url('../imgs/home-bg.jpg') center/cover no-repeat fixed;
        background:
            linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7)) fixed,
            url('../imgs/home-bg.jpg') center/cover no-repeat fixed;
    }

    .nybg {
        background: var(--html-body-color) url(../imgs/nybg.jpg) top center no-repeat;
        background-size: contain;
    }

    .nybg .webHeader {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .detailbg{
        background: var(--html-body-color) url(../imgs/news-detail-bg.png) top center no-repeat;
        background-size: contain;  
    }
    .detailbg .webHeader{
        background: none;
        -webkit-backdrop-filter: blur(0);
                backdrop-filter: blur(0);
    }
    .webHeader {
        height: 10rem;
        padding: 0 3rem;
        position: absolute;
    }

    .webHeaderNav,
    .webHeaderTel {
        display: block;
    }

    .webHeaderNav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .webHeaderNav a:hover,
    .webHeaderNav a.active {
        color: var(--html-color-main);
    }

    .webHeaderNav span {
        display: block;
        margin: 0 1.5rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .webHeaderTel {
        background-color: var(--html-color-main);
        border: 1px solid var(--html-color-main);
        height: 4.2rem;
        border-radius: 2.1rem;
        padding: 0 2.1rem;
        font-size: 2rem;
        color: #000;
        cursor: default;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .webHeaderTel:hover {
        background-color: var(--html-body-color);
        color: var(--html-color-main);
        -webkit-box-shadow: 0 0.6rem 1.6rem rgba(2, 202, 28, 0.6);
                box-shadow: 0 0.6rem 1.6rem rgba(2, 202, 28, 0.6);
    }

    .webHeaderTel .iconfont {
        font-size: 2rem;
        margin-right: 1rem;
    }

    @media (max-width: 1200px) {
        .webHeaderTel {
            display: none;
        }
    }

    .popWebMenu,
    .btn-mob-menu {
        display: none;
    }

    .webHeaderLogo img {
        height: 6rem;
    }
}

.swiper-container {
    width: 100%;
    position: relative;
    height: calc(100vh - 10rem);
    margin-top: 10rem;
    padding: 0;
}

/* Swiper 实例填充容器 */
.adSwiper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0;
}

/* 每个幻灯片内部图片完美覆盖 */
.adSwiper .swiper-slide {
    position: relative;
}

.adSwiper .swiper-slide img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: -webkit-transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    -o-transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* 分页器圆点 — 精致动态效果 */
.adSwiper .swiper-pagination-bullet {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
    margin: 0 6px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.adSwiper .swiper-pagination-bullet-active {
    background: var(--html-color-main);
    opacity: 1;
    border-radius: 1rem;
}

.adSwiper .swiper-pagination {
    bottom: 1.8rem !important;
}

/* ========= 移动端样式：轮播图固定高度，不要全屏 ========= */
@media (max-width: 768px) {

    /* 关键：移动端轮播图高度固定为320px，不再使用全屏高度 */
    .swiper-container {
        height: 30vh;
        margin-top: 7rem;
        padding: 0;
    }

    .adSwiper {
        border-radius: 0;
    }

    .adSwiper .swiper-slide img {
        border-radius: 0;
    }
}

/* 防止轮播图拖拽与页面滚动冲突，但保留正常滚动体验 */
.adSwiper {
    -ms-touch-action: pan-y pinch-zoom;
        touch-action: pan-y pinch-zoom;
}


/* ========= PC端专属样式 (≥769px) ========= */
@media (min-width: 769px) {

    /* Tab 栏 */
    .tab-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: none;
            flex-wrap: none;
    }

    .tab-btn {
        cursor: pointer;
        width: 25%;
        text-align: center;
        padding-top: 4rem;
    }

    .tab-btn h2 {
        font-size: 2.6rem;
        margin: 0;
        padding: 0;
    }

    .tab-btn span {
        display: block;
        font-size: 1.6rem;
        font-weight: normal;
        color: rgba(255, 255, 255, 0.8);
    }

    .tab-btn.active,
    .tab-btn.active span {
        color: var(--html-color-main);
    }

    /* Swiper 轮播容器 */
    .tabSwiper {
        width: 100%;
        height: 500px;
        border-radius: 3rem;
        overflow: hidden;
    }

    .tabSwiper .swiper-slide {
        position: relative;
    }

    .tabSwiper .swiper-slide img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .tabSwiper .slide-caption {
        display: none;
    }
}

/* ========= 移动端专属样式 (≤768px) - 覆盖Swiper为垂直排列 ========= */
@media (max-width: 768px) {

    /* 隐藏 Tab 栏 */
    .tab-bar {
        display: none;
    }

    /* 关键：让 .swiper 容器不再固定高度，允许内容自然展开 */
    .tabSwiper {
        width: 100%;
        height: auto !important;
        /* 覆盖内联高度 */
        overflow: visible !important;
        background: transparent;
        -webkit-box-shadow: none;
                box-shadow: none;
        border-radius: 0;
    }

    /* 将 .swiper-wrapper 改为垂直块级布局 */
    .tabSwiper .swiper-wrapper {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
            -ms-flex-direction: column !important;
                flex-direction: column !important;
        -webkit-transform: none !important;
            -ms-transform: none !important;
                transform: none !important;
        /* 移除swiper的transform偏移 */
        -webkit-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
        height: auto !important;
    }

    /* 每个 slide 恢复为普通块级元素，宽度100%，高度自适应 */
    .tabSwiper .swiper-slide {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        position: relative;
    }

    /* 图片样式：固定高度，保持比例 */
    .tabSwiper .swiper-slide img {
        width: 100%;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        display: block;
    }

    /* 文字层：在移动端改为普通块级，不再绝对定位 */
    .tabSwiper .slide-caption {
        display: block;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        background: var(--html-bg-color);
        -webkit-backdrop-filter: none;
                backdrop-filter: none;
        padding: 2rem 1rem;
        text-align: center;
        border-radius: 0;
        border: none;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .tabSwiper .slide-caption h2 {
        font-size: 2rem;
        margin: 0;
        padding: 0;
    }

    .tabSwiper .slide-caption span {
        display: block;
        font-size: 1rem;
        padding-top: 0.5rem;
    }
}

.home02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.home02 img {
    display: block;
    width: 100%;
}

.home02>a {
    display: block;
    background-color: var(--html-bg-color);
}

.home02 .wzBox {
    padding: 2rem 0;
    font-size: 1.2rem;
    color: rgba(255,255, 255, 0.8);
}

.home02 .wzBox h2 {
    margin: 0;
    padding: 0;
    padding-bottom: 0.6rem;
    font-size: 2rem;
    color: #fff;
}

@media (min-width: 1024px) {
    .home02 {
        gap: 3rem;
    }

    .home02>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: none;
            flex-wrap: none;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 3rem;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        border: 1px solid var(--html-bg-color);
    }

    .home02>a:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .home02 img {
        width: 50%;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        border: 0.6rem solid var(--html-bg-color);
        border-radius: 1rem;
    }

    .home02 .wzBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 4rem;
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .home02>a:nth-child(odd) .wzBox {
        padding-right: 0;
    }

    .home02>a:nth-child(even) .wzBox {
        padding-left: 0;
    }

    .home02 .wzBox h2 {
        font-size: 2.6rem;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home02>a:hover {
        -webkit-transform: translateY(-0.5rem);
            -ms-transform: translateY(-0.5rem);
                transform: translateY(-0.5rem);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .home02>a:hover h2 {
        color: var(--html-color-main);
    }

    .home02 .wzBox>div {
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home02>a:hover .wzBox>div {
        color: #fff;
    }

    .home02>a:hover img {
        border-color: var(--html-color-main);
    }
}

.home03 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 1rem;
}

.home03 a {
    display: block;
    width: 49%;
    background-color: var(--html-bg-color);
    padding: 1rem;
    text-align: center;
}

.home03 img {
    display: block;
    width: 100%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.home03 h2 {
    font-size: 1.6rem;
    margin: 0;
    padding: 1rem 0;
}

.home03 span {
    display: block;
    font-size: 1rem;
    font-weight: normal;
}

.home03 i div {
    display: none;
}

@media (min-width: 1024px) {
    .home03 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        row-gap: 2rem;
    }

    .home03 a {
        width: 32%;
        padding: 0;
        text-align: center;
    }

    .home03>a:nth-child(3n+2) {
        margin: 0 2%;
    }

    .home03 i {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .home03 i div {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border: 1rem solid var(--html-color-main);
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        transition: all 0.2s;
    }

    .home03>a:hover i div {
        -webkit-transform: scale(1.0);
            -ms-transform: scale(1.0);
                transform: scale(1.0);
    }

    .home03 h2 {
        font-size: 2rem;
        padding: 2rem;
    }

    .home03 span {
        font-size: 1.6rem;
    }

}

.home04 .webTitle {
    text-align: left;
    padding: 2rem 0;
}

.formBox {
    margin-top: 1rem;
}

.formBox form>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.formBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.formBox li {
    position: relative;
    width: 100%;
}

.formBox input {
    width: 100%;
    height: 4.8rem;
    padding-right: 1.5rem;
    padding-left: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2.4rem;
    font-size: 1.6rem;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    outline: none;
    color: #fff;
}

.formBox li i {
    display: block;
    position: absolute;
    left: 2px;
    top: 2px;
    width: 5rem;
    height: 4.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2.6rem;
    z-index: 2;
    text-align: center;
    line-height: 4.5rem;
}

.formBox input:focus {
    border-color: var(--html-color-main);
}

.formBox li:hover i {
    color: #fff;
}

.formBox input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.formBox input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.formBox input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.formBox input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.formBox input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#webFormSubmit {
    display: block;
    width: 100%;
    padding: 1rem 0;
    background: var(--html-color-main);
    color: white;
    border-radius: 2rem;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-top: 3rem;
    text-align: center;
}

#webFormSubmit:active {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.error-message {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 5px;
    padding-left: 2rem;
    color: var(--html-color-main);
    display: none;
}

.success-message {
    color: var(--html-color-main);
    padding: 1rem 0;
    text-align: center;
    margin-top: 1rem;
    font-size: 2rem;
    width: 100%;
    display: none;
}

.error-message-div {
    color: #e74c3c;
    text-align: center;
    margin-top: 1rem;
    font-size: 2rem;
    width: 100%;
    display: none;
}

.loading {
    text-align: center;
    margin-top: 3rem;
    color: #fff;
    display: none;
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border-top: 4px solid #fff;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
    margin: 0 auto;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@media (min-width: 1024px) {
    .formBox form>div {
        padding: 0;
    }

    .formBox ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

    .formBox li {
        width: auto;
    }

    .formBox input {
        width: 100%;
        height: 49px;
        padding-right: 15px;
        padding-left: 50px;
        font-size: 16px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        outline: none;
    }

    .formBox li i {
        display: block;
        position: absolute;
        left: 2px;
        top: 2px;
        width: 50px;
        height: 45px;
        color: #a9adb2;
        font-size: 30px;
        z-index: 2;
        text-align: center;
        line-height: 45px;
    }

    #webFormSubmit {
        display: inline-block;
        height: 47px;
        line-height: 47px;
        padding: 0 4rem;
        background: var(--html-color-main);
        border: 1px solid var(--html-color-main);
        color: white;
        font-size: 2.2rem;
        font-weight: 600;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        margin-top: 0;
        width: auto;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }

    #webFormSubmit:hover {
        background: var(--html-body-color);
        color: var(--html-color-main);
        -webkit-box-shadow: 0 2px 1rem var(--html-color-main);
                box-shadow: 0 2px 1rem var(--html-color-main);
        -webkit-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
                transform: translateY(-2px);
    }

    #webFormSubmit:active {
        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }

    .error-message {
        color: #fff;
        font-size: 1.2rem;
        margin-top: 5px;
    }

    .success-message {
        text-align: center;
        margin-top: 3rem;
        font-size: 2.2rem;
        width: auto;
    }

    .error-message-div {
        font-size: 2.2rem;
        width: auto;
        padding: 1rem 3rem;
    }
}

.home05 .gdszBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    row-gap: 1rem;
}

.home05 .gdszBox li {
    padding: 3rem 0;
    width: 49%;
    background-color: var(--html-bg-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.home05 .gdszBox li h3 {
    margin: 0;
    padding: 0;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.home05 .gdszBox .counter {
    font-size: 3.6rem;
}

.home05 .gdszBox li>h3>span:last-child {
    display: block;
    color: #f00;
}

.home05 .zwnr .webTitle h2 {
    font-size: 2rem;
}

.home05 .zwnr>div:last-child {
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
    .home05 .gdszBox {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .home05 .gdszBox li {
        padding: 3rem 0;
        width: 25%;
        background-color: var(--html-bg-color);
        border: none;
        border-radius: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .home05 .gdszBox>li:first-child {
        border-radius: 1rem 0 0 1rem;
    }

    .home05 .gdszBox>li:last-child {
        border-radius: 0 1rem 1rem 0;
    }

    .home05 .zwnr .webTitle h2 {
        font-size: 2.6rem;
    }

    .home05 .zwnr img {
        display: block;
        margin: 0 auto;
    }
}

.home06 .home06List {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.home06 .home06List li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-color: #615A52;
    border-radius: 1rem;
}

.home06 .home06List img {
    display: block;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.home06 .home06PIC>img:last-child {
    display: none;
}

.home06 .home06WZ {
    padding: 2rem;
    color: #fff;
}

.home06 .home06List li h3 {
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
    font-size: 2rem;
}

@media (min-width: 1024px) {
    .home06 .home06List {
        gap: 3rem;
    }

    .home06 .home06List li {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home06 .home06List>li:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }

    .home06 .home06PIC {
        width: 50%;
        position: relative;
        overflow: hidden;
    }

    .home06 .home06List img {
        border-radius: 0 1rem 1rem 0;
        -webkit-transition: all 1s ease;
        -o-transition: all 1s ease;
        transition: all 1s ease;
        background-size: cover;
    }

    .home06 .home06List>li:nth-child(even) img {
        border-radius: 1rem 0 0 1rem;
    }

    .home06 .home06PIC>img:nth-child(1) {
        -webkit-transform: translatex(50%) scalex(2);
            -ms-transform: translatex(50%) scalex(2);
                transform: translatex(50%) scalex(2);
        opacity: 0;
        -webkit-filter: blur(10px);
                filter: blur(10px);
    }

    .home06 .home06PIC>img:nth-child(2) {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        -o-object-fit: cover;
           object-fit: cover;
    }

    .home06List li:hover .home06PIC>img:nth-child(1) {
        -webkit-transform: translatex(0) scalex(1);
            -ms-transform: translatex(0) scalex(1);
                transform: translatex(0) scalex(1);
        opacity: 1;
        -webkit-filter: blur(0);
                filter: blur(0);
    }

    .home06List li:hover .home06PIC>img:nth-child(2) {
        -webkit-transform: translatex(-50%) scalex(2);
            -ms-transform: translatex(-50%) scalex(2);
                transform: translatex(-50%) scalex(2);
        opacity: 0;
        -webkit-filter: blur(10px);
                filter: blur(10px);
    }

    .home06 .home06WZ {
        width: 50%;
        padding: 2rem 4rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .home06List li h3 {
        font-size: 2.6rem;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home06List li:hover {
        background-color: var(--html-bg-color);
    }

    .home06List li:hover h3 {
        color: var(--html-color-main);
    }
}

.home07 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.home07 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
}

.home07 li i {
    font-size: 7rem;
    height: 7rem;
    width: 7rem;
    line-height: 7rem;
    margin-right: 2rem;
    text-align: center;
}

.home07 li h3 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    color: #fff;
}

.home07 li span {
    display: block;
    padding-top: 0.6rem;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.home07 li img {
    display: block;
    width: 8rem;
    margin-right: 2rem;
    border-radius: 1rem;
}

@media (min-width: 1024px) {
    .home07 ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .home07 li {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 1rem;
        padding: 2rem;
        text-align: center;
        background-color: var(--html-bg-color);
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home07 li:hover {
        border-color: rgba(255, 255, 255, 0.2);
    }

    .home07 li i {
        font-size: 10rem;
        height: 10rem;
        width: 10rem;
        line-height: 10rem;
        margin-right: 0;
        text-align: center;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home07 li h3 {
        margin: 0;
        padding: 0;
        font-size: 2.6rem;
        margin-top: 2rem;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .home07 li:hover h3,
    .home07 li:hover i {
        color: var(--html-color-main);
    }

    .home07 li span {
        display: block;
        padding-top: 0.6rem;
        font-size: 1.6rem;
    }

    .home07 li img {
        display: block;
        width: 40%;
        margin-right: 0;
        border-radius: 1rem;
    }
}

.homeContact {
    width: 92%;
    margin: 0 auto;
}

.homeContact .contact_map {
    height: 30vh;
}

.homeContact .boxWidth {
    padding: 0;
}

.contactInfo,
.contactInfo a {
    color: rgba(255, 255, 255, 0.8);
}

.contactInfo>ul:nth-child(1) {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.contactInfo>ul:nth-child(1) li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contactInfo>ul:nth-child(1) i {
    display: block;
    background-color: var(--html-bg-color);
    font-size: 2rem;
    padding: 1rem;
    margin-right: 0.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.contactInfo>ul:nth-child(2) {
    margin-top: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
}

.contactInfo>ul:nth-child(2) li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-color: var(--html-bg-color);
    padding: 2rem;
    border-radius: 1rem;
}

.contactInfo>ul:nth-child(2) img {
    display: block;
    width: 100%;
}

.contactInfo>ul:nth-child(2) h3 {
    margin: 0;
    padding: 0;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 1.6rem;
}

@media (min-width: 1024px) {
    .homeContact {
        width: 100%;        
    }

    .homeContactBox{
        position: relative;
    }

    .homeContact .contact_map {
        position: absolute;
        height: 100%;
        width: 57.6%;
        top: 0;
        right: 0;
        border-radius: 1rem;
    }

    .homeContactBox .webTitle {
        text-align: left;
    }

    .contactInfo>ul:nth-child(1) {
        margin-top: 0;
    }

    .contactInfo a:hover {
        color: var(--html-color-main);
    }

    .contactInfo>ul:nth-child(2) {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
    }

    .contactInfo>ul:nth-child(2) li {
        width: 200px;
        -webkit-box-flex: 0;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
        padding: 0;
        border-radius: 0;
    }

    .contactInfo>ul:nth-child(2) h3 {
        padding: 1rem 0;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        border-radius: 1rem 1rem 0 0;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .contactInfo>ul:nth-child(2) li:hover h3 {
        color: #fff;
    }

    .contactInfo>ul:nth-child(2) img {
        border-radius: 0 0 1rem 1rem;
    }
}

.webFooter {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    font-size: 1rem;
}

.webFooter a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
}

#webGoTop {
    display: none;
}

@media (min-width: 1024px) {
    .webFooter {
        padding: 3rem 1rem;
        font-size: 1.4rem;
    }

    .webFooter a {
        display: inline-block;
    }

    .webFooter a:hover {
        color: #fff;
    }

    #webGoTop {
        display: block;
        position: fixed;
        z-index: 999999;
        bottom: 2rem;
        right: 1rem;
        background-color: var(--html-color-main);
        border: 1px solid var(--html-color-main);
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        color: #000;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        opacity: 0;
    }

    #webGoTop.visible {
        opacity: 1;
    }

    #webGoTop:hover {
        cursor: pointer;
        background-color: #000;
        color: var(--html-color-main);
    }
}

.webLocBox {
    margin-top: 10rem;
}

@media (min-width: 1024px) {
    .webLocBox {
        margin-top: 20rem;
    }

    .webLocBox .webTitle span {
        font-size: 1.6rem;
        padding-top: 1.6rem;
    }
}

.rzpx01 img {
    display: block;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.rzpx01 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.rzpx01 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.8rem 2rem;
    color: #fff;
}

.rzpx01 li i {
    width: 7rem;
    font-size: 5rem;
    margin-right: 1rem;
}

.rzpx01 li h2 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
}

.rzpx01 li span {
    display: block;
    font-size: 1.2rem;
}

.rzpx01 ul>li:nth-child(1) {
    background-color: #6205B5;
}

.rzpx01 ul>li:nth-child(2) {
    background-color: #2C97EA;
}

.rzpx01 ul>li:nth-child(3) {
    background-color: #9C1B00;
    border-radius: 0 0 1rem 1rem;
}

@media (min-width: 1024px) {
    .rzpx01 ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .rzpx01 li {
        width: 33%;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 1.5rem 2rem;
    }

    .rzpx01 li i {
        font-size: 6rem;
    }

    .rzpx01 li h2 {
        margin: 0;
        padding: 0;
        font-size: 2.6rem;
    }

    .rzpx01 li span {
        display: block;
        font-size: 1.6rem;
    }

    .rzpx01 ul>li:nth-child(1) {
        background-color: #6205B5;
        border-radius: 0 0 0 1rem;
    }

    .rzpx01 ul>li:nth-child(2) {
        width: 34%;
        background-color: #2C97EA;
    }

    .rzpx01 ul>li:nth-child(3) {
        background-color: #9C1B00;
        border-radius: 0 0 1rem 0;
    }
}

.rzpx02 .picBox>img {
    display: block;
    width: 100%;
    border-radius: 1rem 1rem 0 0;
}

.rzpx02 .picBox>i {
    display: none;
}

.rzpx02 .wzBox>h2 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    color: #fff;
}

.rzpx02 .wzBox {
    background-color: var(--html-bg-color);
    border-radius: 0 0 1rem 1rem;
    padding: 2rem 1.5rem;
}

.rzpx02 .wzBox>h2 span {
    display: block;
    padding-top: 1rem;
    font-weight: normal;
    font-size: 1.2rem;
}

@media (min-width: 1024px) {
    .rzpx02 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 2rem;
    }

    .rzpx02 .picBox {
        position: relative;
        width: 52rem;
        border-radius: 1rem;
        overflow: hidden;
    }

    .rzpx02 .picBox>img {
        border-radius: 1rem;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-filter: blur(1.6rem);
                filter: blur(1.6rem);
        z-index: 1;
        pointer-events: none;
    }

    .rzpx02 .picBox>i {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .rzpx02 .picBox>i img {
        display: block;
    }

    .rzpx02 .wzBox>h2 {
        font-size: 2.6rem;
    }

    .rzpx02 .wzBox {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        border-radius: 1rem;
        padding: 2rem;
    }

    .rzpx02 .wzBox>h2 span {
        font-size: 1.4rem;
    }
}

.rzpx03 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.rzpx03 li a{
    display: block;
}

.rzpx03 ul img {
    display: block;
    width: 100%;
}

.rzpx03 ul .mask {
    display: none;
}

.rzpx03 ul .wzBox {
    width: 92%;
    margin: 0 auto;
}

.rzpx03 ul .wzBox h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    padding: 0;
    padding-top: 2rem;
}

.rzpx03 ul .wzBox span {
    display: block;
    padding-top: 0.6rem;
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 1024px) {
    .rzpx03 ul {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 0;
    }

    .rzpx03 ul>li {
        width: 50%;
        position: relative;
    }

    .rzpx03 ul img {
        display: block;
        width: 100%;
    }

    .rzpx03 ul .mask {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-color: rgba(0, 0, 0, 0.3);
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpx03 ul .wzBox {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .rzpx03 ul .wzBox h2 {
        font-size: 2.6rem;
        padding-top: 0;
        background-color: rgba(0, 0, 0, 0);
        padding: 2rem;
        width: 100%;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpx03 ul .wzBox span {
        color: #fff;
        font-weight: normal;
    }

    .rzpx03 ul>li:hover .mask {
        background-color: rgba(0, 0, 0, 0);
    }

    .rzpx03 ul>li:hover h2 {
        background-color: rgba(0, 0, 0, 0.6);
    }
}

.rzpx04List {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--html-bg-color);
    border-radius: 1rem;
}

.rzpx04List li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem;
}

.rzpx04List li i {
    font-size: 5rem;
    height: 5rem;
    line-height: 5rem;
    margin-right: 1.2rem;
}

.rzpx04List li h3 {
    margin: 0;
    padding: 0;
}

.rzpx04List li h3 span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}

.rzpx04List>li:last-child {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .rzpx04List {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        border: none;
        padding: 2rem !important;
    }

    .rzpx04List li {
        width: 33%;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 4rem 2rem;
        text-align: center;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpx04List>li:nth-child(3n+2) {
        width: 34%;
    }

    .rzpx04List>li:nth-child(3n+3) {
        border-right: none;
    }

    .rzpx04List>li:nth-child(1),
    .rzpx04List>li:nth-child(2),
    .rzpx04List>li:nth-child(3) {
        border-top: none;
    }

    .rzpx04List li i {
        font-size: 6rem;
        height: 6rem;
        line-height: 6rem;
        margin-right: 0;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .rzpx04List li:hover i {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);
        color: var(--html-color-main);
    }

    .rzpx04List li:hover {
        color: #fff;
    }

    .rzpx04List li h3 {
        margin: 0;
        padding: 0;
        padding-top: 1.5rem;
        font-size: 2.6rem;
    }

    .rzpx04List li h3 span {
        display: block;
        font-size: 1.6rem;
        font-weight: normal;
    }

    .rzpx04List>li:last-child {
        border-bottom: none;
    }
}

.rzpxNewsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.rzpxNewsList a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    background-color: var(--html-bg-color);
    color: rgba(255, 255, 255, 0.8);
}

.rzpxNewsList i {
    display: block;
    width: 40%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1rem;
}

.rzpxNewsList img {
    display: block;
    width: 100%;
}

.rzpxNewsList .mask,
.rzpxNewsList .viewIC {
    display: none;
}

.rzpxNewsList a>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.rzpxNewsList a>div span {
    font-size: 1rem;
}

.rzpxNewsList a>div h3 {
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0;
    padding: 0;
    padding-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
}

@media (min-width: 1024px) {
    .rzpxNewsList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 0;
        row-gap: 2rem;
    }

    .rzpxNewsList a {
        width: 32%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        background-color: var(--html-bg-color);
        color: rgba(255, 255, 255, 0.8);
        padding: 1rem;
    }

    .rzpxNewsList>a:nth-child(3n+2) {
        margin: 0 2%;
    }

    .rzpxNewsList i {
        display: block;
        width: 100%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 0;
        position: relative;
        overflow: hidden;
    }

    .rzpxNewsList img {
        display: block;
        width: 100%;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpxNewsList .mask,
    .rzpxNewsList .viewIC {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        opacity: 0;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpxNewsList .mask {
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1;
    }

    .rzpxNewsList .viewIC {
        background: url(../imgs/ic_zoom.png) 50% no-repeat;
        z-index: 2;
    }

    .rzpxNewsList a>div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2rem 0 1rem;
    }

    .rzpxNewsList a>div span {
        font-size: 1.2rem;
    }

    .rzpxNewsList a>div h3 {
        font-size: 1.6rem;
        font-weight: normal;
        margin: 0;
        padding: 0;
        padding-top: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .rzpxNewsList a:hover h3 {
        color: var(--html-color-main);
    }

    .rzpxNewsList a:hover img {
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
    }

    .rzpxNewsList a:hover .mask,
    .rzpxNewsList a:hover .viewIC {
        opacity: 1;
    }
}

.rczl {
    background: url(../imgs/choose-bgs.jpg) center/cover no-repeat;
    padding-bottom: 3rem;
}

.rczl>img {
    display: block;
    width: 92%;
    margin-left: 8%;
}

.rczl .webTitle {
    text-align: left;
}

.rczl .introBox {
    line-height: 1.6;
    font-size: 1.4rem;
}

.rczl .rczllist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
}

.rczl .rczllist>div {
    background-color: #2B2523;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
}

.rczl .rczllist>div>h3 {
    margin: 0;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.8rem;
}

.rczl .rczllist .zwnr {
    padding: 0 2rem;
    line-height: 1.6;
    font-size: 1.4rem;
}

@media (min-width: 1024px) {
    .rczl {
        padding-top: 10rem;
        padding-bottom: 0;
        position: relative;
        height: 754px;
        overflow: hidden;
    }

    .rczl>img {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: auto;
        margin-left: 0;
    }

    @media (min-width: 1371px) and (max-width: 1599px) {
        .rczl>img {
            right: -14%;
        }
    }

    @media (max-width: 1300px) {
        .rczl>img {
            right: -25%;
        }
    }

    .rczl .webTitle {
        text-align: left;
        padding-bottom: 0;
    }

    .rczl .introBox {
        width: 75rem;
    }

    .rczl .introBox {
        line-height: 1.6;
        font-size: 1.4rem;
    }

    .rczl .rczllist {
        width: 75rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
    }

    .rczl .rczllist>div {
        background-color: #2B2523;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1rem;
    }

    .rczl .rczllist>div>h3 {
        margin: 0;
        padding: 1.2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.8rem;
        color: #fff;
    }

    .rczl .rczllist .zwnr {
        padding: 0 1.2rem;
        line-height: 1.6;
        font-size: 1.4rem;
    }
}

.rzpxfooter {
    background: url(../imgs/footer-bg.jpg) bottom center no-repeat;
    background-size: cover;
}

.rzpxfooter .nrbox {
    position: relative;
}

.rzpxfooter .nrbox img {
    display: block;
    position: absolute;
    right: 4%;
    bottom: 0;
    width: 40%;
    z-index: 1;
}

.rzpxfooter .nrbox ul {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 6rem 0;
}

.rzpxfooter .nrbox ul h3 {
    margin: 0;
    padding: 0;
    padding-bottom: 0.6rem;
    font-size: 2rem;
}

@media (min-width: 1024px) {

    .rzpxfooter .nrbox {
        height: 550px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end;
    }

    .rzpxfooter .nrbox img {
        display: block;
        position: unset;
        width: auto;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-right: 10rem;
    }

    .rzpxfooter .nrbox ul {
        height: 100%;
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 4rem;
        font-size: 2rem;
        padding: 0;
    }

    .rzpxfooter .nrbox ul h3 {
        margin: 0;
        padding: 0;
        padding-bottom: 0.6rem;
        font-size: 3rem;
    }
}

.banBox {
    position: relative;
    margin-top: 7rem;
}

.banBox img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.banBox .webLocBox {
    margin: 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

@media (min-width: 1024px) {
    .banBox {
        margin-top: 0;
    }
}

.productsBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
}

.produtsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.produtsList>h2 {
    color: #fff;
    margin: 0;
    padding: 0;
    font-size: 3.6rem;
    padding-right: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media (max-width: 1600px) {
    .produtsList {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .produtsList>h2 {
        margin: 0;
        padding: 0;
        font-size: 2.6rem;
        padding: 0;
        padding-bottom: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

/* 手风琴容器 - 横向flex，无间距 */
.accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1300px;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: hidden;
}

@media (min-width: 1600px) {
    .produtsList>h2 {
        width: 250px;
    }

    .accordion {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 1300px;
    }
}

/* 每个图片卡片项 - 默认折叠状态 (flex:1) */
.accordion-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: -webkit-box-flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: -webkit-box-flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    -o-transition: flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transition: flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1), -webkit-box-flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1), -ms-flex 0.65s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* 展开状态 (由 JS 添加 .active 类控制) */
.accordion-item.active {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 750px;
            flex: 0 0 750px;
}

/* 图片填充 */
.accordion-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* 半透明黑色遮罩层 - 默认所有折叠项都有遮罩 */
.item-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

/* 展开的项遮罩完全透明 */
.accordion-item.active .item-mask {
    background-color: rgba(0, 0, 0, 0);
}

/* 标题容器 */
.item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.5)), to(transparent));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
    color: white;
    padding: 20px 16px 16px;
    text-align: center;
    z-index: 3;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
}

/* 标题文字溢出省略号 */
.item-caption h3 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    max-width: 100%;
}

.item-caption p {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    opacity: 0.9;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    max-width: 100%;
}

/* 悬停时图片轻微缩放 */
.accordion-item:hover img {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}

/* 悬停时标题背景微调 */
.accordion-item.active .item-caption {
    background: rgba(255, 0, 0, 0.7);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
}

.accordion-item.active .item-caption h3,
.accordion-item.active .item-caption p {
    white-space: normal;
    word-break: break-word;
    -o-text-overflow: clip;
       text-overflow: clip;
    opacity: 1;
}

/* 响应式：移动端改为纵向排列，简化手风琴效果 */
@media (max-width: 768px) {
    .accordion {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0;
        width: 92%;
        margin: 0 auto;
    }

    .accordion-item {
        -webkit-box-flex: 0 !important;
            -ms-flex: none !important;
                flex: none !important;
        width: 100%;
        height: auto;
        -webkit-backdrop-filter: blur(0);
                backdrop-filter: blur(0);
    }

    .accordion-item.active {
        -webkit-box-flex: 0 !important;
            -ms-flex: none !important;
                flex: none !important;
    }

    .accordion-item.active .item-caption {
        background: rgba(255, 0, 0, 0.7);
        -webkit-backdrop-filter: blur(0);
                backdrop-filter: blur(0);
    }

    .accordion-item .item-mask {
        display: none;
    }

    .accordion-item.active .item-mask {
        background-color: rgba(0, 0, 0, 0);
    }

    .accordion-item.active .item-caption {
        background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0.5)), to(transparent));
        background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 80%, transparent);
    }

    .item-caption {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-backdrop-filter: blur(0);
                backdrop-filter: blur(0);
    }

    .item-caption h3 {
        font-size: 2rem;
    }

    .item-caption h3,
    .item-caption p,
    .accordion-item.active .item-caption h3,
    .accordion-item.active .item-caption p {
        white-space: normal;
        word-break: break-word;
        -o-text-overflow: clip;
           text-overflow: clip;
    }
}

.accordion {
    will-change: flex;
}

.produtsIC {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.produtsIC>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.produtsIC>div i {
    background-color: var(--html-bg-color);
    width: 8rem;
    font-size: 4rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 1rem 0 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.produtsIC>div h3 {
    margin: 0;
    padding: 1.5rem;
    font-size: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.produtsIC>div span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}

@media (min-width: 1024px) {
    .produtsICBox {
        padding-top: 7rem;
        background: url(../imgs/footer-bg.jpg) center/cover no-repeat;
    }

    .produtsIC {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-column-gap: 0;
           -moz-column-gap: 0;
                column-gap: 0;
        row-gap: 2rem;
    }

    .produtsIC>div {
        width: 49%;
    }

    .produtsIC>div i {
        background-color: var(--html-bg-color);
        width: 8rem;
        font-size: 4rem;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        border-radius: 1rem 0 0 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .produtsIC>div h3 {
        margin: 0;
        padding: 1.5rem;
        font-size: 2.6rem;
    }

    .produtsIC>div span {
        display: block;
        font-size: 1.6rem;
        font-weight: normal;
    }

    .produtsIC>div:hover {
        cursor: default;
        border-color: var(--html-color-main);
    }

    .produtsIC>div:hover i,
    .produtsIC>div:hover h3 {
        color: var(--html-color-main);
    }
}

.supportBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}

.supportBox img {
    display: block;
    width: 100%;
}

.supportBox li {
    padding: 1rem 0;
}

.supportBox .sTime {
    font-size: 1rem;
    font-family: Arial;
}

.supportBox .sTime span:before {
    content: "-";
}

.supportBox .sNR H3 {
    padding: 0;
    margin: 0;
    padding-top: 1rem;
    font-size: 1.6rem;
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
}

.supportBox .sNR p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.supportBox .sNR i {
    display: inline-block;
    margin-left: 5px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    line-height: 1;
    font-size: 1rem;
}

@media (min-width: 1024px) {
    .supportBox {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        gap: 0;
    }

    .supportBox a {
        width: 49%;
        background-color: var(--html-bg-color);
    }

    .supportBox a>i {
        display: block;
        overflow: hidden;
    }

    .supportBox img {
        display: block;
        width: 100%;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .supportBox a:hover img {
        -webkit-transform: scale(1.1);
            -ms-transform: scale(1.1);
                transform: scale(1.1);
    }

    .supportBox li {
        padding: 2rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .supportBox .sTime {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 13%;
        font-size: 1.4rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        border-right: 1px solid rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2;
    }

    .supportBox .sTime span {
        font-size: 2.6rem;
    }

    .supportBox .sTime span:before {
        content: "";
    }

    .supportBox .sNR {
        width: 87%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        padding: 0 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .supportBox .sNR H3 {
        padding: 0;
        margin: 0;
        padding-top: 1rem;
        font-size: 1.6rem;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        white-space: nowrap;
    }

    .supportBox .sNR p {
        margin: 0;
        padding: 0;
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.8);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        line-height: 1;
        padding-top: 6px;
    }

    .supportBox .sNR p span {
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        white-space: nowrap;
    }

    .supportBox .sNR i {
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: inline-block;
        margin-left: 5px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        border-radius: 5px;
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
        line-height: 1;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        font-size: 1.4rem;
    }

    .supportBox a:hover .sNR i {
        background-color: var(--html-color-main);
        border-color: var(--html-color-main);
        color: #000;
    }
}

.crIntro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.crIntro img {
    display: block;
    width: 100%;
}

.crIntro h3 {
    margin: 0;
    padding: 2rem 0 1rem;
    font-size: 2rem;
}

@media (min-width: 1024px) {
    .classroomBox .webTitle {
        text-align: left;
    }

    .crIntro {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .crIntro img {
        display: block;
        width: 40%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }

    .crIntro>div {
        margin-left: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 2rem;
    }

    .crIntro h3 {
        margin: 0;
        padding: 2rem 0 1rem;
        font-size: 2.6rem;
        color: #fff;
    }
}

/* Swiper 容器圆角阴影 */
.mySwiper {
    width: 100%;
    overflow: hidden;  
    padding: 0;
    margin-top: 2rem;
}

.mySwiper .swiper-slide {
    display: block;
    text-align: center;    
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    -o-transition: transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}

.mySwiper .swiper-slide img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mySwiper .slide-caption {
    padding: 2rem 1rem;
    background: var(--html-bg-color);
    color: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mySwiper .slide-caption h3 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
    margin-bottom: 4px;
}

.mySwiper .slide-caption p {
    line-height: 1.2;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

/* 自定义导航按钮 (移动端稍小) */
.mySwiper .swiper-button-next,
.mySwiper .swiper-button-prev {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    color: #fff;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.mySwiper .swiper-button-next:hover,
.mySwiper .swiper-button-prev:hover {
    background: var(--html-color-main);
    color: #000;
}

.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

/* ========== PC 端覆盖样式 (min-width: 768px) ========== */
@media (min-width: 768px) {
    .mySwiper{
        padding-bottom: 4.4rem;
    }
    .mySwiper .swiper-slide a{
        position: relative;
        display: block;
        overflow: hidden;
    }
    .mySwiper .slide-caption{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        padding: 1rem;
    }
    .mySwiper  .swiper-button-next,
    .mySwiper  .swiper-button-prev {
        width: 4.4rem;
        height: 4.4rem;
        top: unset;        
        bottom: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0);
    }
    .mySwiper  .swiper-button-next{
        right: 0;
    }
    .mySwiper  .swiper-button-prev{
        left: 0;
    }
    .mySwiper .swiper-button-next:after,
    .mySwiper .swiper-button-prev:after {
        font-size: 18px;
    }
    .mySwiper .swiper-slide:hover img{
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
    }
    .mySwiper .swiper-slide:hover .slide-caption{
        color: var(--html-color-main);
        background: rgba(0, 0, 0, 0.8);
    }
}
@media (min-width: 1024px){
    .aboutBG{
        background: url(../imgs/footer-bg02.jpg) center/cover no-repeat;
    } 
}

.pagination {
    padding-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;    
}
.pagination a, .pagination span {    
    display: block;
    margin: 0 2px;
    padding: 4px 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: var(--html-bg-color);
    min-width: 20px;
    text-align: center;
    border-radius: 2px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    vertical-align: middle;
}
.pagination > span:first-child{
    display: none;
}
.pagination .startPage{
    display: none;
}
.pagination a:hover {
    background-color: var(--html-color-main);
    border-color: var(--html-color-main);
    color: #fff;
    text-decoration: none;
}
.pagination .current {
    background-color: var(--html-color-main);
    color: #fff;
    border-color: var(--html-color-main);
    font-weight: bold;
}
.pagination .disabled {
    cursor: not-allowed;
}
@media (min-width: 1024px){
    .pagination{
        padding-top: 8rem;
    }
    .pagination > span:first-child{
        display: block;
    }
    .pagination .startPage{
        display: block;
    }
    .pagination .startPageMob{
        display: none;
    }
}
.newsDetailBox{
    background-color: var(--html-bg-color);
}
.newsDetail .nright{
    display: none;
}
.newsDetail .nleft > h1{
    margin: 0;
    padding: 0;
    font-size: 2rem;
    color: #fff;
}
.newsDetail .nleft > h1 span{
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
}
.newsIdNP{
    margin-top: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
}
.newsIdNP a{
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2px;
}
.newsIdNP a i{
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 10%;
    background-color: var(--html-body-color);
    border-radius: 1rem 0 0 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.newsIdNP .nextID i{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    border-radius: 0 1rem 1rem 0;
}
.newsIdNP a > div{
    padding: 1rem;
    width: 90%;
}
.newsIdNP a > div span{
    display: block;
    font-size: 1.2rem;
}
.newsIdNP a > div h3{
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    width: 100%;
    overflow: hidden;
    -o-text-overflow:ellipsis;
       text-overflow:ellipsis;
    white-space: nowrap;
}
@media (min-width: 1024px){
    .newsDetail{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 5rem;
    }
    .newsDetail .nright{
        display: block;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        border-radius: 1rem;
        padding: 3rem;
        background-color: var(--html-body-color);
    }
    .newsDetail .nright > h3{
        margin: 0;
        padding: 0;
        padding-bottom: 2rem;
        font-size: 2.6rem;
        color: #fff;
    }
    .newsDetail .nright > div{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }
    .newsDetail .nright > div a{
        background-color: var(--html-bg-color);
        padding: 2rem;
        border-radius: 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .newsDetail .nright > div a i,.newsDetail .nright > div a img{
        display: block;
        border-radius: 1rem;
    }
    .newsDetail .nright > div a i{
        overflow: hidden;
        width: 30%;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    .newsDetail .nright > div a img{
        width: 100%;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }
    .newsDetail .nright > div a:hover img{
        -webkit-transform: scale(1.2);
            -ms-transform: scale(1.2);
                transform: scale(1.2);
    }
    .newsDetail .nright > div a h4{
        margin: 0;
        padding: 0;
        padding-left: 10px;
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        width: 70%;
        font-size: 1.6rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    .newsDetail .nright > div a span{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
    }
    .newsDetail .nleft{
        width: 750px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    }
    .newsDetail .nleft > h1{
        font-size: 2.6rem;
    }
    .newsDetail .nleft > h1 span{
        display: block;
        font-size: 1.2rem;
        font-weight: normal;
    }
    .newsIdNP{
        margin-top: 3rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 1rem;
    }
    .newsIdNP a{
        display: block;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 2px;
    }
    .newsIdNP a:hover{
        border-color: var(--html-color-main);
    }
    .newsIdNP a i{
        display: block;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        width: 10%;
        background-color: var(--html-body-color);
        border-radius: 1rem 0 0 1rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }
    .newsIdNP .nextID i{
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
        border-radius: 0 1rem 1rem 0;
    }
    .newsIdNP a > div{
        padding: 1rem;
        width: 90%;
    }
    .newsIdNP a > div span{
        display: block;
        font-size: 1.2rem;
    }
    .newsIdNP a > div h3{
        margin: 0;
        padding: 0;
        font-size: 1.6rem;
        width: 100%;
        overflow: hidden;
        -o-text-overflow:ellipsis;
           text-overflow:ellipsis;
        white-space: nowrap;
    }
}