

ul {
    list-style-type: none;
}

/* ::-webkit-scrollbar {
    display: none;
} */

font {
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-family: inherit;
    font-weight: inherit;
}

@font-face {
    font-family: 'Quicksand';
    src: url('../font/Quicksand-Medium.woff2') format('woff2'),
        url('../font/Quicksand-Medium.woff') format('woff'),
        url('../font/Quicksand-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Quicksand';
    src: url('../font/Quicksand-Bold.woff2') format('woff2'),
        url('../font/Quicksand-Bold.woff') format('woff'),
        url('../font/Quicksand-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Quicksand';
    src: url('../font/Quicksand-Light.woff2') format('woff2'),
        url('../font/Quicksand-Light.woff') format('woff'),
        url('../font/Quicksand-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}




* {
    margin: 0;
    padding: 0;
    font-family: "Quicksand";
    font-weight: normal;
    box-sizing: border-box;
    color: #2b2620;
}

body {
    --header-height: 7.2vw;
}


.clear {
    clear: both;
}

a {
    text-decoration: none;
    color: inherit;
    font-size: inherit;
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

span {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

strong {
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    font-weight: bold;
    line-height: inherit;
}

input {
    background:none;
    outline:none;
    border:none;
}

textarea {
    resize: none;
    outline: none;
    border: none;
}

.content * {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: inherit;
}


.content strong {
    font-weight: bold;
}

.content em {
    font-style: italic;
}


.content img {
    max-width: 100% !important;
}

.content table {
    max-width: 100% !important;
    border-collapse: collapse;
}

.content table tr td {
    
}



.indexBox {
    width: 100%;
    height: 100%;
    padding-top: 130px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.wh100 {
    width: 100%;
    height: 100%;
}

.w1280 {
    width: 100%;
    max-width: calc(1280px + 4.4vw + 32px);
    padding: 0 calc(2.2vw + 16px);
}

.p0_9 {
    padding-left: 9.375%;
    padding-right: 9.375%;
}

.lp9 {
    padding-left: 9.375%;
}

.rp9 {
    padding-right: 9.375%;
}

.p0_17 {
    padding-left: 17.18%;
    padding-right: 17.18%;
}

.lp17 {
    padding-left: 17.18%;
}

.rp17 {
    padding-right: 17.18%;
}


.p0_16 {
    padding-left: 16.66vw;
    padding-right: 16.66vw;
}

.lp16 {
    padding-left: 16.66vw;
}

.rp16 {
    padding-right: 16.66vw;
}

.p5_0 {
    padding-top: 5.2%;
    padding-bottom: 5.2%;
}

.p4_0 {
    padding-top: calc(3.5vw + 22px);
    padding-bottom: calc(3.5vw + 22px);
}

.p3_0 {
    padding-top: calc(2.2vw + 16px);
    padding-bottom: calc(2.2vw + 16px);
}

.w100 {
    width: 100%;
    overflow: hidden;
}

.imgZoom {
    overflow: hidden;
}

.imgZoom img {
    transition: .6s;
}


.imgZoom:hover img {
    scale: 1.2;
}

.fadeInParent {
    position: relative;
}

.fadeInParent .fadeInSon {
    position: absolute;
    top: calc(100% + 1em);
    transform: translateX(-50%);
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: inherit;
    z-index: 10;
}

.fadeInParent.active .fadeInSon {
    visibility: visible;
    top: calc(100% + 0.5em);
    opacity: 1;
}

.fadeInParent:hover .fadeInSon_hover {
    visibility: visible;
    top: calc(100% +  0.5em);
    opacity: 1;
}

.contact_icons {
    display: flex;
    align-items: center;
    gap: 1em;
    color: #fff;
}

.contact_icons .cicon {
    font-size: inherit;
    color: inherit;
}

.contact_icons .cicon .cicon_img {
    font-size: inherit;
    width: 8em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2em;
    background-color: #E97300;
    top: 100%;
}

.contact_icons .cicon .cicon_img img {
    width: 100%;
    height: auto;
}

.contact_icons .cicon .cicon_img::after {
    font-size: inherit;
    position: absolute;
    bottom: calc(100% - 1px);
    transform: translateX(-50%);
    left: 50%;
    width: 1em;
    height: 0.6em;
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
    content: "";
    background-color: #E97300;
    display: block;
}

.contact_icons .cicon.fadeInParent.active .cicon_img.fadeInSon {
    top: calc(100% + 1em);
}

.contact_icons .cicon.fadeInParent:hover .cicon_img.fadeInSon_hover {
    top: calc(100% + 1em);
}


.header_search form {
    font-size: inherit;
    background-color: #F6E9DD;
    padding: 0 0.5em;
    height: 1.75em;
    border-radius: 0.875em;
    display: flex;
    align-items: center;
    width: 11.58em;
}

.header_search form input {
    font-size: inherit;
    color: #97897b;
    line-height: 1;
    min-width: 0;
    padding: 0 0.5em;
}

.header_search form button {
    line-height: 1;
    color: #E97300;
    font-size: inherit;
    cursor: pointer;
    background-color: transparent;
    border: none;
    font-weight: bold;
}

.icon_contact {
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: #fff;
    line-height: 1;
}

.icon_contact .icon {
    fill: #fff;
    color: #fff;
    font-size: 1.33em;
}

.icon_contact p {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.search_mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index:999999;
    top: 0;
    left: 0;
}

.search_mask div {
    font-size: calc(1.5vw + 20px);
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1vw;
    top: calc(1.6vw + 8px);
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.search_mask div .icon {
    font-size: 0.4em;
    transition: .3s;
    fill: #fff;
}

.search_mask div:hover {
    border-color: #d1ad90;
}

.search_mask div:hover span {
    color: #d1ad90;
}

.view_video {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index:999999;
    top: 0;
    left: 0;
}

.view_video iframe {
    display: none;
}

.view_video video, .view_video iframe {
    position: absolute;
    width: 60%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 34vw;
    max-height: 90vh;
}

.view_video div {
    font-size: calc(1.5vw + 20px);
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1vw;
    top: calc(1.6vw + 8px);
    border-radius: 50%;
    border: 1px solid #ffffff88;
    color: #ffffff88;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.view_video div .icon {
    font-size: 0.4em;
    transition: .3s;
    fill: #ffffff88;
}

.view_video div:hover {
    border-color: #fff;
}

.view_video div:hover span {
    color: #fff;
}

.search_mask form {
    width: 80%;
    display: flex;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 1% 30px;
    box-sizing: border-box;
    position: relative;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}

.search_mask form input {
    width: 95%;
}

.search_mask form button {
    width: 3%;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.search_mask form button svg {
    width: 100%;
    min-width: 30px;
    height: auto;
}


.message_mask {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index:999999;
    top: 0;
    left: 0;
}

.message_mask .message {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: min(27.77em, 90%);
}

.message_mask>.close {
    font-size: calc(1.5vw + 20px);
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1vw;
    top: calc(1.6vw + 8px);
    border-radius: 50%;
    border: 1px solid #ffffff88;
    color: #ffffff88;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.message_mask>.close .icon {
    font-size: 0.4em;
    transition: .3s;
    fill: #ffffff88;
}

.message_mask>.close:hover {
    border-color: #fff;
}

.message_mask>.close:hover span {
    color: #fff;
}

.message {
    display: flex;
    flex-direction: column;
    border: 0.2em solid #4EA0CF;
    background-color: #fff;
    width: 27.77em;
}

.message_title {
    font-size: inherit;
    display: flex;
    justify-content: space-between;
    gap: 1em;
    align-items: center;
    border-bottom: 1px solid ;
    background-image: url(../images/chaxian.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
    background-position: left;
    padding: 0.4em;
}

.message_title h4 {
    color: #000;
    font-size: 0.88em;
    font-weight: bold;
}

.message_title h4 .icon {
    color: #0066FF;
    fill: #0066FF;
}

.message_title .close {
    width: 1.11em;
    height: 1.11em;
    background-color: #CC0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    
}

.message_title .close .icon {
    font-size: 0.6em;
    font-weight: bold;
    fill: #fff;
}

.message form {
    font-size: inherit;
    padding: 1.11em;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.message form input {
    font-size: inherit;
    min-width: 0;
    border: 1px solid #69727d;
    color: #1f2124;
    padding: 0.5em 1em;
    line-height: 1;
    border-radius: 1.2em;
}

.message form textarea {
    font-size: inherit;
    min-width: 0;
    border: 1px solid #69727d;
    color: #1f2124;
    padding: 0.5em 1em;
    height: 3.6877em;
    resize: none;
    border-radius: 1.2em;
}

.message form button {
    border: 1px solid #c36;
    border-radius: 1.25em;
    line-height: 1;
    font-size: 1.11em;
    padding: 0.75em 1.5em;
    background-color: #341C77;
    cursor: pointer;
    transition: .4s;
    color: #fff;
    font-weight: bold;
}

.message form button:hover {
    background-color: #F33B10;
}

.header {
    overflow: visible;
    position: relative;
    top: 0;
    z-index: 99999;
    transition: .4s;
    display: flex;
    flex-direction: column;
}

.banner {
    position: relative;
}

.header_top {
    display: flex;
    justify-content: space-between;
    gap: 20%;
    background-color: #FDB510;
    flex-shrink: 0;
    padding-top: calc(0.4vw + 2px);
    padding-bottom: calc(0.4vw + 2px);
}

.header_top .htleft {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8em;
}

.header_top .htleft .seq {
    font-size: inherit;
    width: 1px;
    height: 1.5em;
    background-color: #fff;
}

.header_top .htright {
    display: flex;
    align-items: center;
    gap: 0.8em;
}

.header_top .htright .seq {
    height: 1em;
    width: 1px;
    display: block;
    background-color: #fff;
}

.header_top .htright .htrbtn {
    border-radius: 50%;
    width: 1.77em;
    height: 1.77em;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


.header_top .htright .htrbtn .htrbtn_ {
    width: 1.11em;
    font-size: inherit;
    height: 1.11em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_top .htright .header_lang.htrbtn .htrbtn_ .icon {
    color: #FF4200;
    fill: #FF4200;
}

.header_top .htright .header_facebook.htrbtn .htrbtn_ {
    background-color: #1877EB;
}

.header_top .htright .header_facebook.htrbtn .htrbtn_ .icon {
    color: #fff;
    fill: #fff;
    transform: translateY(0.1em);
}

.header_lang {
    position: static;
}

.header_lang .header_lang_ {
    position: fixed;
    left: auto;
    right: 2em;
    top: 0;
    font-size: 1.33em;
    width: 12.5em;
    height: 100dvh;
    background-color: #fff;
    padding: 3em 1em;
    transform: translate(0);
    cursor: auto;
    display: flex;
    flex-direction: column;

}

.header_lang.active .header_lang_ {
    right: 0;
    top: 0;
}

.header_lang_ .close {
    width: 1.7em;
    height: 1.7em;
    border-radius: 50%;
    background-color: #FF2525;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.7em;
    align-self: flex-end;
    flex-shrink: 0;
}

.header_lang_ .close .icon {
    fill: #fff;
}

.header_lang .header_lang_ ul {
    flex: 1;
    overflow: auto;
}

.header_lang_ h4 {
    color: #6D7382;
    padding: 0.4em 0;
    border-bottom: 1px solid #CCCCCC;
    font-size: 1em;
    letter-spacing: -0.04em;
}

.header_lang_ ul {
    display: flex;
    flex-direction: column;
}

.header_lang_ ul li a {
    font-size: 0.8em;
    color: #000;
    padding: 0.4em 1em;
    display: flex;
    align-items: center;
    gap: 0.4em;
    line-height: 1;
    border-bottom: 1px solid #CCCCCC;
}

.header_lang_ ul li a .icon {
    font-size: 1.8em;
    line-height: 1;
    fill: #000;
}

.header_lang_ ul li a .himg {
    width: 1.8em;
    border: 1px solid #CCC;
    display: flex;
}

.header_lang_ ul li a .himg img {
    width: 100%;
    height: auto;
}

.header_lang_ ul li a:hover {
    background-color: #666666;
    color: #fff;
}

.header_bottom {
    display: flex;
    justify-content: space-between;
    gap: 5%;
    background-color: #fff;
    padding-top: calc(0.8vw + 4px);
    padding-bottom: calc(0.8vw + 4px);
}

.header_bottom .hbright {
    display: flex;
    align-items: center;
    justify-content: right;
    flex: 1;
    gap: 5%;
}

.header_logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.header_logo img {
    height: 3em;
    width: auto;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: right;
    flex: 1;
}


.header_nav li {
    font-size: inherit;
}


.header_nav li>a {
    padding: 0.8em 1em;
    background-color: transparent;
    color: #341C77;
    transition: .4s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.3em;
    gap: 0.5em;
    white-space: nowrap;
}

.header_nav li:hover>a {
    background-color: #341C77;
    color: #fff;
}

.header_nav li.navActive>a {
    background-color: #341C77;
    color: #fff;
}


.header_nav li>a>.hnm {
    display: block;
    width: 0.64em;
    height: 0.6em;
    clip-path: polygon(0 30%, 100% 30%, 50% 90%);
    background-color: #341C77;
}

.header_nav li:hover>a>.hnm {
    background-color: #fff;
}

.header_nav li.navActive>a>.hnm {
    background-color: #fff;
}

.header_nav li .header_nav_son {
    display: flex;
    flex-direction: column;
    font-size: inherit;
    border-radius: 0.4em;
    background-color: #fff;
    transform: translate(0);
    left: 0;
    overflow: hidden;
    box-shadow: 0.2em 0.2em 0.4em #341C7722;
}

.header_nav_son a {
    white-space: nowrap;
    padding: 0.8em 1.2em;
    color: #341C77;
}

.header_nav_son a:hover {
    background-color: #FDB510;
    color: #fff;
}

.header_more {
    display: none;
}

.header_bottom .header_lang {
    display: none;
}

.banner .swiper .swiper-slide {
    position: relative;
}

.banner .swiper .swiper-slide .swb_float {
    position: absolute;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    left: 0;
    top: 0;
}


.about {
    display: flex;
    gap: 3%;
    background-image: url(../images/object-rocket1-1.png);
    background-repeat: no-repeat;
    background-position: 98% 0;
    background-size: 7.6%;
}

.about_left {
    border-radius: calc(0.4vw + 2px);
    overflow: hidden;
    width: 47%;
    position: relative;
}

.about_left img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
}

.about_left img:nth-child(2) {
    display: none;
}

.about_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about_right h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: calc(0.12em);
}

.about_right h4 span {
    text-transform: uppercase;
    color: #341C77;
}

.about_right .content {
    line-height: 1.8;
    color: #341C77;
    margin-bottom: calc(0.8vw + 4px);
}

.about_right .about_video {
    display: flex;
    margin-bottom: calc(1vw + 5px);
    gap: 2%;
}

.about_right .about_video_left {
    width: 46%;
    position: relative;
    border-radius: calc(0.8vw + 4px);
    z-index: 1;
    overflow: hidden;
}

.about_right .about_video_left img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.about_right .about_video_left .vplay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2.9em;
    height: 2.9em;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #FDB510;
    cursor: pointer;
    z-index: 1;
}

.about_right .about_video_left .vplay .icon {
    font-size: 1.2em;
    fill: #fff;
}

.about_right .about_video_left .vplay::after {
    content: "";
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: calc(100%);
    height: calc(100%);
    background-color: #FDB51066;
    z-index: -1;
    border-radius: 50%;

    animation: v-w-animation 3s cubic-bezier(0,0,.49,1.02) infinite;
}

.about_right .about_video_left .vplay::before {
    content: "";
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    width: calc(100%);
    height: calc(100%);
    background-color: #FDB51088;
    z-index: -2;
    border-radius: 50%;
    animation: v-w-animation 3s cubic-bezier(0,0,.49,1.02) infinite;
    animation-delay: 1s;
}

@keyframes v-w-animation {
    0% {
        width: calc(100%);
        height: calc(100%);
        background-color: #fdb51088;
    }
    100% {
        width: calc(100% + 1.2vw + 8px);
        height: calc(100% + 1.2vw + 8px);
        background-color: #FDB51000;
    }
}

.about_right .about_video_right ul {
    padding: 0 0.4em;
    display: flex;
    flex-direction: column;
}

.about_right .about_video_right ul li {
    display: flex;
    padding: 0.8em 0;
    
    line-height: 1.2;
    gap: 0.4em;
}

.about_right .about_video_right ul li p {
    line-height: inherit;
    color: #FDB510;
}


.about_right .about_video_right ul li .icon {
    color: #341C77;
    fill: #341C77;
}

.more_button {
    display: flex;
    align-items: center;
    background-color: #341C77;
    gap: 1em;
    padding: 1em 2em;
    line-height: 1;
    border-radius: 1.5em;
    color: #fff;
    width: max-content;
    text-transform: uppercase;
    transition: .2s;
}

.more_button .icon {
    fill: #fff;
}

.more_button:hover {
    background-color: #F33B10;
    scale: 1.02;
}

.choose {
    background-color: #341C77;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose_ {
    display: flex;
    gap: 5%;
    margin-bottom: calc(1.6vw + 8px);
}

.choose_left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.choose_left h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: calc(0.8vw + 4px);
}

.choose_left_text {
    display: flex;
    flex-direction: column;
    margin-bottom: calc(1.2em);
}

.choose_left_text h3 {
    font-weight: bold;
    margin-bottom: calc(0.2em);

} 

.choose_left_text:nth-child(1) h3 {
    color: #FF6600;
}

.choose_left_text:nth-child(2) h3 {
    color: #02B890;
}

.choose_left_text:nth-child(3) h3 {
    color: #F33B10;
}

.choose_left_text:nth-child(4) h3 {
    color: #FDB510;
}

.choose_left_text p {
    color: #fff;
    line-height: 1.6;
}

.choose_right {
    flex: 1;
}

.choose_right .cimg {
    border-radius: calc(1vw + 5px);
    overflow: hidden;
}

.choose_right .cimg img {
    width: 100%;
}

.choose_right h4 {
    font-weight: bold;
    margin-bottom: calc(0.2vw + 1px);
    color: #FDB510;
}

.choose_right p {
    color: #fff;
    margin-bottom: 0.4em;
}

.choose .more_button {
    background-color: #F15531;
}

.workshop {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workshop h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: 0.2em;
    text-align: center;
}

.workshop p {
    text-align: center;
    line-height: 1.8;
    color: #341C77;
    max-width: 30em;
    margin-bottom: calc(1.6vw + 8px);
}

.workshop>span {
    text-align: center;
    color: #341C77;
    display: block;
    margin-bottom: calc(0.6vw + 3px);
}

.workshop_ {
    display: flex;
    gap: 0.6vw;
    margin-bottom: calc(2vw + 10px);
}

.workshop_ .line {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
}

.workshop_img {
    position: relative;
    overflow: hidden;
    border-radius: calc(0.8vw + 4px);
}

.workshop_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viewImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #341C77cc;
    opacity: 0;
    transition: 0.4s;
    cursor: pointer;
}

.workshop_img:hover .viewImg {
    opacity: 1;
}

.viewImg.fadeInParent>span.fadeInSon {
    width: 1em;
    height: 1em;
    background-color: #FDB510cc;
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: calc(50% + 1em);
    display: block;
}

.viewImg.fadeInParent>span.fadeInSon::before {
    content: "";
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: inherit;
    width: 0.32em;
    height: 0.08em;
    background-color: #fff;
    border-radius: 0.35em;
}

.viewImg.fadeInParent>span.fadeInSon::after {
    content: "";
    display: block;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: inherit;
    width: 0.08em;
    height: 0.32em;
    background-color: #fff;
    border-radius: 0.35em;
}

.viewImg.fadeInParent:hover>span.fadeInSon {
    left: 50%;
    top: 50%;
} 


.imgs_mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
}

.imgs_mask.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 关闭按钮 */
.imgs_mask .close_btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
}

.imgs_mask .close_btn:hover {
    color: #ff6b6b;
}

/* Swiper 容器 */
.imgs_mask .swiper {
    width: 90%;
    max-width: 1200px;
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.imgs_mask .swiper-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
}

.imgs_mask .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imgs_mask .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 分页器 */
.imgs_mask .swiper-pagination {
    position: static;
    margin-top: 10px;
}

.imgs_mask .swiper-pagination-bullet {
    background: #fff;
}

.imgs_mask .swiper-pagination-bullet-active {
    background: #4ecdc4;
}

/* 导航按钮 */
.imgs_mask .swiper-button-next,
.imgs_mask .swiper-button-prev {
    color: #fff;
}

/* 图片计数 */
.imgs_mask .image-counter {
    position: absolute;
    bottom: 50px;
    left: 30px;
    color: #fff;
    font-size: 16px;
    z-index: 10000;
}

/* 手机端适配 */
@media (max-width: 768px) {
    .imgs_mask .close_btn {
        top: 15px;
        right: 20px;
        font-size: 32px;
    }
    
    .imgs_mask .swiper {
        width: 95%;
        height: 75vh;
    }
    
    .imgs_mask .swiper-button-next,
    .imgs_mask .swiper-button-prev {
        display: none;
    }
    
    .imgs_mask .image-counter {
        bottom: 60px;
        left: 20px;
        font-size: 14px;
    }
    
    .imgs_mask .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }
}

.qualification {
    background-image: url("../images/caertbg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #341C77;
}

.qualification>h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: 0.2em;
    text-align: center;
}

.qualification>p {
    text-align: center;
    line-height: 1.8;
    color: #fff;
    max-width: 34em;
    margin-bottom: calc(1.6vw + 8px);
}

.qualification_ {
    width: 100%;
}

.qualification_box {
    align-self: center;
    border-radius: calc(0.8vw + 4px);
    overflow: hidden;
}

.qualification_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../images/object-rocket1-1.png);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 7.6%;
}


.products>h4 {
    font-weight: bold;
    color: #0066FF;
    margin-bottom: 0.2em;
    text-align: center;
}

.products>p {
    text-align: center;
    line-height: 1.8;
    max-width: 34em;
    margin-bottom: calc(1.6vw + 8px);
}

.products_ {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
}

.products_box {
    margin-bottom: 2%;
    width: 23.5%;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.products_box .pimg {
    position: relative;
    width: 100%;
    padding-top: 69%;
    display: block;
    border: 1px solid #CCC;
}

.products_box .pimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products_box .ptext {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    font-size: inherit;
    align-items: center;
    flex: 1;
}

.products_box .ptext h2 {
    display: block;
    text-align: center;
    flex: 1;
    font-size: inherit;
    width: 100%;
    line-height: 1.3;
    font-weight: bold;
}

.products_box .ptext a {
    font-size: 1.125em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4em 0.8em;
    min-width: 6em;
    border-radius: 1.3em;
    line-height: 1;
    background-color: #F33B10;
}


.exhibititon {
    background-image: url("../images/bg/object-bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #341C77;
}

.exhibititon>h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: 0.2em;
    text-align: center;
}

.exhibititon>p {
    text-align: center;
    line-height: 1.8;
    color: #fff;
    max-width: 40em;
    margin-bottom: calc(1.6vw + 8px);
}

.exhibititon_ {
    width: 100%;
}

.exhibititon_box {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
}

.exhibititon_box .eimg {
    position: relative;
    width: 100%;
    padding-top: 69%;
    display: block;
    border: max(1px, 0.2em) solid #fff;
    font-size: inherit;
    border-radius: calc(0.2vw + 2px);
}

.exhibititon_box .eimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exhibititon_box .etext {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    font-size: inherit;
    align-items: center;
    flex: 1;
}

.exhibititon_box .etext h3 {
    display: block;
    text-align: center;
    flex: 1;
    font-size: inherit;
    width: 100%;
    line-height: 1.3;
    font-weight: bold;
    color: #fff;
}

.exhibititon_box .etext span {
    font-size: 0.875em;
    color: #fff;
    text-align: center;

}


.cases {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #F1F5F8;
}


.cases>h4 {
    font-weight: bold;
    color: #0066FF;
    margin-bottom: 0.2em;
    text-align: center;
    margin-bottom: calc(1.6vw + 8px);
}

.cases>span {
    text-align: center;
    line-height: 1;
    color: #341C9C;
    margin-bottom: calc(0.4vw + 2px);
}

.cases_ {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    margin-bottom: calc(1vw + 5px);
}

.cases_box {
    margin-bottom: 2%;
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    border: 1px solid #CCC;
    border-radius: 0.8em;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0px 0.75em 0.9375em -0.9375em rgba(0, 0, 0, 0.5);
}

.cases_box .cimg {
    position: relative;
    width: 100%;
    padding-top: 69%;
    display: block;
}

.cases_box .cimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cases_box .ctext {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
    font-size: inherit;
    align-items: center;
    flex: 1;
    padding: 1em;
    padding-top: 0;
}

.cases_box .ctext .cases_tite {
    font-size: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.8em;
    width: 100%;
}

.cases_box .ctext .cases_tite h2 {
    display: block;
    flex: 1;
    font-size: inherit;
    width: 100%;
    line-height: 1.3;
}

.cases_box .ctext .cases_tite h3 {
    display: block;
    flex: 1;
    font-size: inherit;
    width: 100%;
    line-height: 1.3;
    color: #341C77;
}

.cases_box .ctext a {
    font-size: 1.125em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4em 0.8em;
    min-width: 6em;
    border-radius: 1.3em;
    line-height: 1;
    background-color: #F33B10;
}


.advantages {
    background-image: url("../images/bg/object-bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #341C77;
}

.advantages>h4 {
    font-weight: bold;
    color: #FDB510;
    margin-bottom: 0.2em;
    text-align: center;
}

.advantages>p {
    text-align: center;
    line-height: 1.8;
    color: #fff;
    max-width: 35em;
    margin-bottom: calc(1.6vw + 8px);
}

.advantages_ {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}

.advantages_box {
    height: auto;
    display: flex;
    gap: 0.8em;
    margin-bottom: 1%;
    width: 49%;
    background-color: #fff;
    padding: 1.2em 1em;
    align-items: center;
}

.advantages_box:nth-child(2n - 1) {
    flex-direction: row-reverse;
}

.advantages_box .aimg {
    font-size: inherit;
    width: 5em;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    /* background-color: #6E6B6C;
    mask-position: center;
    mask-size: 100% auto;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: 100% auto;
    -webkit-mask-repeat: no-repeat; */
}

.advantages_box .aimg img {
    width: 100%;
    /* opacity: 0; */
}

.advantages_box .atext {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.advantages_box .atext h4 {
    font-weight: bold;
    color: #FF4324;
    font-size: inherit;
}

.advantages_box .atext p {
    line-height: 1.3;
    color: #6E6B6B;
    font-size: 0.8em;
}

.advantages_box:nth-child(2n - 1) .atext h4 {
    text-align: right;
}

.advantages_box:nth-child(2n - 1) .atext p {
    text-align: right;
}


.advantages_box:hover {
    background-color: #6E6B6C;
}

.advantages_box:hover .aimg {
    /* background-color: #fff; */
    filter: brightness(100);
}

.advantages_box:hover .atext p {
    color: #fff;
}

.news {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    position: relative;
}

.news::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/home-object1.png);
    background-repeat: no-repeat;
    background-position: 2% 98%;
    z-index: -1;
    background-size: 5%;
}

.news::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/home-object2.png);
    background-repeat: no-repeat;
    background-position: 98% 10%;
    z-index: -1;
    background-size: 6.2%;
}


.news>h4 {
    font-weight: bold;
    color: #0066FF;
    margin-bottom: calc(1.6vw + 8px);
    text-align: center;
}

.news_ {
    display: flex;
    flex-direction: column;
}

.news_box {
    width: 100%;
    margin-bottom: 3%;
    display: flex;
    gap: 1em;
    padding: 1em;
    border-radius: 1em;
    background-color: #F7F2F2;
    box-shadow: 0px 0.75em 0.9375em -0.9375em rgba(0, 0, 0, 0.5);
}

.news_box .nimg {
    width: 14em;
    height: 9.14em;
    font-size: inherit;
}

.news_box .nimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_box .ntext {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    font-size: inherit;
    align-items: center;
    flex: 1;
}

.news_box .ntext h2 {
    display: block;
    width: 100%;
    font-size: inherit;
    line-height: 1.1;
    font-weight: bold;
    color: #341C77;
}

.news_box .ntext span {
    display: block;
    width: 100%;
    font-size: 0.6363em;
    line-height: 1.3;
    color: #341C77;
}

.news_box .ntext p {
    line-height: 1.4;
    color: #6D7382;
    font-size: 0.7272em;
}

.news_box .ntext>a {
    font-size: 0.8181em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4em 0.8em;
    min-width: 6em;
    border-radius: 1.3em;
    line-height: 1;
    background-color: #F33B10;
}

.foot {
    background-color: #000000;
}

.foot_top {
    display: flex;
    justify-content: space-between;
    gap: 3%;
}

.foot_top_left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 26%;
    flex-shrink: 0;
}


.foot_top_left img {
    width: 8.33em;
    max-width: 100%;
    height: auto;
}

.foot_top_left p {
    font-size: inherit;
    line-height: 1.6;
    color: #B0B9D1;
}

.foot_top_mid h4 {
    color: #fff;
    margin-bottom: calc(1vw + 5px);
}

.foot_top_right {
    width: 30%;
    min-width: 160px;
}

.foot_contact {
    display: flex;
    flex-direction: column;
    gap: calc(1vw + 5px);
}

.foot_contact .icon_contact .icon {
    color: #FDB510;
    fill: #FDB510;
}

.foot_contact .icon_contact p {
    line-height: 1.4;
}

.foot_top_right h4 {
    color: #fff;
    margin-bottom: calc(1vw + 5px);
    white-space: nowrap;
}

.foot_top_right form {
    display: flex;
    flex-direction: column;
    gap: 0.4em;
    width: 100%;
}

.foot_top_right form input {
    min-width: 0;
    font-size: inherit;
    padding: 0.6em 1em;
    color: #6D7382;
    line-height: 1;
    border-radius: 1.3em;
    background-color: #fff;
    width: 100%;
}

.foot_top_right form button {
    font-size: 1.11em;
    color: #fff;
    background-color: #FDB510;
    padding: 0.8em 1.2em;
    width: 100%;
    line-height: 1;
    border: none;
    width: 100%;
    border-radius: 1.3em;
    margin-top: 0.8em;
    cursor: pointer;
}

.foot_bottom {
    background-color: #2E186A;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #B0B9D1;
    padding-top: calc(1.2vw + 6px);
    padding-bottom: calc(1.2vw + 6px);
    gap: 0.4em;
}

.foot_bottom p {
    color: inherit;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.8em;
}

.nbanner {
    height: 18.3vw;
    width: 100%;
    position: relative;
}

.nbanner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #FDB510;
    opacity: 0.8;
}

.nbanner>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nbanner_float {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    z-index: 2;
}

.nbanner_float h4 {
    font-weight: bold;
    text-align: center;
    font-size: 3.125vw;
    color: #fff;
}

.nbanner_float p {
    text-align: center;
    font-size: 0.9375vw;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em;
    color: #fff;
}

.aboutDef {
    padding-top: calc(2vw + 10px) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutDef p {
    text-align: center;
    font-size: 2.08vw;
    text-align: center;
    max-width: 60vw;
}

.profile {
    gap: 7%;
}

.profile .about_right {
    padding: 1% 0;
}

.wedo {
    display: flex;
    gap: 1%;
}

.wedo_left {
    flex: 1;
    align-self: center;
}

.wedo_right {
    flex: 1;
}

.wedo_right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wedo_left>span {
    color: #341C77;
}

.wedo_left>h4 {
    color: #FDB510;
    font-weight: bold;
    margin-bottom: calc(0.6vw + 3px);
}

.wedo_right {
    border-radius: calc(1vw + 5px);
    overflow: hidden;
}

.wedo_ {
    display: flex;
    flex-direction: column;
    gap: calc(0.8vw + 4px);
    margin-bottom: calc(1.6vw + 8px);
}

.wedo_ li {
    font-size: inherit;
    display: flex;
    gap: 1em;
    line-height: 1.4;
}

.wedo_ li .icon {
    color: #F33B10;
    fill: #F33B10;
    display: block;
}

.wedo_ li p {
    font-size: inherit;
    color: #341C77;
}

.productlist {
    background-color: #F1F5F8;
}

.sort_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    padding-top: 1em;
    padding-bottom: 1em;
    width: 100%;
    margin-bottom: calc(0.8vw + 4px);
}

.sort_nav a {
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em;
    border-radius: calc(0.2vw + 2px);
    background-color: #CCCCCC;
    min-width: 10em;
}

.sort_nav a:hover {
    background-color: #341C77;
    color: #fff;
}

.sort_nav a.linked {
    background-color: #341C77;
    color: #fff;
}

.productlist_ {
    display: flex;
    flex-wrap: wrap;
    gap: 1%
}

.productlist_box {
    width: 24.25%;
    margin-bottom: 1.2em;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    background-color: #fff;
    transition: transform .3s;
}

.productlist_box .pimg {
    position: relative;
    width: 100%;
    padding-top: 80%;
    display: block;
}

.productlist_box .pimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productlist_box h2 {
    text-align: center;
    font-size: inherit;
    padding: 0.4em;
    padding-bottom: 0.8em;
    padding-top: 0;
    line-height: 1.6;
}

.productlist_box:hover {
    transform: translateY(-0.4em);
}

.productlist_box:hover h2 {
    color: #F36;
}

.pages {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(2vw + 10px) 0;
    width: 100%;
    gap: 0.6em;
}

.pages a {
    width: 3.125em;
    height: 2.625em;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background-color: #EEEEEE;
    border: 1px  solid #e2e1e1;
    border-radius: 0.3125em;
}

.pages a:hover {
    background-color: #F2008D;
    color: #fff;
    font-weight: bold;
    border-color: #F2008D;
}

.pages a.page-num-current {
    background-color: #F2008D;
    color: #fff;
    font-weight: bold;
    border-color: #F2008D;
}

.product {
    background-color: #F1F5F8;
    display: flex;
    flex-direction: column;
    gap: calc(0.4vw + 2px);
}

.product_top {
    padding: calc(0.6vw + 3px) 2.5%;
    background-color: #fff;
    display: flex;
    gap: 1.5%;
}

.product_imgs {
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product_details {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 1%;
    gap: calc(0.6vw + 2px);
}

.product_details_box {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em;
    line-height: 1.4;
    color: #6D7382;
}

.product_details_box>span {
    white-space: nowrap;
    color: #000;
    font-weight: bold;
}

.product_details_box>h1, .product_details_box>h2, .product_details_box>p {
    font-size: inherit;
    flex: 1;
    line-height: inherit;
    color: inherit;
}

.product_details_box .intro {
    font-size: inherit;
    padding-left: 2em;
    width: 100%;
    line-height: inherit;
    color: inherit;
}


.product_details_box .intro p {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.product_details_btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2em;
    margin-top: 1em;
}

.product_details_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 2em;
    border-radius: 0.3em;
    background-color: #0693EC;
    line-height: 1;
    color: #fff;
}

.product_details_btn a:nth-child(2n) {
    background-color: #E25305;
}

.productImgSwiper {
    border: 1px solid #ddd;
    /* padding: 8% 12%; */
    width: 100%;
    position: relative;
}

.productImgSwiper .swiper {
    width: 100%;
}

.productImgSwiper .swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.productImgSwiper .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.productThumbSwiper {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    width: 100%;
    position: relative;
    height: 0;
    padding-top: calc(16% + 0.6vw + 3px);
    overflow: hidden;
}

.productThumbSwiper .swiper {
    width: 100%;
    position: absolute;
    transform: translateX(-50%);
    bottom: 0;
    left: 50%;
    height: calc(100% - 0.6vw - 3px);
    overflow: visible;
}

.productThumbSwiper .swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(0.1vw + 1px);
    border: 1px solid #14a0ec;
    cursor: pointer;
    position: relative;
}

.productThumbSwiper .swiper .swiper-slide::after {
    position: absolute;
    content: "";
    display: block;
    bottom: 100%;
    transform: translateX(-50%);
    left: 50%;
    height: calc(0.6vw + 3px);
    width: calc(1vw + 5px);
    background-color: #FF0000;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
    visibility: hidden;
}

.productThumbSwiper .swiper .swiper-slide.swiper-slide-thumb-active {
    border-color: #FF0000;
}

.productThumbSwiper .swiper .swiper-slide.swiper-slide-thumb-active::after {
    visibility: visible;
}

.productThumbSwiper .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productThumbSwiper .sw-btn {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    font-size: calc(0.8vw + 4px);
    cursor: pointer;
}

.productThumbSwiper .sw-prev {
    transform: translate(-50%, -50%) rotate(90deg);
    left: 4%;

}

.productThumbSwiper .sw-next {
    transform: translate(-50%, -50%) rotate(-90deg);
    left: 96%;
}


.productImgSwiper .magnifier-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
}

.productImgSwiper .magnifier-lens {
    position: absolute;
    border: 1px solid #007bff;
    background-color: rgba(255, 255, 255, 0.4);
    width: 15%;
    height: 0;
    padding-top: 15%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    display: none;
}

.productImgSwiper .magnifier-result {
    position: absolute;
    top: 0;
    left: 102%;
    width: 100%;
    height: 100%;
    border: 1px solid #007bff;
    background-color: #fff;
    background-repeat: no-repeat;
    overflow: hidden;
    display: none;
    z-index: 101;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.product_mid {
    background-color: #fff;
    padding: calc(0.4vw + 2px);
}

.product_mid .content {
    width: 100%;
}

.product_mid .content table {
    background-color: #fff;
    width: 100%;
    line-height: inherit;
}

.product_mid .content table tr {
    background-color: #F6F6F6;
    line-height: inherit;
}

.product_mid .content table tr:nth-child(2n) {
    background-color: #fff;
}

.product_mid .content table tr td {
    background-color: transparent;
    color: #6D7382;
    border: 1px solid #B9B9B9;
    padding: 0.4em;
    line-height: 1.5;
}

.product_bottom {
    display: flex;
    gap: 2%;
}

.product_recommend {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: calc(0.2vw + 2px);
    border: 1px solid #FF4A00;
    width: 15em;
    align-self: flex-start;
}

.product_recommend>h4 {
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #FF4A00;
    padding: 0.6em 1.2em;
    white-space: nowrap;
    font-size: inherit;
}

.product_recommend_ {
    display: flex;
    flex-direction: column;
    padding: calc(0.4vw + 2px);
    gap: calc(0.8vw + 4px);
}


.product_recommend_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4em;
}

.product_recommend_box .pimg {
    position: relative;
    width: 100%;
    padding-top: 80%;
    display: block;
}

.product_recommend_box .pimg img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_recommend_box h3 {
    text-align: center;
    font-size: inherit;
    line-height: 1.4;
}


.product_content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid #dcdfe0;
}

.product_content_line {
    display: flex;
    flex-wrap: wrap;
    background-color: #E9ECED;
}

.product_content_line::after {
    content: "";
    display: block;
    flex: 1;
    border-left: 1px solid #dcdfe0;
    border-bottom: 1px solid #dcdfe0;
}

.product_content_line .ptag {
    padding: 1em 2em;
    background-color: #fff;
    position: relative;
    color: #FF0042;
    line-height: 1;
}

.product_content_line .ptag::after {
    position: absolute;
    content: "";
    font-size: inherit;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.2em;
    background-color: #FF0042;
}

.product_content .content {
    background-color: #fff;
    padding: calc(0.8vw + 4px);
}

.caselist {
    background-color: #F1F5F8;
}

.caselist_ {
    display: flex;
    flex-wrap: wrap;
    gap: 1%
}

.caselist_box {
    width: 24.25%;
    margin-bottom: 1.2em;
    display: flex;
    flex-direction: column;
}

.caselist_box .cimg {
    position: relative;
    width: 100%;
    padding-top: 80%;
    display: block;
    border: 1px solid #e6e5e5;
    overflow: hidden;
}

.caselist_box .cimg img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 98%;
    object-fit: cover;
    transition: width .4s, height .4s;
}

.caselist_box h2 {
    text-align: center;
    font-size: inherit;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.4em;
    border: 1px solid #F1F5F8;
}

.caselist_box:hover .cimg img {
    width: 120%;
    height: 120%;
}

.caselist_box:hover h2 {
    background-color: #341C77;
    color: #fff;
}

.newslist_ .news_box:hover {
    background-color: #341C77;
}


.newslist_ .news_box:hover .ntext h2 {
    color: #fff;
}

.newslist_ .news_box:hover .ntext span {
    color: #fff;
}

.newslist_ .news_box:hover .ntext p {
    color: #fff;
}

.news_detail {
    background-color: #F1F5F8;
}

.news_detail_ {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    padding: 0 calc(0.8vw + 4px);
    gap: calc(1.2vw + 6px);
}

.news_detail_title {
    display: flex;
    flex-direction: column;
    gap: calc(0.8vw + 4px);
    padding: calc(0.8vw + 4px) 0;
    border-bottom: 1px solid #ccc;
}

.news_detail_title h1 {
    color: #341C77;
    text-align: center;
}

.news_detail_title p {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4em;
    justify-content: center;
    color: #6D7382;
}

.news_detail_content {
    padding: 0 calc(0.8vw + 4px);
}

.news_detail_content .content {
    width: 100%;
    line-height: 1.6;
}

.news_detail_page {
    display: flex;
    flex-direction: column;
    padding: calc(1.2vw + 6px) 0;
    gap: calc(0.6vw + 3px);
    
}

.news_detail_page p {
    font-size: inherit;
    color: #6D7382;
}

.news_detail_page p a {
    color: #c36;
}

.contact {
    display: flex;
    gap: 5%;
}

.contact_left {
    width: 36%;
}

.contact_right {
    flex: 1;
}

.contact_left>h4 {
    font-weight: bold;
    color: #341C77;
    margin-bottom: calc(1.2vw + 6px);
}

.contact_ {
    display: flex;
    flex-direction: column;
    gap: calc(0.8vw + 4px);
}

.contact_box {
    display: flex;
    align-items: flex-start;
    gap: 0.7em;
}

.contact_box .cicon {
    font-size: inherit;
    width: 3.5em;
    height: 3.5em;
    background-color: #FDB510;
    color: #fff;
    line-height: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact_box .cicon .icon {
    font-size: 1.8em;
    transform: translate(0.03em, 0.02em);
    fill: #fff;
}

.contact_box .ctext {
    font-size: inherit;
    display: flex;
    flex-direction: column;
    gap: 0.9em;
    padding-top: 0.3em;
}

.contact_box .ctext>span {
    color: #341C77;
    line-height: 1;
    font-weight: bold;
}

.contact_box .ctext>p {
    color: #6D7382;
    font-size: 0.9em;
}


.contact_right>h4 {
    font-weight: bold;
    color: #341C77;
    margin-bottom: calc(0.6vw + 3px);
}

.contact_right>p {
    color: #6D7382;
    line-height: 1.2;
    margin-bottom: calc(0.8vw + 4px);
}

.contact_right form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1em;
}

.contact_right form .line {
    font-size: inherit;
    display: flex;
    justify-content: space-between;
    gap: 1em;
}

.contact_right form .fitem {
    display: flex;
    flex-direction: column;
    font-size: inherit;
    gap: 0.5em;
    flex: 1;
}

.contact_right form .fitem label {
    color: #341C77;
    line-height: 1;
    font-size: inherit;
}

.contact_right form .fitem input {
    width: 100%;
    min-width: 0;
    font-size: inherit;
    border: 1px solid #ccc;
    color: #6D7382;
    border-radius: 0.3em;
    padding: 0.5em 1em;
    line-height: 1;
}

.contact_right form .fitem textarea {
    width: 100%;
    min-width: 0;
    font-size: inherit;
    border: 1px solid #ccc;
    color: #6D7382;
    border-radius: 0.3em;
    padding: 0.5em 1em;
    line-height: 1.4;
    resize: none;
    height: 12em;
}

.contact_right form button {
    font-size: inherit;
    color: #fff;
    background-color: #341C77;
    line-height: 1;
    border: 1px solid #F33B10;
    max-width: 100%;
    padding: 0.9em 2em;
    border-radius: 1.3em;
    width: max-content;
    cursor: pointer;
    transition: .2s;
}

.contact_right form button:hover {
    background-color: #F33B10;
}

.catalog {
    display: flex;
    flex-direction: column;
    gap: calc(1.2vw + 6px);
}

.catalog_box {
    display: flex;
    gap: 2%;
    align-items: center
}

.catalog_box .cimg {
    width: 44%;
    font-size: 0;
}

.catalog_box .cimg img {
    width: 100%;
}

.catalog_box .ctext {
    display: flex;
    flex-direction: column;
    gap: calc(0.6vw + 3px);
    align-items: center;
    flex: 1;
    padding: calc(1.2vw + 6px);
}

.catalog_box .ctext>h2 {
    text-align: center;
    font-weight: bold;
}

.catalog_box .ctext>p {
    text-indent: 2em;
    width: 100%;
}

.catalog_box .ctext>a {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 0.2em;
    justify-content: center;
    padding: 0.4em 0.8em;
    border-radius: 0.9em;
    line-height: 1;
    background-color: #0066FF;
}

.catalog_box .ctext>a .icon {
    font-size: 1.2em;
    fill: #fff;
}

.catalog_box .ctext>span {
    color: #6D7382;
    text-align: center;
}

.catalog_box:nth-child(2n) {
    background-color: #F1EEEE;
}


@media screen and (max-width: 1441px) {
    
    .p0_16 {
        padding-left: 12vw;
        padding-right: 12vw;
    }

    .lp16 {
        padding-left: 12vw;
    }

    .rp16 {
        padding-right: 12vw;
    }

    .p4_0 {
        padding-top: calc(3vw + 20px);
        padding-bottom: calc(3vw + 20px);
    }

    .p3_0 {
        padding-top: calc(2.2vw + 16px);
        padding-bottom: calc(2.2vw + 16px);
    }
}

@media screen and (max-width: 1025px) {
    .p0_16 {
        padding-left: 7vw;
        padding-right: 7vw;
    }

    .lp16 {
        padding-left: 7vw;
    }

    .rp16 {
        padding-right: 7vw;
    }

    .p4_0 {
        padding-top: calc(2.6vw + 18px);
        padding-bottom: calc(2.6vw + 18px);
    }

    .p3_0 {
        padding-top: calc(2.2vw + 16px);
        padding-bottom: calc(2.2vw + 16px);
    }
}

@media screen and (max-width: 769px) {
    .p0_16 {
        padding-left: calc(2.2vw + 16px);
        padding-right: calc(2.2vw + 16px);
    }

    .lp16 {
        padding-left: calc(2.2vw + 16px);
    }

    .rp16 {
        padding-right: calc(2.2vw + 16px);
    }

    .p4_0 {
        padding-top: calc(2.2vw + 16px);
        padding-bottom: calc(2.2vw + 16px);
    }

    .p3_0 {
        padding-top: calc(2vw + 15px);
        padding-bottom: calc(2vw + 15px);
    }

    .header_more {
        display: block;
        color: #341C77;
        transform: translateY(0.02em);
    }

    .header_bottom .header_lang {
        display: block;
    }

    .header_bottom .header_lang.htrbtn .htrbtn_ .icon {
        color: #341C77;
        fill: #341C77;
    }


    .header_nav {
        position: absolute;
        top: 100%;
        height: calc(100dvh - 100%);
        right: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        align-items: stretch;
        overflow: hidden;
        transition: .4s;
        --header-nav-width: 70vw;
        width: 0;
        max-width: none;
        gap: 0;
    }


    .header_nav li {
        flex: 1;
        display: flex;
        justify-content: center;
        width: var(--header-nav-width);
    }

    .header_nav li>a {
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        border-radius: 0;
    }

    .header_nav li>a>.hnm, .header_nav li .header_nav_son {
        display: none;
    }

    .header_nav.active {
        width: var(--header-nav-width);
    }

    .header_top {
        display: none;
    }

    .about {
        flex-direction: column;
        gap: calc(1.2vw + 6px);
    }

    .about_left {
        width: 100%;
        border-radius: calc(0.6vw + 3px);
    }

    .about_left img {
        display: none;
        position: static;
    }

    .about_left img:nth-child(2) {
        display: block;
    }

    .about_right .about_video {
        display: flex;
        flex-direction: column;
        gap: calc(0.8vw + 4px);
    }

    .about_right .about_video_left {
        height: 24vw;
        width: 100%;
    }

    .choose_ {
        flex-direction: column;
    }

    .products_box {
        width: 49%;
    }

    .cases_box {
        width: 100%;
    }

    .advantages_box {
        width: 100%;
    }


    .news_box .nimg {
        width: 10em;
        height: auto;
        display: none;

    }

    .foot_top_right, .foot_top_mid {
        display: none;
    }

    .foot_top {
        flex-direction: column;
        align-items: center;
        gap: calc(1.2vw + 6px);
    }

    .foot_top_left p {
        text-align: center;
    }


    .foot_top_left {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .wedo {
        flex-direction: column-reverse;
        gap: calc(1.2vw + 6px);
    }

    .wedo_right {
        height: 40vw;
        width: 100%;
        flex: auto;
    }
    

    .wedo_left {
        width: 100%;
    }

    .productlist_box, .caselist_box {
        width: 49.5%;
    }

    .product_top {
        flex-direction: column;
        gap: calc(1.2vw + 6px);
    }

    .product_imgs {
        width: 100%;
    }

    .productImgSwiper .magnifier-container {
        display: none;
    }

    .product_recommend {
        display: none;
    }

    .contact {
        flex-direction: column;
        gap: calc(1.6vw + 8px);
    }

    .contact_left {
        width: 100%;
    }

    .catalog_box {
        flex-direction: column;
        gap: calc(1.2vw + 6px);
    }
}

@media screen and (max-width: 431px) {
    .header_nav {
        --header-nav-width: 100vw;
    }
}


.float_content {
    width: 70px;
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 9999;
}

.float_content_button {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    margin-bottom: 3px;
    cursor: pointer;
    border: 0 solid #F15531;
    border-left-width: 3px;
    transition: .5s;
    position: relative;
    right: 0;
}

.float_content_button div:first-child {
    height: 100%;
    width: 0;
    background-color: #FDB510;
    position: absolute;
    left: 0;
    z-index: -1;
    transition: .8s;
}

.float_content_button-img div:first-child {
    transition: .4s;
}

.float_content_button div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.float_content_button div:nth-child(2) span {
    color: #ffffff;
    font-size: 12px;
    display: block;
    margin-top: 5px;
}

.float_content_button div:nth-child(2)>img {
    height: 40%;
    width: auto;
    filter: brightness(100);
    margin-bottom: 5px;
}

.float_content_button div:nth-child(2) .icon {
    font-size: 32px;
    fill: #fff;
    color: #fff;
}


.float_content_button div:nth-child(2) .sicon path {
    fill: #fff;
}

.float_content_button div:nth-child(2) p {
    display: none;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
}

.float_content_button-text:hover {
    width: 300px;
    right: 230px;
    background-color: transparent;
}

.float_content_button-text div:first-child {
    transition: .4s;
}

.float_content_button:hover div:first-child {
    width: 100%;
}

.float_content_button-text:hover div:nth-child(2)>img {
    display: none;
}

.float_content_button-text:hover div:nth-child(2) .icon {
    display: none;
}

.float_content_button-text:hover div:nth-child(2) span {
    display: none;
}

.float_content_button-text:hover div:nth-child(2) p {
    display: block;
}


.float_content_button div:nth-child(2)>div {
    position: absolute;
    top: 50%;
    right: calc(100% + 20px);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    background-color: #05204D;
    overflow: hidden;
}

.float_content_button div:nth-child(2)>div img {
    width: 100%;
}

.float_content_button-img:hover div:nth-child(2)>div {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.float_content_button-img:hover {
    background-color: transparent;
}

.float_content {
    display: none;
}

@media screen and (max-width:769px) {
    .float_content {
        display: flex;
    }


    .foot {
        margin-bottom: 60px;
    }

	.float_content {
        flex-direction: row;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        left: 50%;
        width: 100%;
    }

    .float_content_button {
        margin-bottom: 0;
        flex: 1;
        height: 60px;
        border-left: none;
    }

    .float_content_button div:nth-child(2) .icon {
        font-size: 20px;
    }
    .float_content_button div:nth-child(2) span {
        font-size: 8px;
    }

    .float_content_button-text div:first-child {
        display: none;
    }

    
    .float_content_button-text:hover {
        width: auto;
        right: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .float_content_button div:first-child {
       display: none;
    }

    .float_content_button-text:hover div:nth-child(2)>img {
        display: block;
    }

    .float_content_button-text:hover div:nth-child(2) .icon {
        display: block;
    }

    .float_content_button-text:hover div:nth-child(2) span {
        display: block;
    }

    .float_content_button-text:hover div:nth-child(2) p {
        display: none;
    }

    .float_content_button div:nth-child(2)>div {
        transform: translateX(-50%);
        left: 50%;
        right: auto;
        width: 100%;
        bottom: 40px;
        top: auto;
        overflow: visible;
    }

    .float_content_button div:nth-child(2)>div::after {
        position: absolute;
        top: 100%;
        transform: translateX(-50%);
        left: 50%;
        width: 14px;
        height: 8px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
        content: "";
        background-color: #05204D;
        display: block;
    }

    .float_content_button-img:hover div:nth-child(2)>div {
        opacity: 1;
        visibility: visible;
        top: auto;
        bottom: 70px;
    }

    .float_content_button-img:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
}


.float_contact {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 200;
    transform: translateY(-50%);
    top: 34%;
    background-color: #FF4A00;
    left: calc(100% - 3.857em);
    border-radius: 0.3em;
    align-items: flex-start;
}

.float_contact_box {
    font-size: inherit;
    border-radius: 0.3em;
    background-color: #FF4A00;
    display: flex;
    align-items: center;
    transition: .4s;
}

.float_contact_box .fcicon {
    font-size: inherit;
    width: 3.857em;
    height: 3.857em;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.float_contact_box .fcicon .icon {
    font-size: 2.6em;
    color: #fff;
    fill: #fff;
}

.float_contact_box .fcicon.w-back {
    z-index: 1;
    position: relative;
}

.float_contact_box .fcicon.w-back::before {
    content: "";
    font-size: inherit;
    position: absolute;
    display: block;
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    background-color: #fff;
    z-index: -1;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.float_contact_box .fcicon.w-back .icon {
    display: block;
    color: #FF4A00;
    fill: #FF4A00;
    font-size: 2em;
}

.float_contact_box .fctext {
    color: #fff;
    font-size: inherit;
    white-space: nowrap;
    flex: 1;
    padding-right: 2em;
}

.float_contact_box .fctext p {
    color: #fff;
}

.float_contact_box:hover {
    transform: translateX(calc(-100% + 3.857em));
}

@media screen and (max-width:769px) {
    .float_contact {
        display: none;
    }
}