@font-face {
    font-family: pingfang;
    src: url("../font/pingfang.ttf");
}

@font-face {
    font-family: dingtalk;
    src: url("../font/DingTalkJinBuTi-Regular.ttf");
}

@font-face {
    font-family: Adobe;
    src: url("../font/Adobe.ttf");
}

.h-header {
    background-color: #fff;
}

.container {
    max-width: 1560px;
    margin: 0 auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.flex .nav ul {
    display: flex;
}

.flex .nav ul li {
    margin-right: 80px;
}

.flex .nav ul li a {
    height: 18px;
    line-height: 18px;
    font-weight: bold;
    font-family: pingfang;
    font-size: 16px;
}

.flex .nav ul .on a {
    position: relative;
    color: #f02c1f;

}

.flex .nav ul .on a::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: -16px;
    width: 64px;
    height: 3px;
    background-color: #f02c1f;
}

.swiper {
    width: 100%;
    /*height: 733px;*/
}

.search-top-box {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 80px;
    line-height: 80px;
    background-color: #fff;
    display: none;
    text-align: center;
}

.search-top-box input {
    width: 50%;
    border-bottom: 1px solid #eee;
    height: 40px;
}

.search-top-box button {
    background: none;
    color: inherit;
    border: none !important;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    margin-right: 25px;
}

.search-top-box img {
    width: 30px;
    height: 30px;
}

.sticky {
    position: fixed;
    /* 吸顶后的定位 */
    top: 0;
    /* 吸顶后位于视口顶部 */
    width: 100%;
    z-index: 9999;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
}

/* .pc-box {
    display: none;
} */
.sj-box .sjflex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.sj-box .sjflex .sj-logo img {
    width: 200px;
}

.sj-box .sjflex .sj-btn {
    width: 30px;
    height: 40px;
    display: flex;
    align-items: center;
}

.sj-box .sjflex .sj-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 30px;
}

.sj-box .sjflex .sj-btn .line {
    width: 30px;
    height: 2px;
    background-color: #de4130;
}

.sj-box .sjflex .sj-btn .line:nth-child(1) {
    width: 0;
    animation: sjnav 2.4s linear infinite;
}

.sj-box .sjflex .sj-btn .line:nth-child(3) {
    width: 0;
    animation: sjnav 2.4s linear infinite;
}

.sj-box .sj-nav {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    right: 0;
    background-color: #fff;
    z-index: 22;
    opacity: 0;
    width: 100%;
    height: 100vh;
}

.sj-box .active {
    transition-delay: 0.3s !important;
    opacity: 1 !important;
    left: 0 !important;
}

.sj-box .sj-nav .top {
    display: flex;
    height: 60px;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .06);
}

.sj-box .sj-nav .top .l img {
    width: 200px;
}

.sj-box .sj-nav .top .r img {
    width: 30px;
}

.sj-box .sj-nav .bottom ul {
    padding: 6px 20px;
}

.sj-box .sj-nav .bottom ul li {
    width: 100%;
}

.sj-box .sj-nav .bottom ul li .title {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.sj-box .sj-nav .bottom ul li .title a {
    font-size: 20px;
}

.sj-box .sj-nav .bottom ul li .title i {
    position: relative;
    width: 30px;
    height: 30px;
}

.sj-box .sj-nav .bottom ul li .title i::before {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(90deg);
}

.sj-box .sj-nav .bottom ul li .title i::after {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%) rotate(270deg);
}

.sj-box .sj-nav .bottom ul li .m-subnav a {
    display: block;
    line-height: 24px;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.sj-box .sj-nav .bottom ul li .m-subnav a::before {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    position: absolute;
    left: 4px;
    top: 7px;
    transition: all 0.4s;
}

.sj-box .sj-nav .bottom ul li .m-subnav a::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #CCCCCC;
    border-radius: 50%;
    position: absolute;
    left: 7px;
    top: 10px;
    transition: all 0.4s;
}

.sj-box .sj-nav .mobinfo {
    padding: 0 20px;
}

.sj-box {
    display: none;
}

@keyframes sjnav {
    0% {
        width: 0;
    }

    25% {
        width: 20px;
    }

    50% {
        width: 40px;
    }

    75% {
        width: 20px;
    }

    100% {
        width: 0;
    }
}


/*轮播图开始*/
.banner-box img {
    width: 100%;
}

/*轮播图结束*/

/*首页关于我们开始*/
.h-about {
    margin-top: 120px;
    margin-bottom: 120px;
}

.h-about .h-about-top {
    position: relative;
    font-size: 30px;
    padding-left: 65px;
}

.h-about .h-about-top::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 29px;
    height: 54px;
    background-color: #f02c1f;
}

.h-about .h-about-bottom {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.h-about .h-about-bottom .l {
    width: 100%;
}

.h-about .h-about-bottom .l h2 {
    font-size: 40px;
    color: #1d1d1d;
    font-weight: 600;
}

.h-about .h-about-bottom .l p {
    font-size: 18px;
    color: #626160;
    margin-top: 30px;
    margin-bottom: 30px;
}

.h-about .h-about-bottom .l .img-box {
    display: flex;
    justify-content: space-between;
}

.h-about .h-about-bottom .l .img-box img {
    width: 45%;
}

.h-about .h-about-bottom .r {
    width: 45%;
}

.h-about .h-about-bottom .r .about-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100px;
}

.h-about .h-about-bottom .r .about-swiper .about-button-next,
.about-button-prev {
    top: 40px;
    width: 50px;
    height: 50px;
}

.h-about .h-about-bottom .r .about-swiper .about-button-next:after {
    content: '';
}

.h-about .h-about-bottom .r .about-swiper .about-button-prev:after {
    content: '';
}

.h-about .h-about-bottom .r .about-swiper .about-button-next {
    background-image: url("../image/next-icon.png");
    background-size: 50px;
}

.h-about .h-about-bottom .r .about-swiper .about-button-prev {
    background-image: url("../image/prev-icon.png");
    background-size: 50px;
    left: 80%;
}

.h-about .h-about-bottom .r img {
    max-width: 100%;
}

/*首页关于我们结束*/


/*首页产品中心开始*/
.h-product {
    padding: 100px 0;
    background-image: url('../image/h-product-bj.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.h-product .title {
    text-align: center;
}

.h-product .title .e {
    font-size: 28px;
    color: #feffff;
}

.h-product .title h2 {
    font-size: 44px;
    color: #fff;
}

.h-product .h-product-box {
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}

.h-product .h-product-box .l {
    width: 25%;
}

.h-product .h-product-box .r {
    position: relative;
    width: 75%;
}

.h-product .h-product-box .product-thumbs-swiper {
    height: 100%;
    width: 100%;
}

.h-product .h-product-box .product-thumbs-swiper .product-list {
    height: 10% !important;

}

.h-product .h-product-box .product-thumbs-swiper .product-list:hover {
    cursor: pointer;
}

.h-product .h-product-box .product-thumbs-swiper p {
    color: #fff;
    opacity: .5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.h-product .h-product-box .product-thumbs-swiper .swiper-slide {
    display: flex;
    align-items: center;
    padding-left: 40%;
    box-sizing: border-box;
}

.h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active {
    position: relative;
    opacity: 1;
}

.h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active p {
    opacity: 1;
    transform: scale(1.1);
}

.h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    width: 20%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%);
}


.h-product .h-product-box .product-swiper {
    overflow: hidden;
}

.h-product .h-product-box .product-swiper .option-box {
    display: flex;
}

.h-product .h-product-box .product-swiper .option-box .l {
    width: 70%;
}

.h-product .h-product-box .product-swiper .option-box .l img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.h-product .h-product-box .product-swiper .option-box .r {
    width: 30%;
    background-color: #edeae9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 50px;
    box-sizing: border-box;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.h-product .h-product-box .product-swiper .option-box .r h2 {
    font-size: 32px;
    color: #2b72b6;
    text-align: center;
    margin-bottom: 50px;
}

.h-product .h-product-box .product-swiper .option-box .r a {
    position: relative;
    font-size: 18px;
    color: #4b4a49;
}

.h-product .h-product-box .product-swiper .option-box .r a::before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    width: 85px;
    height: 1px;
    background-color: #565554;
}

/*首页产品中心结束*/

/*首页资质证书开始*/
.h-zzzs {
    padding: 120px 0;
}

.h-zzzs .zzzs-title p {
    font-size: 28px;
    color: #0a161e;
}

.h-zzzs .zzzs-title h2 {
    font-size: 44px;
    color: #111d25;
}

.h-zzzs .zzzs-list-box {
    position: relative;
    margin-top: 50px;
}

.h-zzzs .zzzs-list-box .zzzs-ul ul {
    display: flex;
    border-bottom: 2px solid #383737;
}

.h-zzzs .zzzs-list-box .zzzs-ul ul li {
    padding: 20px 50px;
}

.h-zzzs .zzzs-list-box .zzzs-ul ul li a {
    font-size: 20px;
    color: #2a2a2a;
}

.h-zzzs .zzzs-list-box .zzzs-ul ul .on {
    border-bottom: 4px solid #325bbe;
}

.h-zzzs .zzzs-list-box .zzzs-swiper-box {
    margin-top: 50px;
    overflow: hidden;
}

.h-zzzs .zzzs-list-box .zzzs-swiper-box .tab-pane {
    display: none;
}

.h-zzzs .zzzs-list-box .zzzs-swiper-box .active {
    display: block;
}

.h-zzzs .zzzs-button-prev {
    top: 0;
    left: 90%;
    background-image: url("../image/prev-icon.png");
    background-size: 50px;
    width: 50px;
    height: 50px;
}

.h-zzzs .zzzs-button-prev:after {
    content: '';
}

.h-zzzs .zzzs-button-next {
    top: 0;
    right: 20px;
    background-image: url("../image/next-icon.png");
    background-size: 50px;
    width: 50px;
    height: 50px;
}

.h-zzzs .zzzs-button-next:after {
    content: '';
}

/*首页资质证书结束*/

/*首页战略合作开始*/
.zlhz-box {
    padding: 140px 0;
    background-image: url("../image/zlhz.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.zlhz-box .title {
    text-align: center;
}

.zlhz-box .title h2 {
    font-family: dingtalk;
    font-size: 105px;
    background: -webkit-linear-gradient(#1f7bff, #30aaff);
    background: linear-gradient(#1f7bff, #30aaff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* 兼容非WebKit浏览器 */
}

.zlhz-box .title p {
    font-size: 30px;
    color: #757473;
    margin-top: 44px;
}

.zlhz-swiper-box {
    margin-top: 100px;
}

.zlhz-swiper {
    overflow: hidden;
}

.zlhz-swiper .zlhz-slide {
    width: 340px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #5174c4;
    box-sizing: border-box;
    background-color: #fff;
}

.zlhz-swiper2 {
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
}

.zlhz-swiper2 .zlhz-slide {
    width: 340px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #5174c4;
    box-sizing: border-box;
    background-color: #fff;
}

.zlhz-swiper2 .zlhz-slide:nth-child(3n) {
    background-color: #a3b7e6;
}

.zlhz-swiper .zlhz-slide:nth-child(3n) {
    background-color: #a3b7e6;
}

.zlhz-swiper .zlhz-slide img {}

/*首页战略合作结束*/

/*advantage开始*/
.advantage-box {
    position: relative;
    margin-bottom: 150px;
}

.advantage-box .advantage-bj {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 450px;
    z-index: -1;
}

.advantage-box .advantage-title {
    text-align: center;
    padding-top: 100px;
}

.advantage-box .advantage-title p {
    font-size: 28px;
    color: #fff;
}

.advantage-box .advantage-title h2 {
    font-size: 44px;
    color: #fff;
}

.advantage-box .advantage-list-box ul {
    display: flex;
    margin-top: 70px;
}

.advantage-box .advantage-list-box ul li {
    width: 25%;
    margin-right: 80px;
    border: 1px solid #e1e3ee;
    border-bottom: 2px solid #435c97;
    box-sizing: border-box;
}

.advantage-box .advantage-list-box ul li:last-child {
    margin-right: 0;
}

.advantage-box .advantage-list-box ul li .img-box {
    overflow: hidden;
}

.advantage-box .advantage-list-box ul li .img-box img {
    max-width: 100%;
    min-width: 100%;
    height: 268px;
    transition: all .4s;
}

.advantage-box .advantage-list-box ul li .img-box img:hover {
    transform: scale(1.1);
}

.advantage-box .advantage-list-box ul li .p-box {
    height: 185px;
    text-align: center;
    background-color: #fff;
    padding: 0 33px;
    font-size: 16px;
    color: #222323;

}

.advantage-box .advantage-list-box ul li .p-box h3 {
    padding: 24px 0 21px 0;
    font-size: 23px;
    color: #283d6f;
    font-weight: bold;
}

.advantage-box .advantage-list-box ul li .p-box p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.advantage-box .advantage-list-box ul li:hover .p-box {
    background-color: #324e8e;
    color: #fff;
    transition: all .5s;
}

.advantage-box .advantage-list-box ul li:hover .p-box h3 {
    color: #fff;
}

/*advantage结束*/

/*首页新闻开始*/
.h-new {
    font-family: pingfang;
    padding-bottom: 100px;
}

.h-new .new-title {
    border-bottom: 1px solid #e1e1e1;
}

.h-new .new-title p {
    font-size: 28px;
    color: #040e17;
}

.h-new .new-title .more {
    display: flex;
    justify-content: space-between;
}

.h-new .new-title .more h2 {
    font-size: 44px;
    color: #0a161f;
}

.h-new .new-title .more a {
    font-size: 16px;
    color: #d32c25;
    padding: 5px 20px;
    border: 1px solid #d32c25;
    margin-top: 30px;
    margin-bottom: 20px;
}

.h-new .time {
    font-size: 18px;
    color: #324e8f;
}

.h-new .option-title {
    font-size: 22px;
    color: #1f1f1f;
    font-weight: bold;
}

.h-new .first-option {
    border-bottom: 1px solid #bfbfbf;
}

.h-new .first-option .option-title {
    display: inline-block;
    margin: 44px 0 33px 0;
}

.h-new .first-option .option-title:hover {
    color: #f02c1f !important;
}

.h-new .first-option p {
    color: #5d5d5d;
    font-size: 14px;
}

.h-new .first-option .look-more {
    display: inline-block;
    font-size: 14px;
    color: #4b4b4b;
    margin-top: 50px;
}

.h-new .new-list-box .first-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0 70px 0;
}

.h-new .new-list-box .option-l {
    width: 60%;
}

.h-new .new-list-box .option-r {
    width: 30%;
}

.h-new .new-list-box .jy-option {
    padding: 26px 0 38px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.h-new .new-list-box .jy-option .jy-box {}

/*首页新闻结束*/

/*公共底部开始*/
.foot {
    background-image: url("../image/foot-bj.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: #999999;
    padding: 100px 0 120px 0;
}

.foot a {
    color: #999999;
    font-size: 16px;
}

.foot .foot-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 50px;
    padding-bottom: 70px;
    border-bottom: 1px solid #2b3753;
}

.foot .foot-nav ul li a {
    color: #fff;
    margin-right: 50px;
}

.foot .foot-contact {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #2b3753;
    padding-bottom: 50px;
}

.foot .foot-contact .info-box:last-child {
    width: 25%;
}

.foot .foot-contact .code {
    text-align: center;
}

.foot .foot-contact .code p {
    margin-top: 10px;
}

.foot .foot-contact .info-box p:nth-child(2) {
    margin-top: 5px;
}

.foot .foot-contact .info-box p:nth-child(3) {
    font-size: 24px;
    color: #fff;
    margin-top: 5px;
}

.foot .copyright {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.foot .copyright .l {
    display: flex;
    align-items: center;
}

.foot .copyright .l p {
    margin-right: 100px;
}

.foot .copyright .l a {
    display: inline-block;
    align-items: center;
}

.foot .copyright .l a img {
    margin-right: 10px;
}

/*公共底部结束*/

@media (max-width: 1440px) {
    .container {
        max-width: 1330px;
    }

    /*.h-product .h-product-box .product-thumbs-swiper .swiper-slide {*/
    /*    padding-left: 30%;*/
    /*}*/
    /*.h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active::before {*/
    /*    width: 80px;*/
    /*}*/
    .ny-banner {
        height: 525px;
    }

    .ny-banner .ny-banner-box {
        height: 525px;
    }

    .advantage-box .advantage-list-box ul li .img-box img {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 900px;
    }

    .flex .logo img {
        width: 200px;
    }

    .flex .nav ul li {
        margin-right: 30px;
    }

    .search-top-box {
        height: 50px;
    }

    .h-about {
        margin-top: 70px;
        margin-bottom: 70px;
    }

    .h-about .h-about-top {
        font-size: 26px;
        padding-left: 50px;
    }

    .h-about .h-about-bottom {
        margin-top: 30px;
    }

    .h-about .h-about-bottom .l h2 {
        font-size: 30px;
    }

    .h-about .h-about-bottom .l p {
        font-size: 14px;
    }

    .h-about .h-about-bottom .r .about-swiper .about-button-prev {
        left: 70%;
    }

    .h-product {
        padding: 70px 0;
    }

    .h-product .title .e {
        font-size: 22px;
    }

    .h-product .title h2 {
        font-size: 32px;
    }

    .h-product .h-product-box .product-thumbs-swiper .swiper-slide {
        padding-left: 30%;
    }

    .h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active::before {
        width: 20%;
    }

    .h-product .h-product-box .product-swiper .option-box .r {
        padding: 0;
    }

    .h-product .h-product-box .product-swiper .option-box .r h2 {
        font-size: 26px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .h-zzzs {
        padding: 70px 0;
    }

    .h-zzzs .zzzs-title p {
        font-size: 22px;
    }

    .h-zzzs .zzzs-title h2 {
        font-size: 32px;
    }

    .h-zzzs .zzzs-list-box {
        margin-top: 30px;
    }

    .h-zzzs .zzzs-list-box .zzzs-ul ul li {
        padding: 10px 30px;
    }

    .h-zzzs .zzzs-button-prev {
        left: 85%;
    }

    .zlhz-box {
        padding: 70px 0;
    }

    .zlhz-box .title h2 {
        font-size: 70px;
    }

    .zlhz-box .title p {
        margin-top: 20px;
    }

    .zlhz-swiper-box {
        margin-top: 30px;
    }

    .zlhz-swiper2 {
        margin: 30px 0;
    }

    .zlhz-swiper .zlhz-slide {
        height: 100px;
    }

    .zlhz-swiper2 .zlhz-slide {
        height: 100px;
    }

    .advantage-box .advantage-title {
        padding-top: 70px;
    }

    .advantage-box .advantage-title p {
        font-size: 22px;
    }

    .advantage-box .advantage-title h2 {
        font-size: 32px;
    }

    .advantage-box .advantage-list-box ul {
        margin-top: 30px;
    }

    .advantage-box .advantage-list-box ul li {
        margin-right: 2%;
    }

    .advantage-box .advantage-list-box ul li .p-box {
        padding: 0 15px 20px 15px;
    }

    .advantage-box .advantage-list-box ul li .p-box h3 {
        font-size: 18px;
        padding: 10px 0;
    }

    .advantage-box .advantage-list-box ul li .p-box p {
        font-size: 14px;
    }

    .advantage-box {
        margin-bottom: 70px;
    }

    .h-new .new-title p {
        font-size: 22px;
    }

    .h-new .new-title .more h2 {
        font-size: 32px;
    }

    .h-new .new-title .more a {
        margin-top: 15px;
        margin-bottom: 10px;
        font-size: 14px;
    }

    .h-new .new-list-box .first-option {
        padding: 30px 0 50px 0;
    }

    .h-new .first-option .option-title {
        margin: 22px 0 11px 0;
    }

    .h-new .first-option .look-more {
        margin-top: 30px;
    }

    .foot {
        padding: 70px 0 80px 0;
    }

    .foot .foot-nav ul {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }

    .foot .foot-contact {
        flex-wrap: wrap;
    }

    .foot .foot-contact .info-box {
        margin-left: 1%;
        text-align: center;
    }
}


@media (max-width: 430px) {
    .container {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .pc-box {
        display: none;
    }

    .sj-box {
        display: block;
    }

    .h-about {
        margin: 30px 0;
    }

    .h-about .h-about-top::before {
        width: 15px;
        height: 40px;
    }

    .h-about .h-about-top {
        padding-left: 30px;
    }

    .h-about .h-about-bottom {
        flex-wrap: wrap;
    }

    .h-about .h-about-bottom .l {
        width: 100%;
    }

    .h-about .h-about-bottom .l p {
        margin: 15px 0;
    }

    .h-about .h-about-bottom .r {
        width: 100%;
    }

    .h-product {
        padding: 30px 0;
    }

    .h-product .h-product-box {
        margin-top: 30px;
    }

    .h-product .h-product-box {
        flex-wrap: wrap;
    }

    .h-product .h-product-box .l {
        width: 100%;
    }

    .h-product .h-product-box .product-thumbs-swiper .swiper-slide {
        padding-left: 40px;
        width: 100%;
        text-align: center;
        line-height: 30px;
    }

    .h-product .h-product-box .product-thumbs-swiper .swiper-slide-thumb-active::before {
        width: 0;
    }

    .h-product .h-product-box .r {
        width: 100%;
    }

    .h-product .h-product-box .product-swiper .option-box {
        padding: 0 20px;
        flex-wrap: wrap;
    }

    .h-product .h-product-box .product-swiper .option-box .l {
        width: 100%;
    }

    .h-product .h-product-box .product-swiper .option-box .r {
        width: 100%;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        padding: 10px 0;
    }

    .h-product .h-product-box .product-swiper .option-box .l img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .h-product .h-product-box .product-swiper .option-box .r h2 {
        margin-bottom: 15px;
    }

    .h-zzzs {
        padding: 30px 0;
    }

    .h-zzzs .zzzs-list-box .zzzs-ul ul {
        flex-wrap: wrap;
    }

    .h-zzzs .zzzs-list-box .zzzs-ul ul li {
        width: 50%;
        padding: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .h-zzzs .zzzs-button-prev {
        display: none;
    }

    .h-zzzs .zzzs-button-next {
        display: none;
    }

    .zlhz-box {
        padding: 20px 0;
    }

    .zlhz-box .title h2 {
        font-size: 34px;
    }

    .zlhz-box .title p {
        font-size: 16px;
        margin-top: 10px;
    }

    .advantage-box .advantage-title {
        padding-top: 30px;
    }

    .advantage-box .advantage-list-box ul {
        flex-wrap: wrap;
    }

    .advantage-box .advantage-list-box ul li {
        width: 48%;
        margin-right: 4%;
        margin-bottom: 4%;
    }

    .advantage-box .advantage-list-box ul li:nth-child(2n) {
        margin-right: 0;
    }

    .advantage-box {
        margin-bottom: 30px;
    }

    .h-new .new-list-box .first-option {
        flex-wrap: wrap;
    }

    .h-new .new-list-box .option-l {
        width: 100%;
    }

    .h-new .new-list-box .option-r {
        width: 100%;
        margin-top: 20px;
    }

    .h-new .first-option .look-more {
        display: none;
    }

    .h-new .new-list-box .first-option {
        padding: 20px 0 30px 0;
    }

    .h-new .new-list-box .jy-option {
        flex-wrap: wrap;
    }

    .h-new .new-list-box .jy-option .jy-box {
        width: 100%;
    }

    .h-new {
        padding-bottom: 0;
    }

    .foot {
        padding: 30px 0 40px 0;
    }

    .foot .foot-nav ul {
        flex-wrap: wrap;
    }

    .foot .foot-nav ul li a {
        margin-right: 20px;
        margin-bottom: 10px;
        line-height: 30px;
    }

    .foot .foot-contact {
        flex-direction: column;
    }

    .foot .foot-contact .info-box {
        margin-top: 20px;
    }

    .foot .copyright {
        flex-wrap: wrap;

    }

    .foot .copyright .l {
        width: 100%;
        flex-direction: column;
        justify-content: center;
    }

    .foot .copyright .r {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .foot .copyright .l p {
        margin-right: 0;
        text-align: center;
    }

    .advantage-box .advantage-list-box ul li .p-box {
        height: 120px;
    }

    .foot .foot-contact .info-box:last-child {
        width: 100%;
    }

    .h-about .h-about-bottom .l .img-box {
        flex-wrap: wrap;   
    }
    
    .h-about .h-about-bottom .l .img-box img {
        width: 100%;
    }

    .advantage-box .advantage-list-box ul li {
        width: 100%;
    }

    .advantage-box .advantage-list-box ul li .img-box img {
        height: 100%;
    }

}