body{
    background-color: #1b1b1b;
}

.nav_container .nav_bg{
    background: linear-gradient(45deg, #1b1b1b , transparent);
}
.nav_container .menu .menu_btn{
    background-color: #fff;
    color: #000;
    font-weight: bold;
}

.to_top{
    border: 2px solid #847f7e;
    opacity: 0;
}
.to_top .jciconfont{
    color: #847f7e;
}

#smooth-wrapper{
    pointer-events: none;
}
#smooth-wrapper #smooth-content>div{
    pointer-events: all;
}
/* 弹窗遮罩 */
.submit_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 弹窗主体 */
.submit_modal_content {
    background: #1b1b1b;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 0px 30px rgba(255, 255, 255, 0.1);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.success_icon {
    width: 60px;
    height: 60px;
    background: #444; /* 品牌色 */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success_icon span { font-size: 30px; }

.submit_modal_content h3 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.submit_modal_content p { font-size: 16px; color: #666; margin-bottom: 30px; }

/* 确定按钮样式 */
.close_modal_btn {
    background: #444;
    color: #fff;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.close_modal_btn:hover { background: #40a9ff; }
.earth_scene_container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 190vh;
    background: radial-gradient(ellipse 90% 40% at 100% 0%,rgb(95,95,103),#1b1b1b 30%);
    will-change: transform;
    display: flex;
    justify-content: center;
    align-items: center;
    /* touch-action: none; */
}

@keyframes aperture_opacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes aperture_scale {
    0% {
        scale: 0.97;
        transform: rotate(-180deg);
    }
    100% {
        scale: 1;
        transform: rotate(0deg);
    }
}
.earth_scene_container .aperture{
    position: absolute;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 127vh;
    height: 127vh;
    border-radius: 50%;
    opacity: 0;
    /* 提示浏览器变换和阴影会变 */
    will-change: transform;
    /* 开启硬件加速 */
    backface-visibility: hidden;
    transform: translateZ(0) scale(0.95);
    transition: opacity 1s;
    /* 语法：动画名称 持续时间 延迟时间 */
    animation: aperture_opacity 1s 0.2s both;
}
.earth_scene_container .aperture .aperture_1,.earth_scene_container .aperture .aperture_2{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: rotate(-180deg);
    scale: 0.97;
    animation: aperture_scale 4s 0.2s both;
}
.earth_scene_container .aperture .aperture_1{
    opacity: 1;
}
.earth_scene_container .aperture .aperture_2{
    opacity: 0;
}
.earth_scene_container .aperture .aperture_1::before,.earth_scene_container .aperture .aperture_1::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* 提示浏览器变换和阴影会变 */
    will-change: transform;
    /* 开启硬件加速 */
    backface-visibility: hidden;
    transform: translateZ(0);
}
.earth_scene_container .aperture .aperture_1::before{
    box-shadow: 0px -1.564vh 1.816vh -1.473vh #fff;
}
.earth_scene_container .aperture .aperture_1::after{
    box-shadow: 0px 1.564vh 1.816vh -1.473vh #fff inset;
}
.earth_scene_container .aperture .aperture_2::before,.earth_scene_container .aperture .aperture_2::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* 提示浏览器变换和阴影会变 */
    will-change: transform;
    /* 开启硬件加速 */
    backface-visibility: hidden;
    transform: translateZ(0);
}
.earth_scene_container .aperture .aperture_2::before{
    box-shadow: 0px -1.564vh 1.816vh -1.473vh #7dafff36;
}
.earth_scene_container .aperture .aperture_2::after{
    box-shadow: 0px 1.564vh 1.816vh -1.473vh #7dafff36 inset;
}
/* 1. 定义旋转动画关键帧 */
@keyframes satelliteRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes satelliteRotate_flicker {
    0% {
        box-shadow: 0px 0px 0.6vh 0.2vh #fff;
    }
    50% {
        box-shadow: 0px 0px 0.9vh 0.1vh #fff;
    }
    100% {
        box-shadow: 0px 0px 0.6vh 0.2vh #fff;
    }
}
.earth_scene_container .aperture .satellite{
    position: absolute;
    width: 105%;
    height: 0;
    transform: rotate(0deg);
    /* background-color: #fff; */
    display: flex;
    align-items: center;
    animation: satelliteRotate 30s linear infinite;
}
.earth_scene_container .aperture .satellite::before{
    position: absolute;
    content: "";
    width: 0.2vh;
    height: 0.2vh;
    border-radius: 50%;
    left: 0%;
    background-color: #fff;
    box-shadow: 0px 0px 0.9vh 0.1vh #fff;
    animation: satelliteRotate_flicker 1s infinite;
}
.earth_scene_container .aperture .satellite::after{
    position: absolute;
    content: "";
    width: 0.2vh;
    height: 0.2vh;
    border-radius: 50%;
    right: 0%;
    background-color: #fff;
    box-shadow: 0px 0px 0.9vh 0.1vh #fff;
    animation: satelliteRotate_flicker 1s infinite;
}
.earth_scene_container #webgl_container{
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: grab;
}
.earth_scene_container #webgl_container:active{
    cursor: grabbing;
}
.header_container{
    position: relative;
    width: 100%;
    height: 100vh;
    pointer-events: none !important;
    display: flex;
    justify-content: center;
}
.header_container .header_title_container{
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    color: #fff;
    top: 15vh;
    opacity: 0;
}
.header_container .header_title_container .item{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* margin: 0 4.7vw; */
    width: 19vw;
}
.header_container .header_title_container .item .jciconfont{
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background: #373737;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2vw;
    margin-right: 0.5vw;
}
.header_container .header_title_container .item .title{
    font-size: 0.94vw;
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 0.5vw;
}
.header_container .header_title_container .item .num{
    font-size: 2.5vw;
}
.header_container .header_title_container .item .num_mark{
    position: absolute;
}
.swiper_container{
    position: fixed;
    left: 0%;
    bottom: 0%;
    padding-bottom: 0.4vw;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    background: linear-gradient(to bottom,transparent,#1b1b1b);
    overflow-y: visible;
    user-select: none;
    pointer-events: none;
    opacity: 0;
    transform: translateY(100%);
}
.swiper_container .ctrl_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    will-change: transform;
}
.swiper_container .swiper_width_limit{
    position: relative;
    width: 82%;
    pointer-events: all;
    /* overflow-x: hidden; */
    clip-path: polygon(0% -500%, 100% -500%, 100% 100%, 0% 100%);

    /* mask-image: linear-gradient(to right, transparent,#1b1b1b 5%,#1b1b1b 95%,transparent);
    -webkit-mask-image: linear-gradient(to right, transparent,#1b1b1b 5%,#1b1b1b 95%,transparent);
    -moz-mask-image: linear-gradient(to right, transparent,#1b1b1b 5%,#1b1b1b 95%,transparent); */
}

.swiper_container .swiper{
    position: relative;
    width: 100%;
    height: 3.5vw;
    color: #fff;
    margin-bottom: 0.4vw;
    overflow: visible;
}
.swiper-pagination-bullet{
    --swiper-pagination-bullet-width: 0.3vw;
    --swiper-pagination-bullet-height: 0.3vw;
}
.swiper_container .swiper .swiper-horizontal>.swiper-pagination-bullets,.swiper_container .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper_container .swiper-pagination-custom, .swiper_container .swiper-pagination-fraction{
    position: relative !important;
    top: auto;
    bottom: 0%;
}
.swiper_container .swiper .swiper-slide{
    position: relative;
}
.swiper_container .swiper .swiper-slide .location_container{
    position: absolute;
    left: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1vw;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(30, 30, 30, 0.4);
    transition: all 1s;
    overflow: hidden;
    cursor: pointer;
}
.swiper_container .swiper .swiper-slide .location_container::before{
    position: absolute;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 100% 100% at 0% 0%,#374389 10%,rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: all 1s;
}
.swiper_container .swiper .swiper-slide .location_container .jciconfont{
    font-size: 1vw;
    margin-right: 0.2vw;
}
.swiper_container .swiper .swiper-slide .location_container .name{
    line-height: 1;
    font-size: 1.1vw;
    font-weight: bold;
    transition: all .5s;
    text-align: center;
    word-break: break-all; 
    width: 90%; 
    white-space: normal; 
    opacity: 0.8;
}
.swiper_container .swiper .swiper-slide .location_container .email{
    line-height: 0;
    opacity: 0;
    font-size: 0.84vw;
    overflow: hidden;
    transition: all .5s;
    word-break: break-all; 
    width: 90%; 
    white-space: normal; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper_container .swiper .swiper-slide .location_container .phone{
    line-height: 0;
    opacity: 0;
    font-size: 0.84vw;
    overflow: hidden;
    transition: all .5s;
    word-break: break-all; 
    width: 90%; 
    white-space: normal; 
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper_container .swiper .swiper-slide .location_container .phone a{
    color: #fff;
}
.swiper_container .swiper .swiper-slide .location_container:hover{
    height: 250%;
}
.swiper_container .swiper .swiper-slide .location_container:hover .name{
    line-height: 2.6;
    opacity: 1;
    transition: all .7s;
}
.swiper_container .swiper .swiper-slide .location_container:hover .email{
    line-height: 1.6;
    opacity: 1;
    transition: all .7s;
}
.swiper_container .swiper .swiper-slide .location_container:hover .phone{
    line-height: 1.6;
    opacity: 1;
    transition: all .7s;
}

.swiper_container .swiper .swiper-slide .location_container_active{
    height: 250%;
    border: 1px solid rgba(255, 255, 255, 0);
    background-color: rgba(0, 0, 0, 0);
}
.swiper_container .swiper .swiper-slide .location_container_active::before{
    opacity: 1;
}
.swiper_container .swiper .swiper-slide .location_container_active .name{
    line-height: 2.6;
    opacity: 1;
    transition: all .8s;
}
.swiper_container .swiper .swiper-slide .location_container_active .email{
    line-height: 1.6;
    opacity: 1;
    transition: all .8s;
}
.swiper_container .swiper .swiper-slide .location_container_active .phone{
    line-height: 1.6;
    opacity: 1;
    transition: all .8s;
}
/* 调整所有分页器小圆点的背景颜色和大小 */
.swiper_container .swiper-pagination-bullet {
    background-color: #fff; /* 非激活状态的颜色 */
    opacity: 0.8;
}
  /* 调整激活状态的分页器小圆点 */
.swiper_container .swiper-pagination-bullet-active {
    background-color: #1d44ee; /* 激活状态的颜色 */
}

.transparent_container{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 25vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    transform: translateY(5px);
    pointer-events: none !important;
}
.transparent_container::before{
    position: absolute;
    content: "";
    width: 200%;
    height: 100%;
    border-radius: 100% 100% 0 0;
    background: radial-gradient(ellipse 50% 100% at 50% 100%, #1b1b1b 50%, /* 内部实色区域大小，可按需调节 */ transparent 100% /* 刚好在顶部边缘和左右边缘完全透明 */);
}

.table_container{
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: #1b1b1b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-top: 5vw; */
}
.table_container::after{
    position: relative;
    z-index: -1;
    content: "";
    width: 100%;
    height: 5vw;
    background: #1b1b1b;
    box-shadow: 0px 0px 20px 20px #1b1b1b;
}
.table_container .prompt{
    color: #fff;
    font-size: 0.84vw;
    line-height: 1.8;
}
.table_container .form_container{
    width: 81.25%;
    margin-top: 2.396vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.table_container .form_container .form_main{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}
.table_container .form_container .gender_container{
    position: relative;
    width: 49%;
    flex-shrink: 0;
    margin-bottom: 1vw;
}
.table_container .form_container .gender{
    width: 100%;
    font-size: 0.84vw;
    color: #C9C9C9;
    background: #444;
    box-shadow: none;
    outline: none;
    border-top:none !important;
    border-left:none !important;
    border-right:none !important;
    border-bottom:none !important;
    border-radius: 0.2vw !important;
    /* box-sizing: border-box; */
    transition: all .5s;
    padding: 1.25vw;
    appearance: none; /* 隐藏默认箭头 */
    cursor: pointer;
}
.table_container .form_container .gender:hover{
    background: #555;
}
/* 自定义箭头 */
.table_container .form_container .gender_container::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.7vw;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #888; /* 放大箭头高度 */
    pointer-events: none;
}
.table_container .form_container .gender option:checked {
    background: #666;
}

.table_container .form_container input{
    width: 49%;
    flex-shrink: 0;
    font-size: 0.84vw;
    color: #C9C9C9;
    background: #444;
    box-shadow: none;
    outline: none;
    border-top:none !important;
    border-left:none !important;
    border-right:none !important;
    border-bottom:none !important;
    border-radius: 0.2vw !important;
    box-sizing: border-box;
    transition: all .5s;
    padding: 1.25vw;
    margin-bottom: 1vw;
    cursor: pointer;
}
.table_container .form_container input:hover{
    background: #555;
}
.table_container .form_container input::placeholder{
    color: #C9C9C9;
    font-size: 0.84vw;
    transition: all .5s;
}
.table_container .form_container textarea{
    width: 100%;
    height: 12.604vw;
    flex-shrink: 0;
    font-size: 0.84vw;
    color: #C9C9C9;
    background: #444;
    box-shadow: none;
    outline: none;
    border-top:none !important;
    border-left:none !important;
    border-right:none !important;
    border-bottom:none !important;
    border-radius: 0.2vw !important;
    box-sizing: border-box;
    transition: all .5s;
    padding: 1.25vw;
    font-family: '';
    cursor: pointer;
    resize:none;
}
.table_container .form_container textarea:hover{
    background: #555;
}
.table_container .form_container textarea::placeholder{
    color: #C9C9C9;
    font-size: 0.84vw;
}
.table_container .form_container .proposal{
    margin-top: 1.1vw;
    margin-left: 1.2vw;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.table_container .form_container .proposal p{
    color: #C9C9C9;
    font-size: 0.8vw;
}
.table_container .form_container .special_effects_more{
    background-color: #494949 !important;
    font-size: 0.84vw;
    border: none;
    border-left: 1px solid #787878;
    border-top: 1px solid #787878;
    margin-top: 2.76vw;
    cursor: pointer;
}
.table_container .special_effects_more .style_label{
    padding: 0.46vw 1.667vw;
}
.table_container .special_effects_more .style_label .jciconfont{
    margin-left: 1.25vw;
}
.blur_container{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 15vw;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    background: linear-gradient(to bottom ,#1b1b1b,transparent,#1b1b1b);
    /* background: #1b1b1b; */
}
.mobile_blur_container{
    position: relative;
    z-index: 0;
    width: 100%;
    height: 30vw;
    /* display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px); */
    background: linear-gradient(to bottom ,#1b1b1b,#222);
    display: none;
    /* background: #1b1b1b; */
}
.contact_us_container{
    position: relative;
    z-index: 1;
    width: 100%;
    background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    box-shadow: 0px 0px 20px 20px #1b1b1b;
}
.contact_us_container .width_limit{
    position: relative;
    width: 81.25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact_us_container .cn_title{
    font-weight: bold;
    font-size: 1.875vw;
}
.contact_us_container .en_title{
    font-size: 0.94vw;
    margin-top: 0.7vw;
}
.contact_us_container .telephone_email{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4.323vw;
    margin-bottom: 5.5vw;
}
.contact_us_container .telephone_email .telephone_email_item{
    position: relative;
    width: 23.5%;
    padding: 2.865vw 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: linear-gradient(145deg,#2b2b2d,#1f1f1f); */
    background-color: #1f1f1f;
    overflow: hidden;
    border-radius: 0.5vw;
    cursor: pointer;
    transition: all .8s;
}
.contact_us_container .telephone_email .telephone_email_item::before{
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .8s;
    background: radial-gradient(farthest-side at 0% 0%,#2b2b2d,#2b2b2d00);
}
.contact_us_container .telephone_email .telephone_email_item::after{
    content: "";
    display: inline-block;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .8s;
    background: radial-gradient(farthest-side at 0% 0%,#1f243b,#2b2b2d00);
}
.contact_us_container .telephone_email .telephone_email_item:hover{
    border-radius: 1vw;
    transform: translateY(-10%);
}
.contact_us_container .telephone_email .telephone_email_item:hover::before{
    opacity: 0;
}
.contact_us_container .telephone_email .telephone_email_item:hover::after{
    opacity: 1;
}
.contact_us_container .telephone_email .telephone_email_item .p_1{
    position: relative;
    z-index: 1;
    color: #AAAAAA;
    font-size: 0.84vw;
    transition: all .8s;
}
.contact_us_container .telephone_email .telephone_email_item .p_2{
    position: relative;
    z-index: 1;
    font-size: 1.25vw;
    font-weight: bold;
    margin-top: 0.4vw;
    color: #fff;
    display: block; /* 如果把 p 换成了 a，建议加上这个 */
    text-decoration: none; /* 去掉下划线 */
}
.contact_us_container .telephone_email .telephone_email_item:hover .p_1{
    /* color: #fff; */
    transform: translateY(-20%);
}
.table_container .form_container .privacy-checkbox {
    width: 100%;                  /* 独占一行 */
    display: flex;
    align-items: center;
    margin-left: 1.2vw;
    margin-top: 1vw;           /* 与下方表单元素保持间距 */
    color: #C9C9C9;
    font-size: 0.84vw;
    user-select: none;
}

/* 覆盖通用 input 样式的 width: 49%，防止复选框变形 */
.table_container .form_container .privacy-checkbox input[type="checkbox"] {
    width: 0.8vw !important;
    height: 0.8vw !important;
    margin: 0 !important;
    padding: 0 !important;
    cursor: pointer;
    accent-color: #000000;        /* 主题蓝色高亮，可根据需要调整 */
}
.privacy-checkbox a {
    color: #ddd;
    text-decoration: underline;
}
/* 提示文字样式 */
.table_container .form_container .privacy-checkbox div[lay-checkbox],
.table_container .form_container .privacy-checkbox label {
    margin-left: 0.6vw;
    cursor: pointer;
    line-height: 1;
}
.footer_container_width{
    position: relative;
    z-index: 1;
    padding-top: 8.9vw;
    background-color: #1b1b1b;
    background-image: url('../static/image/catalog/footer_noise.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
}
.footer_container{
    position: relative;
    z-index: 2;
}
.footer_container .footer_up .footer_up_left>.p_1{
    color: #918c8a !important;
}
.footer_container .footer_up .footer_up_left>.p_2{
    color: #918c8a !important;
}
.footer_container .footer_up .footer_up_left>.p_3{
    color: #918c8a !important;
}
.footer_container .logo_social_media_platform .jcicon-logo{
    color: #918c8a !important;
}
.footer_container .footer_up .footer_up_right .list_title{
    color: #918c8a !important;
}
.footer_container .footer_up .footer_up_right .list_item{
    color: #918c8a !important;
}
.footer_container .logo_social_media_platform .social_media_platform_container .jciconfont{
    color: #918c8a !important;
}
.footer_container .footer_down .other_info a{
    color: #918c8a !important;
}

/* WebKit内核浏览器（Chrome/Safari/Edge）专用语法 */
::-webkit-scrollbar {
    width: 6px;        /* 垂直滚动条宽度 */
}
::-webkit-scrollbar-track {
    background-color: #1b1b1b;
}
::-webkit-scrollbar-thumb {
    background: #ffffff;  /* 滑块颜色 */
    border-radius: 100vw;   /* 滑块圆角 */
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;  /* 悬停状态颜色 */
}
/* 强制修复 Swiper 在单行模式下的 wrapper 宽度问题 */
@media (min-width: 996px) {
    .swiper_container .swiper .swiper-wrapper {
        /* 关键：强制不换行，且宽度由内容决定 */
        width: max-content !important; 
        flex-wrap: nowrap !important;
        box-sizing: content-box !important;
    }
}
@media (max-width: 996px) {
    body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-y: none; /* 防止过度拉扯页面导致重绘 BUG */
    }
    .earth_scene_container #webgl_container{
        pointer-events: none;
    }
    #smooth-wrapper{
        pointer-events: all;
    }
    .header_container{
        pointer-events: all;
    }
    .swiper_container{
        z-index: 1;
        pointer-events: all;
        bottom: env(safe-area-inset-bottom); 
    }
    .swiper_container .swiper{
        height: 25vw;
    }
    .swiper_container .swiper_width_limit{
        width: 100%;
    }
    .swiper_container .swiper .swiper-slide .location_container{
        height: 100% !important;
        border-radius: 4vw !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        background-color: rgba(30, 30, 30, 0.4) !important;
    }
    .swiper_container .swiper .swiper-slide .location_container_active{
        height: 100% !important;
        border: 1px solid rgba(255, 255, 255, 0) !important;
        background-color: rgba(0, 0, 0, 0) !important;
        border-radius: 4vw !important;
    }
    .swiper_container .swiper .swiper-slide .location_container::before{
        opacity: 0 !important;
        background: radial-gradient(ellipse 100% 100% at 0% 0%, #374389 10%, rgba(50, 50, 50, 0.6));
    }
    .swiper_container .swiper .swiper-slide .location_container_active::before{
        opacity: 1 !important;
    }
    .swiper_container .swiper .swiper-slide .location_container .name{
        line-height: 2 !important;
        transition: all .8s !important;
        font-size: 3.6vw !important;
    }
    .swiper_container .swiper .swiper-slide .location_container .email{
        line-height: 1.6 !important;
        opacity: 1 !important;
        transition: all .8s !important;
        font-size: 3.1vw !important;
    }
    .swiper_container .swiper .swiper-slide .location_container .phone{
        line-height: 1.6 !important;
        opacity: 1 !important;
        transition: all .8s !important;
        font-size: 3.1vw !important;
    }
    .swiper_container .swiper .swiper-slide .location_container .jciconfont{
        font-size: 3.1vw !important;
        margin-right: 1vw !important;
    }
    .map_container{
        height: 90vw;
        padding-top: 25vw;
    }
    .earth_scene_container{
        height: 150vh;
        background: radial-gradient(ellipse 210% 35% at 100% 0%, hsl(240, 4%, 39%), #1b1b1b 30%);
    }
    .earth_scene_container .aperture{
        width: 75vh;
        height: 75vh;
    }
    .map_container .map_svg_container .annotation_container .icon-dingwei{
        font-size: 5.5vw;
    }
    .map_container .map_svg_container .annotation_container .icon_con .positioning_brand{
        display: none;
    }
    .header_container .header_title_container{
        top: 18vh;
    }
    .header_container .header_title_container .item{
        width: 32vw;
    }
    .header_container .header_title_container .item .title{
        font-size: 3vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 1.7vw;
    }
    .header_container .header_title_container .item .jciconfont{
        width: 8vw;
        height: 8vw;
        font-size: 5vw;
        margin: 0 0 3vw;
    }
    .header_container .header_title_container .item .num{
        font-size: 5.5vw;
    }
    .swiper-pagination-bullet{
        --swiper-pagination-bullet-width: 1vw;
        --swiper-pagination-bullet-height: 1vw;
    }
    .transparent_container{
        height: 100px;
    }
    .table_container .prompt{
        font-size: 14px;
        text-align: center;
    }
    .table_container .form_container{
        width: 82%;
        margin-top: 9.231vw;
    }
    .table_container .form_container .gender_container{
        width: 100%;
        font-size: 14px;
        margin-bottom: 3.59vw;
    }
    .table_container .form_container .gender{
        font-size: 14px;
        padding: 3vw 5.2vw;
    }
    .table_container .form_container .gender_container::after{
        right: 5vw;
    }
    .table_container .form_container input{
        width: 100%;
        font-size: 14px;
        padding: 3vw 5.2vw;
        margin-bottom: 3.59vw;
    }
    .table_container .form_container input::placeholder{
        font-size: 14px;
    }
    .table_container .form_container textarea{
        font-size: 14px;
        padding: 3vw 5.2vw;
        height: 43.846vw;
        margin-bottom: 3.59vw;
    }
    .table_container .form_container textarea::placeholder{
        font-size: 14px;
    }
    .table_container .form_container .proposal p{
        font-size: 12px;
    }
    .table_container .form_container .proposal{
        flex-direction: column;
        align-items: center;
    }
    .table_container .form_container .special_effects_more{
        font-size: 14px;
        margin-top: 10.256vw;
    }
    .table_container .special_effects_more .style_label{
        padding: 9px 26px;
    }
    .blur_container{
        height: 60vw;
    }
    .mobile_blur_container{
        display: block;
        position: relative;
        z-index: 1;
        backdrop-filter: none !important; 
    }
    .contact_us_container{
        /* margin-bottom: 40vw; */
    }
    .contact_us_container .cn_title{
        font-size: 18px;
    }
    .contact_us_container .en_title{
        font-size: 12px;
    }
    .contact_us_container .width_limit{
        width: 92%;
    }
    .contact_us_container .telephone_email{
        flex-wrap: wrap;
        margin: 11.538vw 33.333vw;
    }
    .contact_us_container .telephone_email .telephone_email_item{
        width: 48%;
        flex-shrink: 0;
        padding: 7.692vw 0;
        margin-bottom: 4vw;
        border-radius: 2vw;
    }
    .contact_us_container .telephone_email .telephone_email_item .p_1{
        font-size: 14px;
    }
    .contact_us_container .telephone_email .telephone_email_item .p_2{
        font-size: 14px;
        color: #fff !important;
    }
    .submit_modal_content{
        width: 65%;
    }
    .table_container .form_container .privacy-checkbox {
        margin-bottom: 4vw;       /* 增加移动端下边距 */
        font-size: 14px;          /* 匹配移动端字体大小 */
    }

    /* 覆盖移动端 input { width: 100% } 带来的拉伸影响 */
    .table_container .form_container .privacy-checkbox input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
    }

    .table_container .form_container .privacy-checkbox div[lay-checkbox],
    .table_container .form_container .privacy-checkbox label {
        margin-left: 8px;
    }
    .footer_container_width{
        padding-top: 0;
    }
}
