/* 公共样式 */

@font-face {
    font-family: 'impact';
    src: url(../font/IMPACT.TTF);
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 0px;
}

::-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;
}

.banner img {
    max-width: 100%;
    min-width: 1200px;
}


/* Float Shadow */

.hvr-float-shadow {
    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;
    -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(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 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) */
}

.empty {
    height: 100px;
    background: #fff;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    width: 90%;
    min-width: 1170px;
    /* overflow: hidden; */
}

.container .titlebox {
    text-align: center;
    padding: 30px 0;
    animation-name: fadeInUp;
    visibility: visible;
}

.container .titlebox img {
    display: block;
    margin: 0 auto;
}

.container .titlebox .desc {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: #000;
}


/* 头部样式 */

.topbar {
    background: #222;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    height: 42px;
    line-height: 42px;
}

.topbar p {
    color: #fff;
}

.topbar p:first-child {
    font-size: 14px;
}

.topbar p:last-child {
    font-size: 24px;
    font-weight: bold;
}

header {
    height: 100px;
    z-index: 99;
    position: absolute;
    width: 100%;
}

header .container {
    display: flex;
    justify-content: space-between;
    animation-name: fadeInDown;
    visibility: visible;
}

header .logobox {
    max-width: 50%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .logobox img {
    height: 39px;
    margin: 0 20px 0 0;
}

header .logobox .txtbox p {
    font-size: 22px;
    color: #000;
    font-weight: bold;
}

header .logobox .txtbox p i {
    color: #1379ac;
    font-weight: bold;
}

header .logobox .txtbox span {
    font-size: 14px;
    font-weight: 100;
}

header nav {
    height: 100px;
    line-height: 100px;
}

header nav .mainnav {
    display: flex;
    justify-content: flex-end;
}

header nav .mainnav .subnav {
    background: #fff;
    line-height: 1;
    display: none;
}

header nav .mainnav .subnav a {
    padding: 20px;
    display: block;
    font-size: 16px;
}

header nav .mainnav .subnav a:hover {
    color: #2864be;
}

header nav .mainnav li {
    flex-grow: 1;
    height: 97px;
    position: relative;
}

header nav .mainnav li:hover .subnav {
    display: block;
}


/* header nav .mainnav li:hover {
    border-bottom: 3px solid #2864be;
} */

header nav .mainnav li:hover>a {
    color: #2864be;
    font-weight: 700;
}

header nav .mainnav li a {
    font-size: 16px;
    color: #707070;
    padding: 0 14px;
}


/* header nav .mainnav li a:hover {
    text-decoration: none;
} */

.searchbox {
    height: 79px;
    border-bottom: 1px solid #ebebeb;
    animation-name: fadeInUp;
    visibility: visible;
}

.searchbox .container {
    height: 79px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.searchbox ul li {
    display: inline-block;
}

.searchbox ul li a {
    color: #272727;
    font-size: 16px;
}

.searchbox ul li .keyitem {
    position: relative;
    margin: 0 14px 0 0;
}

.searchbox ul li .keyitem::after {
    content: '、';
    width: 3px;
    height: 3px;
    position: absolute;
    bottom: 20px;
    right: -8px;
}

.searchbox ul li:last-child .keyitem::after {
    display: none;
}

.searchbox .container .search {
    position: relative;
    width: 284px;
    height: 43px;
    /* border: 1px solid #d7d7d7; */
    border-radius: 21.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.searchbox .container .search input {
    width: 65%;
    padding: 0 0 0 5%;
    outline: none;
    height: 41px;
    border: 1px solid #d7d7d7;
    border-right: 0;
    display: block;
    border-radius: 21.5px 0 0 21.5px;
}

.searchbox .container .search button {
    width: 35%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(to right, #1c70b3, #61b1cb);
}

footer .backtotop {
    position: fixed;
    right: 5%;
    bottom: 20%;
    cursor: pointer;
}

footer {
    background: #333333;
}

footer .container .wrap {
    display: flex;
    padding: 80px 0;
    justify-content: space-between;
    animation-name: fadeInUp;
    visibility: visible;
}

footer .container .wrap .left {
    display: flex;
    align-items: center;
}

footer .container .wrap .left .qrcode {
    display: flex;
    margin: 0 30px 0 0;
}

footer .container .wrap .left .qrcode img {
    width: 98px;
    height: 98px;
    margin: 0 10px 0 0;
}

footer .container .wrap .left .phonebox .phone {
    font-size: 37px;
    color: #fff;
    font-weight: bold;
}

footer .container .wrap .left .phonebox .address {
    font-size: 18px;
    color: #fff;
}

footer .container .wrap .right p {
    color: #fff;
    font-size: 14px;
    text-align: right;
}

footer .container .wrap .right p a {
    color: #fff;
    font-size: 14px;
}


/* 我们的服务 */

.service {
    padding: 0 0 30px 0;
}

.service .container .servicelist {
    display: flex;
    justify-content: flex-start;
    animation-name: fadeInUp;
    visibility: visible;
}

.service .container .servicelist .item {
    width: calc(100% / 4 - 10px);
    margin: 0 10px 0 0;
}

.service .container .servicelist .item:last-child {
    margin: 0;
}

.service .container .servicelist .item .picbox {
    width: 100%;
    overflow: hidden;
    height: calc(10vw + 80px);
    min-height: 230px;
}

.service .container .servicelist .item .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.service .container .servicelist .item .picbox:hover img {
    transform: scale(1.08);
    transition: all 0.6s;
}

.service .container .servicelist .item .txtbox {
    border: 1px solid #e4e4e4;
    padding: 10px 20px;
    height: 180px;
}

.service .container .servicelist .item .txtbox .name {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 0 10px 0;
}

.service .container .servicelist .item .txtbox span {
    font-size: 16px;
    color: #000;
    font-weight: 100;
    display: block;
    padding: 0 0 0 14px;
    position: relative;
    margin: 0 0 6px 0;
}

.service .container .servicelist .item .txtbox span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #267ab7;
    position: absolute;
    left: 0px;
    top: 10px;
    border-radius: 50%;
}

.service .container .phonebox {
    width: 588px;
    height: 51px;
    border: 2px solid #267ab7;
    border-radius: 30px;
    display: flex;
    margin: 30px auto;
    justify-content: flex-start;
    align-items: center;
    animation-name: fadeInRight;
    visibility: visible;
}

.service .container .phonebox .title {
    width: 50%;
    background: #267ab7;
    border-radius: 25px;
    height: 100%;
    text-align: center;
    line-height: 55px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.service .container .phonebox .phonenum {
    font-size: 32px;
    color: #267ab7;
    text-align: center;
    padding: 0 0 0 20px;
    font-weight: bold;
}


/* 行业解决方案 */

.solution {
    background: #f4f4f4;
    padding: 0 0 60px 0;
}

.solution .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.solution .container .leftside {
    width: 22.21%;
    min-width: 250px;
    background: #267ab7;
    border-radius: 8px;
    margin: -20px 0 0 0;
    /* animation-name: fadeInLeft;
    visibility: visible; */
}

.solution .container .leftside .catelist .item {
    height: 85px;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.solution .container .leftside .catelist .item i {
    width: 24px;
    height: 24px;
    background: #5eaeca;
    position: absolute;
    transform: rotate(-45deg);
    right: -2px;
    opacity: 0;
    z-index: 9;
    transition: right 0.2s;
}


/* .solution .container .leftside .catelist .item:hover i {
    right: -12px;
    opacity: 1;
    transition: right 0.2s;
} */

.solution .container .leftside .catelist .item p {
    font-size: 18px;
    color: #fff;
    padding: 0 0 0 20px;
    user-select: none;
}


/* .solution .container .leftside .catelist .item:hover {
    background: linear-gradient(to right, #1c70b3, #61b1cb);
} */

.solution .container .leftside .catelist .active i {
    right: -12px;
    opacity: 1;
    transition: right 0.2s;
}

.solution .container .leftside .catelist .active {
    background: linear-gradient(to right, #1c70b3, #61b1cb);
}

.solution .container .leftside .catelist .item:first-child {
    height: 130px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.solution .container .leftside .catelist .item:last-child {
    border-radius: 0 0 8px 8px;
}

.solution .container .leftside .catelist .item:first-child p {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    width: 100%;
}

.solution .container .leftside .catelist .item:first-child p::after {
    content: '';
    width: 33px;
    height: 33px;
    background: url(../images/cateicon.png) no-repeat center;
    position: absolute;
    right: 45px;
    top: 2px;
}

.solution .container .leftside .catelist .item:first-child:hover p::after {
    animation: swing 0.8s;
}

.solution .container .rightside {
    width: 77.35%;
    /* border: 1px solid #efefef; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* animation-name: fadeInRight;
    visibility: visible; */
}

.solution .container .rightside .swiper {
    max-width: 100%;
}

.solution .container .rightside .title {
    margin: 50px 0 0 0;
}

.solution .container .rightside .swiper .wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.solution .container .rightside .swiper .wrap .top {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 3% 0;
}

.solution .container .rightside .swiper .wrap .top .txtbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 6%;
    position: relative;
    width: 35%;
}

.solution .container .rightside .swiper .wrap .top .txtbox .name {
    font-size: 28px;
    font-weight: bold;
    padding: 10px 0 20px 0;
}

.solution .container .rightside .swiper .wrap .top .txtbox .desc {
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.solution .container .rightside .swiper .wrap .top .txtbox .phonebox {
    position: absolute;
    bottom: 0;
    left: 20%;
}

.solution .container .rightside .swiper .wrap .top .txtbox .phonebox::before {
    content: '';
    width: 41px;
    height: 41px;
    background: url(../images/phoneicion.png) no-repeat center;
    position: absolute;
    left: -48px;
    top: 8px;
}

.solution .container .rightside .swiper .wrap .top .txtbox .phonebox span {
    font-size: 14px;
    color: #000;
}

.solution .container .rightside .swiper .wrap .top .txtbox .phonebox p {
    font-size: 24px;
    color: #000;
    line-height: 1.5;
    font-weight: bold;
}

.solution .container .rightside .swiper .wrap .top .picbox {
    padding: 2%;
    width: 50%;
}

.solution .container .rightside .swiper .wrap .top .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.4s;
}

.solution .container .rightside .swiper .wrap .top .picbox:hover img {
    transition: all 1.4s;
    transform: scale(1.02);
}

.solution .container .rightside .swiper .wrap .btm {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 5px 0 0 0;
}

.solution .container .rightside .swiper .wrap .btm .item {
    width: calc(100% / 3 - 5px);
    margin: 0 5px 0 0;
    position: relative;
    overflow: hidden;
}

.solution .container .rightside .swiper .wrap .btm .item:last-child {
    margin: 0 0 0 0;
}

.solution .container .rightside .swiper .wrap .btm .item .pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution .container .rightside .swiper .wrap .btm .item .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: -100%;
    transition: all 0.6s;
}

.solution .container .rightside .swiper .wrap .btm .item .mask p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0 0 0;
}

.solution .container .rightside .swiper .wrap .btm .item:hover .mask {
    bottom: 0;
    transition: all 0.6s;
}

.chose {
    padding: 30px 0;
}

.chose .chose-cate {
    border-top: 1px solid #ececec;
    margin: 30px 0 50px 0;
    animation-name: fadeInRightBig;
    visibility: visible;
}

.chose .chose-cate .container {
    display: flex;
    justify-content: center;
}

.chose .chose-cate .container .cate-item {
    border-top: 3px solid #2174b5;
    margin: -1px 6.5vw 0 0;
    position: relative;
    user-select: none;
}

.chose .chose-cate .container .cate-item .name {
    margin: 10px 0 0 0;
    font-size: 20px;
    color: #000;
}

.chose .chose-cate .container .cate-item .desc {
    color: #333;
    font-size: 10px;
}

.chose .chose-cate .container .active .name {
    font-weight: bold;
    color: #2174b5;
}

.chose .chose-cate .container .active .desc {
    color: #2174b5;
}

.chose .chose-cate .container .cate-item::after {
    content: '';
    width: 32px;
    height: 32px;
    background: url(../images/downicon.png) no-repeat center;
    position: absolute;
    right: -46px;
    bottom: 8px;
    filter: grayscale(1);
}

.chose .chose-cate .container .active::after {
    filter: grayscale(0);
}

.chose .swiper .chosepic img {
    max-width: 100%;
}

.chose .swiper .chosepic {
    position: relative;
}

.chose .swiper .chosepic .txtbox {
    position: absolute;
    width: 330px;
    top: 34%;
    right: 18vw
}

.chose .swiper .chosepic .txtbox .name {
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    margin: 0 0 10px 0;
}

.chose .swiper .chosepic .txtbox .desc {
    font-size: 16px;
    color: #fff;
}

.chose .swiper .chosepic .txtbox .more {
    width: 173px;
    height: 42px;
    line-height: 42px;
    color: #267ab7;
    text-align: center;
    display: block;
    border-radius: 21px;
    border: none;
    outline: 0;
    background: #fff;
    font-size: 16px;
    margin: 7.2vw 0 0 0;
    overflow: hidden;
}


/* 成品展示 */

.showpro {
    padding: 30px 0 40px 0;
}

.showpro .container .showlist {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation-name: fadeInRightBig;
    visibility: visible;
}

.showpro .container .showlist .item {
    width: calc(100% / 4 - 10px);
    margin: 0 10px 10px 0;
    overflow: hidden;
}

.showpro .container .showlist .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.showpro .container .showlist .item:nth-child(4n) {
    margin: 0 0 10px 0;
}

.showpro .container .showlist .item:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}


/* 首页新闻 */

.indexabout {
    padding: 0 0 60px 0;
    animation-name: fadeInUpBig;
    visibility: visible;
}

.indexabout .container {
    position: relative;
}

.indexabout .container .title {
    padding: 90px 0;
}

.indexabout .container .cont {
    font-size: 16px;
    color: #000;
    width: 520px;
    margin: 0 0 80px 0;
}

.indexabout .container .numbox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.indexabout .container .numbox .item {
    margin: 0 50px 0 0;
}

.indexabout .container .numbox .item p #num1 {
    width: 72px;
    display: inline-block;
}

.indexabout .container .numbox .item p #num2 {
    width: 229px;
    display: inline-block;
}

.indexabout .container .numbox .item p #num3 {
    width: 173px;
    display: inline-block;
}

.indexabout .container .numbox .item p .numi {
    font-size: 80px;
    font-family: 'impact';
    color: #000;
    background-image: linear-gradient(to right, #169fe3, #1379ac);
    -webkit-background-clip: text;
    color: transparent;
}

.indexabout .container .numbox .item p .uni {
    font-size: 18px;
}

.indexabout .container .numbox .item .desc {
    font-size: 18px;
    color: #000;
}

.indexabout .container .mapbox {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.indexabout .container .mapbox .wrap {
    width: 100%;
    height: 100%
}

.indexabout .container .mapbox .wrap .site {
    position: absolute;
    width: 65px;
    height: 65px;
}

.indexabout .container .mapbox .wrap .site .c1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(to right, #169fe3, #1379ac);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px -6px;
}

.indexabout .container .mapbox .wrap .site .c2 {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(to right, #0e3c53, #137cb0);
    opacity: 0.3;
    animation: short 2.4s ease-out infinite normal;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -32.5px -32.5px;
}

.indexabout .container .mapbox .wrap .site1 {
    left: 140px;
    top: 254px;
}

.indexabout .container .mapbox .wrap .site2 {
    left: 488px;
    top: 400px;
}

.indexabout .container .mapbox .wrap .site3 {
    left: 708px;
    top: 404px;
}

.indexabout .container .mapbox .wrap .site4 {
    left: 710px;
    top: 310px;
}

.indexabout .container .mapbox .wrap .site4 img {
    position: absolute;
    z-index: 9;
    top: -25px;
    left: -49px;
}

@keyframes short {
    from {
        opacity: 0.3;
        width: 10px;
        height: 10px;
        left: 50%;
        top: 50%;
        margin: -5px;
    }
    to {
        transform: scale(1.3);
        opacity: 0.01;
        width: 65px;
        height: 65px;
    }
}

.indexabout .container .mapbox .wrap .site4:hover img {
    animation: bounce 1.2s;
}


/* 设备展示 */

.showequ {
    padding: 0 0 25px 0;
}

.showequ .container .wrap {
    display: flex;
    justify-content: flex-start;
    animation-name: fadeInLeftBig;
    visibility: visible;
}

.showequ .container .wrap .left {
    width: 40.8%;
    overflow: hidden;
    height: 28vw;
    margin: 0 10px 0 0;
    min-height: 430px;
}

.showequ .container .wrap .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.showequ .container .wrap .left:hover img {
    transition: all 0.6s;
    transform: scale(1.08);
}

.showequ .container .wrap .right {
    width: 58.31%;
    display: flex;
    flex-direction: column;
    height: 28vw;
    min-height: 430px;
}

.showequ .container .wrap .right .item {
    overflow: hidden;
    width: calc(100% / 2 - 10px);
}

.showequ .container .wrap .right .top .item {
    margin: 0 10px 10px 0;
}

.showequ .container .wrap .right .top .item:nth-child(2n) {
    margin: 0 0 10px 0;
}

.showequ .container .wrap .right .btm .item {
    margin: 0 10px 0 0;
}

.showequ .container .wrap .right .btm .item:nth-child(2n) {
    margin: 0;
}

.showequ .container .wrap .right .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s;
}

.showequ .container .wrap .right .item:hover img {
    transition: all 0.8s;
    transform: scale(1.08);
}

.showequ .container .wrap .right .top {
    display: flex;
    justify-content: flex-start;
    height: 14vw;
    min-height: 215px;
}

.showequ .container .wrap .right .btm {
    display: flex;
    justify-content: flex-start;
    height: 14vw;
    min-height: 215px;
}


/* 合作伙伴 */

.brand {
    position: relative;
    padding: 0 0 50px 0;
}

.brand .container .titlebox {
    text-align: center;
    padding: 121px 0 30px 0;
}

.brand .bgpic {
    position: absolute;
    left: 50%;
    margin: 0 0 0 -960px;
    top: 0;
    z-index: -1;
}

.brand .container .list {
    display: flex;
    flex-wrap: wrap;
    animation-name: fadeInUp;
    visibility: visible;
}

.brand .container .list .item {
    width: calc(100% / 6 - 10px);
    margin: 0 10px 10px 0;
    overflow: hidden;
}

.brand .container .list .item:nth-child(6n) {
    margin: 0 0 10px 0;
}

.brand .container .list .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.2s;
}

.brand .container .list .item:hover img {
    transition: all 0.2s;
    transform: scale(1.05);
}

.case-brand .container .titlebox {
    text-align: center;
    padding: 90px 0 60px 0;
}


/* 首页证书 */

.certifi {
    height: 46.7vw;
    background: url(../images/picture/certifi/bg.jpg) no-repeat center;
    background-size: cover;
    min-height: 740px;
}

.certifi .container .titlepic {
    padding: 60px 0 40px 0;
}

.certifi .container .cerlist {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation-name: fadeInLeftBig;
    visibility: visible;
}

.certifi .container .cerlist .item {
    margin: 0 0 6px 0;
    width: 56.23%;
    display: flex;
    justify-content: flex-start;
    padding: 15px 0;
    background: #fff;
    height: 8.6vw;
    min-height: 150px;
}

.certifi .container .cerlist .item .picbox {
    width: 31.8%;
    min-width: 230px;
    margin: 0 10px 0 0;
    padding: 0 10px;
}

.certifi .container .cerlist .item .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certifi .container .cerlist .item .txtbox {
    width: 67%;
    min-width: 380px;
    max-width: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.certifi .container .cerlist .item .txtbox .name {
    font-size: 26px;
    color: #000;
    font-weight: bold;
}

.certifi .container .cerlist .item .txtbox .desc {
    font-size: calc(1vw - 3px);
    color: #000;
    margin: 10px 0 0 0;
}


/* 首页新闻 */

.indexnews {
    padding: 0 0 50px 0;
    animation-name: fadeInUp;
    visibility: visible;
}

.indexnews .container .top {
    display: flex;
    justify-content: space-between;
    padding: 70px 0 30px 0;
}

.indexnews .container .top .catelist {
    display: flex;
    justify-content: flex-start;
}

.indexnews .container .top .catelist .item {
    width: 190px;
    height: 75px;
    text-align: center;
    background: url(../images/picture/news/bg2.png) no-repeat center;
    background-position: top;
    color: #000;
    font-size: 22px;
    line-height: 60px;
    margin: 0 10px 0 0;
}

.indexnews .container .top .catelist .active {
    background: url(../images/picture/news/bg.png) no-repeat center;
    background-position: top;
    font-weight: bold;
    color: #fff;
}

.indexnews .container .top .catelist .active a {
    color: #fff;
}

.indexnews .container .newslist {
    display: flex;
    justify-content: flex-start;
}

.indexnews .container .newslist .item {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 0 0;
}

.indexnews .container .newslist .item:last-child {
    margin: 0;
}

.indexnews .container .newslist .item .picbox {
    width: 100%;
    overflow: hidden;
    height: calc(10vw + 80px);
    min-height: 230px;
}

.indexnews .container .newslist .item .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.indexnews .container .newslist .item .picbox:hover img {
    transform: scale(1.08);
    transition: all 0.6s;
}

.indexnews .container .newslist .item .txtbox {
    border: 1px solid #e4e4e4;
    padding: 10px 20px;
    height: 120px;
}

.indexnews .container .newslist .item .txtbox .name {
    font-size: 22px;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 10px 0 10px 0;
}

.indexnews .container .newslist .item .txtbox span {
    font-size: 16px;
    color: #000;
    font-weight: 100;
    display: block;
    position: relative;
    margin: 0 0 6px 0;
}


/* 广告 */

.adv {
    border: 1px solid #ececec;
    padding: 40px 0;
    animation-name: fadeInUp;
    visibility: visible;
}

.adv img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}


/* 底部导航 */

.btm-nav {
    height: 70px;
    background: linear-gradient(to right, #0e3c53, #137cb0);
    animation-name: fadeInUp;
    visibility: visible;
}

.btm-nav .container ul {
    display: flex;
    width: 100%;
    justify-content: center;
    height: 70px;
    align-items: center;
}

.btm-nav .container ul li a {
    color: #fff;
    font-size: 18px;
    margin: 0 30px;
}


/* 关于我们 */

.about .container .wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 0 100px 0;
}

.about .container .wrap .left {
    padding: 130px 0 0 0;
}

.about .container .wrap .right {
    padding: 230px 160px 0 0;
}

.about .container .wrap .right .cont {
    font-size: 16px;
    color: #000;
    max-width: 800px;
    margin: 20px 0;
}

.about .container .wrap .right .cont span {
    color: #f20000
}

.company img {
    max-width: 100%;
}

.about-numbox {
    background: #1379ac;
    padding: 30px 0;
    margin: 0 0 50px 0;
}

.about-numbox .container .numbox {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.about-numbox .container .numbox .item {
    margin: 0 3vw 0 0;
}

.about-numbox .container .numbox .item p #num1 {
    width: 72px;
    display: inline-block;
}

.about-numbox .container .numbox .item p #num2 {
    width: 229px;
    display: inline-block;
}

.about-numbox .container .numbox .item p #num3 {
    width: 173px;
    display: inline-block;
}

.about-numbox .container .numbox .item p .numi {
    font-size: 80px;
    font-family: 'impact';
    color: #fff;
}

.about-numbox .container .numbox .item p .uni {
    font-size: 18px;
    color: #fff;
}

.about-numbox .container .numbox .item .desc {
    font-size: 18px;
    color: #fff;
}

.about-certifi {
    padding: 0 0 50px 0;
}

.about-certifi .swiper .neiceng .swiper-slide {
    position: relative;
    overflow: hidden;
    width: calc(100% / 5 - 20px);
    margin-right: 20px;
    background: #fff;
}

.about-certifi .swiper .neiceng .swiper-slide:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    /* background: url(../images/picture/certifi/rongyupng.png) no-repeat; */
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.about-certifi .swiper .neiceng .swiper-slide.d-img:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    /* background: url(../images/picture/certifi/rongyupng.png) no-repeat; */
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
    display: none;
}

.about-certifi .swiper-slide.d-img {
    display: block;
}

.about-certifi .swiper .neiceng .swiper-slide.d-img .dimg {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    height: calc(50% - 10px);
}

.about-certifi .swiper .neiceng .swiper-slide.d-img .dimg:before {
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    /* background: url(../images/picture/certifi/rongyupng.png) no-repeat; */
    background-size: 100% 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.about-certifi .swiper .neiceng .swiper-slide.d-img .dimg img {
    width: 100%;
    height: calc(145px + 2.2vw);
    padding-left: 2.5%;
}

.about-certifi .swiper .neiceng .swiper-slide img {
    transform: scale(0.9);
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* 模具开发 */

.pro-solution {
    background: #f4f4f4;
    padding: 0 0 60px 0;
}

.pro-solution .titlebox {
    padding: 60px 0 30px;
    text-align: center;
}

.pro-solution .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pro-solution .container .leftside {
    width: 22.21%;
    min-width: 250px;
    background: #267ab7;
    border-radius: 8px;
    /* animation-name: fadeInLeft;
    visibility: visible; */
}

.pro-solution .container .leftside .catelist .item {
    height: 85px;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.pro-solution .container .leftside .catelist .item i {
    width: 24px;
    height: 24px;
    background: #5eaeca;
    position: absolute;
    transform: rotate(-45deg);
    right: -2px;
    opacity: 0;
    z-index: 9;
    transition: right 0.2s;
}


/* .pro-solution .container .leftside .catelist .item:hover i {
    right: -12px;
    opacity: 1;
    transition: right 0.2s;
} */

.pro-solution .container .leftside .catelist .item p {
    font-size: 18px;
    color: #fff;
    padding: 0 0 0 20px;
    user-select: none;
}


/* .pro-solution .container .leftside .catelist .item:hover {
    background: linear-gradient(to right, #1c70b3, #61b1cb);
} */

.pro-solution .container .leftside .catelist .active i {
    right: -12px;
    opacity: 1;
    transition: right 0.2s;
}

.pro-solution .container .leftside .catelist .active {
    background: linear-gradient(to right, #1c70b3, #61b1cb);
}

.pro-solution .container .leftside .catelist .item:first-child {
    height: 130px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.pro-solution .container .leftside .catelist .item:last-child {
    border-radius: 0 0 8px 8px;
    border-bottom: 0;
}

.pro-solution .container .leftside .catelist .item:first-child p {
    font-size: 22px;
    font-weight: bold;
    position: relative;
    width: 100%;
}

.pro-solution .container .leftside .catelist .item:first-child p::after {
    content: '';
    width: 33px;
    height: 33px;
    background: url(../images/cateicon.png) no-repeat center;
    position: absolute;
    right: 45px;
    top: 2px;
}

.pro-solution .container .leftside .catelist .item:first-child:hover p::after {
    animation: swing 0.8s;
}

.pro-solution .container .rightside {
    width: 77.35%;
    /* border: 1px solid #efefef; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    /* animation-name: fadeInRight;
    visibility: visible; */
}

.pro-solution .container .rightside .swiper {
    max-width: 100%;
}

.pro-solution .container .rightside .swiper .wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pro-solution .container .rightside .swiper .wrap .top {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 3% 0;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 6%;
    position: relative;
    width: 35%;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .name {
    font-size: 28px;
    font-weight: bold;
    padding: 10px 0 20px 0;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .desc {
    font-size: 16px;
    color: #000;
    line-height: 24px;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .phonebox {
    position: absolute;
    bottom: 0;
    left: 20%;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .phonebox::before {
    content: '';
    width: 41px;
    height: 41px;
    background: url(../images/phoneicion.png) no-repeat center;
    position: absolute;
    left: -48px;
    top: 8px;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .phonebox span {
    font-size: 14px;
    color: #000;
}

.pro-solution .container .rightside .swiper .wrap .top .txtbox .phonebox p {
    font-size: 24px;
    color: #000;
    line-height: 1.5;
    font-weight: bold;
}

.pro-solution .container .rightside .swiper .wrap .top .picbox {
    padding: 2%;
    width: 50%;
}

.pro-solution .container .rightside .swiper .wrap .top .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1.4s;
}

.pro-solution .container .rightside .swiper .wrap .top .picbox:hover img {
    transition: all 1.4s;
    transform: scale(1.02);
}

.pro-solution .container .rightside .swiper .wrap .btm {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 5px 0 0 0;
}

.pro-solution .container .rightside .swiper .wrap .btm .item {
    width: calc(100% / 3 - 5px);
    margin: 0 5px 5px 0;
    position: relative;
    overflow: hidden;
}

.pro-solution .container .rightside .swiper .wrap .btm .item:nth-child(3n) {
    margin: 0 0 5px 0;
}

.pro-solution .container .rightside .swiper .wrap .btm .item .pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-solution .container .rightside .swiper .wrap .btm .item .mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    bottom: -100%;
    transition: all 0.6s;
}

.pro-solution .container .rightside .swiper .wrap .btm .item .mask p {
    color: #fff;
    font-size: 16px;
    margin: 10px 0 0 0;
}

.pro-solution .container .rightside .swiper .wrap .btm .item:hover .mask {
    bottom: 0;
    transition: all 0.6s;
}

.newscenter {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.newscenter .titlepic {
    display: block;
    margin: 0 auto;
}


/* 新闻中心 */

.newslist {
    margin: 60px 0;
}

.newslist .newsitem {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 20px 0;
    background: #fff;
}

.newslist .newsitem:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.newslist .newsitem .picbox {
    width: 30%;
}

.newslist .newsitem .picbox img {
    width: 100%;
    height: 100%;
}

.newslist .newsitem .txtbox {
    width: 65%;
    padding: 30px 20px;
}

.newslist .newsitem .txtbox .name {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
    text-overflow: ellipsis;
    width: 90%;
    overflow: hidden;
    white-space: nowrap;
}

.newslist .newsitem .txtbox .date {
    margin: 20px 0;
    font-size: 14px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.newslist .newsitem .txtbox .cont {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}


/*页码*/

.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: #2174b5;
    color: #fff;
}

.cases {
    padding: 0 0 50px 0;
    background-color: #f4f4f4;
}

.cases .container .titlepic {
    display: block;
    margin: 0 auto;
    padding: 50px 0;
}


/* 案例中心 */

.cases .container .caselist {
    display: flex;
    flex-wrap: wrap;
}

.cases .container .caselist .item {
    width: calc(100% / 3 - 10px);
    margin: 0 10px 10px 0;
}

.cases .container .caselist .item:nth-child(3n) {
    margin: 0 0 10px 0;
}

.cases .container .caselist .item .picbox {
    width: 100%;
    max-height: 317px;
    height: 16.5vw;
    min-height: 250px;
    overflow: hidden;
}

.cases .container .caselist .item .picbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.cases .container .caselist .item .picbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.cases .container .caselist .item .name {
    font-size: 16px;
    color: #000;
    text-align: center;
    padding: 6px 0;
}

.g-tit-q {
    clear: both
}

.g-tit-q .tit {
    font-size: 24px;
    color: #dcdcdc;
    position: relative;
    height: 50px;
    overflow: hidden;
    z-index: 2;
    background: url(../images/qwy-i1.png) no-repeat center left;
    background-size: 13px;
    padding-left: 30px;
    text-transform: uppercase;
    padding-top: 14px;
    font-weight: bold;
}

.g-tit-q .tit em {
    font-size: 30px;
    color: #464646;
    display: block;
    position: absolute;
    left: 30px;
    bottom: 8px;
    letter-spacing: 3px;
    font-weight: bold;
}

.g-tit-q .desc {
    float: right;
    font-weight: 700;
    font-size: 20px;
    color: #323232;
    display: block;
    letter-spacing: 2px
}

.m-about {
    background-color: #fff;
    overflow: hidden;
    padding: 70px 0 125px;
    margin-top: 40px
}

.m-about .about {
    float: left;
    padding-top: 10px;
    width: 50%
}

.m-about .about .desc {
    font-size: 14px;
    color: #646464;
    line-height: 30px;
    margin-top: 22px;
    margin-bottom: 56px
}

.m-about .about .desc span {
    padding-left: 20px
}

.m-about .about .phone {
    margin-bottom: 47px
}

.m-about .about .phone p {
    font-size: 14px;
    color: #969696;
    line-height: 24px;
    margin-bottom: 5px
}

.m-about .about .phone span {
    font-size: 36px;
    color: #2174b5;
    line-height: 24px;
    font-weight: 700
}

.m-about .about .ul-qr {
    overflow: hidden
}

.m-about .about .ul-qr li {
    float: left;
    margin-right: 30px;
    font-size: 12px;
    color: #969696
}

.m-about .about .ul-qr li .pic {
    width: 110px;
    height: auto;
    margin-bottom: 12px
}

.m-about .about .ul-qr li .pic img {
    width: 100%;
    display: block
}

.m-about .info {
    overflow: hidden;
    padding-top: 10px
}

.m-about .info .m-ly {
    padding-top: 30px
}

.m-about .info .ul-ly {
    overflow: hidden;
    margin-bottom: 3px
}

.m-about .info .ul-ly li {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: solid 1px #dcdcdc;
    padding: 9.5px 10px;
    margin-bottom: 13px;
    overflow: hidden
}

.m-about .info .ul-ly li span {
    float: left;
    display: block;
    font-size: 16px;
    color: #969696
}

.m-about .info .ul-ly li .inp {
    overflow: hidden
}

.m-about .info .ul-ly li input {
    border: none;
    display: block;
    overflow: hidden;
    width: 100%;
    padding-left: 5px;
    font-size: 16px;
    color: #333;
    outline: none;
    border: none;
}

.m-about .info .ul-ly li textarea {
    border: none;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 128px;
    resize: initial;
    font-size: 16px;
    color: #333;
    outline: none;
    border: none;
}

.m-about .info .btn {
    background-color: #2174b5;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    border: transparent 1px solid;
    line-height: 40px;
    border-radius: 5px;
    padding: 0 50px;
    transition: .3s;
}

.m-about .info .btn:hover {
    background-color: #fff;
    color: #2174b5;
    border: solid 1px #2174b5
}

.map {
    height: 600px;
}


/* 产品详情 */

.prodetail .container .wrapper {
    display: flex;
    padding: 120px 0;
    width: 100%;
}

.prodetail .container .wrapper .showpic {
    width: 44.375%;
    overflow: hidden;
}

.prodetail .container .wrapper .showpic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prodetail .container .wrapper .pro-info {
    width: 50%;
    padding: 0 0 0 5.1875%;
}

.prodetail .container .wrapper .pro-info .name {
    font-size: 30px;
    font-weight: bold;
    color: #222;
    border-bottom: 1px solid #dbdbdb;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
}

.prodetail .container .wrapper .pro-info .cont {
    font-size: 16px;
    margin: 16px 0;
    color: #666;
}

.prodetail .container .wrapper .pro-info img {
    max-width: 100%;
}


/* 详情内容 */

.pro-content .container .title {
    height: 55px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    line-height: 55px;
}

.pro-content .container .title p {
    font-size: 16px;
    color: #222;
    height: 52px;
    border-bottom: 3px solid #2174b5;
    width: 65px;
}

.pro-content .container .content {
    width: 96%;
    margin: 2% 1%;
}

.pro-content .container .content p {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.pro-content .container .content img {
    max-width: 100%!important;
    margin: 10px auto!important;
    display: block;
}

.hot-pro .container .title {
    height: 55px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
    line-height: 55px;
}

.hot-pro .container .title p {
    font-size: 16px;
    color: #222;
    height: 52px;
    border-bottom: 3px solid #2174b5;
    width: 100px;
}

.hot-pro .container .hot-pro-list {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0;
}

.hot-pro .container .hot-pro-list .proitem {
    width: calc(100% / 4 - 10px);
    margin: 0 10px 10px 0;
}

.hot-pro .container .hot-pro-list .proitem .picbox {
    width: 100%;
    height: 19.6vw;
    overflow: hidden;
}

.hot-pro .container .hot-pro-list .proitem .picbox:hover img {
    transition: all 0.4s;
    transform: scale(1.05);
}

.hot-pro .container .hot-pro-list .proitem .picbox:nth-child(4n) {
    margin: 0 0 10px 0;
}

.hot-pro .container .hot-pro-list .proitem .picbox img {
    transition: all 0.4s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hot-pro .container .hot-pro-list .proitem .txtbox {
    text-align: center;
    padding: 10px 0;
}

.hot-pro .container .hot-pro-list .proitem .txtbox .name {
    text-align: center;
    font-size: 20px;
    color: #222;
}


/* 新闻详情 */

.newsdetail-show {
    padding: 50px 0;
    background: #f8f8f8;
}

.newsdetail-show .container .detailtitle {
    font-size: 29px;
    color: #333;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: bold;
}

.newsdetail-show .container .desc {
    max-width: 1200px;
    display: block;
    margin: 0 auto;
    border-bottom: 1px solid #cdcdcd;
}

.newsdetail-show .container .desc .time {
    font-size: 16px;
    font-weight: 400px;
    color: #999999;
    display: inline-block;
    text-align: left;
    margin: 20px 30px 20px 0;
}

.newsdetail-show .container .desc .read {
    font-size: 16px;
    font-weight: 400px;
    color: #999999;
    display: inline-block;
    text-align: left;
    ;
}

.newsdetail-show .container .detailcontent {
    padding: 0 30px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.newsdetail-show .container .detailcontent img {
    max-width: 100%;
    display: block;
    margin: 10px auto;
}

.newsdetail-show .container .detailcontent p {
    font-size: 16px;
    color: #333;
    font-weight: 300;
    line-height: 36px;
    text-indent: 32px;
    margin: 30px 0;
}

.container .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;
}

.container .prevnext .prev,
.next {
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.container .prevnext .next {
    text-align: right;
}


/* ------------------------------------------媒介查询---------------------------------------------- */

@media screen and (max-width:1550px) {
    .chose .swiper .chosepic .txtbox {
        position: absolute;
        width: 330px;
        top: 32%;
        right: 10vw
    }
}

@media screen and (max-width:1366px) {
    .chose .swiper .chosepic .txtbox {
        position: absolute;
        width: 330px;
        top: 25%;
        right: 7vw
    }
}

@media screen and (max-width:1280px) {
    .certifi .container .cerlist .item .txtbox .desc {
        font-size: calc(1vw);
        color: #000;
        margin: 10px 0 0 0;
    }
}