/* 公共样式 */

@font-face {
    font-family: arial;
    src: url(../font/arial.ttf);
}

@font-face {
    font-family: arial-regular;
    src: url(../font/arial.ttf);
}

@font-face {
    font-family: arial-normal;
    src: url(../font/ARIALN.TTF);
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px auto 30px;
}

.pagination li {
    width: 30px;
    height: 30px;
    margin: 10px 10px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 26px;
}

.pagination .disabled {
    opacity: 0.5;
}

.pagination .active {
    background: #88af2f;
    color: #fff;
}

::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 0px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

::-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;
}


/* .empty {
    height: 90px;
    background: #fff;
} */

.wp {
    min-width: 1170px;
    max-width: 1440px;
    margin: 0 auto;
    /* overflow: hidden; */
    /* padding: 0 calc(1vw + 20px); */
}


/* 头部样式 */

header {
    height: 90px;
    z-index: 99;
    position: relative;
    width: 100%;
}

header .wp {
    display: flex;
    justify-content: space-between;
    animation-name: fadeInDown;
    visibility: visible;
}

header .logobox {
    max-width: 410px;
    overflow: hidden;
}

header .logobox img {
    /* height: 63px; */
    margin: 14px 0 0 0;
    outline: none;
}

header nav {
    height: 90px;
    line-height: 90px;
}

header .navbox {
    display: flex;
    align-items: center;
    justify-content: space-between
}

header nav .mainnav {
    display: flex;
    justify-content: flex-end;
}

header .senav {
    background: #fff;
    line-height: 1;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 50px 0 10px 0;
    top: 90px;
    transition: all 0.4s;
    border-top: 1px solid #8c8c8c;
}

header .senav .wp .item {
    width: calc(100% / 6 - 10px);
}

header .senav .wp .item .pbox {
    width: 100%;
    height: 277px;
    overflow: hidden;
}

header .senav .wp .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

header .senav .wp .item .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.08);
}

header .senav .wp .item .name {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
}

header .senav .wp .item:hover .name {
    color: #88af2f;
}

header .tecwin {
    background: #fff;
    line-height: 1;
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    height: max-content;
    padding: 50px 0 10px 0;
    top: 90px;
    transition: all 0.4s;
    border-top: 1px solid #8c8c8c;
}

header .tecwin .wp .item {
    margin: 0 20px 0 0;
}

header .tecwin .wp .item:nth-child(1) {
    flex-grow: 2;
}

header .tecwin .wp .item:nth-child(2) {
    flex-grow: 1;
}

header .tecwin .wp .item:nth-child(3) {
    flex-grow: 1;
}

header .tecwin .wp .item .pbox {
    height: 277px;
    overflow: hidden;
}

header .tecwin .wp .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

header .tecwin .wp .item .pbox:hover img {
    transition: all 0.4s;
    transform: scale(1.08);
}

header .tecwin .wp .item .name {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    text-transform: uppercase;
}

header .tecwin .wp .item:hover .name {
    color: #88af2f;
}

header nav .mainnav li {
    flex-grow: 1;
    height: 90px;
    /* position: relative; */
}

header nav .mainnav li:hover {
    background: #88af2f;
}

header nav .mainnav li:hover>a {
    color: #fff;
}

header nav .mainnav li a {
    font-size: 18px;
    color: #333;
    padding: 0 20px;
    outline: none;
    text-transform: uppercase;
}

header nav .mainnav li a:hover {
    text-decoration: none;
}

header .wp .phonebox {
    position: relative;
    padding: 17px 0 0 50px;
}

header .wp .phonebox::before {
    content: '';
    width: 34px;
    height: 34px;
    background: url(../images/phoneicon.png)no-repeat center;
    position: absolute;
    left: 0px;
    top: 32px;
}

header .wp .phonebox p {
    font-size: 24px;
    font-weight: bolder;
    color: #2864be;
}

header .searchbox {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

header .searchbox input {
    outline: 0;
    border: 0;
    border-bottom: 1px solid #efefef;
    margin: 0;
    height: 38px;
    background: none;
    color: #fff;
    width: 0;
    transition: all 0.4s;
}

header .searchbox .search-close {
    position: absolute;
    right: 5px;
    top: 5px;
    display: none;
}

header .searchbox-active .search-close {
    display: block;
    z-index: 9;
}

header .searchbox-active input {
    width: 150px;
    transition: all 0.4s;
    margin: 0 10px 0 0;
}

header .searchbox input::placeholder {
    color: #666;
}

header .lang a {
    color: #333;
    font-size: 18px;
}

.banner {
    position: relative;
}

.banner .swiper-pagination-bullet {
    background: #fff;
}

.banner .swiper-pagination-bullet-active {
    background: #88af2f;
}

.banner .swiper-button-next:after {
    color: #88af2f;
}

.banner .swiper-button-prev {
    color: #88af2f;
}

.banner .btn-a {
    width: 120px;
    height: 40px;
    display: block;
    /* border: 1px solid #000; */
    position: absolute;
    z-index: 9;
    top: 58%;
    left: 8.3%;
}

.banner img {
    max-width: 100%;
    min-width: 1250px;
}

.fontmes {
    /* background: #f4f5f4; */
    padding: 50px 0 0 0;
}

.fontmes .wp .box {
    width: max-content;
    margin: 0 auto;
    padding: 34px 0 0 0;
    position: relative;
}

.fontmes .wp .box .dou {
    position: absolute;
    left: 0;
    top: 0;
}

.fontmes .wp .box .tenet {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.fontmes .wp .box p {
    font-size: 20px;
    text-align: center;
}

.fontmes .wp .box span {
    font-size: 20px;
    text-align: right;
    display: block;
    width: 100%;
}

.tecsevice {
    background: #f4f5f4;
    padding: 40px 0 0 0;
}

.tecsevice .wp .titlebox {
    padding: 42px 0 33px 0;
    position: relative;
}

.tecsevice .wp .titlebox .tecpic {
    position: absolute;
    top: 0;
    left: 0;
}

.tecsevice .wp .titlebox p {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
}

.tecsevice .wp .titlebox .service {
    position: absolute;
    left: 0;
    bottom: 0;
}

.tecsevice .wp .service {
    display: flex;
    justify-content: flex-start;
    margin: 30px 0 0 0;
}

.tecsevice .wp .service .pbox {
    width: 50%;
    overflow: hidden;
}

.tecsevice .wp .service .pbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.tecsevice .wp .service .pbox:hover img {
    transition: all 0.6s;
    transform: scale(1.05);
}

.tecsevice .wp .service .tbox {
    width: calc(50% - 135px);
    padding: 0 65px 0 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #fff;
}

.tecsevice .wp .service .tbox .name {
    font-size: 24px;
    font-weight: 400;
    color: #88af2f;
    text-transform: uppercase;
}

.tecsevice .wp .service .tbox .cont {
    font-size: 16px;
    color: #000;
    line-height: 30px;
    margin: 10px 0 30px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.tecsevice .wp .service .tbox .more {
    width: 143px;
    height: 50px;
    border: 1px solid #88af2f;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #88af2f;
    font-size: 16px;
    text-transform: uppercase;
}

.tecsevice .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 0 0 60px 0;
}

.tecsevice .wp .wrap .service {
    flex-direction: column;
    width: 49%;
}

.tecsevice .wp .wrap .service .pbox {
    width: 100%;
}

.tecsevice .wp .wrap .service .tbox {
    width: calc(100% - 135px);
    padding: 34px 65px 35px 70px;
}

.tecsevice .wp .wrap .service .more {
    width: 143px;
    height: 50px;
    border: 1px solid #88af2f;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #88af2f;
    font-size: 16px;
}

.tecsevice .wp .service .more:hover {
    color: #fff;
}


/* Bounce To Right */

.hvr-bounce-to-right {
    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-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #88af2f;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-bounce-to-right:hover,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:active {
    color: white;
}

.hvr-bounce-to-right:hover:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.adv {
    position: relative;
    /* height: 430px; */
    /* background-color: #f4f5f4; */
    background-size: cover;
    padding: 70px 0 0 0;
    /* margin: 0 0 40px 0; */
}

.adv .compet {
    max-width: 100%;
    min-width: 1200px;
}

.indexpro {
    /* background: #f4f5f4; */
}

.indexpro .wp .titlebox {
    padding: 42px 0 33px 0;
    position: relative;
}

.indexpro .wp .titlebox .product {
    position: absolute;
    top: 0;
    left: 0;
}

.indexpro .wp .titlebox .center {
    position: absolute;
    bottom: 0;
    left: 0;
}

.indexpro .wp .titlebox p {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
}

.indexpro .wp .list {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 0 0;
}

.indexpro .wp .list .item {
    width: calc(100% / 3 - 10px);
    margin: 0 15px 15px 0;
    overflow: hidden;
    position: relative;
}

.indexpro .wp .list .item:nth-child(3n) {
    margin: 0 0 15px 0;
}

.indexpro .wp .list .item .propic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.indexpro .wp .list .item:hover .propic {
    transition: all 0.6s;
    transform: scale(1.05);
}

.indexpro .wp .list .item .name {
    position: absolute;
    height: 60px;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    z-index: 9;
    left: 0;
    bottom: 0;
    color: #fff;
    text-transform: uppercase;
}

.indexpro .wp .list .item:hover .name {
    background: #88af2f;
}

.indexpro .wp .more {
    width: 200px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid #88af2f;
    color: #333;
    margin: 35px auto 0;
    text-transform: uppercase;
}

.indexpro .wp .more:hover {
    color: #fff;
}

.videobox {
    height: 500px;
    padding: 0 0 70px 0;
}

.videobox video {
    height: 500px;
    width: 100%;
    background: #000;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSJ0cmFuc3BhcmVudCI+PC9yZWN0Pgo8cGF0aCBkPSJNMCA1TDUgMFpNNiA0TDQgNlpNLTEgMUwxIC0xWiIgc3Ryb2tlPSIjMjkyNzI3IiBzdHJva2Utd2lkdGg9IjMuMjUiIG9wYWNpdHk9Ii4yNSI+PC9wYXRoPgo8L3N2Zz4=);
    opacity: 0.9;
    display: block;
}

.xl-chrome-ext-bar {
    display: none;
}

.indexabout .wp .wrap {
    display: flex;
    justify-content: flex-start;
    padding: 0 0 180px 0;
}

.indexabout .wp .wrap .titlebox {
    padding: 42px 0 33px 0;
    position: relative;
    min-width: 540px;
}

.indexabout .wp .wrap .titlebox .who {
    position: absolute;
    top: 0;
    left: 0;
}

.indexabout .wp .wrap .titlebox p {
    font-size: 40px;
    color: #333333;
    font-weight: bold;
    text-transform: uppercase;
}

.indexabout .wp .wrap .titlebox .are {
    position: absolute;
    bottom: 113px;
    left: 0;
}

.indexabout .wp .wrap .content {
    max-width: 1022px;
    position: relative;
}

.indexabout .wp .wrap .content .cont {
    font-size: 16px;
    color: #333;
    line-height: 30px;
    margin: 0 0 20px 0;
}

.indexabout .wp .wrap .content .more {
    width: 200px;
    height: 60px;
    font-size: 20px;
    color: #88af2f;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    position: absolute;
    bottom: -80px;
    border: 1px solid #88af2f;
    text-transform: uppercase;
}

.indexabout .wp .wrap .content .more:hover {
    color: #fff;
}

.messagebox .wp .formbox {
    box-shadow: 0 0 10px rgba(40, 42, 42, 0.1);
    margin: 100px 0 60px;
    padding: 80px 0 50px 0;
    position: relative;
}

.messagebox .wp .formbox::before {
    content: '';
    width: 355px;
    height: 65px;
    background: url(../images/picture/contact/message.png) no-repeat center;
    position: absolute;
    z-index: -1;
    top: -49px;
    left: 50%;
    transform: translateX(-50%);
}

.messagebox .wp .formbox .wrap {
    padding: 0 80px;
    display: flex;
    flex-wrap: wrap;
}

.messagebox .wp .formbox .wrap .item {
    width: calc(100% / 2 - 50px);
    margin: 0 100px 30px 0;
}

.messagebox .wp .formbox .wrap .item:nth-child(2n) {
    margin: 0;
}

.messagebox .wp .formbox .wrap .item input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #595656;
    outline: none;
    padding: 5px 0;
    font-family: 'arial-regular';
    font-size: 20px;
    color: #999;
}

.messagebox .wp .formbox .wrap .item input::placeholder {
    font-family: 'arial-regular';
    font-size: 20px;
    color: #999;
}

.messagebox .wp .formbox textarea {
    width: calc(100% - 160px);
    margin: 0 auto;
    height: 180px;
    border: 0;
    border-bottom: 1px solid #595656;
    outline: none;
    display: block;
    font-family: 'arial-regular';
    font-size: 20px;
    color: #999;
    resize: none;
}

.messagebox .wp .formbox textarea::placeholder {
    font-family: 'arial-regular';
    font-size: 20px;
    color: #999;
}

.messagebox .wp .formbox .sub {
    width: 200px;
    height: 60px;
    text-align: center;
    color: #fff;
    background: #88af2f;
    border-radius: 10px;
    outline: none;
    border: 0;
    margin: 40px auto;
    font-size: 20px;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}

.messagebox .wp .formbox .sub::placeholder {
    color: #fff;
}

.linkmap {
    position: relative;
}

.linkmap .wp .contactpic {
    display: block;
    margin: 0 auto;
}

.linkmap .wp .wrap {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}

.linkmap .wp .wrap .linkmes {}

.linkmap .wp .wrap .linkmes .linklogo {
    margin: 0 0 10px 0;
}

.linkmap .wp .wrap .linkmes .cont {
    font-size: 20px;
    color: #333;
    font-family: 'arial-regular';
    padding: 0 0 0 35px;
    margin: 20px 0;
    display: flex;
    position: relative;
}

.linkmap .wp .wrap .linkmes .cont i {
    margin: 0 5px 0 0;
}

.linkmap .wp .wrap .linkmes .cont::before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0px;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(2)::before {
    background: url(../images/picture/contact/001.png) no-repeat center;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(3)::before {
    background: url(../images/picture/contact/002.png) no-repeat center;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(4)::before {
    background: url(../images/picture/contact/003.png) no-repeat center;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(5)::before {
    background: url(../images/picture/contact/004.png) no-repeat center;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(6)::before {
    background: url(../images/picture/contact/005.png) no-repeat center;
}

.linkmap .wp .wrap .linkmes .cont:nth-child(7)::before {
    background: url(../images/picture/contact/006.png) no-repeat center;
}

.linkmap .wp .wrap .map {
    width: 50%;
    height: 450px;
    border: 4px solid #88af2f;
}

.about {
    background: url(../images/picture/about/bg.png) no-repeat;
    background-position: center bottom;
    padding: 0 0 300px 0;
}

.about .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 50px 0;
}

.about .wp .wrap2 {
    padding: 140px 0 50px 0;
}

.about .wp .wrap .lside {
    width: 40%;
    padding: 30px 0 0 0;
}

.about .wp .wrap .lside .name {
    font-size: 48px;
    font-family: 'arial';
    font-weight: bold;
    color: #595656;
}

.about .wp .wrap .lside .name b {
    color: #88af2f;
}

.about .wp .wrap .lside .desc {
    font-size: 24px;
    color: #595656;
    font-family: 'arial-regular';
}

.about .wp .wrap .rside {
    width: 52%;
}

.about .wp .wrap .rside .line {
    display: block;
    height: 2px;
    width: 100px;
    background: #88af2f;
    margin: 0 0 30px 0;
}

.about .wp .wrap .rside .cont {
    font-size: 18px;
    color: #333;
    font-family: 'arial-regular';
    margin: 0 0 10px 0;
}

.procenter .wp .wrap {
    display: flex;
    justify-content: space-between;
    padding: 60px 0 50px 0;
}

.procenter .wp .wrap .lside {
    width: 23.6%;
    max-width: 340px;
}

.procenter .wp .wrap .lside .title {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #88af2f;
    font-size: 28px;
    font-family: 'arial';
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

.procenter .wp .wrap .lside .pronav {}

.procenter .wp .wrap .lside .pronav .ful {}

.procenter .wp .wrap .lside .pronav .ful .fli {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #88af2f;
}

.procenter .wp .wrap .lside .pronav .ful .fli .wpa {
    width: calc(100% - 36px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 18px;
}

.procenter .wp .wrap .lside .pronav img {
    margin: 0 0 0 13px;
    transition: all 0.4s;
    display: none;
}

.procenter .wp .wrap .lside .pronav .ful .active .wpa {
    background: #f5f7ef;
    transition: all 0.4s;
}

.procenter .wp .wrap .lside .pronav .ful .active .farrow {
    transform: rotate(-180deg);
    transition: all 0.4s;
}

.procenter .wp .wrap .lside .pronav .ful .fli a {
    font-size: 20px;
    display: block;
    font-family: 'arial-regular';
    color: #595656;
    line-height: 1;
    text-transform: uppercase;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav {
    top: 60px;
    width: 100%;
    height: 0;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli {
    position: relative;
}
.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli:last-child{
    margin: 0 0 10px 0;
}
.procenter .wp .wrap .lside .pronav .ful .fli .secnav .active .secarrow {
    transform: rotate(-180deg);
    transition: all 0.4s;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .active {
    border-bottom: 1px solid #bbb;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .wpb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 36px);
    padding: 18px 18px;
    background: #fff;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .wpb a {
    font-size: 18px;
    display: block;
    font-family: 'arial-regular';
    color: #595656;
    line-height: 1;
    text-transform: uppercase;
}


/* .procenter .wp .wrap .lside .pronav .ful .fli .secnav .active .wpb img {
    transform: rotate(-180deg);
    transition: all 0.4s;
} */

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .thrnav {
    /* display: none; */
    height: 0;
    overflow: hidden;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .thrnav .thrli {
    position: relative;
    padding: 0 0 0 15px;
    /* max-width: 240px; */
    border-top: 1px solid #efefef
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .thrnav .thrli::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #333;
    left: 15px;
    top: 23px;
    position: absolute;
    border-radius: 10px;
}

.procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .thrnav .thrli a {
    text-transform: uppercase;
    font-size: 16px;
    width: calc(100% - 36px);
    padding: 20px 18px;
    background: #fff;
}

.procenter .wp .wrap .rside {
    max-width: 1040px;
    width: 72.2%;
}

.procenter .wp .wrap .rside .crumb {
    padding: 20px 0;
    font-size: 16px;
    text-transform: uppercase;
    border-bottom: 1px solid #dedddd;
    display: block;
    margin: 0 0 0 24px;
    font-family: 'arial';
}

.procenter .wp .wrap .rside .crumb span {
    color: #595656;
}

.procenter .wp .wrap .rside .crumb i {
    color: #88af2f;
}

.procenter .wp .wrap .rside .prolist {
    padding: 15px 0;
    width: calc(100% + 48px);
    display: flex;
    flex-wrap: wrap;
}

.procenter .wp .wrap .rside .prolist .item {
    padding: 24px;
    width: calc(100% / 3 - 53px);
    margin: 0 5px 5px 0;
}

.procenter .wp .wrap .rside .prolist .item:nth-child(3n) {
    margin: 0 0 5px 0;
}

.procenter .wp .wrap .rside .prolist .item .pbox {
    width: 100%;
    height: 270px;
}

.procenter .wp .wrap .rside .prolist .item .pbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.procenter .wp .wrap .rside .prolist .item .name {
    font-size: 20px;
    color: #595656;
    font-family: 'arial';
    text-align: center;
    padding: 8px 0;
    line-height: 2;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.procenter .wp .wrap .rside .prolist .item .more {
    width: 100%;
    height: 40px;
    border: 1px solid #88af2f;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'arial';
    font-size: 18px;
    color: #88af2f;
    opacity: 0;
}

.procenter .wp .wrap .rside .prolist .item:hover {
    box-shadow: 0 0 10px rgba(40, 42, 42, 0.2);
}

.procenter .wp .wrap .rside .prolist .item:hover .name {
    color: #333;
}

.procenter .wp .wrap .rside .prolist .item:hover .more {
    opacity: 1;
}


/* 产品详情 */

.procenter .wp .wrap .rside .wrap {
    display: flex;
    justify-content: space-between;
}

.procenter .wp .wrap .rside .wrap .swiper1 {
    width: 48.07%;
    max-width: 500px;
    min-width: 400px;
    height: 340px;
}
.procenter .wp .wrap .rside .wrap .swiper1 .swiper-wrapper .swiper-slide{
   
    
}
.procenter .wp .wrap .rside .wrap .swiper1 .swiper-wrapper .swiper-slide img {
    width: calc(100% - 4px);
    height: 100%;
    object-fit: contain;
}

.procenter .wp .wrap .rside .wrap .tbox {
    width: 47.11%;
    max-width: 490px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-height: 500px;
}

.procenter .wp .wrap .rside .wrap .tbox .top {}

.procenter .wp .wrap .rside .wrap .tbox .top .crumb {
    margin: 0;
    padding: 8px 0;
    border: 0;
    font-size: 16px;
    text-transform: uppercase;
}

.procenter .wp .wrap .rside .wrap .tbox .top .crumb span {
    color: #595656
}

.procenter .wp .wrap .rside .wrap .tbox .top .crumb i {
    color: #88af2f;
}

.procenter .wp .wrap .rside .wrap .tbox .top .name {
    font-size: 30px;
    padding: 30px 0 20px 0;
    color: #333;
}

.procenter .wp .wrap .rside .wrap .tbox .top .cont {
    font-size: 18px;
    color: #333;
    font-family: 'arial';
}

.procenter .wp .wrap .rside .wrap .tbox .swiper2 {
    width: 85%;
    padding: 0 4px;
}

.procenter .wp .wrap .rside .wrap .tbox .swiper2 .swiper-wrapper .swiper-slide {
    height: 75px;
    overflow: hidden;
}


/* .swiper-button-lock {
    display: block!important;
} */

.procenter .wp .wrap .rside .wrap .tbox .swiper2 .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.procenter .wp .wrap .rside .wrap .tbox .btm {
    position: relative;
}

.procenter .wp .wrap .rside .wrap .tbox .btm .larr {
    position: absolute;
    left: 0;
    top: 30px;
    cursor: pointer;
}

.procenter .wp .wrap .rside .wrap .tbox .btm .rarr {
    position: absolute;
    right: 0;
    top: 30px;
    transform: rotate(180deg);
    cursor: pointer;
}

.procenter .wp .wrap .rside .wrap .tbox .btm .swiper-slide-thumb-active {
    border: 2px solid #88af2f;
}

.procenter .wp .prodetail {}

.procenter .wp .prodetail .title {
    font-size: 24px;
    color: #333;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid #b4b3b8;
    font-family: 'arial';
    text-transform: uppercase;
    line-height: 1;
}

.procenter .wp .prodetail img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
}

footer .backtotop {
    right: 5%;
    bottom: 30%;
    cursor: pointer;
    position: fixed;
}

footer {
    background: #f3f7f4;
    padding: 40px 0 0 0;
}

footer .wp .wrap {
    display: flex;
    justify-content: space-between;
}

footer .wp .wrap .lside {
    margin: 0 50px 0 0;
}

footer .wp .wrap .lside img {
    display: block;
    margin: 10px 0;
}

footer .wp .wrap .mside {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

footer .wp .wrap .mside .item {
    margin: 0 24px;
}

footer .wp .wrap .mside .item .title {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

footer .wp .wrap .mside .item .cate {
    display: block;
    margin: 10px 0;
    color: #666;
    font-size: 16px;
    outline: none;
    text-transform: uppercase;
}

footer .wp .wrap .mside .line {
    display: block;
    width: 30px;
    height: 2px;
    background: #88af2f;
    margin: 15px 0 25px 0;
}

footer .wp .wrap .rside img {
    max-width: 136px;
}

footer .wp .wrap .rside p {
    font-size: 16px;
    text-align: center;
    padding: 10px 0;
}

footer .wp .btminfo {
    border-top: 1px solid #dedede;
    display: flex;
    justify-content: center;
    padding: 20px 0 25px 0;
    margin: 20px 0 0 0;
}

footer .wp .btminfo p {
    font-size: 14px;
    color: #666;
}

footer .wp .btminfo a {
    font-size: 14px;
    color: #666;
    margin: 0 0 0 30px;
}


/* ------------------------------------------媒介查询---------------------------------------------- */

@media screen and (max-width:1650px) {
    .wp {
        padding: 0 calc(1vw + 20px);
    }
}

@media screen and (max-width:1366px) {
    .procenter .wp .wrap .rside .wrap .tbox .top .cont {
        font-size: 16px;
    }
    .tecsevice .wp .service .tbox .cont {
        height: 120px;
    }
    .procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .thrnav .thrli a {
        font-size: 14px;
    }
    .procenter .wp .wrap .lside .pronav .ful .fli .secnav .sli .wpb a {
        font-size: 15px;
    }
    .procenter .wp .wrap .lside .pronav .ful .fli a {
        font-size: 16px;
    }
    .wp {
        padding: 0 calc(1vw + 60px);
        min-width: 1080px;
    }
    .procenter .wp .wrap .lside .title {
        font-size: 20px;
    }
    .procenter .wp .wrap .rside .prolist .item .pbox {
        width: 100%;
        height: 200px;
    }
}

@media screen and (max-width:1280px) {
    .tecsevice .wp .service .tbox {
        padding: 20px 65px 20px 70px;
    }
    header nav .mainnav li a {
        font-size: 16px;
    }
    .indexabout .wp .wrap .titlebox .are {
        bottom: 143px;
    }
}

@media screen and (max-width:1250px) {
    .indexabout .wp .wrap .titlebox .are {
        bottom: 174px;
    }
}