.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666; 
    left: 0px;
    background: rgb(0 0 0 / 60%);
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
    font-size: 18px;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}
/* 添加以下CSS到您的样式表中 */
.wap_nav .css-arrow {
    float: right;
    margin-left: 8px;
    margin-right: 15px;
    position: relative;
    display: inline-flex; /* 使用flex布局实现垂直居中 */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    width: 12px;
    height: 12px;
    margin-top: 20px;
}

.wap_nav .css-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transition: transform 0.3s ease;
}

/* 为展开状态添加旋转效果 */
.wap_nav .has-dropdown.active .css-arrow::after {
    transform: translate(-50%, -50%) rotate(225deg);
}
.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    
    font-family: -apple-system, BlinkMacSystemFont, Century Gothic, 
    "PingFang SC", "Microsoft YaHei", 
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1920*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 
    "PingFang SC", "Microsoft YaHei", 
    "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


select {
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
 
    line-height: 1;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

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

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(0,0,0);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index * {
    opacity: 1;
}

.index {
    overflow: hidden;
}

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

.fadeInUpGroup.animated {
    animation-fill-mode: both;
    animation-name: fadeInLeft3;
    opacity: 0;
}

.fadeInUpGroup.animated:nth-child(1) {
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2) {
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3) {
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4) {
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5) {
    animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

/* 通用占位图样式 */
.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.img-placeholder.dark {
    background-color: #0d1b2a;
    color: #fff;
}

.img-placeholder.blue {
    background-color: #0056b3;
    color: #fff;
}

/* =========================================           PC端样式 (基准宽度 1920px)           公式：calc(数值 / 1920 * 100vw)           ========================================= */
/* --- Header --- */
.fp-viewing-page1 .header {
    background: none;
    backdrop-filter: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0,0,0,0.35);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.wrap {
    width: calc(1400 / 1920 * 100vw);
    margin: auto;
    max-width: 100%;
}

.header-inner {
    width: calc(1400 / 1920 * 100vw);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    padding: calc(30/ 1920 * 100vw) 0px;
    height: auto;
}

.nav {
    display: flex;
    gap: calc(40 / 1920 * 100vw);
}

.nav a {
    color: #fff;
    font-size: calc(16 / 1920 * 100vw);
    opacity: 0.8;
    transition: 0.3s;
}

.nav a:hover,.nav a.active {
    opacity: 1;
    font-weight: bold;
}

.header-right .lan {
    color: #fff;
}

.header-right .search .h2tit {
    height: 100%;
    cursor: pointer;
}

.header-right .search:hover .slide {
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.header-right .search {
}

.header-right .search .slide {
    position: absolute;
    width: calc(120 / 1920 * 100vw);
    background: #fff;
    box-shadow: 0px 0px 10px #cfcfcf;
    top: calc(50 / 1920 * 100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.header-right .search .send {
    width: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    position: absolute;
    border: none;
    background: none;
}

.header-right .search .words {
    height: calc(30 / 1920 * 100vw);
    border: none;
    width: 100%;
    padding: 0px calc(12 / 1920 * 100vw);
}

.header-right .search {
    width: calc(30 / 1920 * 100vw);
    background: url(../images/search.png) no-repeat right center;
    background-size: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
    position: relative;
    margin-left: calc(6/ 1920 * 100vw);
}

.header-right .tel {
    margin-left: calc(15 / 1920 * 100vw);
    padding-left: calc(32 / 1920 * 100vw);
    background: url(../images/tel.png) no-repeat left center;
    background-size: auto calc(30 / 1920 * 100vw);
    line-height: calc(32 / 1920 * 100vw);
}

.header-right {
    display: flex;
    align-items: center;
    /* gap:calc(20 / 1920 * 100vw);*/
    color: #fff;
    font-size: calc(18 / 1920 * 100vw);
}

.mobile-menu-btn {
    display: none;
}

/* PC端隐藏 */
/* --- Hero Banner --- */
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero {
    position: relative;
    width: 100%;
    background-color: #333;
    /* 这里放背景图 url() */
    background-size: cover;
    background-position: center;
    /* display:flex;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero h1 a {
    color: inherit;
}

.hero h1 b {
    font-size: calc(60/ 1920 * 100vw);
    font-weight: normal;
}

.hero h1 {
    text-align: center;
    font-size: calc(89/ 1920 * 100vw);
    line-height: 1.2;
    margin-bottom: calc(100 / 1920 * 100vw);
    letter-spacing: calc(4 / 1920 * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
    z-index: 5;
}

.hero-icons {
    /* display:flex;*/
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgba(7,24,9,1);
    text-align: center;
    /* display:flex;*/
    justify-content: center;
    z-index: 4;
}

.icon-item:last-child {
    border: none;
}

.icon-item {
    display: flex;
    /* flex-direction:column;*/
    /* align-items:center;*/
    gap: 0;
    /* display:block;*/
    align-items: center;
    float: left;
    width: 33.333%;
    text-align: center;
    border-right: 1px solid rgb(66 66 66);
    padding: calc(38 / 1920 * 100vw) 0px;
    justify-content: center;
}

.icon-box img {
    width: 100%;
}

.icon-box {
    width: calc(62 / 1920 * 100vw);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    display: inline-block;
}

.icon-item span {
    font-size: calc(24/ 1920 * 100vw);
    padding-left: calc(26 / 1920 * 100vw);
    display: inline-block;
}

/* --- News Ticker --- */
.news-ticker {
    height: calc(90/ 1920 * 100vw);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-inner {
    width: calc(1400 / 1920 * 100vw);
    display: flex;
    align-items: center;
    font-size: calc(14 / 1920 * 100vw);
}

.ticker-tag {
    font-weight: bold;
    color: rgba(51,51,51,1);
    font-size: calc(18 / 1920 * 100vw);
    background: url(../images/lb.png) no-repeat right center;
    background-size: auto calc(34 / 1920 * 100vw);
    padding-right: calc(44/ 1920 * 100vw);
    line-height: calc(34/ 1920 * 100vw);
}

.ticker-text a {
    flex: 1;
    color: #333;
    float: left;
    color: rgba(51,51,51,1);
    font-size: calc(18 / 1920 * 100vw);
}

.ticker-date {
    color: rgba(153,153,153,1);
    float: right;
    font-size: calc(14 / 1920 * 100vw);
}

/* --- 通用 Section --- */
.sectionBase1:after {
    content: "";
    position: absolute;
    /* width:100%;*/
    background: url(../images/about.png) no-repeat right bottom;
    background-size: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: calc(594/ 1920 * 100vw);
    width: calc(880 / 1920 * 100vw);
}

.sectionBase1 {
    padding-top: calc(99/ 1920 * 100vw);
    width: 100%;
    /* background:url(../images/about.png) no-repeat right bottom;*/
    /* background-size:calc(880/ 1920 * 100vw);*/
    padding-bottom: 0;
    position: relative;
    height: 100vh;
}

.section-inner {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto;
    max-width: 100%; 
    position: relative;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 标题部分 */
.section-header.type2 {
    display: block
}

.section-header {
    width: calc(1400 / 1920 * 100vw);
    margin: 0 auto calc(60 / 1920 * 100vw);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    display: block;
    display: flex;
}

.section-header h2 {
    font-size: calc(43/ 1920 * 100vw);
    padding-bottom: calc(10 / 1920 * 100vw);
    color: rgba(51,51,51,1);
    border-bottom: calc(4/ 1920 * 100vw) solid rgba(0,82,216,1);
    display: inline-block;
    margin-bottom: calc(5 / 1920 * 100vw);
}

.section-header p {
    color: rgba(153,153,153,1);
    font-size: calc(19 / 1920 * 100vw);
}

.prod-btns a:hover:after,.btn-more:hover:after {
    background: #0056b3
}



.btn-more {
    color: #000;
    border: calc(2/ 1920 * 100vw) solid #000000;
    border-radius: calc(20 / 1920 * 100vw);
    font-size: calc(14 / 1920 * 100vw);
    transition: 0.3s;
    width: calc(134/ 1920 * 100vw);
    line-height: calc(40/ 1920 * 100vw);
    text-align: center;
    padding-left: calc(20/ 1920 * 100vw);
    text-align: left;
    border-radius: 300px;
    position: relative;
}

.btn-more:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
}

/* --- 关于我们 --- */
.about-text {
    width: 60%;
}

.about-img {
    width: 50%;
    height: calc(400 / 1920 * 100vw);
}

.about-title {
    margin-top: calc(50 / 1920 * 100vw);
    margin-bottom: calc(25 / 1920 * 100vw);
    color: rgba(51,51,51,1);
    font-size: calc(18 / 1920 * 100vw);
    font-weight: bold;
}

.about-desc {
    line-height: 1.8;
    font-size: calc(16 / 1920 * 100vw);
    margin-top: calc(25/ 1920 * 100vw);
    color: rgba(102,102,102,1);
    margin-bottom: calc(10/ 1920 * 100vw);
}

.stats-row .stat-item:first-child {
    text-align: left;
}

.stats-row .stat-item:last-child {
    border: none;
}

.stats-row .stat-item {
    width: 33.333%;
    border-right: 1px solid rgba(227,227,227,1);
    text-align: center;
}

.stats-row {
    /* display:flex;*/
    /* gap:calc(60 / 1920 * 100vw);*/
    /* margin-bottom:calc(50 / 1920 * 100vw);*/
    display: flex;
}

.stat-item strong b {
    font-size: calc(14/ 1920 * 100vw);
    font-weight: normal;
    margin-left: calc(10 / 1920 * 100vw);
    color: rgba(153,153,153,1);
}

.stat-item strong {
    display: block;
    font-size: calc(40 / 1920 * 100vw);
    color: #333;
}

.stat-item span {
    font-size: calc(14/ 1920 * 100vw);
    color: rgba(153,153,153,1);
    margin-top: calc(14/ 1920 * 100vw);
    display: block;
}

.about-btns {
    display: flex;
    gap: calc(45/ 1920 * 100vw);
    margin-top: calc(30/ 1920 * 100vw);
    padding-bottom: calc(40/ 1920 * 100vw);
}

.about-btns button a {
    padding: calc(10 / 1920 * 100vw) calc(37 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    font-size: calc(14 / 1920 * 100vw);
    border: 2px solid #000000;
    background: none;
    display: inline-block;
    color: #000;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.about-btns button {
    padding: 0px;
    border: none;
    background: none;
}

.about-btns button:hover a {
    background: #0056b3;
    color: #fff;
    /* border:none;*/
    border-color: #0056b3;
}

/* 加入我们蓝条 */
.join-banner {
    width: 100%;
    background: rgba(0,82,216,1);
    position: relative;
    z-index: 2;
    padding: calc(47/ 1920 * 100vw) 0;
}

.join-inner {
    width: calc(1400 / 1920 * 100vw);
    height: 100%;
    margin: 0 auto;
    display: flex;
    /* justify-content:space-between;*/
    align-items: center;
    color: #fff;
}

.join-inner h3 {
    font-size: calc(26/ 1920 * 100vw);
}

.join-inner p {
    font-size: calc(18/ 1920 * 100vw);
    margin-top: calc(9/ 1920 * 100vw);
    color: rgba(248,251,255,.9);
}

.join-arrow:hover {
    width: calc(134/ 1920 * 100vw);
    background: red;
    color: white;
    border: transparent;
}

.join-arrow {
    font-size: calc(20/ 1920 * 100vw);
    margin-left: calc(184/ 1920 * 100vw);
    width: calc(44/ 1920 * 100vw);
    /* height:calc(44/ 1920 * 100vw);*/
    line-height: calc(40/ 1920 * 100vw);
    border: calc(2/ 1920 * 100vw) solid #fff;
    border-radius: 300px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.fp-tableCell {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- 产品中心 --- */
.section-products {
    background: #f9f9f9;
    background: url(../images/bg1.png) no-repeat center center;
    background-size: cover;
    /* padding-top:calc(169/ 1920 * 100vw);*/
}

.product-grid {
    display: flex;
    gap: calc(55/ 1920 * 100vw);
    margin-top: calc(87/ 1920 * 100vw);
}

.prod-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prod-card:hover .prod-info {
    opacity: 1;
}

.prod-card:hover .tit {
    opacity: 0
}

.prod-card {
    flex: 1;
    height: calc(420 / 1920 * 100vw);
    position: relative;
    background: #fff;
    overflow: hidden;
}

.prod-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: calc(35 / 1920 * 100vw);
    background: rgb(0 0 0 / 50%);
    color: #fff;
    top: 0;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.prod-info ul li:after {
    content: "";
    position: absolute;
    width: calc(6/ 1920 * 100vw);
    height: calc(6/ 1920 * 100vw);
    opacity: 1;
    background: rgba(255,255,255,1);
    border-radius: 300px;
    left: 0;
    top: calc(4/ 1920 * 100vw);
}

.prod-info ul li {
    margin-bottom: calc(14/ 1920 * 100vw);
    position: relative;
    padding-left: calc(20 / 1920 * 100vw);
}

.prod-info h3 {
    font-size: calc(30 / 1920 * 100vw);
    padding-bottom: calc(23/ 1920 * 100vw);
    border-bottom: 1px solid #fff;
    margin-bottom: calc(32 / 1920 * 100vw);
}

.prod-info ul {
    padding-left: calc(40 / 1920 * 100vw);
    font-size: calc(18/ 1920 * 100vw);
    margin-bottom: calc(17 / 1920 * 100vw);
    text-align: left;
}

.prod-btns {
    display: flex;
    gap: calc(10 / 1920 * 100vw);
    display: block;
    text-align: center;
}

.prod-btns a:after {
    content: "";
    width: calc(9/ 1920 * 100vw);
    height: calc(9/ 1920 * 100vw);
    opacity: 1;
    background: rgba(51,51,51,1);
    position: absolute;
    border-radius: 300px;
    right: calc(15/ 1920 * 100vw);
    top: calc(16/ 1920 * 100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.prod-btns:hover a {
    background: rgba(0,82,216,1);
    color: #fff;
}

.prod-btns a {
    padding: calc(5 / 1920 * 100vw) calc(15 / 1920 * 100vw);
    border-radius: calc(15 / 1920 * 100vw);
    border: 1px solid #fff;
    color: #fff;
    font-size: calc(14 / 1920 * 100vw);
    width: calc(134/ 1920 * 100vw);
    display: inline-block;
    padding: 0;
    line-height: calc(44/ 1920 * 100vw);
    padding-left: calc(20/ 1920 * 100vw);
    text-align: left;
    border-radius: 300px;
    background: #fff;
    border: none;
    color: #111;
    position: relative;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.prod-btns .blue {
    background: #0056b3;
    border-color: #0056b3;
}

/* --- 解决方案 --- */
.section-solutions {
    color: #fff;
    background: url(../images/bg3.jpg) no-repeat center center;
    background-size: cover;
    /* padding-top:calc(160/ 1920 * 100vw);*/
}

.section-solutions .section-header h2 {
    color: #fff;
}

.section-solutions .section-header p {
    color: #999;
}

.sol-container {
    display: flex;
    height: calc(500 / 1920 * 100vw);
}

.sol-active {
    width: 40%;
    background: #0056b3;
    padding: calc(40 / 1920 * 100vw);
    position: relative;
}

.sol-active .big-num {
    position: absolute;
    bottom: calc(20 / 1920 * 100vw);
    right: calc(20 / 1920 * 100vw);
    font-size: calc(60 / 1920 * 100vw);
    opacity: 0.3;
}

.sol-list {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.sol-item {
    width: 33.33%;
    height: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(20 / 1920 * 100vw);
    transition: 0.3s;
}

.sol-item:hover {
    background: rgba(255,255,255,0.1);
}

.sol-item .icon {
    font-size: calc(30 / 1920 * 100vw);
}

.sol-item span {
    font-size: calc(14 / 1920 * 100vw);
}

.sol-item .num {
    font-size: calc(24 / 1920 * 100vw);
    opacity: 0.2;
    color: #fff;
}

/* --- Footer --- */
.footer-cta {
    background: url(../images/bg4.png) no-repeat center center rgba(0,111,255,1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: cover;
    padding-top: calc(120 / 1920 * 100vw);
    padding-bottom: calc(82/ 1920 * 100vw);
}

.footer-cta p {
    font-size: calc(24 / 1920 * 100vw);
    margin-bottom: calc(82/ 1920 * 100vw);
    color: #fff;
}

.footer-bottom {
    background: #1a1a1a;
    height: calc(300 / 1920 * 100vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: calc(12 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
}

.logo span {
    font-size: calc(26/ 1920 * 100vw);
    vertical-align: middle;
    padding-left: calc(11/ 1920 * 100vw);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.logo img {
    height: calc(40/ 1920 * 100vw);
}

.newsList {
    background: #fff;
    border-bottom: 1px solid rgb(211 211 211);
    height: calc(90/ 1920 * 100vw);
    overflow: hidden;
    margin-bottom: 3vw;
}

.newsList .swiper-container * {
    height: calc(90/ 1920 * 100vw);
}

.newsList .swiper-container .swiper-slide {
    line-height: calc(90/ 1920 * 100vw);
    height: calc(90/ 1920 * 100vw);
    padding-right: calc(144 / 1920 * 100vw);
}

.newsList .swiper-container {
    width: calc(100% - calc(204/ 1920 * 100vw));
}

.newsList .swiper-container .swiper-button-next {
    width: calc(24/ 1920 * 100vw);
    height: calc(24/ 1920 * 100vw);
    right: 0;
    bottom: auto;
    margin: 0px;
    background: url(../images/down.png) no-repeat center center;
    background-size: 100%;
    top: auto;
    bottom: calc(24 / 1920 * 100vw);
}

.newsList .swiper-container .swiper-button-prev {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
    right: 0;
    bottom: auto;
    margin: 0px;
    background: url(../images/up.png) no-repeat center center;
    background-size: 100%;
    top: auto;
    bottom: auto;
    left: auto;
    top: calc(24 / 1920 * 100vw);
}

.section-header-type {
    display: flex;
    /*! align-items: center; */
    justify-content: space-between;
}

/* 解决方案：右对齐查看更多按钮 */
.section-header-type {
  position: relative; /* 为绝对定位子元素提供参考 */
  padding-right: 120px; /* 为按钮预留空间 */
}

.btn-more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  text-align: center;
  border: none;
  font-size: calc(16/1920*100vw);
}

.btn-more:hover {
  background-color: #0056b3;
}


.section-header-type h2 {
    font-size: calc(47/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: calc(67/ 1920 * 100vw);
    color: rgba(51,51,51,1);
    margin-bottom: calc(12/ 1920 * 100vw);
}

.section-header-type p {
    font-size: calc(22/ 1920 * 100vw);
    color: rgba(153,153,153,1);
}

.section-header-type .btn-more {
}

.prod-card .tit {
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: calc(30/ 1920 * 100vw);
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    color: #fff;
    font-weight: bold;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.list-solution .item.current .tit,.list-solution .item:hover .tit {
    font-size: calc(26/ 1920 * 100vw);
}

.list-solution .item.current .dec,.list-solution .item:hover .dec {
    opacity: 1;
}

.list-solution .item.current .num,.list-solution .item:hover .num {
    opacity: 1;
}

.list-solution {
    margin-top: calc(120/ 1920 * 100vw);
    display: flex;
}

.list-solution .item.current,.list-solution .item:hover {
    flex: 1.6;
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
}

.list-solution .item:nth-child(2n) {
    border-color: rgba(74,143,255,1)
}

.list-solution .item {
    flex: 1;
    background: rgba(11,39,85,0.72);
    backdrop-filter: blur(calc(20/ 1920 * 100vw));
    height: calc(470/ 1920 * 100vw);
    position: relative;
    text-align: center;
    padding-top: calc(52/ 1920 * 100vw);
    border-bottom: calc(6/ 1920 * 100vw) solid rgba(0,82,216,1);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.list-solution .icon {
    width: calc(66/ 1920 * 100vw);
    height: calc(66/ 1920 * 100vw);
    background: #fff;
    border-radius: calc(300/ 1920 * 100vw);
    margin: auto;
    position: relative;
}

.list-solution .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: calc(30/ 1920 * 100vw);
    height: calc(30/ 1920 * 100vw);
    object-fit: contain;
}

.list-solution .tit {
    padding-top: calc(30/ 1920 * 100vw);
    font-size: calc(16/ 1920 * 100vw);
    color: #fff;
}

.list-solution .dec {
    font-size: calc(14/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(20.27/ 1920 * 100vw);
    color: rgba(255,255,255,1);
    padding-top: calc(24/ 1920 * 100vw);
    text-align: left;
    padding-left: calc(47/ 1920 * 100vw);
    padding-right: calc(47/ 1920 * 100vw);
    opacity: 0;
}

.list-solution .num {
    font-size: calc(50/ 1920 * 100vw);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: calc(73/ 1920 * 100vw);
    color: rgba(255,255,255,1);
    position: absolute;
    right: calc(47/ 1920 * 100vw);
    bottom: calc(20/ 1920 * 100vw);
    opacity: 0;
}

.section-solutions .section-header-type * {
    color: #fff;
}

.section-news {
    /* padding-top:calc(160/ 1920 * 100vw);*/
    padding-bottom: 0;
}

.section-news .section-inner {
}

.section-news .section-header-type {
}

.section-news .section-header-type div {
}

.section-news .section-header-type h2 {
}

.section-news .section-header-type p {
}

.section-news .section-header-type .btn-more {
}

.section-news .tab {
}

.section-news .tab .hd {
    font-size: 0;
    padding-top: calc(30/ 1920 * 100vw);
    padding-bottom: calc(43/ 1920 * 100vw);
    text-align: center;
}

.section-news .tab .hd a {
    font-size: calc(22/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: calc(32/ 1920 * 100vw);
    color: rgba(102,102,102,1);
    margin: 0px calc(15/ 1920 * 100vw);
}

.section-news .tab .hd .current {
    color: rgba(0,82,216,1);
}

.section-news .tab .bd {
}

.section-news .tab .bd .model {
}

.section-news .swiper-container {
}

.section-news .swiper-wrapper {
}

.section-news .swiper-slide {
    padding-bottom: calc(80/ 1920 * 100vw);
}

.section-news .swiper-slide a {
}

.section-news .swiper-slide a * {
    display: block;
}

.section-news .swiper-slide .imgbox {
    overflow: hidden;
}

.section-news .swiper-slide img:hover {
    -webkit-transform: scale(1.05,1.05);
    -o-transform: scale(1.05,1.05);
    -moz-transform: scale(1.05,1.05);
    -ms-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

.section-news .swiper-slide img {
    width: 100%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section-news .swiper-slide .time {
    font-size: calc(13/ 1920 * 100vw);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: calc(19/ 1920 * 100vw);
    color: rgba(0,82,216,1);
    padding-bottom: calc(14/ 1920 * 100vw);
    float: right;
}

.section-news .swiper-slide .title {
    font-size: calc(18/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: calc(26/ 1920 * 100vw);
    color: rgba(51,51,51,1);
    margin-bottom: calc(10/ 1920 * 100vw); 
    padding-top: calc(26/ 1920 * 100vw);
}

.section-news .swiper-slide .more:hover {
    color: rgba(0,82,216,1);
    background: url(../images/more2.png) no-repeat right calc(2/ 1920 * 100vw);
    background-size: calc(15/ 1920 * 100vw);
    border-color: rgba(0,82,216,1);
}

.section-news .swiper-slide .more {
    font-size: calc(13/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(19/ 1920 * 100vw);
    color: rgba(51,51,51,1);
    display: inline-block;
    background: url(../images/more.png) no-repeat right calc(2/ 1920 * 100vw);
    padding-right: calc(29/ 1920 * 100vw);
    background-size: calc(15/ 1920 * 100vw);
    padding-bottom: calc(13/ 1920 * 100vw);
    border-bottom: calc(1/ 1920 * 100vw) solid transparent;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section-news .swiper-button-next:hover {
    background: url(../images/righthover.png) no-repeat center center;
    background-size: 100%;
}

.section-news .swiper-button-next {
    width: calc(60/ 1920 * 100vw);
    height: calc(60/ 1920 * 100vw);
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: auto;
    bottom: 0;
    right: 41%;
}

.section-news .swiper-button-prev:hover {
    background: url(../images/lefthover.png) no-repeat center center;
    background-size: 100%;
}

.section-news .swiper-button-prev {
    width: calc(60/ 1920 * 100vw);
    height: calc(60/ 1920 * 100vw);
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: auto;
    bottom: 0;
    left: 41%;
}

.section-case {
    background: url(../images/bg4.jpg) no-repeat center center;
    background-size: cover;
    /* padding-top:calc(160/ 1920 * 100vw);*/
    padding-bottom: 0;
}

.section-case .section-inner {
}

.section-case .section-header-type {
}

.section-case .section-header-type div {
}

.section-case .section-header-type h2 {
}

.section-case .section-header-type p {
}

.section-case .section-header-type .btn-more {
}

.section-case .tab {
    margin-top: calc(33/ 1920 * 100vw);
    position: relative;
    display: flex;
    justify-content: space-between;
}

.section-case .tab .hd {
    width: calc(712/ 1920 * 100vw);
}

.section-case .tab .hd a * {
    display: block;
}

.section-case .tab .hd a:last-child {
    margin: 0px;
}

.section-case .tab .hd a {
    display: block;
    display: flex;
    align-items: center;
    padding-bottom: calc(29/ 1920 * 100vw);
    margin-bottom: calc(29/ 1920 * 100vw);
    position: relative;
}

.section-case .tab .hd a.current .num,.section-case .tab .hd a:hover .num {
    -webkit-text-stroke: calc(1/ 1920 * 100vw) rgba(0,82,216,1);
    text-stroke: calc(2/ 1920 * 100vw) rgba(0,82,216,1);
}

.section-case .tab .hd a .num {
    font-size: calc(80/ 1920 * 100vw);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: calc(1/ 1920 * 100vw) rgba(51,51,51,1);
    text-stroke: calc(2/ 1920 * 100vw) rgba(51,51,51,1);
    opacity: .4;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section-case .tab .hd a .rig {
    padding-left: calc(45/ 1920 * 100vw);
}

.section-case .tab .hd a .rig .title {
    font-size: calc(18/ 1920 * 100vw);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: calc(26/ 1920 * 100vw);
    color: rgba(51,51,51,1);
}

.section-case .tab .hd a .rig .dec {
    padding-top: calc(7/ 1920 * 100vw);
}

.section-case .tab .hd a .rig .dec span {
    font-size: calc(14/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(20/ 1920 * 100vw);
    color: rgba(51,51,51,1);
    display: block;
    width: calc(400/ 1920 * 100vw);
}

.section-case .tab .bd {
    width: calc(604/ 1920 * 100vw);
}

.section-case .tab .bd .model {
    position: relative;
}

.section-case .tab .bd .model img {
    width: 100%;
    height: calc(574/ 1920 * 100vw);
    object-fit: cover;
}

.section-case .tab .bd .model .tit:after {
    content: "";
    width: calc(66/ 1920 * 100vw);
    height: calc(4/ 1920 * 100vw);
    opacity: 1;
    background: rgba(255,255,255,1);
    position: absolute;
    right: calc(21/ 1920 * 100vw);
    bottom: calc(36/ 1920 * 100vw);
}

.section-case .tab .bd .model .tit {
    position: absolute;
    bottom: 0;
    height: calc(134/ 1920 * 100vw);
    opacity: 1;
    background: rgba(0,82,216,1);
    width: 100%;
    left: 0;
    font-size: calc(20/ 1920 * 100vw);
    font-weight: 700;
    letter-spacing: 0px;
    line-height: calc(28/ 1920 * 100vw);
    color: rgba(255,255,255,1);
    padding-left: calc(47/ 1920 * 100vw);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-case .tab .hd a.current:after,.section-case .tab .hd a:hover:after {
    width: 100%;
}

.section-case .tab .hd a.current:before,.section-case .tab .hd a:hover:before {
    opacity: 1;
}

.section-case .tab .hd a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(1/ 1920 * 100vw);
    background: rgba(0,82,216,1);
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section-case .tab .hd a:before {
    content: "";
    width: calc(80.16/ 1920 * 100vw);
    height: calc(88.17/ 1920 * 100vw);
    position: absolute;
    background: url(../images/arr.png) no-repeat center center;
    background-size: 100%;
    height: 100%;
    right: calc(5/ 1920 * 100vw);
    top: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}

.section-partner {
    /* padding-top:calc(160/ 1920 * 100vw);*/
}

.section-partner .list {
    text-align: center;
    padding-top: calc(30/ 1920 * 100vw);
    /* padding-bottom:calc(190/ 1920 * 100vw);*/
}

.section-partner .list .pic {
    width: calc(142/ 1920 * 100vw);
    height: calc(62/ 1920 * 100vw);
    opacity: 1;
    border-radius: calc(10/ 1920 * 100vw);
    background: rgba(255,255,255,1);
    border: calc(1/ 1920 * 100vw) solid rgba(217,217,217,1);
    display: inline-block;
    margin: 0px calc(12/ 1920 * 100vw);
    margin-bottom: calc(30/ 1920 * 100vw);
    position: relative;
}

.section-partner .list .pic img {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 70%;
    height: calc(60/ 1920 * 100vw);
    object-fit: contain;
}

.footer-cta .list {
    font-size: 0;
}

.footer-cta .list a {
    width: calc(215/ 1920 * 100vw);
    line-height: calc(65/ 1920 * 100vw);
    opacity: 1;
    border-radius: calc(38/ 1920 * 100vw);
    background: rgba(255,255,255,1);
    display: inline-block;
    font-size: calc(22/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    padding-left: calc(87/ 1920 * 100vw);
    color: #000;
    margin: 0px calc(8/ 1920 * 100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.footer-cta .list a.a1 {
    background: url(../images/m1.png) no-repeat calc(38/ 1920 * 100vw) center #fff;
    background-size: calc(25/ 1920 * 100vw) !important;
}

.footer-cta .list a.a2 {
    background: url(../images/m2.png) no-repeat calc(38/ 1920 * 100vw) center #fff;
    background-size: calc(22/ 1920 * 100vw) !important;
}

.footer-cta .list a.a1:hover {
    background: url(../images/m1hover.png) no-repeat calc(38/ 1920 * 100vw) center rgb(0, 105, 230);
    color: #fff;
}
 
.footer-cta .list a.a2:hover {
    background: url(../images/m2hover.png) no-repeat calc(38/ 1920 * 100vw) center rgb(0, 105, 230);
    color: #fff;
}

.footer-bottom2:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: calc(318/ 1920 * 100vw) 0 0 calc(400/ 1920 * 100vw);
    border-color: transparent transparent transparent rgba(0,94,216,1);
    left: 0px;
    bottom: 0px;
    display: none;
}

.footer-bottom2 {
    background: rgba(34,42,53,1);
    position: relative;
}

.footer-bottom2 .block1 {
    padding-top: calc(64/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner {
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(35/ 1920 * 100vw);
    border-bottom: calc(1/ 1920 * 100vw) solid rgba(74,79,88,1);
}

.footer-bottom2 .block1 .section-inner .left {
}

.footer-bottom2 .block1 .section-inner .left .logo2 img {
    height: calc(40/ 1920 * 100vw);
    margin-right: 7px;
}

.footer-bottom2 .block1 .section-inner .left .logo2 {
    display: inline-block;
    padding-bottom: calc(22/ 1920 * 100vw);
    border-bottom: calc(1/ 1920 * 100vw) solid rgba(255,255,255,1);
    margin-bottom: calc(14/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .left .logo2 {
font-size: calc(26/ 1920 * 100vw);
vertical-align: middle;
padding-left: calc(11/ 1920 * 100vw);
color: #fff;
}


.footer-bottom2 .block1 .section-inner .left .dec {
    font-size: calc(18/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: calc(5.04/ 1920 * 100vw);
    line-height: calc(26/ 1920 * 100vw);
    color: rgba(255,255,255,1);
}

.footer-bottom2 .block1 .section-inner .left .list {
    display: flex;
    padding-top: calc(50/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .left .list p {
    display: flex;
    align-items: center;
    margin-right: calc(70/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .left .list p .icon img {
    width: calc(41/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .left .list p .icon {
    margin-right: calc(13/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .left .list p .ri {
}

.footer-bottom2 .block1 .section-inner .left .list p .ri .tit {
    font-size: calc(12/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(17/ 1920 * 100vw);
    color: rgba(132,137,143,1);
    display: block;
}

.footer-bottom2 .block1 .section-inner .left .list p .ri .dec {
    font-size: calc(16/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: calc(23/ 1920 * 100vw);
    color: rgba(255,255,255,1);
}

.footer-bottom2 .block1 .section-inner .right {
    width: calc(181/ 1920 * 100vw);
    border-radius: calc(5/ 1920 * 100vw);
    background: #fff;
    text-align: center;
    padding: calc(10/ 1920 * 100vw);
}

.footer-bottom2 .block1 .section-inner .right img {
    width: 100%;
}

.footer-bottom2 .block1 .section-inner .right .tit {
    font-size: calc(22/ 1920 * 100vw);
    font-weight: 500;
    letter-spacing: 0px;
    line-height: calc(32/ 1920 * 100vw);
    color: rgba(51,51,51,1);
    padding-top: calc(7/ 1920 * 100vw);
}

.footer-bottom2 .block2 {
}

.footer-bottom2 .block2 .section-inner {
    font-size: calc(16/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(23/ 1920 * 100vw);
    color: rgba(255,255,255,1);
    text-align: right;
    padding-top: calc(34/ 1920 * 100vw);
    padding-bottom: calc(124/ 1920 * 100vw);
}

.footer-bottom2 .block2 .section-inner a {
    color: #fff;
}

.footer-bottom2 .block3 {
    text-align: right;
}

.footer-bottom2 .block3 .section-inner {
}

.footer-bottom2 .block3 .section-inner p {
    font-size: calc(14/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px;
    line-height: calc(20/ 1920 * 100vw);
    color: rgba(74,79,88,1);
    display: inline-block;
    padding-left: calc(64/ 1920 * 100vw);
    padding-bottom: calc(32/ 1920 * 100vw);
}

.footer-bottom2 .block3 .section-inner p img {
    height: calc(20/ 1920 * 100vw);
}

.section { 
    overflow: hidden;
}

.posbottom {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
}

.sideMenu {
    position: fixed;
    height: 100vh;
    top: 0px;
    z-index: 999;
    left: calc(-87/ 1920 * 100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.sideMenu .list {
    display: block;
    height: 100vh;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sideMenu .list li{
    position: relative;
}
.sideMenu .list li:hover dl{
    left:calc(90/ 1920 * 100vw);
    visibility:visible;
    opacity:1;
    z-index:5;

}
.sideMenu .list li dl{position: absolute;top: 42%;left: 0%;-o-transform: translate(0%, -50%);-webkit-transform: translate(0%, -50%);-moz-transform: translate(0%, -50%);-ms-transform: translate(0%, -50%);transform: translate(0%, -50%);left: calc(103/ 1920 * 100vw);width: 270%;background: #fff;padding: calc(7/ 1920 * 100vw) calc(12/ 1920 * 100vw);-webkit-transition: all 0.2s;-o-transition:all 0.2s;-moz-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;visibility: hidden;opacity: 0;z-index: -1;}
.sideMenu .list li dl:after{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: calc(8/ 1920 * 100vw) calc(10/ 1920 * 100vw) calc(8/ 1920 * 100vw) 0;
    border-color: transparent #fff transparent transparent;
    content:"";
    position:absolute;
    position:absolute;
    top: 50%;
    left: calc(-10/ 1920 * 100vw);
    -o-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
    .sideMenu .list li dl dd a:hover{
background:#000;
    color:#fff !important;}
.sideMenu .list li dl dd a{display: block;font-size: calc(16/ 1920 * 100vw);line-height: 2.5;color: #000 !important;text-align: center;-webkit-transition: all 0.2s;-o-transition:all 0.2s;-moz-transition:all 0.2s;-ms-transition:all 0.2s;transition:all 0.2s;}
.sideMenu .list li > a {
    display: block;
    font-size: calc(18/ 1920 * 100vw);
    font-weight: 400;
    letter-spacing: 0px; 
    line-height: calc(23/ 1920 * 100vw);
    color: #000;
    margin: calc(10/ 1920 * 100vw) 0px;
    padding-bottom: calc(10/ 1920 * 100vw);
    border-bottom: calc(1/ 1920 * 100vw) solid transparent;
    transform-origin: center center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.sideMenu .list .active a {
    border-bottom: calc(1/ 1920 * 100vw) solid #fff;
  
}

.fp-viewing-page1 .sideMenu {
    left: calc(261/ 1920 * 100vw);
}

.fp-viewing-page8 .sideMenu .list a,.fp-viewing-page4 .sideMenu .list a,.fp-viewing-page1 .sideMenu .list a {
    color: rgb(255 255 255 / 100%);
}

.fp-auto-height .fp-slide,.fp-auto-height .fp-tableCell,.fp-auto-height.fp-section {
    height: auto !important;
}

.centerSearch {
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
}

.centerSearch .close {
    right: 10px;
    top: 10px;
    right: 10px;
    top: 10px;
    position: absolute;
    cursor: pointer;
    background: url(../images/close.png) no-repeat center center;
    background-size: 100%;
    width: 30px;
    height: 30px;
}

.centerSearch .center {
}

.centerSearch {
    display: none;
}

.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background-color: #000;
    background-color: rgba(0,0,0,0.8);
    transition: all calc(600/1920*100vw) ease-in-out;
    -webkit-transition: all calc(600/1920*100vw) ease-in-out;
    -moz-transition: all calc(600/1920*100vw) ease-in-out;
    -ms-transition: all calc(600/1920*100vw) ease-in-out;
    -o-transition: all calc(600/1920*100vw) ease-in-out;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-filter: alpha(opacity=0);
    visibility: hidden
}

.form-block {
    padding: calc(150/1920*100vw) 0 calc(90/1920*100vw);
    margin-right: calc(60/1920*100vw);
    width: 53.5%;
    position: absolute;
    top: 50%;
    left: 50%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin: 0;
}

.form-block .title {
    font-size: calc(14/1920*100vw);
    color: #fff;
    color: rgba(255,255,255,0.3);
    line-height: calc(24/1920*100vw);
    margin-bottom: calc(6/1920*100vw);
    letter-spacing: calc(6/1920*100vw)
}

.form-block .searchform {
    padding-bottom: calc(4/1920*100vw);
    position: relative;
    border: none;
    border-bottom: calc(2/1920*100vw) solid #f8f9fd;
    background: none;
    color: inherit
}

.form-block .searchform .input {
    font-size: 20px;
    color: #fff;
    font-style: normal;
    text-transform: uppercase;
    width: 100%;
    padding: 0 calc(55/1920*100vw) 0 0;
    border: none;
    background: none;
    line-height: 70px;
}

.form-block .searchform .input::-webkit-input-placeholder {
    color: #fff
}

.form-block .searchform .input:-moz-placeholder {
    color: #fff
}

.form-block .searchform .input::-moz-placeholder {
    color: #fff
}

.form-block .searchform .input:-ms-input-placeholder {
    color: #fff
}

.form-block .searchform .searchsubmit {
    width: calc(28/1920*100vw);
    height: calc(28/1920*100vw);
    background: url(../images/search.png) no-repeat;
    position: absolute;
    right: 0;
    bottom: calc(12/1920*100vw);
    border: none;
    background-size: 100% !important;
}

.form-block .searchform:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: calc(2/1920*100vw);
    background: #008bd5;
    transition: all calc(700/1920*100vw) ease;
    -webkit-transition: all calc(700/1920*100vw) ease;
    -moz-transition: all calc(700/1920*100vw) ease;
    -ms-transition: all calc(700/1920*100vw) ease;
    -o-transition: all calc(700/1920*100vw) ease
}

.form-block .searchform.focus:before {
    width: 100%
}

.search-popup.active {
    opacity: 1;
    visibility: visible
}

.slogan {
    overflow: hidden
}

.slogan .h1 {
    font-size: calc(42/1920*100vw);
    color: #383837;
    line-height: 1.2;
    font-weight: 300;
    padding: min(3.4375000000000004vw,calc(66/1920*100vw)) 0 min(3.4375000000000004vw,calc(66/1920*100vw));
    position: relative
}

.pls-nav-tag-text {
    height: calc(12/1920*100vw);
    -webkit-transform: scale(0.8333333333);
    transform: scale(0.8333333333);
}

.pls-nav-search-result {
    padding: calc(10/1920*100vw);
    background: #fff;
    transition: opacity calc(0.3/1920*100vw) ease-in-out;
    margin-top: calc(62/1920*100vw);
}

.pls-nav-search-result-title {
    margin-bottom: calc(12/1920*100vw);
    font-size: calc(14/1920*100vw);
    color: #5f7292;
    line-height: calc(22/1920*100vw);
    padding: calc(10/1920*100vw) calc(10/1920*100vw) 0;
    font-weight: 500;
}

.pls-nav-search-result .pls-nav-icon-btn,.pls-nav-search-result .pls-nav-tag {
    margin-left: calc(12/1920*100vw);
}

.pls-nav-search-links {
    display: flex;
    flex-wrap: wrap;
    padding: 0 calc(4/1920*100vw) 0 calc(10/1920*100vw);
    margin-bottom: calc(12/1920*100vw);
}

.pls-nav-search-links:last-child {
    margin-bottom: 0;
}

.pls-nav-search-links.tags .pls-nav-search-link {
    position: relative;
}

.pls-nav-search-links.tags .pls-nav-search-link>a {
    max-width: calc(140/1920*100vw);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #f1f2f5;
    border-radius: calc(2/1920*100vw);
    height: calc(24/1920*100vw);
    line-height: calc(24/1920*100vw);
    font-size: calc(12/1920*100vw);
    color: #181818;
    padding: 0 calc(8/1920*100vw);
    box-sizing: border-box;
}

.pls-nav-search-links.tags .pls-nav-search-link:hover>a {
    color: #0052d9;
}

.pls-nav-search-links.tags .pls-nav-search-link:hover .pls-nav-search-link-opt {
    opacity: 1;
    pointer-events: auto;
}

.pls-nav-search-link {
    margin-right: calc(12/1920*100vw);
    margin-bottom: calc(8/1920*100vw);
}

.pls-nav-search-link>a {
    display: block;
    font-size: calc(14/1920*100vw);
    line-height: calc(22/1920*100vw);
    color: #181818;
}

.pls-nav-search-link>a:hover {
    color: #0052d9;
}

.pls-nav-tag {
    box-sizing: border-box;
    padding: 0 calc(2/1920*100vw);
    height: calc(12/1920*100vw);
    background: #fff;
    border: calc(1/1920*100vw) solid #f64041;
    box-shadow: calc(2/1920*100vw) calc(2/1920*100vw) calc(4/1920*100vw) 0 rgba(55,99,170,.31);
    background: #fff;
    border-radius: calc(6/1920*100vw);
    border-bottom-left-radius: 0;
    position: relative;
    top: calc(-4/1920*100vw);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f64041;
    font-weight: bold;
    font-size: calc(12/1920*100vw);
    line-height: calc(12/1920*100vw);
    margin-left: calc(8/1920*100vw);
}

.red-outline {
    background: transparent;
    border-radius: calc(2/1920*100vw);
    box-shadow: none;
    border-color: #f64041;
    color: #f64041;
}

.pls-nav-search-result .pls-nav-icon-btn,.pls-nav-search-result .pls-nav-tag {
    margin-left: calc(12/1920*100vw);
}

.search-popup .form-block .searchform:before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: calc(2/1920*100vw);
    background: #008bd5;
    transition: all calc(700/1920*100vw) ease;
    -webkit-transition: all calc(700/1920*100vw) ease;
    -moz-transition: all calc(700/1920*100vw) ease;
    -ms-transition: all calc(700/1920*100vw) ease;
    -o-transition: all calc(700/1920*100vw) ease;
}

.search-popup .form-block .searchform.focus:before {
    width: 100%
}

.search-popup.active {
    opacity: 1;
    visibility: visible
}

.TopMenu {
    position: fixed;
 
    left: 0;
    top: 0px;
    z-index: 555;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    left: 60%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
}

.fp-viewing-page1 .TopMenu {
    top: calc(-116/1920*100vw);
}

.TopMenu ul {
    font-size: 0;
}

.TopMenu li {
    display: inline-block;
}

.TopMenu li a {
    display: block;
    line-height: calc(100/1920*100vw);
    color: #fff;
    font-size: calc(17/1920*100vw); 
    letter-spacing: 0;
    white-space: nowrap;
    padding: 0px calc(9/1920*100vw);
}

.wap_nav .right {
    position: absolute;
    right: 56px;
    display: flex;
    align-items: center;
    height: 50px;
    color: #fff;
    top: 0;
}

.wap_nav .searchBtn {
    width: 25px;
    height: 25px;
    background: url(../images/search.png) no-repeat center center;
    background-size: 100%;
}

.wap_nav .right .en {
    color: #fff;
    font-size: 18px;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #fff;
}

             :root {
            --primary-color: #0d6efd; /* 修改为主蓝色 #0d6efd */
            --accent-color: #e63946; /* 强调色 */
            --light-gray: #f8f9fa;
            --dark-gray: #343a40;
        }
                 .main-container {
                     background-color: white;
                     border-radius: 8px;
                     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
                     overflow: hidden;
                     margin-top: 2rem;
                     margin-bottom: 2rem;
                 }
                 
                 /* 左侧内容区域样式 */
                 .content-section {
                     padding: 2.5rem 2rem;
                 }
                 
                 .company-title {
                     font-weight: 700;
                     font-size: 41px;
                     margin-bottom: 1.5rem;
                 }
                 
                 .company-subtitle {
                     color: var(--accent-color);
                     font-weight: 600;
                     font-size: 21px;
                     margin-bottom: 1.5rem;
                     padding-bottom: 1rem;
                     border-bottom: 2px solid #eee;
                 }
                 
                 .company-intro {
                     line-height: 36px;
                     margin-bottom: 2rem;
                     color: #555;
                     font-size: 20px;
                 }
                 
                 .stats-section {
                     border-radius: 8px;
                     padding: 1.5rem;
                     margin: 3rem 0;
                     background: #fff;
                 }
                 
                 .stat-item {
                     text-align: center;
                     padding: 0.5rem;
                     border-right: 1px solid #ddd;
                 }
                 
                 .stat-number {
                     font-size: 30px;
                     font-weight: 700;
                     color: var(--primary-color);
                     line-height: 1;
                 }
                 
                 .stat-label {
                     font-size: 16px;
                     color: #666;
                     margin-top: 11px;
                 }
                 
                 .year-highlight {
                     background-color: var(--primary-color);
                     color: white;
                     border-radius: 8px;
                     padding: 1.2rem;
                     text-align: center;
                     margin-bottom: 1.5rem;
                 }
                 
                 .year-number {
                     font-size: 2.8rem;
                     font-weight: 800;
                     line-height: 1;
                 }
                 
                 .year-text {
                     font-size: 1.1rem;
                     margin-top: 0.5rem;
                 }
                 
                 /* 修改按钮样式 - 公司资质和生产基地为线框样式 */
                 .btn-custom {
                     background-color: var(--primary-color);
                     color: white;
                     border: none;
                     padding: 0.8rem 1.5rem;
                     border-radius: 4px;
                     font-weight: 500;
                     transition: all 0.3s;
                     width: 100%;
                     margin-bottom: 0.8rem;
                     font-size: 16px;
                 }
                 
                 .btn-custom-outline {
                     background-color: transparent;
                     color: var(--primary-color);
                     border: 2px solid var(--primary-color);
                     padding: 0.8rem 1.5rem;
                     border-radius: 4px;
                     font-weight: 500;
                     transition: all 0.3s;
                     width: 100%;
                     margin-bottom: 0.8rem;
                     font-size: 16px;
                 }
                 
                 .btn-custom:hover {
                     background-color: #0b5ed7;
                     color: white;
                     transform: translateY(-2px);
                 }
                 
                 .btn-custom-outline:hover {
                     background-color: rgba(13, 110, 253, 0.1);
                     color: var(--primary-color);
                     transform: translateY(-2px);
                 }
                 
                 .btn-custom i, .btn-custom-outline i {
                     margin-right: 8px;
                 }
                 
                 /* 右侧背景区域样式 */
                 .background-section {
            
            
                     background-position: center;
                     color: white;
                     padding: 2.5rem 2rem;
                     display: flex;
                     flex-direction: column;
                     justify-content: space-between;
                     min-height: 650px;
                 }
                 
                 .ria-logo {
                     width: 120px;
                     height: 120px;
                     background-color: rgba(255, 255, 255, 0.9);
                     border-radius: 50%;
                     display: flex;
                     align-items: center;
                     justify-content: center;
                     margin: 0 auto 2rem;
                     font-weight: 700;
                     font-size: 2.5rem;
                     color: var(--primary-color);
                     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                 }
                 
                 .location-marker {
                     text-align: center;
                     margin-top: 2rem;
                 }
                 
                 .location-marker i {
                     font-size: 2.5rem;
                     margin-bottom: 1rem;
                 }
                 
                 .location-text {
                     font-size: 1.1rem;
                 }
                 
                 .eAS-badges {
                     display: flex;
                     justify-content: center;
                     gap: 1rem;
                     margin-top: 2rem;
                 }
                 
                 .eAS-badge {
                     background-color: white;
                     color: var(--primary-color);
                     width: 60px;
                     height: 60px;
                     border-radius: 50%;
                     display: flex;
                     align-items: center;
                     justify-content: center;
                     font-weight: 700;
                     font-size: 1.2rem;
                     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
                 }
                 
                 /* 响应式调整 */
                 @media (max-width: 992px) {
                     .background-section {
                         min-height: 400px;
                     }
                 }
                 
                 @media (max-width: 768px) {
                     .company-title {
                         font-size: 2rem;
                     }
                     
                     .company-subtitle {
                         font-size: 1.1rem;
                     }
                     
                     .content-section, .background-section {
                         padding: 1.5rem 1.2rem;
                     }
                 }
                 
              
 /* 弹窗样式 */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 8px;
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
}

.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.modal-content input,
.modal-content textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.modal-content button {
  background-color: #007bff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
} 

/* 通用图片自适应样式 */
.neirong img {
    max-width: 100%;       /* 图片最大宽度不超过容器宽度 */
    height: auto;          /* 高度自动，保持宽高比 */
    display: block;        /* 避免图片下方产生空隙 */
    margin: 0 auto;        /* 水平居中 */
}

/* 如果图片本身有inline样式，可以增加优先级 */
img[style*="text-align"] {
    max-width: 100% !important;
    height: auto !important;
}

/* 针对移动端响应式优化 */
@media screen and (max-width: 768px) {
    .neirong img {
        max-width: 100%;
    }
    

}


.first-pic-container {
  display: flex;
  justify-content: center;  /* 水平居中 */
  align-items: center;       /* 垂直居中 */
  width: 100%;
  margin: 0 auto 30px;
  padding: 0 15px;
  box-sizing: border-box;
  flex-wrap: wrap; /* 防止换行问题 */
}

.first-pic-container .pic {
  max-width: 100%;

  width: auto;
  display: block; /* 改为block */
  text-align: center; /* 图片容器内部文字居中 */
  margin-bottom: calc(10/ 1920 * 100vw) !important;
}

.first-pic-container img {

  max-height: 100px;
  display: inline-block; /* 或block */
  margin: 0 auto; /* 确保图片在.pic容器内居中 */
}

/* 针对移动端响应式优化 */
@media screen and (max-width: 768px) {
    .first-pic-container {

    margin: 0 auto 10px;

}
.first-pic-container img {
  
  max-height: 80px;
  display: inline-block; /* 或block */
  margin: 0 auto; /* 确保图片在.pic容器内居中 */
}
    }
    


/* =========================
   手机端：标题强制两行显示
   ========================= */
@media (max-width: 768px) {

  /* 1️⃣ 解除父级不换行限制（关键） */
  .swiper-slide,
  .swiper-wrapper,
  .ticker-text {
    white-space: normal !important;
  }

  /* 2️⃣ 标题两行显示 */
  .ticker-text a {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    white-space: normal !important;
    word-break: break-all;
    line-height: 1.5;
  }

  /* 3️⃣ slide 高度自适应（防裁剪） */
  .swiper-slide {
    height: auto !important;
    min-height: 58px;
  }
}

/* vertical */
 
