/* 公共样式 */

html {
    scroll-behavior: smooth;
}

 ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

html {
    scroll-behavior: smooth;
}

 ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #535353;
}

 ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #EDEDED;
}

.wp {
    padding: 0;
    width: 83%;
    margin: 0 auto;
    max-width: 1600px;
    min-width: 1200px;
}

.wp .titledemo {
    animation-name: fadeInUp;
    visibility: visible;
    padding: 40px 0;
}

.wp .titledemo .titlepic {
    display: block;
    margin: 0 auto;
}

.wp .titledemo .title {
    font-size: calc(1vw + 20.8px);
    font-weight: bold;
    color: #000;
    text-align: center;
    margin: -36px 0 0 0;
}


/* * {
transition: all 0.6s;
} */


/* 汉堡菜单icon */

.hamburger .line {
    width: 0.56rem;
    height: 3px;
    background-color: #e50012;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-11 {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#hamburger-11.is-active {
    animation: smallbig 0.6s forwards;
}

@keyframes smallbig {
    0%,
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
}

#hamburger-11.is-active .line:nth-child(1),
#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

#hamburger-11.is-active .line:nth-child(1) {
    -webkit-transform: translateY(12px) rotate(45deg);
    -ms-transform: translateY(12px) rotate(45deg);
    -o-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
}

#hamburger-11.is-active .line:nth-child(2) {
    -webkit-transform: translateY(1px) rotate(-45deg);
    -ms-transform: translateY(1px) rotate(-45deg);
    -o-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
}

#hamburger-11.is-active .line:nth-child(3) {
    width: 0;
}


/* 导航栏 */

header {
    height: 160px;
    background: #fff;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 160px;
    background: #fff;
    transition: all 0.6s;
    top: 0;
}


/* header .logo {
padding: 0.22rem 0 0 0.1rem;
} */

header .logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 65.625vw;
    /* max-width: 1050px; */
    min-width: 800px;
}

header .vline {
    width: 1px;
    height: 60px;
    display: block;
    background: #1b254b;
    margin: 0 45px;
}

header .logo img {
    max-width: 100%;
}

header .line {
    display: block;
    height: 1px;
    background: #ddd;
    width: 100%;
}

header .wp .wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0;
    align-items: center;
    height: 100px;
}

header .wp .wrap .phonebox {
    position: relative;
}

header .wp .wrap .phonebox::before {
    content: '';
    width: 61px;
    height: 61px;
    background: url(../images/phoneicon.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: -70px;
}

header .wp .wrap .phonebox span {
    font-size: 18px;
    color: #333;
}

header .wp .wrap .phonebox p {
    font-size: 36px;
    color: #4b9d3d;
    font-weight: bold;
    line-height: 1;
}

header .wp nav ul {
    display: flex;
    height: 60px;
    align-items: center;
    justify-content: center;
    position: relative;
}

header .wp nav ul .item {
    position: relative;
    width: 100px;
    text-align: center;
    height: 100%;
    line-height: 60px;
    margin: 0 1vw;
}

header .wp nav ul .item a {
    font-size: calc(0.5vw + 8.4px);
    color: #000;
    text-align: center;
}

header .wp nav ul .item .navarr {
    display: none;
    position: absolute;
    right: -4px;
    top: 43%;
    z-index: 99;
    transition: all 0.4s;
}

header .wp nav ul .item .subbox {
    width: 100%;
    position: fixed;
    left: 0;
    height: 0px;
    top: 160px;
    background: #fff;
    transition: all 0.4s;
    overflow: hidden;
    box-shadow: 0px 20px 46px rgba(0, 0, 0, 0.1);
}

header .wp nav ul .item i {
    display: block;
    height: 3px;
    width: 0;
    left: 50%;
    position: absolute;
    background-color: #4b9d3d;
    bottom: 8px;
    transition: all 0.2s;
    transform: translateX(-50%);
}

header .wp nav ul .item:hover i {
    width: 60%;
    transition: all 0.2s;
}

header .wp nav ul .item:hover .subbox {
    height: 280px;
    transition: all 0.4s;
}

header .wp nav ul .item:hover .navarr {
    transition: all 0.4s;
    transform: rotate(180deg);
}

header .wp nav ul .item .subbox .list {
    display: flex;
    padding: 30px 0 0 0;
    width: 83%;
    margin: 0 auto;
    max-width: 1600px;
    min-width: 1200px;
}

header .wp nav ul .item .subbox .list .subitem {
    width: calc(100% / 5 - 10px);
    margin: 0 10px 0 0;
}

header .wp nav ul .item .subbox .list .subitem:last-child {
    margin: 0;
}

header .wp nav ul .item .subbox .list .subitem .pbox {
    width: 100%;
    height: 9.375vw;
    min-height: 150px;
    max-height: 180px;
    overflow: hidden;
}

header .wp nav ul .item .subbox .list .subitem .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

header .wp nav ul .item .subbox .list .subitem .pbox:hover img {
    transition: all .6s;
    transform: scale(1.02);
}

header .wp nav ul .item .subbox .list .subitem .tbox {
    width: 100%;
    text-align: center;
    padding: 2px 0;
}

header .wp nav ul .item .subbox .list .subitem .tbox .name {
    font-size: calc(0.5vw + 8.4px);
    color: #000000;
}

header .wp nav ul .item .subbox .list .subitem:hover .tbox .name {
    color: #4b9d3d;
}


/* header .wp nav ul .item>a:hover {
font-weight: bold;
color: #e50012;
} */


/* PC-banner */

.banner .null {
    height: 160px;
}

.banner .banpic {
    max-width: 100%;
}

.subnav {
    height: 0px;
    overflow: hidden;
}

.banner .swiper-slide {
    overflow: hidden;
}

.indexban .swiper-slide img {
    animation: mymove 12s infinite;
    -webkit-animation: mymove 12s infinite;
    animation-direction: alternate;
    animation-timing-function: ease;
    -webkit-animation: mymove 12s infinite;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: ease;
}

@keyframes mymove {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}


/* banner */

.banner {
    line-height: 0.6
}

.banner .swiper-pagination-bullet {
    background: #cacbce;
    width: 17px;
    height: 17px;
}

.banner .swiper-pagination-bullet-active {
    background: #4b9d3d;
    width: 16px;
    height: 16px;
    border: 1px solid #444;
}

.banner .swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px;
}

.banner .swiper-button-prev {
    left: 0;
    top: 40%;
}

.banner .swiper-button-prev:after {
    content: '';
    width: 38px;
    height: 76px;
    background: url(../images/banarr.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.banner .swiper-button-next {
    right: 0;
    top: 40%;
}

.banner .swiper-button-next:after {
    content: '';
    width: 38px;
    height: 76px;
    background: url(../images/banarr.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
}

.joinus {
    position: relative;
    height: 53.906vw;
    min-height: 800px;
    max-height: 1035px;
    background: url(../images/join/bg.jpg);
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
}

.joinus .wp .tbox {
    padding: 150px 0 0 0;
}

.joinus .wp .tbox .name {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.joinus .wp .tbox .desc {
    font-size: 20px;
    color: #fff;
}

.joinus .cartip {
    width: 625px;
    padding: 0 0 0 185px;
    height: 210px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    z-index: 5;
    bottom: 30%;
}

.joinus .cartip .title {
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}

.joinus .cartip .more {
    font-size: 24px;
    color: #1b254b;
    background: #fff;
    width: 190px;
    height: 50px;
    border-radius: 25px;
    text-align: center;
    line-height: 50px;
    display: block;
    margin: 20px 0 0 0;
}

.joinus .cloud {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -36%;
    z-index: 0;
}

.joinus .micon {
    position: absolute;
    right: 0;
    bottom: 28%;
    z-index: 1;
}

.joinus .micon:hover {
    animation: pulse 1.2s;
}


/* Ripple Out */

@-webkit-keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

@keyframes hvr-ripple-out {
    100% {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0;
    }
}

.hvr-ripple-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

.hvr-ripple-out:before {
    content: '';
    position: absolute;
    border: #fff solid 2px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    border-radius: 50px;
}

.hvr-ripple-out:hover:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:active:before {
    -webkit-animation-name: hvr-ripple-out;
    animation-name: hvr-ripple-out;
}


/*页码*/

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #efefef;
    text-align: center;
    line-height: 30px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: #1b254b;
    color: #fff;
}

.program {
    height: 64.2185vw;
    min-height: 1200px;
    max-height: 1233px;
    background: url(../images/program/bg.jpg) no-repeat center;
    background-size: contain;
    overflow: hidden;
    position: relative;
}

.program .wp .titlebox {
    padding: 76px 0 0 0;
}

.program .wp .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.program .wp .titlebox .desc {
    font-size: 20px;
    color: #555;
}

.program .tbox .title {
    font-size: 36px;
    color: #1b254b;
    font-weight: bold;
}

.program .tbox .desc {
    font-size: 24px;
    color: #1b254b;
    max-width: 390px;
    margin: 0 0 110px 0;
}

.program .tbox .more {
    font-size: 20px;
    color: #1b254b;
    position: relative;
    padding: 48px 0 0 90px;
}

.program .t1 {
    position: absolute;
    bottom: 17%;
    left: 8%;
    z-index: 992;
    user-select: none;
    -webkit-user-select: none;
}

.program .t2 {
    position: absolute;
    z-index: 99;
    left: 38%;
    top: 30%;
    z-index: 992;
    user-select: none;
    -webkit-user-select: none;
}

.program .t2 .desc {
    margin: 0 0 50px 0;
}

.program .t3 {
    position: absolute;
    z-index: 99;
    bottom: 19%;
    right: 13%;
    z-index: 992;
    user-select: none;
    -webkit-user-select: none;
}

.program .tbox .more::before {
    content: '';
    width: 60px;
    height: 60px;
    background: url(../images/circle.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 30px;
}

.program .tbox:hover .more::before {
    background: url(../images/circle2.png) no-repeat center;
}

.program .cirpic {
    min-width: 1150px;
}

.program .sbg {
    position: absolute;
    z-index: 991;
    opacity: 0;
    transition: all 0.4s;
}


/* .program .sbg:hover {
opacity: 1;
transition: all 0.4s;
} */

.program .sit1 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 37%;
    transition: all 0.4s;
}

.program .s1bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 37%;
}

.program .sit2 {
    position: absolute;
    bottom: 40.5%;
    left: 19.5%;
    width: 61.458%;
    transition: all 0.4s;
}

.program .s2bg {
    position: absolute;
    bottom: 40.5%;
    left: 19.5%;
    width: 61.458%;
}

.program .sit3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36.83%;
    transition: all 0.4s;
}

.program .s3bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36.83%;
}

.program .sit4 {
    position: absolute;
    bottom: -17.5%;
    left: 29.93%;
    width: 40.729%;
    max-height: 782px;
    max-width: 782px;
    transition: all 0.4s;
}

.partner {
    /* height: 37.5vw;
min-height: 700px;
max-height: 722px; */
    height: 47.91vw;
    min-height: 900px;
    max-height: 922px;
    background-image: url(../images/partner/bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    animation: mybgchange 20s alternate infinite;
}

@keyframes mybgchange {
    0% {
        background-size: calc(100%);
    }
    100% {
        background-size: calc(108%);
    }
}

.partner .wp {
    height: 100%;
}

.partner .wp .tbox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.partner .wp .tbox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
    margin: 0 0 36px 0;
}

.partner .wp .tbox .desc {
    font-size: 26px;
    color: #1b254b;
    margin: 0 0 13px 0;
}

.partner .wp .tbox .cont {
    font-size: 20px;
    color: #1b254b;
}

.partner .wp .tbox .more {
    display: flex;
    width: 308px;
    height: 80px;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    color: #fff;
    font-size: 20px;
    border-radius: 40px;
    margin: 40px 0 0 0;
}


/* Float Shadow */

.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(27, 37, 75, 0.1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: -webkit-radial-gradient(center, ellipse, rgba(27, 37, 75, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(27, 37, 75, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    /* W3C */
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform, opacity;
    transition-property: transform, opacity;
}

.hvr-float-shadow:hover,
.hvr-float-shadow:focus,
.hvr-float-shadow:active {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    /* move the element up by 5px */
}

.hvr-float-shadow:hover:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:active:before {
    opacity: 1;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    /* move the element down by 5px (it will stay in place because it's attached to the element that also moves up 5px) */
}

.indexpro .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
    align-items: center;
}

.indexpro .wp .top .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.indexpro .wp .top .titlebox .desc {
    font-size: 24px;
    color: #555;
}

.indexpro .wp .top .more {
    width: 207px;
    height: 60px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
}


/* .indexpro .wp .listpic {
    max-width: 100%;
    margin: 10px auto 70px;
} */

.indexpro .wp .wrap {
    padding: 0 0 80px 0;
}

.indexpro .wp .wrap .module {
    display: flex;
    justify-content: flex-start;
    max-width: 80%;
    margin: 0 auto;
}

.indexpro .wp .wrap .module .fst {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #dce0eb;
    width: 20%;
    border-bottom: 1px solid rgba(27, 37, 75, 0.1);
}

.indexpro .wp .wrap .module .fst .item {
    font-size: calc(0.5vw + 8.4px);
    color: #1b254b;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.indexpro .wp .wrap .module .fst .item img {
    width: 30px;
    margin: 0 10px 0 0;
}

.indexpro .wp .wrap .module .allin {
    width: 80%;
    background: #f1f3f9;
}

.indexpro .wp .wrap .module .allin .itemlist {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.indexpro .wp .wrap .module .allin .itemlist:last-child {
    border-bottom: none;
}

.indexpro .wp .wrap .module .allin .itemlist .sec {
    height: 60px;
    width: 220px;
    min-width: 150px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-right: 1px solid rgba(27, 37, 75, .1);
    border-bottom: 1px dotted rgba(27, 37, 75, .1);
    flex-grow: 1;
    padding: 0 0 0 40px;
}

.indexpro .wp .wrap .module .allin .itemlist .sec .item {
    font-size: calc(0.5vw + 6.4px);
    color: #1b254b;
    font-weight: bold;
}

.indexpro .wp .wrap .module .allin .itemlist .thr {
    display: flex;
    height: 60px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    border-bottom: 1px dotted rgba(27, 37, 75, .1);
    flex-grow: 1;
}

.indexpro .wp .wrap .module .allin .itemlist .thr .item {
    font-size: calc(0.5vw + 5.4px);
    color: #1b254b;
    width: 205px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 0 0 40px;
}


/* .indexpro .wp .wrap .module:last-child .allin .itemlist .thr {
    border: 0;
} */

.indexpro .wp .wrap .module .allin .itemlist:last-child .sec {
    border-bottom: 1px solid rgba(27, 37, 75, .1);
}

.indexpro .wp .wrap .module .allin .itemlist:last-child .thr {
    border-bottom: 1px solid rgba(27, 37, 75, .1);
}

.duty .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
    align-items: center;
}

.duty .wp .top .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.duty .wp .top .titlebox .desc {
    font-size: 24px;
    color: #555;
}

.duty .wp .top .more {
    width: 207px;
    height: 60px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
}

.duty {
    background: url(../images/duty/bg.jpg) no-repeat center;
    background-size: cover;
    padding: 0 0 50px 0;
}

.duty .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.duty .wp .wrap .lside {
    width: 46.875%;
    overflow: hidden;
}

.duty .wp .wrap .lside .pbox {
    width: 100%;
    height: 23.4575vw;
    max-height: 450px;
    min-height: 400px;
    overflow: hidden;
    border-radius: 30px;
    overflow: hidden;
}

.duty .wp .wrap .lside .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duty .wp .wrap .lside .tbox {
    padding: 20px 0 0 20px;
}

.duty .wp .wrap .lside .tbox .name {
    color: #1b254b;
    font-size: 22px;
}

.duty .wp .wrap .lside .tbox .date {
    color: #333;
    font-size: 16px;
}

.duty .wp .wrap .rside {
    width: 47.5%;
}

.duty .wp .wrap .rside .item {
    width: calc(100% - 70px);
    height: 150px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    padding: 0 35px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 0 35px 0;
    transition: all 0.4s;
}

.duty .wp .wrap .rside .item:hover {
    width: calc(100% - 50px);
    transition: all 0.4s;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    transform: rotateY(10deg);
}

.duty .wp .wrap .rside .item .name {
    font-size: 22px;
    color: #333;
    margin: 0 0 6px 0;
    user-select: none;
    -webkit-user-select: none;
}

.duty .wp .wrap .rside .item .name .date {
    font-size: 16px;
    color: #333;
    user-select: none;
    -webkit-user-select: none;
}

.ourhonor .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
    align-items: center;
}

.ourhonor .wp .top .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.ourhonor .wp .top .titlebox .desc {
    font-size: 24px;
    color: #555;
}

.ourhonor .wp .top .more {
    width: 207px;
    height: 60px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
}

.ourhonor {
    background: #f1f3f9;
    position: relative;
    overflow: hidden;
}

.ourhonor .swiper {
    padding: 20px 0 50px 0;
}

.ourhonor .larrow {
    position: absolute;
    left: -40px;
    width: 60px;
    height: 76px;
    background: #1b254b;
    border-radius: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 99;
    top: 51%;
    padding: 0 20px 0 0;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.ourhonor .larrow img {}

.ourhonor .rarrow {
    position: absolute;
    right: -40px;
    width: 60px;
    height: 76px;
    background: #1b254b;
    border-radius: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 99;
    top: 51%;
    padding: 0 0 0 20px;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
}

.ourhonor .rarrow img {
    transform: rotate(180deg);
}

.ourhonor .swiper .swiper-slide {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 20px 0;
}

.ourhonor .swiper .swiper-slide .pbox {
    width: 100%;
    height: 17.185vw;
    min-height: 300px;
    max-height: 335px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ourhonor .swiper .swiper-slide .pbox img {
    max-width: 60%;
    transition: all 0.4s;
}

.ourhonor .swiper .swiper-slide .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.03);
}

.ourhonor .swiper .swiper-slide .name {
    font-size: 18px;
    color: #000;
    width: 90%;
    border-top: 1px solid #e5eaee;
    text-align: center;
    margin: 15px 0 10px 0;
    padding: 15px 0 0 0;
}

.cases {
    background: #f1f3f9;
    padding: 80px 0;
}

.cases .wp {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    padding: 0 0 0 8.3vw;
}

.cases .wp .tbox {
    max-width: 480px;
    min-width: 460px;
}

.cases .wp .tbox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.cases .wp .tbox .desc {
    font-size: 24px;
    color: #555;
    margin: 0 0 30px 0;
}

.cases .wp .tbox .cont {
    font-size: 24px;
    color: #333;
    line-height: 48px;
}

.cases .wp .tbox .more {
    width: 207px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    margin: 40px 0 0 0;
}

.cases .wp .swiper {
    max-width: 1200px;
    width: 62.5vw;
    max-height: 620px;
    border-radius: 30px;
    overflow: hidden;
}

.cases .wp .swiper {
    padding: 0 0 60px 0;
}

.cases .wp .swiper .swiper-wrapper .swiper-slide {
    border-radius: 30px;
    overflow: hidden;
    width: 980px!important;
}

.cases .wp .swiper .swiper-wrapper .swiper-slide p {
    position: absolute;
    bottom: 18px;
    right: 34px;
    color: #fff;
    font-size: 18px;
}

.cases .wp .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.cases .swiper-horizontal>.swiper-scrollbar {
    width: 860px;
    left: 10%;
    background: #fff;
    bottom: 10px;
}

.cases .swiper-scrollbar-drag {
    background: #4b9d3d;
}

.cases .ctrl {
    position: absolute;
    left: 1%;
    bottom: -3px;
}

.cases .ctrl .prev {
    cursor: pointer;
}

.cases .ctrl .next {
    margin: 0 0 0 10px;
    cursor: pointer;
}

.factory {
    max-width: 100%;
}

.factory .wp {
    width: 100%;
    max-width: 100%;
    padding: 0 0 0 8.3vw;
}

.factory .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0 100px 0;
}

.factory .wp .tbox {
    max-width: 36.25%;
}

.factory .wp .tbox .name {
    font-size: 20px;
    color: #333;
}

.factory .wp .tbox .title {
    font-size: 50px;
    color: #1b254b;
    font-weight: bold;
    margin: 10px 0 15px 0;
}

.factory .wp .tbox .desc {
    font-size: 20px;
    color: #555;
    margin: 0 0 40px 0;
}

.factory .wp .tbox .item {
    border-top: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.factory .wp .tbox .item span {
    font-size: 20px;
    color: #333;
    padding: 0 0 0 65px;
    position: relative;
}

.factory .wp .tbox .item .num {
    font-size: 50px;
    color: #4b9d3d;
    padding: 0 0 0 0;
}

.factory .wp .tbox .item i {
    font-size: 24px;
    color: #333;
    margin: 0 0 0 15px;
}

.factory .wp .tbox .more {
    width: 207px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    color: #fff;
    font-size: 18px;
    border-radius: 30px;
    margin: 40px 0 0 0;
}

.factory .wp .tbox .item .t1::before {
    content: '';
    width: 52px;
    height: 52px;
    background: url(../images/factory.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -10px;
}

.factory .wp .tbox .item .t2::before {
    content: '';
    width: 52px;
    height: 52px;
    background: url(../images/micmirror.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -10px;
}

.factory .wp .tbox .item .t3::before {
    content: '';
    width: 52px;
    height: 52px;
    background: url(../images/funcicon.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -10px;
}

.factory .wp .tbox .item .t4::before {
    content: '';
    width: 52px;
    height: 52px;
    background: url(../images/reporticon.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: -10px;
}

.factory .wp .pbox {
    max-width: 53%;
    padding: 0;
}


/* .factory .wp .pbox img {
    max-width: 100%;
} */

.team {
    padding: 0 0 4vw 0;
    position: relative;
}

.team .wp .title {
    font-size: calc(1vw + 20.8px);
    color: #1b254b;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.team .wp .swiper {
    border-radius: 30px;
    overflow: hidden;
}

.team .wp .swiper .swiper-wrapper .swiper-slide {
    border-radius: 30px;
    overflow: hidden;
}

.team .wp .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team .wp .larr {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    border-radius: 50%;
    left: 2vw;
    bottom: 39%;
    cursor: pointer;
}

.team .wp .larr img {}

.team .wp .rarr {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    border-radius: 50%;
    right: 2vw;
    bottom: 39%;
    cursor: pointer;
}

.team .wp .rarr img {
    transform: rotate(180deg);
}

.message {
    background: url(../images/formbg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.message .wp .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.message .wp .wrap .tbox {
    max-width: 45%;
    padding: 0 0 0 0;
    width: 600px;
}

.message .wp .wrap .tbox .title {
    font-size: calc(1vw + 14px);
    color: #fff;
    font-weight: bold;
}

.message .wp .wrap .tbox .cont {
    font-size: calc(0.471vw + 9px);
    color: #fff;
    line-height: 2;
    margin: 0 0 28px 0;
}

.message .wp .wrap .formbox {
    width: 25%;
    padding: 25px 50px;
    background-color: #fff;
    margin: 50px 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 30px;
}

.message .wp .wrap .formbox input {
    font-size: 16px;
    color: #000;
    border: none;
    outline: none;
    border-bottom: 1px solid #474747;
    padding: 40px 0 10px 0;
    font-family: 'Microsoft Yahei';
}

.message .wp .wrap .formbox input::placeholder {
    font-size: 16px;
    color: #999;
    font-family: 'Microsoft Yahei';
}

.message .wp .wrap .formbox textarea {
    font-size: 16px;
    color: #000;
    border: none;
    outline: none;
    border-bottom: 1px solid #474747;
    padding: 40px 0 10px 0;
    resize: none;
    min-height: 120px;
    font-family: 'Microsoft Yahei';
}

.message .wp .wrap .formbox textarea::placeholder {
    font-size: 16px;
    color: #999;
    font-family: 'Microsoft Yahei';
}

.message .wp .wrap .formbox button {
    width: 100%;
    height: 50px;
    border-radius: 35px;
    border: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    margin: 35px 0 0 0;
    background: #1b254b;
    cursor: pointer;
}

.indexnews .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 30px 0;
    align-items: center;
}

.indexnews .wp .top .title {
    font-size: 40px;
    color: #333;
    font-weight: bold;
}

.indexnews .wp .top .catebox {
    display: flex;
}

.indexnews .wp .top .catebox .cate {
    width: 200px;
    height: 60px;
    border: 1px solid #333;
    border-radius: 30px;
    margin: 0 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    overflow: hidden;
}


/* Shutter Out Vertical */

.hvr-shutter-out-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    /* background: #e1e1e1; */
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-shutter-out-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1b254b;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-shutter-out-vertical:hover,
.hvr-shutter-out-vertical:focus,
.hvr-shutter-out-vertical:active {
    color: white;
}

.hvr-shutter-out-vertical:hover:before,
.hvr-shutter-out-vertical:focus:before,
.hvr-shutter-out-vertical:active:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.indexnews .wp .list {
    display: flex;
    justify-content: space-between;
    padding: 15px 0 100px 0;
}

.indexnews .wp .list .item {
    width: calc(100% / 3 - 30px);
    margin: 0 45px 0 0;
}

.indexnews .wp .list .item:last-child {
    margin: 0;
}

.indexnews .wp .list .item .pbox {
    width: 100%;
    max-height: 395px;
    height: 20.57vw;
    min-height: 340px;
    border-radius: 30px;
    overflow: hidden;
}

.indexnews .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.2s;
}

.indexnews .wp .list .item .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.05);
}

.indexnews .wp .list .item .tbox {
    padding: 0 0 18px 0;
    border-bottom: 1px solid #c7c7c7;
    user-select: none;
    -webkit-user-select: none;
}

.indexnews .wp .list .item .tbox .title {
    font-size: calc(0.5vw + 10.2px);
    color: #333;
    font-weight: bold;
    padding: 30px 0 45px 0;
    height: 50px;
}

.indexnews .wp .list .item .tbox .data {
    font-size: 16px;
    color: #333;
}

.indexnews .wp .list .item:hover .tbox .title {
    color: #1b254b;
}

.indexnews .wp .list .item:hover .tbox .data {
    color: #1b254b;
}

footer {
    background-color: #1b254b;
}

footer .wp .btmnav {
    display: flex;
    justify-content: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .wp .btmnav a {
    font-size: calc(0.5vw + 8.4px);
    color: #fff;
    margin: 0 calc(1vw + 10px);
}

footer .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

footer .wp .wrap .logobox {
    width: 26.875%;
}

footer .wp .wrap .logobox img {
    max-width: 100%;
}

footer .wp .wrap i {
    display: block;
    width: 1px;
    height: 180px;
    background: rgba(255, 255, 255, 0.2);
}

footer .wp .wrap .phonebox {
    width: 42.5%;
}

footer .wp .wrap .phonebox .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .wp .wrap .phonebox .top .item {
    position: relative;
    padding: 0 0 0 60px;
}

footer .wp .wrap .phonebox .top .item:nth-child(1)::before {
    content: '';
    width: calc(2vw + 17px);
    height: calc(2vw + 17px);
    background: url(../images/btmserveicon.png) no-repeat center;
    position: absolute;
    left: 0;
    background-size: contain;
}

footer .wp .wrap .phonebox .top .item:nth-child(2)::before {
    content: '';
    width: calc(2vw + 17px);
    height: calc(2vw + 17px);
    background: url(../images/btmphoneicon.png) no-repeat center;
    position: absolute;
    left: 0;
    background-size: contain;
}

footer .wp .wrap .phonebox .top .item span {
    font-size: 16px;
    color: #fff;
}

footer .wp .wrap .phonebox .top .item p {
    font-size: calc(1.52vw + 11px);
    color: #fff;
    line-height: 1;
    font-weight: bold;
}

footer .wp .wrap .phonebox .address {
    font-size: 20px;
    color: #fff;
    padding: 40px 0 0 30px;
    text-align: left;
    position: relative;
}

footer .wp .wrap .phonebox .address::before {
    content: '';
    width: 18px;
    height: 22px;
    background: url(../images/addressicon.png) no-repeat center;
    position: absolute;
    left: 0;
    bottom: 8px;
}

footer .wp .wrap .qrbox {
    width: 16.25%;
    text-align: center;
}

footer .wp .wrap .qrbox img {}

footer p {
    font-size: 16px;
    color: #fff;
    text-align: center;
}

footer .info a {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    padding: 20px 0 20px 10px;
    display: inline-block;
    text-align: center;
}

.sub_navbar {
    height: 80px;
    background: #f8f8f8;
}

.sub_navbar .wp ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.sub_navbar .wp ul li {
    padding: 0 40px;
}

.sub_navbar .wp ul li a {
    font-size: 18px;
    color: #333;
}

.sub_navbar .wp ul li .active {
    border-bottom: 5px solid #4b9d3d;
}

.aboutus {
    background: url(../images/about/waterbg.jpg);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    padding: 60px 0 320px 0;
}

.aboutus .wp .company {
    font-size: 24px;
    color: #333;
    text-align: center;
}

.aboutus .wp .title {
    font-size: 40px;
    color: #333;
    text-align: center;
}

.aboutus .wp .vline {
    display: block;
    width: 2px;
    height: 50px;
    background: #ddd;
    margin: 22px auto;
}

.aboutus .wp .cont {
    font-size: 16px;
    color: #333;
    line-height: 28px;
    margin: 0 0 34px 0;
    text-align: center;
}

.aboutus .wp .list {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
}

.aboutus .wp .list .item {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.aboutus .wp .list .item p {
    font-size: 24px;
    color: #333;
}

.aboutus .wp .list .item span {
    font-size: 20px;
    color: #333;
}

.aboutus .wp .list .item p span {
    font-size: 50px;
    color: #4b9d3d;
}

.value {
    padding: 50px 0 90px 0;
}

.value .swiper .swiper-wrapper .swiper-slide .tbox {
    position: absolute;
    z-index: 99;
    left: 10%;
    top: 15%;
}

.value .swiper .swiper-wrapper .swiper-slide .tbox .name {
    font-size: 30px;
    color: #fff;
    margin: 0 0 10px 0;
}

.value .swiper .swiper-wrapper .swiper-slide .tbox .cont {
    font-size: 18px;
    color: #fff;
}

.value .wp .swiper .list {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    bottom: 7%;
    z-index: 99;
    width: 100%;
}

.value .wp .swiper .list .item {
    margin: 0 25px;
}

.value .wp .swiper .list .item .pbox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 79px;
    height: 79px;
    border: 1px solid #fff;
    border-radius: 50%;
}

.value .wp .swiper .list .active .pbox {
    background: #4b9d3d;
    border: 1px solid #4b9d3d;
}

.value .wp .swiper .list .item .name {
    text-align: center;
    padding: 15px 0 0 0;
    font-size: 18px;
    color: #fff;
}

.company_fac {
    background: #f1f1f1;
}

.company_fac .swiper .swiper-wrapper .swiper-slide {
    width: 1200px!important;
    margin: 0 auto;
}

.company_fac .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company_fac .swiper .swiper-wrapper .swiper-slide .tbox {
    background: #002e56;
    border-radius: 0 70px 0 0;
    width: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: absolute;
    bottom: 5px;
    left: 0;
}

.company_fac .swiper .swiper-wrapper .swiper-slide .tbox span {
    font-size: 18px;
    color: #fff;
}

.company_fac .ctrl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 80px 0;
}

.company_fac .ctrl .item {
    width: 80px;
    height: 80px;
    border: 1px solid #002e56;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.company_fac .ctrl .rarrow img {
    transform: rotate(180deg);
}

.company_fac .sline {
    width: 1px;
    height: 80px;
    margin: 0 40px;
    background: #002e56;
    display: block;
    transform: rotate(30deg);
}

.rdpower {
    background: url(../images/about/rdpower.jpg) no-repeat center;
    background-size: cover;
    padding: 70px 0;
}

.rdpower .wp .wrap {
    display: flex;
    justify-content: space-between;
}

.rdpower .wp .wrap .lside {
    width: 28.75%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 0 0 6%;
}

.rdpower .wp .wrap .lside .title {
    font-size: 40px;
    color: #fff;
    margin: 0 0 80px 0;
}

.rdpower .wp .wrap .lside img {}

.rdpower .wp .wrap .rside {
    width: 56.875%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.rdpower .wp .wrap .rside .item {
    width: calc(100% / 2 - 40px);
    margin: 0 80px 40px 0;
    max-width: 370px;
}

.rdpower .wp .wrap .rside .item:nth-child(2n) {
    margin: 0 0 40px 0;
}

.rdpower .wp .wrap .rside .item .pbox {
    width: 124px;
    height: 124px;
    background: url(../images/about/iconborder.png) no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: contain;
}

.rdpower .wp .wrap .rside .item .tbox .name {
    font-size: 24px;
    color: #fff;
    padding: 28px 0;
}

.rdpower .wp .wrap .rside .item .tbox .cont {
    font-size: 16px;
    color: #fff;
}

.company_cer {
    padding: 0 0 50px 0;
}

.company_cer .wp .list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.company_cer .wp .list .item {
    width: calc(100% / 4 - 15px);
    margin: 0 20px 20px 0;
    box-shadow: 0 0 20px rgba(4, 0, 0, 0.1);
}

.company_cer .wp .list .item:nth-child(4n) {
    margin: 0 0 20px 0;
}

.company_cer .wp .list .item .pbox {
    width: 100%;
    height: 17.185vw;
    min-height: 300px;
    max-height: 335px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company_cer .wp .list .item .pbox img {
    max-height: 80%;
    max-width: 80%;
}

.company_cer .wp .list .item .name {
    font-size: 18px;
    color: #000;
    width: 90%;
    border-top: 1px solid #e5eaee;
    text-align: center;
    margin: 15px auto 10px;
    padding: 15px 0 0 0;
}

.company_cer .wp .more {
    width: 200px;
    height: 60px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    background: #002e56;
    border-radius: 30px;
    margin: 30px auto 60px;
}

.casescenter {
    padding: 40px 0 60px 0;
}

.casescenter .wp .title {
    font-size: 40px;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.casescenter .wp .list {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.casescenter .wp .list .item {
    width: calc(100% / 3 - 20px);
    margin: 0 30px 30px 0;
}

.casescenter .wp .list .item:nth-child(3n) {
    margin: 0 0 30px 0;
}

.casescenter .wp .list .item .pbox {
    height: 19.79vw;
    min-height: 350px;
    max-height: 380px;
    position: relative;
}

.casescenter .wp .list .item .pbox .casepic {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.casescenter .wp .list .item .pbox .hover_box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    bottom: 0;
    background: radial-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .6));
    opacity: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.casescenter .wp .list .item .pbox .hover_box span {
    font-size: 16px;
    color: #fff;
    margin: 5px 0 0 0;
}

.casescenter .wp .list .item .name {
    font-size: 20px;
    text-align: center;
    padding: 10px 0;
    color: #000000;
}

.casescenter .wp .list .item:hover .name {
    color: #4b9d3d
}

.casescenter .wp .list .item:hover .pbox .hover_box {
    opacity: 1;
    transition: all 0.2s;
}


/* 新闻详情 */

.casesDetail {
    padding: 50px 0;
    background: #f9f9f9;
}

.casesDetail .wp .detailtitle {
    font-size: 30px;
    color: #1b254b;
    text-align: left;
    margin: 0 auto;
    font-weight: bold;
    width: max-content;
}

.casesDetail .wp .desc {
    width: 100%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.casesDetail .wp .desc .time {
    font-size: 16px;
    font-weight: 400px;
    color: #000;
    display: inline-block;
    text-align: left;
    margin: 20px 30px 20px 0;
}

.casesDetail .wp .detailcontent {
    padding: 50px;
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
}

.casesDetail .wp .detailcontent img {
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

.casesDetail .wp .detailcontent p {
    font-size: 16px;
    color: #333;
    font-weight: 300;
    line-height: 36px;
    margin: 30px 0;
}

.casesDetail .wp .detailcontent .title {
    margin: 20px 0 10px 0;
    color: #002e56;
    font-size: 20px;
    font-weight: bold;
}

.wp .prevnext {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-top: 1px solid #cdcdcd;
    padding: 10px 0 0 0;
}

.wp .prevnext .prev,
.next {
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wp .prevnext .next {
    text-align: right;
}

.wp .prevnext i {
    color: #4b9d3d;
}

.procate {
    padding: 50px 0 00;
}

.procate .wp .list {
    padding: 15px 0;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    border-bottom: 1px solid #babdc9;
}

.procate .wp .list .item {
    color: #333;
    font-size: 18px;
    margin: 0 20px 0 0;
}

.procate .wp .list .active {
    border-bottom: 3px solid #4b9d3d;
}

.procenter {
    padding: 40px 0 50px 0;
}

.procenter .wp .prolist {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.procenter .wp .prolist .item {
    width: calc(100% / 4 - 15px);
    margin: 0 20px 20px 0;
    position: relative;
}

.procenter .wp .prolist .item:nth-child(4n) {
    margin: 0 0 20px 0;
}

.procenter .wp .prolist .item .pbox {
    height: 18.75vw;
    min-height: 320px;
    max-height: 360px;
    background: #f6f6f6;
    border: 2px solid #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.procenter .wp .prolist .item .pbox img {
    max-width: 90%;
}

.procenter .wp .prolist .item .name {
    font-size: 20px;
    color: #333;
    text-align: center;
    padding: 6px 0;
}

.pro_detail .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 110px 0;
}

.pro_detail .wp .wrap .picbox {
    width: 54%;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
}

.pro_detail .wp .wrap .picbox .swiper1 {
    height: 600px;
    margin: 0 10px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    /* height: calc(100% - 2px);
    width: calc(100% - 2px); */
}

.pro_detail .wp .wrap .picbox .swiper1 .swiper-slide {
    overflow: hidden;
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    width: calc(100% - 2px);
    height: calc(100%)!important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro_detail .wp .wrap .picbox .swiper1 .swiper-slide img {
    max-width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.pro_detail .wp .wrap .picbox .swiper2 {
    width: 120px;
    height: 420px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pro_detail .wp .wrap .picbox .swiper2 .swiper-slide {
    width: calc(100% - 2px);
    display: flex;
    justify-content: center;
    align-content: center;
    height: max-content!important;
    padding: 5px 0;
}

.pro_detail .wp .wrap .picbox .swiper2 .swiper-slide-thumb-active {
    border: 1px solid #4b9d3d;
}

.pro_detail .wp .wrap .picbox .up {
    width: 100%;
    position: absolute;
    top: 0;
    width: 66px;
    height: 66px;
    right: 10.5%;
    z-index: 9;
}

.pro_detail .wp .wrap .picbox .down {
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: 9;
    width: 66px;
    height: 66px;
    right: 10.5%;
}

.pro_detail .wp .wrap .picbox .swiper2 .swiper-slide img {
    max-width: 86%;
    object-fit: contain;
}

.pro_detail .wp .wrap .tbox {
    width: 41%;
    min-width: 480px;
    height: 600px;
}

.pro_detail .wp .wrap .tbox .cname {
    font-size: 16px;
    color: #333;
    font-family: 'Lato-Bold';
    font-weight: bold;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #c4c4c4;
}

.pro_detail .wp .wrap .tbox .name {
    font-size: 30px;
    color: #000;
    font-family: 'Lato-Bold';
    font-weight: bold;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

.pro_detail .wp .wrap .tbox .cname a {
    color: #333;
    font-size: 16px;
}

.pro_detail .wp .wrap .tbox .cont {
    font-size: 16px;
    color: #666;
    line-height: 32px;
}

.pro_detail .wp .wrap .tbox .btnbox {
    display: flex;
    justify-content: flex-start;
    padding: 50px 0;
}

.pro_detail .wp .wrap .tbox .btnbox a {
    width: 180px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    border-radius: 30px;
    color: #fff;
    background: #1b254b
}

.pro_detail .wp .wrap .tbox .btnbox .go_back {
    margin: 0 30px 0 0;
}

.pro_detail .detail_content {
    /* max-width: 1200px; */
    margin: 0 auto;
}

.pro_detail .detail_content .wp {
    padding: 50px 0;
}

.pro_detail .detail_content .wp .title {
    font-size: 30px;
    color: #1b254b;
    text-align: center;
    font-weight: bold;
}

.pro_detail .detail_content .wp img {
    max-width: 100%;
    display: block;
    margin: 20px auto;
}

.pro_detail .detail_content .wp .cont {
    font-size: 20px;
    color: #1b254b;
    text-align: center;
}

.pro_detail .detail_content .item {
    padding: 25px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #002e56;
}

.pro_detail .detail_content .item p {
    width: 30%;
    font-size: 20px;
    color: #000;
    font-weight: bold;
}

.pro_detail .detail_content .item span {
    font-size: 16px;
    color: #000;
}

.pro_detail .detail_content .detailtitle {
    width: 100%;
    text-align: center;
    height: 60px;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pro_detail .detail_content .detailtitle a {
    font-size: 18px;
    color: #000;
    margin: 0 60px 0 0;
    line-height: 0.6;
}

.pro_detail .detail_content .detailtitle .active {
    border-bottom: 7px solid #4b9d3d;
    line-height: 0.6;
}

.pro_detail .detail_content img {
    max-width: 100%;
    margin: 20px auto;
}

.contactus {
    padding: 50px 0 80px 0;
}

.contactus .wp .wrap {
    display: flex;
    justify-content: flex-start;
    height: 550px;
}

.contactus .wp .wrap .map {
    width: 60%;
    height: 100%;
}

.contactus .wp .wrap .tbox {
    height: 550px;
    width: calc(40% - 50px);
    background: #002e56;
    padding: 0 0 0 40px;
}

.contactus .wp .wrap .tbox .name {
    font-size: 30px;
    color: #fff;
    padding: 80px 0 40px 0;
}

.contactus .wp .wrap .tbox .cont {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 18px;
    color: #fff;
    margin: 0 0 35px 0;
}

.contactus .wp .wrap .tbox .cont img {
    margin: 0 12px 0 0;
}

.contact_message .wp .title {
    font-size: calc(1vw + 20.8px);
    color: #333;
}

.contact_message .wp .formbox {
    padding: 30px 0 60px 0;
}

.contact_message .wp .formbox .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact_message .wp .formbox .item input {
    width: 47%;
    border: 0;
    border-bottom: 1px solid #595656;
    outline: none;
    font-size: 20px;
    color: #000;
    padding: 20px 0 10px 0;
    margin: 0 0 20px 0;
}

.contact_message .wp .formbox .item input::placeholder {
    font-size: 20px;
    color: #999;
}

.contact_message .wp .formbox .item textarea {
    border: 0;
    border-bottom: 1px solid #595656;
    outline: none;
    font-size: 20px;
    color: #000;
    padding: 20px 0 10px 0;
    resize: none;
    width: 100%;
    height: 160px;
}

.contact_message .wp .formbox .item textarea::placeholder {
    font-size: 20px;
    color: #999;
}

.contact_message .wp .formbox .sub_btm {
    width: 200px;
    height: 60px;
    border-radius: 30px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
    margin: 30px auto 0;
    border: 0;
    outline: 0;
    cursor: pointer;
}

.newscenter {
    padding: 0 0 80px 0;
}

.newscenter .wp .title {
    font-size: calc(1vw + 20.8px);
    color: #000;
    text-align: center;
    font-weight: bold;
    padding: 80px 0 30px 0;
}

.newscenter .wp .list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0 0 30px 0;
}

.newscenter .wp .list .item {
    width: calc(100% / 3 - 20px);
    margin: 0 30px 30px 0;
    position: relative;
    overflow: hidden;
}

.newscenter .wp .list .item:nth-child(3n) {
    margin: 0 0 30px 0;
}

.newscenter .wp .list .item .pbox {
    height: 18.22vw;
    max-height: 350px;
    /* min-height: 330px; */
    overflow: hidden;
}

.newscenter .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s;
}

.newscenter .wp .list .item .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.newscenter .wp .list .item .tbox {
    width: calc(100% - 66px);
    padding: 25px 33px;
    background: #f9f9f9;
}

.newscenter .wp .list .item .tbox .date {
    font-size: 16px;
    color: #000;
}

.newscenter .wp .list .item .tbox .name {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 66px;
}

.newscenter .wp .list .item .hover_txt {
    position: absolute;
    top: 100%;
    width: calc(100% - 72px);
    padding: 50px 36px 0;
    height: calc(100% - 50px);
    background: #f9f9f9;
    transition: all 0.4s;
}

.newscenter .wp .list .item .hover_txt .date {
    font-size: 16px;
    color: #000;
    margin: 0 0 10px 0;
}

.newscenter .wp .list .item .hover_txt .name {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 50px 0;
}

.newscenter .wp .list .item .hover_txt .cont {
    font-size: 16px;
    color: #000;
    line-height: 32px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newscenter .wp .list .item:hover .hover_txt {
    top: 0;
    transition: all 0.4s;
}

.coop {
    background: #1b254b;
}

.coop .swiper-slide img {
    max-width: 100%;
}

.coop .wrap {
    display: flex;
}

.coop .wrap .swiper {
    width: 81.25%;
}

.coop .wrap .tbox {
    width: 18.75%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.coop .wrap .tbox .name {
    font-size: calc(1vw + 20.8px);
    color: #fff;
    font-weight: bold;
    padding: 40px 0;
    padding: 40px 0 40px 53px;
}

.coop .wrap .tbox .item {
    width: calc(60% - 53px);
    padding: 20px 40px 20px 53px;
    border-radius: 0 25px 25px 0;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.coop .wrap .tbox .item img {
    display: block;
    margin: 0 auto;
}

.coop .wrap .tbox .item p {
    font-size: 22px;
    color: #fff;
    text-align: center;
}

.coop .wrap .tbox .active {
    background: #0f8757;
}

.coopview {
    padding: 60px 0 70px 0;
}

.coopview .wp .title {
    font-size: calc(1vw + 20.8px);
    font-weight: bold;
    color: #1b254b;
    text-align: center;
}

.coopview .wp .desc {
    font-size: 24px;
    color: #1b254b;
    text-align: center;
}

.coopview .wp .cont {
    font-size: 18px;
    color: #333;
    line-height: 32px;
    max-width: 1200px;
    margin: 10px auto 50px;
}

.coopview .wp .list {
    display: flex;
}

.coopview .wp .list .item {
    width: calc(100% - 15px);
    margin: 0 50px 0 0;
    text-align: center;
}

.coopview .wp .list .item:last-child {
    margin: 0;
}

.coopview .wp .list .item:nth-child(odd) {
    margin: 50px 50px 0 0;
}

.coopview .wp .list .item .pbox {
    width: 100%;
    height: 24.7vw;
    min-height: 320px;
    max-height: 480px;
    overflow: hidden;
}

.coopview .wp .list .item .pbox img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.coopview .wp .list .item .name {
    font-size: 18px;
    color: #333;
    max-width: 260px;
    margin: 15px auto;
}

.support {
    position: relative;
}

.support .wp .title {
    position: absolute;
    width: max-content;
    left: 50%;
    font-size: calc(1vw + 20.8px);
    color: #002e56;
    font-weight: bold;
    transform: translateX(-50%);
    top: calc(2vw + 21.6px);
    z-index: 99;
}

.solo {
    background: #1b254b;
    padding: 70px 0;
}

.solo .wp .title {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin: 0 0 40px 0;
}

.solo .wp .list {
    display: flex;
    justify-content: space-between;
}

.solo .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 0 0;
}

.solo .wp .list .item .pbox {
    width: 100%;
    height: 16.14vw;
    max-height: 310px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 30px;
}

.solo .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solo .wp .list .item .cont {
    font-size: 16px;
    color: #fff;
    line-height: 32px;
    margin: 26px 0 0 0;
}

.aboutour {
    padding: 0 0 140px 0;
}

.aboutour .swiper-slide img {
    max-width: 100%;
}

.aboutour .wp .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
    text-align: center;
    padding: 70px 0 60px 0;
}

.aboutour .wp .list {
    display: flex;
    justify-content: flex-start;
}

.aboutour .wp .list .item {
    width: calc(100% / 4);
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutour .wp .list .item .iconpic {
    display: block;
}

.aboutour .wp .list .item .hoverpic {
    display: none;
}

.aboutour .wp .list .item span {
    font-size: 20px;
    color: #333;
    margin: 0 0 0 10px;
    user-select: none;
    -webkit-user-select: none;
}

.aboutour .wp .list .active .iconpic {
    display: none;
}

.aboutour .wp .list .active .hoverpic {
    display: block;
}

.aboutour .wp .list .active .span {
    color: #4b9d3d;
}

.aboutour .wp .list .active {
    border-top: 4px solid #4b9d3d;
}

.secprocenter .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
    align-items: center;
}

.secprocenter .wp .top .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.secprocenter .wp .top .titlebox .desc {
    font-size: 24px;
    color: #555;
}

.secprocenter .wp .top .more {
    width: 207px;
    height: 60px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
}

.secprocenter {
    padding: 0 0 80px 0;
}

.passsound {
    background: url(../images/soundbg.jpg) no-repeat center;
    padding: 70px 0 80px 0;
}

.passsound .title {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.passsound .desc {
    font-size: 18px;
    color: #fff;
    padding: 12px 0;
    text-align: center;
}

.passsound .wp img {
    display: block;
    margin: 30px auto 0;
}

.d3x {
    padding: 80px 0 70px 0;
    position: relative;
}

.d3x .wp .title {
    font-size: calc(1vw + 20.8px);
    color: #1b254b;
    font-weight: bold;
    text-align: center;
}

.d3x .wp .desc {
    font-size: 24px;
    color: #555;
    text-align: center;
    margin: 0 0 40px 0;
}

.d3x .wp .swiper {
    border-radius: 30px;
    overflow: hidden;
}

.d3x .wp .swiper-slide img {
    max-width: 100%;
}

.d3x .wp .larr {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    border-radius: 50%;
    left: 2vw;
    bottom: 32%;
    cursor: pointer;
}

.d3x .wp .larr img {}

.d3x .wp .rarr {
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1b254b;
    border-radius: 50%;
    right: 2vw;
    bottom: 32%;
    cursor: pointer;
}

.d3x .wp .rarr img {
    transform: rotate(180deg);
}

.d4x {
    background: #f1f3f9;
    padding: 0 0 53px 0;
}

.d4x .wp .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
    align-items: center;
}

.d4x .wp .top .titlebox .title {
    font-size: 40px;
    color: #1b254b;
    font-weight: bold;
}

.d4x .wp .top .titlebox .desc {
    font-size: 24px;
    color: #555;
}

.d4x .wp .top .more {
    width: 207px;
    height: 60px;
    background: #1b254b;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 30px;
}

.d4x .wp .list {
    display: flex;
}

.d4x .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 0 0;
}

.d4x .wp .list .item:last-child {
    margin: 0;
}

.d4x .wp .list .item .pbox {
    height: 19.66vw;
    width: 100%;
    max-height: 320px;
    min-height: 300px;
}

.d4x .wp .list .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.d4x .wp .list .item .name {
    font-size: 18px;
    color: #333;
    text-align: center;
    padding: 10px 0;
}

.d4x .wp .line {
    border-bottom: 1px solid #dbdee7;
    display: block;
    margin: 52px 0 0 0;
}

.d4x .wp .list2 .item .pbox {
    height: 26vw;
    max-height: 500px;
    min-height: 490px;
}

.d4x .wp .sugslist {
    display: flex;
}

.d4x .wp .sugslist .item {
    position: relative;
    background: #fff;
    border-radius: 30px;
    width: calc(100% / 3 - 140px);
    margin: 0 30px 0 0;
    padding: 52px 60px 34px;
}

.d4x .wp .sugslist .item:last-child {
    margin: 0;
}

.d4x .wp .sugslist .item .dh {
    position: absolute;
    top: 8%;
    left: 5%;
}

.d4x .wp .sugslist .item .name {
    font-size: 22px;
    color: #333;
    margin: 0 0 21px 0;
}

.d4x .wp .sugslist .item .desc {
    font-size: 16px;
    color: #666;
    line-height: 32px;
    margin: 0 0 20px 0
}

.d4x .wp .sugslist .item .more {
    display: flex;
    align-items: center;
}

.d4x .wp .sugslist .item .more img {
    margin: 0 8px 0 0;
}

.d4x .wp .sugslist .item .more span {
    font-size: 16px;
    color: #333;
}

.d4x .wp .list3 .item .pbox {
    height: 19vw;
    max-height: 365px;
    min-height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.d4x .wp .list3 .item .name {
    text-align: left;
}

.stophot .wp .wrap {
    display: flex;
    justify-content: flex-start;
}

.stophot .wp .wrap .lside {
    width: 33.75%;
    position: relative;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stophot .wp .wrap .lside img {
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
}

.stophot .wp .wrap .lside .name {
    color: #1b254b;
    font-size: calc(2vw + 21.6px);
}

.stophot .wp .wrap .rside {
    width: 66.25%;
    padding: 100px 0;
}

.stophot .wp .wrap .rside .cont {
    font-size: 18px;
    color: #333;
    line-height: 36px;
}

.stophot .wp .wrap .rside .more {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 60px 0 0 0;
}

.stophot .wp .wrap .rside .more span {
    padding: 0 0 0 8px;
    font-size: 16px;
    color: #333;
}

.stophot .bigpic {
    margin: 5px auto 100px;
    display: block;
    max-width: 100%;
}

.proadv {
    background: url(../images/hot/advbg.png) no-repeat center;
    height: 46.875vw;
    min-height: 850px;
    max-height: 900px;
    background-size: cover;
    position: relative;
}

.proadv .wp .titledemo .title {
    color: #fff;
}

.proadv .wp .advpic {
    position: absolute;
    top: 23%;
    left: 51%;
    transform: translateX(-50%);
    max-width: 1100px;
}

.soundproadv {
    background: url(../images/sound/advbg.jpg) no-repeat center;
    height: 46.875vw;
    min-height: 650px;
    max-height: 800px;
    background-size: cover;
    position: relative;
}

.soundproadv .wp .titledemo .title {
    color: #fff;
}

.soundproadv .wp .advpic {
    max-width: 100%;
}

.lightproadv {
    background: url(../images/light/advbg.jpg) no-repeat center;
    height: 46.875vw;
    min-height: 700px;
    max-height: 900px;
    background-size: cover;
    position: relative;
    padding: 4vw 0;
}

.lightproadv .wp .titledemo .title {
    color: #fff;
}

.lightproadv .wp .advpic {
    max-width: 100%;
}

.cansee .wp .wrap {
    display: flex;
    justify-content: flex-start;
}

.cansee .wp .wrap .lside {
    width: 29.16vw;
    max-width: 560px;
    /* min-width: 500px; */
    position: relative;
    display: flex;
    justify-content: center;
}

.cansee .wp .wrap .lside img:nth-child(1) {
    position: absolute;
    top: 60px;
    left: 0;
}

.cansee .wp .wrap .lside img:nth-child(2) {
    position: absolute;
    top: 162px;
    left: 131px;
    width: 42%;
}

.cansee .wp .wrap .lside .name {
    font-size: calc(1vw + 20.8px);
    color: #000;
    padding: 70px 0 0 0;
}

.cansee .wp .wrap .rside {
    width: 70.84%;
    padding: 60px 0;
}

.cansee .wp .wrap .rside .swiper-slide {
    text-align: center;
    /* width: max-content!important; */
    padding: 20px 0;
    background: #f8f8f8;
    user-select: none;
    -webkit-user-select: none;
}

.cansee .wp .wrap .rside .swiper-slide .name {
    font-size: 16px;
    color: #000;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cansee .wp .wrap .rside .swiper-slide img {
    height: 389px;
    max-width: 277px;
    padding: 0 0 15px 0;
}

.cansee .wp .wrap .rside .swiper-slide .showbig {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: rgba(0, 0, 0, .4);
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s;
}

.cansee .wp .wrap .rside .swiper-slide .showbig .mirror {
    height: auto;
    width: auto;
}

.cansee .wp .wrap .rside .swiper-slide .showbig span {
    font-size: 16px;
    color: #fff;
}

.cansee .wp .wrap .rside .swiper-slide:hover .showbig {
    opacity: 1;
    transition: all 0.4s;
}

.contacusbar {
    padding: 60px 0 115px 0;
}

.contacusbar .wp .conbar {
    width: 100%;
    height: 180px;
    background: #1b254b;
    position: relative;
}

.contacusbar .wp .conbar .line {
    display: block;
    width: 154px;
    height: 7px;
    background: #4b9d3d;
    position: absolute;
    left: -41px;
    top: 87px;
}

.contacusbar .wp .conbar .cont {
    font-size: 24px;
    color: #fff;
    padding: 53px 0 0 225px;
    display: inline-block;
}

.contacusbar .wp .conbar .more {
    float: right;
    width: 200px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 40px;
    color: #1b254b;
    background: #fff;
    float: right;
    margin: 58px 295px 0 0;
}


/* 媒介查询 */


/* 大屏幕（老款笔记本1366） */

@media (min-width:1921px) and (max-width:2560px) {
    .banner .banpic {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .wp {
        max-width: 1920px;
    }
    header .wp nav ul .item {
        width: 110px;
        margin: 0 15px;
    }
    body {
        max-width: 1920px;
        margin: 0 auto;
    }
    header {
        max-width: 1920px;
    }
    .program {
        max-width: 1920px;
        margin: 0 auto;
    }
}

@media (max-width:1850px) {
    .program .sit2 {
        bottom: 39%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 39%;
        transition: all 0.4s;
    }
}

@media (max-width:1800px) {
    .program .sit2 {
        bottom: 38%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 38%;
        transition: all 0.4s;
    }
}

@media (max-width:1750px) {
    .program .sit4 {
        bottom: -16.5%;
        transition: all 0.4s;
    }
}

@media (max-width:1700px) {
    .program .sit2 {
        bottom: 36.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 36.5%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -15%;
        transition: all 0.4s;
    }
}

@media (max-width:1650px) {
    .indexpro .wp .wrap .module .allin .itemlist .thr .item {
        width: 195px;
    }
    header .wp .wrap .phonebox p {
        font-size: 28px;
    }
    .joinus .micon {
        bottom: 13%;
        width: 40.8%;
    }
    .joinus .cloud {
        bottom: -53%;
    }
    .joinus .cartip {
        bottom: 13%;
    }
    .cases .wp .swiper .swiper-wrapper .swiper-slide {
        border-radius: 30px;
        overflow: hidden;
        width: 780px!important;
    }
    .cases .swiper-horizontal>.swiper-scrollbar {
        width: 660px;
        left: 12%;
    }
    .program .sit2 {
        bottom: 35.8%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 35.8%;
        transition: all 0.4s;
    }
}

@media (max-width:1600px) {
    .program .sit2 {
        bottom: 34.8%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 34.8%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -14.5%;
        transition: all 0.4s;
    }
}

@media (max-width:1550px) {
    .program .t2 {
        top: 40%;
    }
    .program .t3 {
        bottom: 15%;
    }
    .program .tbox .title {
        font-size: 32px;
    }
    .program .tbox .desc {
        font-size: 20px;
    }
    .program .tbox .desc {
        margin: 0 0 60px 0;
    }
    .program .sit2 {
        bottom: 33.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 33.5%;
        transition: all 0.4s;
    }
    footer .wp .wrap .phonebox .top .item p {
        font-size: calc(1.52vw + 8px);
        color: #fff;
        line-height: 1;
        font-weight: bold;
    }
}

@media (max-width:1500px) {
    .program .sit4 {
        bottom: -14%;
        transition: all 0.4s;
    }
    .program .sit2 {
        bottom: 32.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 32.5%;
        transition: all 0.4s;
    }
}

@media (max-width:1450px) {
    .indexpro .wp .wrap .module .allin .itemlist .thr .item {
        width: 190px;
    }
    header .wp nav ul .item:hover .subbox {
        height: 250px;
    }
    .program .sit4 {
        bottom: -13.5%;
        transition: all 0.4s;
    }
    .program .sit2 {
        bottom: 31.3%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 31.3%;
        transition: all 0.4s;
    }
    .indexpro .wp .wrap .module .item .tbox .title {
        font-size: 22px;
    }
    .cases .wp .swiper .swiper-wrapper .swiper-slide {
        border-radius: 30px;
        overflow: hidden;
        width: 680px!important;
    }
    .cases .swiper-horizontal>.swiper-scrollbar {
        width: 570px;
        left: 12%;
    }
}

@media (max-width:1400px) {
    .program .t3 {
        bottom: 13%;
        right: 10%;
    }
    .program .sit2 {
        bottom: 30.3%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -12.9%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 30.3%;
        transition: all 0.4s;
    }
}

@media (max-width: 1366px) {
    .program .wp .titlebox {
        padding: 21% 0 0 0;
    }
    .program {
        margin-top: -14%;
    }
    .coop .wrap .tbox .item p {
        font-size: 14px;
    }
    .contacusbar .wp .conbar .more {
        margin: 58px 195px 0 0;
    }
    .d3x .wp .swiper {
        width: 90%;
    }
    .rdpower .wp .wrap .rside .item .pbox img {
        width: 50%;
    }
    .rdpower .wp .wrap .rside .item .tbox .name {
        font-size: 20px;
        color: #fff;
        padding: 15px 0;
    }
    .rdpower .wp .wrap .rside .item .pbox {
        width: 90px;
        height: 90px;
    }
    .company_fac .swiper .swiper-wrapper .swiper-slide {
        width: 900px!important;
        margin: 0 auto;
    }
    .team .wp .swiper {
        width: 90%;
    }
    .ourhonor .swiper {
        max-width: 90%;
    }
    .factory .wp .tbox .item .t1::before {
        content: '';
        width: 38px;
        height: 38px;
        top: -7px;
    }
    .factory .wp .tbox .item .t2::before {
        content: '';
        width: 38px;
        height: 38px;
        top: -7px;
    }
    .factory .wp .tbox .item .t3::before {
        content: '';
        width: 38px;
        height: 38px;
        top: -7px;
    }
    .factory .wp .tbox .item .t4::before {
        content: '';
        width: 38px;
        height: 38px;
        top: -7px;
    }
    .factory .wp .tbox .name {
        font-size: 16px;
    }
    .factory .wp .tbox .item span {
        font-size: 18px;
        padding: 0 0 0 46px;
    }
    .factory .wp .tbox .title {
        font-size: 42px;
    }
    .factory .wp .tbox .desc {
        font-size: 16px;
    }
    .joinus .cartip {
        width: 550px;
        padding: 0 0 0 110px;
    }
    .joinus .cloud {
        bottom: -38%;
    }
    .cases .wp .tbox {
        max-width: 380px;
        min-width: 360px;
    }
    .cases .wp .tbox .cont {
        font-size: 16px;
        color: #333;
        line-height: 32px;
    }
    .cases .wp .tbox .title {
        font-size: 34px;
    }
    .cases .wp .tbox .desc {
        font-size: 20px;
    }
    .indexpro .wp .wrap .module .item .tbox .title {
        font-size: 20px;
    }
    .indexpro .wp .wrap .module .item .tbox .desc {
        font-size: 14px;
    }
    .program .t1 {
        bottom: 11%;
    }
    .program .t2 {
        top: 46%;
    }
    .program .sit2 {
        bottom: 29.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 29.5%;
        transition: all 0.4s;
    }
}

@media (max-width: 1336px) {
    .program .sit4 {
        bottom: -12.6%;
        transition: all 0.4s;
    }
    .program .sit2 {
        bottom: 28.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 28.5%;
        transition: all 0.4s;
    }
}

@media (max-width: 1300px) {}

@media (max-width: 1280px) {
    header .wp nav ul .item:hover .subbox {
        height: 245px;
    }
    .team {
        min-width: 1230px;
    }
    .team .wp .larr {
        width: 50px;
        height: 50px;
    }
    .team .wp .rarr {
        width: 50px;
        height: 50px;
    }
    .d3x .wp .larr {
        width: 50px;
        height: 50px;
    }
    .d3x .wp .rarr {
        width: 50px;
        height: 50px;
    }
    .cases .swiper-horizontal>.swiper-scrollbar {
        width: 480px;
        left: 15%;
    }
    .cases .wp .swiper .swiper-wrapper .swiper-slide {
        border-radius: 30px;
        overflow: hidden;
        width: 600px!important;
    }
    .program .tbox .title {
        font-size: 28px;
    }
    .program .tbox .desc {
        font-size: 18px;
    }
    .program .sit2 {
        bottom: 27.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 27.5%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -12.2%;
        transition: all 0.4s;
    }
}

@media (max-width: 1250px) {
    .program .sit4 {
        bottom: -11.5%;
        transition: all 0.4s;
    }
    .program .sit2 {
        bottom: 27.5%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 27.5%;
        transition: all 0.4s;
    }
}

@media (max-width: 1230px) {
    .program .sit2 {
        bottom: 27%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 27%;
        transition: all 0.4s;
    }
}

@media (max-width: 1220px) {
    .program .sit2 {
        bottom: 26%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 26%;
        transition: all 0.4s;
    }
}

@media (max-width: 1200px) {
    .program .sit2 {
        bottom: 26.0%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 26.0%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -11%;
        transition: all 0.4s;
    }
}

@media (max-width: 1170px) {
    .program .t2 {
        top: 51%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -10.9%;
        transition: all 0.4s;
    }
    .program .sit2 {
        bottom: 25.3%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 25.3%;
        transition: all 0.4s;
    }
}

@media (max-width: 1140px) {
    .program .sit2 {
        bottom: 24.1%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 24.1%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -10.5%;
        transition: all 0.4s;
    }
}

@media (max-width: 1100px) {
    .program .sit2 {
        bottom: 23.1%;
        transition: all 0.4s;
    }
    .program .s2bg {
        bottom: 23.1%;
        transition: all 0.4s;
    }
    .program .sit4 {
        bottom: -9.9%;
        transition: all 0.4s;
    }
}

@media (max-width: 1024px) {}

@media (max-width: 992px) {}

@media (max-width: 768px) {}

@media (max-width: 640px) {}

@media (max-width: 414px) {
    header .logo {
        padding: 0;
        max-width: 30%;
    }
    header .logo img {
        max-width: 100%;
        width: auto;
        height: auto;
    }
}

@media (max-width: 393px) {}

@media (max-width: 375px) {}