@charset "utf-8";
/*重置样式*/
*,
*::before,
*::after {
    box-sizing: border-box;
}
* {
    transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    line-height: 1.5;
    font-family:Arial;
    /*"PingFang SC","-apple-system","BlinkMacSystemFont","Segoe UI","Microsoft YaHei","Hiragino Sans GB","Apple Color Emoji","Segoe UI Emoji", Helvetica, sans-serif;*/
    font-size: 16px;
    color: #000;
    background: #fff;
    min-width: 1280px;
    margin: 0 auto;
    overflow-x: hidden;
}


ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}



img,
picture {
    max-width: 100%;
    display: block;
    width: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

textarea {
    overflow: auto;
}

i,
em {
    font-style: normal;
}

a {
    text-decoration: none;
    outline: none;
    color: #000;
}

h4 {
    font-weight: normal;
}

input[type='reset'],
input[type='button'],
input[type='submit'],
input[type='radio'],
input[type='submit'] {
    cursor: pointer;
    border: 0;
    outline: none;
    -webkit-appearance: none;
}

/*通用样式*/
.bold {
    font-weight: 800;
}

.light {
    font-weight: 400;
}

.tc {
    text-align: center;
}

.tr {
    text-align: right;
}

.tj {
    text-align: justify;
}

.txt {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;

}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #555;
}

::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    background: #ddd;
}


table {
    border-collapse: collapse;
    width: 100%;
}

/*布局样式*/
.fl {
    float: left;

}

.fr {
    float: right;
}

.clearfix:after,
.clearfix:before {
    display: table;
    content: '';
    clear: both;
}

.db {
    display: block;
}

.dib {
    display: inline-block;
}

.dn {
    display: none;
}

.df {
    display: flex;
}

.f1 {
    flex: 1;
}

.ac {
    align-items: center;
}

.jr {
    justify-content: right;
}

.jl {
    justify-content: left;
}

.jb {
    justify-content: space-between;
}

.ja {
    justify-content: space-around;
}

.jc {
    justify-content: center;
}

.fw {
    flex-wrap: wrap;
}

.f1 {
    flex: 1;
}

.fd {
    flex-direction: column;
}

.ov {
    overflow: hidden;
}

.oay {
    overflow-y: auto;
}

.oax {
    overflow-x: auto;
}

.cp {
    cursor: pointer;
}

.bs {
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 5%);
}
.br5 {
    border-radius: 5px;
}
.br10 {
    border-radius: 10px;
}

.br20 {
    border-radius: 20px;
}

.br40 {
    border-radius: 40px;
}

.brhalf {
    border-radius: 50%;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.pf {
    position: fixed;
}

.l0 {
    left: 0;
}

.t0 {
    top: 0;
}

.r0 {
    right: 0;
}

.b0 {
    bottom: 0;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}

.z999 {
    z-index: 999;
}

.w100 {
    width: 100%;
}
.w30 {
    width: 30%;
}
.w40 {
    width: 40%;
}
.w48 {
    width: 48%;
}
.w49 {
    width: 49%;
}
.w50 {
    width: 50%;
}

.h100 {
    height: 100%;
}

.wa {
    width: auto;
}

.con {
    width: 83.33%;
    min-width: 1200px;
    max-width: 1600px;
    margin: 0 auto;
}

.bs100 {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.font-color {
    color: #af2c3e;
}

.bg-color {
    background-color: #af2c3e;
}
.new-bg-color {
    background-color: #f0f5f9 !important;
}
.btn-color {
    background-color: #f8c300;
}
.ts1 img{
    transition: all 0.6s ease-in;
}
.ts1:hover img {
    transform: scale(1.1, 1.1);
}

/*首页样式*/
header {
    /*border-bottom: 1px solid rgba(255, 255, 255, 0.3);*/
}

.header-logo {
    width: 201px;
    height: 50px;
    background-image: url(../images/logo.png);
}

nav>ul>li {
    margin: 0 24px;
}

nav>ul>li>a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    padding: 30px 0;
}

nav>ul>li>a::after {
    content: '';
    display: block;
    width: 0;
    left: 0;
    bottom: 0;
    height: 4px;
    opacity: 0;
    border-radius: 10px;
    background-color: #fff;
    transition: all .3s;
    position: absolute;
}

nav>ul>li>a:hover::after,
nav>ul>li>a.active::after {
    opacity: 1;
    background-color: #af2c3e;
    width: 100%;
}

.header-search a {
    width: 15px;
    height: 15px;
    background-image: url(../images/serach-ico.png);
    margin-top: 3px;
    margin-left: 20px;
}

.header-active {
    background-color: #fff;
    /*border-bottom: 1px solid #ccc;*/
    transform: translateY(-101%);
}

.header-down {
    transform: translateY(0);
}

.header-active .header-logo {
    background-image: url(../images/logo02.png);
}

.header-active .header-search a {
    background-image: url(../images/serach-ico02.png);
}

.header-active nav>ul>li>a {
    color: #000;
}



.index-banner .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 20px;
    left: 0;
}

.index-banner .swiper-pagination .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    width: 30px;
    display: block;
}

.index-banner .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #af2c3e;
}

.index-pro-cate {
    padding: 5vh 0;
    background: #f5f5f5;
}

.index-pro-cate-swiper {
    width: 100%;
    overflow: unset;
    margin: 0;
}
.index-pro-cate-pic img{
    border-radius: 0;
}
.swiper-slide:hover img {
    /*transform: scale(1.1, 1.1);*/
}

.index-pro-cate-swiper .swiper-slide {
    transform: scale(1, 1);
    border-radius: 20px;
}
.index-pro-cate-swiper .swiper-slide:hover{
    background: #5976ae;
}
.index-pro-cate-swiper .swiper-slide:hover .index-pro-cate-txt span{
    color: #fff;
    transition: 0.4s ease-in;
}
.index-pro-cate-swiper .swiper-slide:hover  .index-pro-cate-txt .add {
    opacity: 1;
    transition: all 0.4s ease-in;
    /*transform: scale(1, 1);*/
    /*border-radius: 20px;*/
}
.index-pro-cate-swiper .swiper-slide-active {
    /*transform: scale(1.13, 1.13);*/
    /*margin-right: 75px !important;*/
    /*margin-left: 24px !important;*/
    /*background: #5976ae;*/
}

.index-pro-cate-txt {
    /*left: 6.66%;*/
    /*bottom: 6.88%;*/
    color: #333;
    padding: 20px;
}
.index-pro-cate-swiper .swiper-slide-active .index-pro-cate-txt {
    /*color: #fff;*/
}
.index-pro-cate-txt p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #af2c3e;
}

.index-pro-cate-txt span {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
}
.index-pro-cate-txt .add{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    background: #fff;
    color: #999;
    opacity: 0;
}
.index-pro-cate-swiper .swiper-slide-active .add {
    /*opacity: 1;*/
}


.index-pro-cate-nav {
    margin-top: 5%;
}

.index-pro-cate-fy div {
    width: 57px;
    height: 57px;
    background-color: #c2c6c8;
}

.index-pro-cate-prev {
    margin-right: 1.3542vw;
    transform: rotate(180deg);
}

.index-pro-cate-fy div i {
    width: 10px;
    height: 17px;
    background: url(../images/jt-ico.png);
}

.index-pro-cate-fy div:hover {
    background-color: #af2c3e;
}

.index-pro-cate-nav .index-pro-cate-pagination {
    position: static;
    width: auto;
}

.index-pro-cate-pagination .swiper-pagination-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 3px;
    /*border: 2px solid #fff;*/
    background-color: #fff;
    opacity: 1;
    cursor: pointer;
    border-radius: 0;
    margin: 0 !important;
}

.index-pro-cate-pagination .swiper-pagination-bullet::after {
    /*content: '';*/
    /*width: 100%;*/
    /*height: 5px;*/
    /*border-radius: 50%;*/
    /*overflow: hidden;*/
    /*background-color: #000;*/
}

.index-pro-cate-pagination .swiper-pagination-bullet-active {
    /*border: 2px solid #000;*/
    background-color: #af2c3e;
}

.more-btn {
    /*background-color: #000;*/
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    padding: 25px 70px;
    letter-spacing: 1px;
}

.more-btn:hover {
    border: 1px solid #af2c3e;
    background-color: #af2c3e;
}

.index-pro-about-con {
    /*padding-top: 50%;*/
}

.index-pro-about-logo {
    width: 56.3542vw;
}

.index-pro-about-btn {
    margin-top: 20%;
}

.index-info {
    /*background-image: url(../images/about-list-bg.jpg);*/
    background: linear-gradient(to right,#8dc0c4 ,#83b6bc,#71a6ae,#71a6ae,#6399a3);
    padding: 5% 8%;
    /*transform: translatey(-50%);*/
    /*margin-top: -100px;*/
    margin-right: 9%;
    border-radius: 0 20px 20px 0;
    position: absolute;
    width: 92%;
    z-index: 99;
    transform: translateY(-50%);
}
.index-info-item{
    /*width: 25%;*/
}
.index-info-pic {
    width: 113px;
    height: 113px;
    background-color: #00a39f;
    padding: 20px;
    margin-right: 24px;
}

.index-info-txt h4 {
    line-height: 1;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.index-info-txt p {
    font-size: 18px;
    line-height: 1.5;
}

.index-oem-pic,
.index-oem-txt {
    width: 50%;
}

.index-oem-pic:hover img {
    transform: scale(1.1, 1.1);
}

.index-oem-txt {
    padding: 5.5% 7.75vw;
}

.index-com-txt h4 {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
}

.index-com-txt h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 46px;
}

.index-com-txt p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 60px;
}

.index-oem {
    margin: 5% auto 5%;
}

.index-zs-box {
    padding-top: 5.5%;
}

.index-zs-txt h4 {
    color: #fff;
    padding: 10px 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.index-zs-xx {
    width: 10.4167vw;
    transform: translateY(-50%);
}

.index-zs-xx img {
    width: 100%;
    height: 100%;
}

.index-news {
    padding: 5% 0 2% 0;
    background: #eff2f9;
}

.index-news-txt {
    background-color: #fff;
    width: 90%;
    margin: 0 auto;
    transform: translateY(-35%);
    padding: 5%;
    transition: all ease-out .5s;
}

.index-news-txt h4 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 26px;
}

.index-news-txt p {
    font-size: 16px;
    color: #8b8b8b;
    line-height: 1.5;
}

.index-news-txt span {
    font-size: 20px;
    line-height: 1;
    margin-top: 56px;
    display: none;
}

.index-news-item:hover .index-news-pic img {
    transform: scale(1.1, 1.1);
}

.index-news-item:hover .index-news-txt {
    color: #fff;
    background-color: #af2c3e;
}

.index-news-item:hover .index-news-txt p {
    color: #fff;
}

.index-news-item:hover span {
    display: block;
}

.index-news-fy div {
    top: 200px;
    background-color: #b9b9b9;
    width: 60px;
    height: 60px;
    z-index: 99;
    border-radius: 10px;
}

.index-news-fy div i {
    width: 10px;
    height: 17px;
    background: url(../images/jt-ico.png);
}

.index-news-prev {
    left: -70px;
    transform: rotate(180deg);
}

.index-news-next {
    right: -70px;
}
.index-news-fy div:hover{
    background: #af2c3e;
}

footer {
    /*border-top: 6px solid #af2c3e;*/
    color: rgba(255, 255, 255, 0.3);
    padding: 2% 0 0;
    background: #fff;
}

footer .header-logo {
    display: block;
    width: 402px;
    height: 100px;
    background-image: url(../images/logo02.png);
}
footer .pro-input{
    border: 1px solid #eee;
    border-radius: 200px;
    padding: 5px 10px;
}
footer .pro-input input[type=text] {
    border: none;
    outline: none;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    flex: 1;
}
footer .pro-input input[type=submit] {
    background-image: url(../images/serach-ico.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    cursor: pointer;
    background-color: #af2c3e;
    padding: 10px 40px;
    border-radius: 200px;
    transition: 0.6s ease-in-out;
}
footer .pro-input input[type=submit]:hover{
    transform: scale(1.1,1.1);
}
.footer-menu{
    color: #333;
    flex: 1;
}
.footer-menu .title{
    font-weight: bold;
    font-size: 20px;
}
.footer-menu .sub-title{
    color: #666;
    font-size: 15px;
}
.footer-menu a:hover .sub-title{
    color: #af2c3e;
    text-decoration: underline;
}
.footer-menu .icon{
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 3px;
}
.footer-copyright{
    background: #333;
    color: #ccc;
    padding: 20px;
}
.footer-copyright a{
    color: #ccc;
}

@media screen and (max-width:1680px) {
    .index-pro-cate-txt p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .index-pro-cate-txt span {
        font-size: 28px;
    }

    .index-pro-cate-fy div {
        width: 50px;
        height: 50px;
    }

    .index-pro-cate-pagination .swiper-pagination-bullet {
        width: 100%;
        height: 3px;
    }

    .more-btn {
        font-size: 16px;
        padding: 20px 60px;
    }

    .index-pro-about-logo {
        width: 50vw;
    }

    .index-pro-about-btn {
        margin-top: 20%;
    }

    .index-info-pic {
        width: 100px;
        height: 100px;
        padding: 25px;
    }

    .index-info-txt h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .index-info-txt p {
        font-size: 18px;
    }

    .index-com-txt h4 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .index-com-txt h2 {
        font-size: 36px;
        margin-bottom: 36px;
    }

    .index-com-txt p {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .index-news-txt h4 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .index-news-txt p {
        font-size: 14px;
    }

    .index-news-txt span {
        margin-top: 48px;
    }

    footer {
        /*padding: 1.5% 0;*/
    }

    footer p {
        font-size: 15px;
    }

    .index-info{
        /*margin-top: -82px;*/
    }

}

@media screen and (max-width:1440px) {
    .index-pro-cate-txt p {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .index-pro-cate-txt span {
        font-size: 20px;
    }

    .more-btn {
        font-size: 14px;
        padding: 15px 40px;
    }

    .index-pro-about-logo {
        width: 45vw;
    }

    .index-pro-about-btn {
        margin-top: 5%;
    }

    .index-info{
        /*margin-top: -66px;*/
    }

    .index-info-pic {
        width: 80px;
        height: 80px;
        padding: 20px;
    }

    .index-info-txt h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .index-info-txt p {
        font-size: 14px;
    }

    .index-com-txt h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .index-com-txt h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .index-com-txt p {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .index-news-txt h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .index-news-txt p {
        font-size: 13px;
    }

    .index-news-txt span {
        margin-top: 40px;
    }

    footer {
        /*padding: 1.5% 0;*/
    }

    footer p {
        font-size: 14px;
    }

}

/*产品页样式*/
.pro-page {
    padding: 200px 0 5%;
}

.pro-page-top-tit {
    font-size: 40px;
    line-height: 1.5;
    /*margin-top: 8%;*/
}

.pro-page-form-box {
    /*width: 45vw;*/
    margin-top: 40px;
    border: 1px solid #ccc;
    border-radius: 200px;
    padding: 3px 5px;
}

.pro-page-form-box input[type=text] {
    border: none;
    outline: none;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    background: #f0f5f9;
    padding: 10px 30px;
    flex: 1;
}
.pro-list-input::placeholder{
    color: #eee;
}

.pro-page-form-box input[type=submit] {
    background-image: url(../images/serach-ico.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    cursor: pointer;
    background-color: #af2c3e;
    width: 107px;
    height: 55px;
    border-radius: 200px;
    transition: all 0.5s ease-in-out;
}
.pro-page-form-box input[type=submit]:hover{
    transform: scale(1.1, 1.1);
}
.pro-page-list {
    margin-top: 5%;
}

.pro-page-item {
    width: 32%;
    margin-bottom: 30px;
}
.pro-page-item:hover{
    background: #5976ae;
}
.pro-page-item:hover span{
    color: #fff;
}
.pro-page-item:hover .add {
    opacity: 1;
    transition: all 0.4s ease-in;
}
.pro-page-item:hover img {
    /*transform: scale(1.1, 1.1);*/
}

.pro-page-txt {
    padding: 20px;
    /*color: #fff*/
}
.pro-page-txt p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 17px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #af2c3e;
}
.pro-page-txt span {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.5s ease-in;
}
.pro-page-txt .add{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    background: #fff;
    color: #999;
    opacity: 1;
    transition: all 0.5s ease-in;
}

@media screen and (max-width:1680px) {
    .pro-page-top-tit {
        font-size: 36px;
    }

    .pro-page-form-box {
        /*width: 45vw;*/
    }

    .pro-page-txt p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .pro-page-txt span {
        font-size: 30px;
    }
}

@media screen and (max-width:1440px) {

    .pro-page-top-tit {
        font-size: 32px;
    }

    .pro-page-form-box {
        /*width: 45vw;*/
    }

    .pro-page-txt p {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pro-page-txt span {
        font-size: 26px;
    }
}

/*OEM样式*/
.service-top-pic img{
    -webkit-animation: subs 6s linear 1;
    -webkit-animation-fill-mode: forwards
}
@keyframes subs {
    0% {
        transform: scale(1,1)
    }
    50% {
        transform: scale(1.2,1.2)
    }
    100% {
        transform:scale(1,1)
    }
}
.service-top-txt {
    margin-top: 26.33%;
    color: #fff;
}

.service-com-txt span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
    font-family: 'HarmonyOSHans-Regular';
}

.service-com-txt h4 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
}

.service-top-txt h4 {
    font-size: 52px;
}

.service-com-txt p {
    font-size: 18px;
    margin-top: 38px;
    line-height: 1.5;
    text-align: justify;
}

.service-01 {
    background-color: #276e6b;
    padding: 5% 0;
}

.service-01-pic:hover img {
    /*transform: scale(1.1, 1.1);*/
}

.service-01-con {
    padding: 5% 10% 5% 0;
}

.service-01-txt {
    color: #fff;
}

.service-xx {
    transform: translateY(-100%);
    width: 200px;
    height: 200px;
}

.service-zi-pic {
    width: 31.35%;
    opacity: 0.2;
}

.service-02 {
    padding: 8% 0;
    background: #f4f7fa;
}

.service-02-left {
    width: 40%;
    margin-top: 5%;
}

.service-02-list {
    margin-top: 112px;
}

.service-02-right {
    width: 50%;
}

.service-03-text {
    margin-top: 5%;
    width: 32%;
}

@media screen and (max-width:1680px) {
    .service-com-txt span {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .service-com-txt h4 {
        /*font-size: 30px;*/
    }

    .service-com-txt p {
        font-size: 16px;
        margin-top: 24px;
    }

    .service-top-txt h4 {
        font-size: 38px;
    }

    .service-02-list {
        margin-top: 60px;
    }

    .service-02-item {
        width: 32%;
    }

    .service-xx {
        width: 150px;
        height: 150px;
    }

    .service-03-text {
        width: 31%;
    }

}

@media screen and (max-width:1440px) {
    .service-com-txt span {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .service-com-txt h4 {
        font-size: 28px;
    }

    .service-com-txt p {
        font-size: 14px;
        margin-top: 24px;
    }

    .service-top-txt h4 {
        font-size: 32px;
    }

    .service-02-list {
        margin-top: 50px;
    }

    .service-02-item {
        width: 32%;
    }

    .service-xx {
        width: 120px;
        height: 120px;
    }

    .service-03-text {
        width: 31%;
    }
}

/*招商样式*/
.zs-top-con {
    padding-top: 10%;
}

.zs-top-con-text span {
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    font-weight: 400;
}

.zs-top-con-text h4,
.zs-top-con-text p {
    color: #fff;
}

.zs-top-xx {
    width: 200px;
    height: 200px;
    margin-top: 5%;
}

.zs-01 {
    padding: 5% 0;
    background: #f0f5f9;
}

.zs-02 {
    background-color: #f0f5f9;
}
.zs-02 .cert{
    top: 50%;
    transform: translateY(-50%);
    left: 9%;
    z-index: 999;
    width: 33%;
}
.zs-02 .cert .img{
    width: 18%;
    border-radius: 5px;
    margin-top: 20px;
    background: #fff;
}
.zs-02-list {
    margin-top: 4%;
}

.zd-02-item {
    width: 48.87%;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 3% 2.5%;
}

.zd-02-item h4 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
}

.zd-02-item p {
    font-size: 16px;
    color: #494949;
    opacity: 0.8;
    line-height: 2;
}

.zs-03-text {
    padding-top: 8.88%;
}

.zs-03-list {
    margin-top: 50px;
    width: 29.6875vw;
}

.zs-03-item {
    margin-bottom: 30px;
}

.zs-03-item h4 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

.zs-03-item p {
    color: #353535;
    line-height: 2;
    font-size: 16px;
    opacity: 0.54;
}

.zs-03-item p em {
    padding: 0 12px;
    font-style: normal;
}

.zs-04 {
    background-color: #f0f5f9;
    padding: 5% 0;
}

.zs-04-con-text {
    padding: 5% 5%;
}

.zs-04-con-tit p {
    color: #555;
}

.zs-04-phone {
    margin-top: 8%;
}

.zs-04-phone span {
    color: #fff;
    font-size: 14px;
    padding: 5px 12px;
    display: inline-block;
    font-weight: 400;
}

@media screen and (max-width:1680px) {
    .zs-top-xx {
        width: 150px;
        height: 150px;
    }

    .zs-01-txt h4 {
        font-size: 20px;
    }

    .zd-02-item {
        padding: 3% 2.5% 2%;
    }

    .zd-02-item h4 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .zd-02-item p {
        font-size: 14px;
    }

    .zs-03-text {
        padding-top: 5.88%;
    }

    .zs-03-item h4 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .zs-03-item p {
        font-size: 15px;
    }

}

@media screen and (max-width:1440px) {
    .zs-top-xx {
        width: 120px;
        height: 120px;
    }

    .zs-01-txt h4 {
        font-size: 16px;
        margin-bottom: 10px
    }

    .zs-01-txt p {
        font-size: 14px;
    }

    .zd-02-item h4 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .zd-02-item p {
        font-size: 13px;
    }

    .zs-03-text {
        padding-top: 5.88%;
    }

    .zs-03-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .zs-03-item p {
        font-size: 14px;
    }
}

/*关于我们样式*/
.about-top-con {
    padding-top: 9.88%;
}

.about-top-con-text {
    width: 33.33%;
    color: #fff;
}

.about-top-con-text p {
    margin-top: 36px;
    font-size: 16px;
    line-height: 2;
}
.about-01 .info{
    background: linear-gradient(to right,#8dc0c4 ,#83b6bc,#71a6ae,#71a6ae,#6399a3);
    padding: 5% 8%;
    margin-right: 9%;
    border-radius: 0 20px 20px 0;
    width: 92%;
    margin-top: -10%;
}
.about-02 {
    padding-bottom: 5%;
    padding-top: 5%;
}

.about-02-con-left {
    width: 30%;
    padding-top: 3.33%;
}

.about-02-right {
    width: 58.25%;
}

.about-02-top-pic {
    margin-bottom: 10px;
}

.about-02-item {
    width: 32%;
}

.about-03-con {
    padding: 8% 5%;
}

.about-03-list {
    margin-top: 8%;
}

.about-03-item {
    background-color: #fff;
    width: 32%;
    box-sizing: content-box;
}

.about-03-item:nth-child(even) {
    /*width: 49.12%;*/
}

.about-03-item h4 {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
    color: #333;
    letter-spacing: 1px;
}

.about-03-item p {
    font-size: 18px;
    line-height: 1.2;
    color: #666;
}

.about-03 {
    background-color: #313131;
    padding: 5% 0;
}

.about-04-con {
    padding-top: 5%;
}

.about-04-list {
    margin-top: 5%;
}

.about-04-item {
    margin-bottom: 30px;
    background-color: #fff;
    width: 27.75%;
    padding-left: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.about-04-item h4 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 14px;
    
}

.about-04-item p {
    font-size: 18px;
    line-height: 1;
}
.about-05{
    background: #f4f7fa;
    padding: 5% 0;
}
.about-05-con-box {
    width: 29.0625vw;
    margin-left: 5.9375vw;
    margin-top: 11%;
}

.about-05-list {
    margin-top: 16%;
}

.about-05-item {
    width: 32%;
    margin-bottom: 10px;
}

@media screen and (max-width:1680px) {
    .about-top-con-text h4 {
        font-size: 30px;
    }

    .about-top-con-text p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-03-con {
        padding: 9% 5%;
    }

    .about-03-xx {
        width: 150px;
        height: 150px;
    }

    .about-03-item {
    }

    .about-03-item h4 {
        font-size: 20px;
    }

    .about-03-item p {
        font-size: 15px;

    }

    .about-04-item h4 {
        font-size: 22px;
    }

    .about-04-item p {
        font-size: 15px;
    }
}

@media screen and (max-width:1440px) {
    .about-top-con-text h4 {
        font-size: 28px;
    }

    .about-top-con-text p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-03-con {
        padding: 9% 5%;
    }

    .about-03-xx {
        width: 120px;
        height: 120px;
    }

    .about-03-item {
    }

    .about-03-item h4 {
        font-size: 18px;
    }

    .about-03-item p {
        font-size: 14px;

    }

    .about-04-item h4 {
        font-size: 18px;
    }

    .about-04-item p {
        font-size: 14px;
    }
}

/*联系我们样式*/
.contact-top-con {
    padding-top: 8.88%;
}

.contact-top-text h4 {
    font-size: 35px;
    line-height: 1;
}

.contact-top-list {
    margin-top: 50px;
}

.contact-top-item {
    margin-bottom: 35px;
}

.contact-top-item-pic {
    width: 26px;
    height: 26px;
}

.contact-top-item-txt {
    margin-left: 24px;
}

.contact-top-item-txt p {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 15px;
}

.contact-xx {
    width: 200px;
    height: 200px;
    transform: translateY(-50%);
}

.contact-bot{
    background: #f0f5f9;
}
.contact-bot .info{
    background: linear-gradient(to right,#5976ae ,#5976ae);
    padding: 5% 8%;
    margin-right: 9%;
    border-radius: 0 20px 20px 0;
    width: 92%;
    margin-top: -5%;
}
.contact-bot .info .icon{
    width: 18px;
    height: 18px;
    margin-right: 10px;
}
.contact-bot .info .sub-title{
    color: #f1f1f1;
    font-size: 18px;
}
.contact-bot-con {
    padding: 5% 0;
}

.contact-bot-tit {
    color: #fff;
}

.contact-bot-tit h4 {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 30px;
}

.contact-bot-tit p {
    font-size: 20px;
}

.contact-bot-form {
    /*margin-top: 5%;*/
    background-color: #fff;
    padding: 4% 6%;
}

.contact-bot-item {
    width: 30%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 36px;
}

.contact-bot-item:nth-child(4) {
    width: 100%;
}

.contact-bot-item span {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    margin-right: 10px;
}

.contact-bot-item input {
    border: none;
    outline: none;
    display: block;
    flex: 1;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.contact-bot-item textarea {
    border: none;
    outline: none;
    display: block;
    flex: 1;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    resize: none;
    height: 110px;
}

.contact-bot-btn .more-btn {
    background: #af2c3e;
    padding: 20px 60px;
    font-size: 15px;
}

@media screen and (max-width:1680px) {
    .contact-xx {
        width: 150px;
        height: 150px;
    }

    .contact-bot-tit h4 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .contact-bot-tit p {
        font-size: 17px;
    }

    .contact-bot-item {
       
        margin-bottom: 20px;
    }

    .contact-bot-item textarea {
        
        height: 80px;
    }

    .contact-bot-form {
        /*margin-top: 3%;*/
    }
}

@media screen and (max-width:1440px) {
    .contact-top-text h4 {
        font-size: 30px;
    }

    .contact-top-item-txt p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .contact-top-item-txt {
        margin-left: 15px;
    }

    .contact-xx {
        width: 120px;
        height: 120px;
    }

    .contact-bot-tit h4 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .contact-bot-tit p {
        font-size: 14px;
    }

    .contact-bot-form {
        /*margin-top: 3%;*/
    }

    .contact-bot-item {
       
        margin-bottom: 18px;
    }

    .contact-bot-item textarea {
        height: 60px;
    }
}

/*产品列表样式*/
.pro-list-page-top {
    padding-top: 200px;
}

.pro-list-page-top-tit {
    color: #fff;
    font-size: 36px;
}

.pro-list-page-top-tit p {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
}

.pro-list-page-top-tit h4 {
    margin-top: 30px;
    line-height: 1;
    font-size: 42px;
    font-weight: 600;
    
}

.pro-list-page-search {
    /*background-color: #fff;*/
    padding: 5px 5px;
    margin-top: 57px;
}

.pro-list-page-search .pro-page-form-box {
    margin-top: 0;
    width: 100%;
    background: #a7c9dc;
    border: 1px solid #eee;
}
.pro-list-page-search input[type=text] {
    border: none;
    outline: none;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    background: #a7c9dc;
    padding: 10px 30px;
    flex: 1;
}

.pro-list-page-nav {
    background-color: #6b93a8;
    padding: 10px;
    margin-top: 5%;
}

.pro-list-page-nav-item {
    background-color: transparent;
    color: #fff;
    padding: 20px 30px;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 1px;
    margin-right: 5px;
}

.pro-list-page-nav-item:hover,
.pro-list-page-nav-item.active {
    background-color: #af2c3e;
}

.pro-list-page-list {
    margin-top: 55px;
    min-height: 600px;
}

.pro-list-page-item {
    background-color: #fff;
    margin-bottom: 24px;
    padding: 2% 2%;
    width: 19%;
    height: fit-content;
}

.pro-list-page-item-txt {
    margin-top: 10px;
}

.pro-list-page-item-txt h4 {
    font-size: 30px;
    line-height: 1.5;
}

.pro-list-page-item-txt p {
    font-size: 16px;
    line-height: 1;
}

.pro-list-page-item-tag {
    color: #fff;
    font-size: 16px;
    padding: 7px 10px;
    line-height: 1;
    top: 12px;
    right: 12px;
}

/* 如果最后一行是4个元素 */
.pro-list-page-item:last-child:nth-child(5n - 1) {
    margin-right: calc(19% + 5% / 4);
}

/* 如果最后一行是3个元素 */
.pro-list-page-item:last-child:nth-child(5n - 2) {
    margin-right: calc(38% + 10% / 4);
}

/* 如果最后一行是2个元素 */
.pro-list-page-item:last-child:nth-child(5n - 3) {
    margin-right: calc(57% + 15% / 4);
}

@media screen and (max-width:1680px) {
    .pro-list-page-top-tit p {
        font-size: 30px;
    }

    .pro-list-page-top-tit h4 {
        margin-top: 25px;
        line-height: 1;
        font-size: 30px;
    }

    .pro-list-page-top-con .pro-page-form-box input[type=text] {
        padding: 10px 20px;
    }

    .pro-list-page-top-con .pro-page-form-box input[type=submit] {
        width: 90px;
        height: 52px;
    }

    .pro-list-page-nav {
        margin-top: 5%;
        padding: 5px;
    }

    .pro-list-page-nav-item {
        padding: 15px 25px;
    }


    .pro-list-page-list {
        margin-top: 3%;
    }

    .pro-list-page-item-txt h4 {
        font-size: 26px;
    }

    .pro-list-page-item-txt p {
        font-size: 14px;
    }

    .pro-list-page-item-tag {
        font-size: 14px;
    }

    .pro-list-page-item {
        padding: 1% 1%;
    }
}

@media screen and (max-width:1440px) {
    .pro-list-page-top-tit p {
        font-size: 26px;
    }

    .pro-list-page-top-tit h4 {
        margin-top: 20px;
        line-height: 1;
        font-size: 26px;
    }

    .pro-list-page-top-con .pro-page-form-box input[type=text] {
        padding: 5px 10px;
        font-size: 16px;
    }

    .pro-list-page-top-con .pro-page-form-box input[type=submit] {
        width: 80px;
        height: 42px;
        background-size: 25%;
    }

    .pro-list-page-search {
        margin-top: 9%;
    }

    .pro-list-page-nav {
        margin-top: 5%;
    }

    .pro-list-page-nav-item {
        padding: 10px 20px;
    }

    .pro-list-page-list {
        margin-top: 3%;
    }

    .pro-list-page-item-txt h4 {
        font-size: 24px;
    }

    .pro-list-page-item-txt p {
        font-size: 13px;
    }

    .pro-list-page-item-tag {
        font-size: 13px;
    }

    .pro-list-page-item {
        padding: 1% 1%;
    }

}

/*产品详情样式*/
.pro-show {
    background-color: #f0f5f9;
    padding: 6.5% 3.02% 4%;
}

.pro-show-tit h4 {
    font-size: 41px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 30px;
}

.pro-show-nav {
    font-size: 16px;
}

.pro-show-nav a:hover {
    color: #494949;
}

.pro-show-nav em {
    padding: 0 10px;
    font-size: 18px;
}

.pro-show-search {
    background-color: #fff;
    border-radius: 200px;
    padding: 0;
}

.pro-show-search .pro-page-form-box {
    width: 20.2604vw;
    margin-top: 0;
}

.pro-show-search .pro-page-form-box input[type=text] {
    padding: 12px 20px;
}

.pro-show-search .pro-page-form-box input[type=submit] {
    width: 80px;
    height: 52px;
}

.pro-show-con {
    margin-top: 3%;
}

.pro-show-con-left {
    width: 30.26%;
}

.pro-show-con-right {
    width: 66.62%;
    background-color: #fff;
    padding: 2% 2%;
}

.pro-show-con-right img {
    display: block;
    margin: 0 auto;
    width: auto;
}

.pro-show-pic .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: left;
    left: 15px;
    bottom: 15px;
}

.pro-show-pic .swiper-pagination .swiper-pagination-bullet {
    background-color: #000;
    width: 10px;
    height: 10px;
}

.pro-show-pic .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #af2c3e;
}

.pro-show-txt {
    margin: 46px 0;
}

.pro-show-txt h4 {
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1;
}

.pro-show-txt p {
    font-size: 18px;
    line-height: 2;
    color: #4b4b4b;
}

.pro-show-list-tit {
    color: #fff;
    font-size: 20px;
    padding: 12px 22px;
    line-height: 1;
}

.pro-show-list-con {
    margin-top: 24px;
}

.pro-show-item {
    background-color: #fff;
    margin-bottom: 16px;
    padding: 1% 2%;
}

.pro-show-item-pic {
    width: 150px;
    margin-right: 5%;
}

.pro-show-item-txt {
    flex: 1;
}

.pro-show-item-txt h4 {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 10px;
}

.pro-show-item-txt p {
    font-size: 16px;
    color: #0e0509;
}

@media screen and (max-width:1680px) {
    .pro-show-search .pro-page-form-box input[type=text] {
        padding: 10px 15px;
        font-size: 16px;
    }

    .pro-show-search .pro-page-form-box input[type=submit] {
        width: 70px;
        height: 42px;
        font-size: 16px;
    }

    .pro-show-list-tit {
        font-size: 18px;
        padding: 10px 18px;
    }
}

@media screen and (max-width:1440px) {

    .pro-show {
        padding: 8% 3.02% 4%;
    }

    .pro-show-search .pro-page-form-box input[type=text] {
        padding: 10px 15px;
        font-size: 14px;
    }

    .pro-show-search .pro-page-form-box input[type=submit] {
        width: 60px;
        height: 42px;
        font-size: 14px;
        background-size: 25%;
    }

    .pro-show-list-tit {
        font-size: 16px;
        padding: 10px 18px;
    }
    .pro-show-item-txt h4{
        font-size: 24px;
    }
}
.news-con-tit{
    font-size: 45px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2%;
    margin-bottom: 8%;
    letter-spacing: 2px;
}
.news-con-item{
    background-color: #fff;
    padding: 2% 2%;
    margin-bottom: 3%;
}
.news-item-pic{
    width: 34%;
}
.news-item-txt{
    padding: 2% 0 2% 1%;
    width: 53%;
}
.news-item-txt h4{
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.2;
}
.news-item-txt p{
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
    color: #999;
}
.news-item-date{
    font-size: 28px;
    padding: 2% 0;
    text-align: center;
}

.news-con-item:hover  img{
   transform: scale(1.1,1.1);
}

.news-con-item:hover h4{
    color: #af2c3e;
}

.news-con-item:hover .news-item-txt{
    padding: 2% 0 2% 2%;
}
@media screen and (max-width:1440px) {
    .news-item-txt{
        padding: 2% 0 2% 1%;
        width: 53%;
    }
    .news-item-txt h4{
        font-size: 26px;
    }
    .news-item-txt p{
        font-size: 14px;
    }
    .news-item-date{
        font-size: 26px;
    }
}
.news-show-con-left{
    width: 30.26%;
}
.news-show-tit{
    width: 100%;
    background-color: #fff;
    padding: 5%;
}
.news-show-tit h4{
    line-height: 1.5;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}
.news-show-tit p{
    font-size: 20px;
    color: #999;
    margin-bottom: 20px;
    line-height: 1;
}
.news-show-btn{
    margin: 20px auto;
    padding: 18px 70px;
}

@media screen and (max-width:1680px) {
    .news-show-tit h4{
        font-size: 32px;
        margin-bottom: 20px;
    }
    .news-show-tit p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    
}

@media screen and (max-width:1440px) {
    .news-show-tit h4{
        font-size: 28px;
        margin-bottom: 15px;
    }
    .news-show-tit p{
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/*分页查询样式*/
.pagination{
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination li a,.pagination li span{
    width: 30px;
    height: 30px;
    margin: 0 15px;
    background-color: #000;
    color: #fff;
    display: flex;
    font-size: 14px;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    line-height: 1;
}
.pagination li.active a,.pagination li.active span{
    background-color: #af2c3e;
}
.pagination li.disabled a,.pagination li.disabled span{
    background-color: #777;
    cursor: no-drop;
}

.pro-tip{
    color: #ccc;
    font-size: 30px;
    margin-top: 40px;
}

.f12{font-size: 12px!important;}
.f14{font-size: 14px!important;}
.f16{font-size: 16px!important;}
.f18{font-size: 18px!important;}
.f20{font-size: 20px!important;}
.f24{font-size: 24px!important;}
.f30{font-size: 30px!important;}
.f40{font-size: 40px!important;}
.f50{font-size: 50px!important;}

.pt5{padding-top: 5px!important;}
.pt10{padding-top: 10px!important;}
.pt20{padding-top: 20px!important;}
.pt30{padding-top: 30px!important;}

.pb5{padding-bottom: 5px!important;}
.pb10{padding-bottom: 10px!important;}
.pb20{padding-bottom: 20px!important;}
.pb30{padding-bottom: 30px!important;}
.pb40{padding-bottom: 40px!important;}

.mt3{margin-top: 3px!important;}
.mt5{margin-top: 5px!important;}
.mt10{margin-top: 10px!important;}
.mt15{margin-top: 15px!important;}
.mt20{margin-top: 20px!important;}
.mt30{margin-top: 30px!important;}
.mt40{margin-top: 40px!important;}
.mt50{margin-top: 50px!important;}

.mb5{margin-bottom: 5px!important;}
.mb10{margin-bottom: 10px!important;}
.mb20{margin-bottom: 20px!important;}
.mb30{margin-bottom: 30px!important;}
.mb40{margin-bottom: 40px!important;}
.mb50{margin-bottom: 50px!important;}
.mb60{margin-bottom: 60px!important;}

.ml10{margin-left: 10px!important;}
.ml20{margin-left: 20px!important;}
.ml30{margin-left: 30px!important;}
.ml40{margin-left: 40px!important;}
.ml50{margin-left: 50px!important;}
.ml60{margin-left: 60px!important;}

.mr10{margin-right: 10px!important;}
.mr20{margin-right: 20px!important;}
.mr30{margin-right: 30px!important;}
.mr40{margin-right: 40px!important;}
.mr50{margin-right: 50px!important;}


.white{
    color: #fff;
}
.right-line{
    width: 2px;
    background: #8bbec2;
    height: 40px;
}

.index-title{
    font-size: 40px;
    line-height: 1.2;
    font-weight: bold;
}
.num-add{
    position: relative;
}
.num-add:after{
    content: '+';
    font-size: 26px;
    position: absolute;
    top: 0;
    right: -20px;
}
.sub-title{
    font-size: 16px;
    color: #eee;
}

.about-info{
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 99;

}.index-tag{
     background: #af2c3e;
     border-radius: 200px;
     padding: 2px 30px;
    font-size: 16px;
    display: inline-block;
     margin-bottom: 10px;
 }
.title-line{
    width: 32px;
    height: 6px;
    background: #af2c3e;
    border-radius: 200px;
    margin-top: 20px;
}
.top-tag{
    top: 50%;
    width: 100%;
}
.top-tag .index-title{
    font-size: 36px;
    color: #fff;
}
.top-tag .item{
    background: #fff;
    border-radius: 20px;
    width: 48%;
    margin-top: 30px;
    padding: 3px;
    transition: all 0.2s ease-in !important;
}
.top-tag .item img{
    border-radius: 20px;
    margin-right: 30px;
    width: 48%;
}
.top-tag .item .title{
    font-size: 20px;
    font-weight: bold;
}
.top-tag .item .stitle{
    font-size: 13px;
    margin-top: 10px;
    margin-right: 20px;
}
.top-tag .item:hover{
    background: #5976ae;
    color: #fff;
}
