    /* 公共样式 */
    
    html {
        scroll-behavior: smooth;
    }
    /* 分页样式 */
    
    .pagination {
        display: flex;
        justify-content: center;
        padding: 30px 0;
    }
    
    .pagination li {
        width: 30px;
        height: 30px;
        margin: 10px 10px;
        border: 1px solid #ccc;
        text-align: center;
        line-height: 30px;
    }
    
    .pagination .disabled {
        opacity: 0.5;
    }
    
    #banner2 {
        display: none;
    }
    
    .pagination .active {
        background: #2f308a;
        color: #fff;
    }
    
    .clear {
        clear: both;
    }
    
     ::-webkit-scrollbar {
        /*滚动条整体样式*/
        width: 0px;
        /*高宽分别对应横竖滚动条的尺寸*/
        height: 1px;
    }
    
     ::-webkit-scrollbar-thumb {
        /*滚动条里面小方块*/
        border-radius: 0px;
        -webkit-box-shadow: inset 0 0 5px #8c90d3;
        background: #1a1f8b;
    }
    
     ::-webkit-scrollbar-track {
        /*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px #b5b7ee;
        border-radius: 0px;
        background: #ccc;
    }
    
    .tabbar {
        height: 1.15rem;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #111;
        z-index: 99;
        padding: 0 0 0.12rem 0;
        display: none;
    }
    
    .tabbar .wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .tabbar .wrapper .tabitem {
        flex-grow: 1;
        width: 25%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 1.15rem;
        opacity: 0.3;
    }
    
    .tabbar .wrapper .active {
        opacity: 1;
        background: #142b76;
    }
    
    .tabbar .wrapper .tabitem img {
        display: block;
        margin: 10px 0 10px 0;
    }
    
    .tabbar .wrapper .tabitem span {
        color: #fff;
        font-size: 0.2rem;
    }
    
    .subwrapper .container .title {
        font-size: 24px;
        color: rgb(255, 0, 0);
        text-align: center;
        margin: 10px 0;
    }
    
    .empty {
        height: 100px;
        background: #fff;
    }
    
    video::-webkit-media-controls-fullscreen-button {
        display: none;
    }
    
    .xl-chrome-ext-bar {
        display: none;
    }
    
    .container {
        max-width: 80%;
        min-width: 70%;
        margin: 0 auto;
        padding: 0 calc(2vw - 20px);
        /* overflow: hidden; */
        transition: all 0.4s;
    }
    
    .container .titledemo {
        padding: 60px 15px 35px;
        animation-name: slideInUp;
        visibility: visible;
    }
    
    .container .titledemo .name {
        /* font-size: 28px; */
        font-size: calc(1vw + 21px);
        color: #000;
        font-weight: bold;
        /* margin: 0 0 10px 0; */
        text-align: center;
    }
    
    .container .titledemo .desc {
        font-size: calc(1vw + 6px);
        color: #000;
        text-align: center;
    }
    
    .container .titledemo2 {
        padding: 20px 0;
        margin: 0 auto;
    }
    
    .container .titledemo2 .title {
        font-size: calc(1vw + 15px);
        color: #222;
        text-align: center;
    }
    
    .container .titledemo2 .line {
        margin: 40px auto;
        display: block;
        width: 40px;
        height: 1px;
        background: #1a1f8b;
    }
    
    .container .titledemo2 .desc {
        font-size: 16px;
        color: #000;
        text-align: center;
        max-width: 1030px;
        margin: 0 auto;
    }
    
    .about .container .cont {
        font-size: 16px;
        color: #222;
        line-height: 30px;
        text-indent: 32px;
        margin: 10px 0;
        padding: 0 31px;
        text-align: justify;
    }
    
    .about .container img {
        display: block;
        max-width: 100%;
        margin: 20px auto;
    }
    /* 头部样式 */
    
    header {
        height: 100px;
        z-index: 99;
        position: absolute;
        width: 100%;
    }
    
    header .container {
        display: flex;
        justify-content: space-between;
        animation-name: fadeInDown;
        visibility: visible;
        max-width: 90%;
    }
    
    header .container .menuicon {
        display: none;
    }
    
    header .logobox {
        display: flex;
    }
    
    header .logobox .logo {
        height: 63px;
        margin: 18px 0 0 0;
    }
    
    header .logobox .logo:nth-child(2) {
        margin: 18px 0 0 calc(3vw + 1px);
    }
    
    header .logobox .logodesc {
        display: flex;
        align-items: center;
        letter-spacing: 11px;
        font-size: calc(1vw + 7px);
        color: #f12026;
        font-weight: bold;
        transition: all 0.4s;
    }
    
    header .logobox .m-logo {
        display: none;
    }
    
    nav {
        height: 48px;
        line-height: 48px;
    }
    
    nav .container .mainnav {
        display: flex;
        justify-content: space-between;
        border-top: 1px solid #e7e7e7;
    }
    
    nav .container .mainnav .subnav {
        background: #fff;
        line-height: 1;
        display: none;
        position: absolute;
        top: 40px;
        z-index: 2;
    }
    
    nav .container .mainnav .subnav a {
        padding: 20px;
        display: block;
        font-size: 15px;
    }
    
    nav .container .mainnav .subnav a:hover {
        color: #2f308a;
    }
    
    nav .container .mainnav li {
        /* flex-grow: 1; */
        height: 48px;
        position: relative;
    }
    
    nav .container .mainnav li:hover .subnav {
        display: block;
    }
    
    nav .container .mainnav li:hover {
        border-bottom: 3px solid #2f308a;
    }
    
    nav .container .mainnav li:hover>a {
        color: #2f308a;
    }
    
    nav .container .mainnav li a {
        font-size: 16px;
        color: #707070;
        padding: 0 20px;
        font-weight: 500;
        user-select: none;
        position: relative;
        display: block;
        width: calc(4vw + 24px);
        text-align: center;
    }
    /* nav .container .mainnav li a::after {
    content: '';
    width: 11px;
    height: 9px;
    background: url(../images/nav-icon.png)no-repeat center;
    position: absolute;
    right: 0px;
    top: 8px;
} */
    
    nav .container .mainnav li a:hover {
        text-decoration: none;
    }
    
    header .container .phonebox {
        position: relative;
        padding: 17px 0 0 50px;
    }
    
    header .container .phonebox::before {
        content: '';
        width: 34px;
        height: 34px;
        background: url(../images/phoneicon.png)no-repeat center;
        position: absolute;
        left: 0px;
        top: 32px;
    }
    
    header .container .phonebox p {
        font-size: calc(1vw + 5px);
        font-weight: bolder;
        color: #38388e;
    }
    
    .infotop {
        height: 40px;
        background: #f8f8f8;
        line-height: 40px;
    }
    
    .infotop .container {
        max-width: 90%;
    }
    
    .infotop .container .wrapper {
        display: flex;
        justify-content: space-between;
    }
    
    .infotop .container .wrapper .name {
        font-size: 16px;
        color: #666;
    }
    
    .infotop .container .wrapper .exchange {
        display: flex;
    }
    
    .infotop .container .wrapper .exchange .cn {
        margin: 0 80px 0 0;
        font-size: 16px;
        position: relative;
    }
    /* 
.infotop .container .wrapper .exchange .cn::before {
    content: '';
    width: 34px;
    height: 23px;
    background: url(../images/cn.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: -40px;
    top: 8px;
} */
    
    .infotop .container .wrapper .exchange .en {
        font-size: 16px;
        position: relative;
    }
    /* .infotop .container .wrapper .exchange .en::before {
    content: '';
    width: 34px;
    height: 23px;
    background: url(../images/en.png) no-repeat center;
    background-size: contain;
    position: absolute;
    left: -40px;
    top: 8px
} */
    
    .banner img {
        max-width: 100%;
    }
    
    .banner .swiper-pagination-bullet {
        background-color: #fff;
    }
    
    .banner .swiper-pagination-bullet-active {
        background-color: #2f308a;
    }
    
    .index-pro {
        background: #f5f5f5;
        padding: 0 0 80px 0;
    }
    
    .index-pro .container .wrap {
        display: flex;
        justify-content: space-between;
        height: 580px;
    }
    
    .index-pro .container .wrap .left {
        width: calc(100% / 2 - 10px);
        margin: 0 10px 10px 0;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .index-pro .container .wrap .left .picbox {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }
    
    .index-pro .container .wrap .left .picbox {
        max-width: 60%;
    }
    
    .index-pro .container .wrap .title {
        font-size: 24px;
        color: #000;
        text-align: center;
        transition: all 0.4s;
    }
    
    .index-pro .container .wrap .desc {
        font-size: 16px;
        color: #999;
        text-align: center;
        /* margin: 0 0 30px 0; */
        transition: all .4s;
    }
    
    .index-pro .container .wrap .picbox {
        width: 100%;
        overflow: hidden;
        height: 60%;
    }
    
    .index-pro .container .wrap .picbox img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transition: all 0.4s;
    }
    
    .index-pro .container .wrap .right {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        width: calc(100% / 2 - 20px);
    }
    
    .index-pro .container .wrap .right .item {
        width: calc(100% / 2 - 10px);
        margin: 0 10px 10px 0;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: 48%;
    }
    
    .index-pro .codntaine .wrap .right .item:nth-child(2n) {
        margin: 0 0 10px 0;
    }
    
    .index-pro .container .wrap .left .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 90%;
        overflow: hidden;
        padding: 5% 0 0 0;
    }
    
    .index-pro .container .wrap .left:hover {
        box-shadow: 3px 3px 28px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
        text-align: left;
    }
    
    .index-pro .container .wrap .left:hover .picbox img {
        transition: all 6s;
        transform: scale(1.15);
    }
    
    .index-pro .container .wrap .left:hover .title {
        color: #37388f;
        transition: all 0.4s;
        /* font-size: 23px; */
    }
    
    .index-pro .container .wrap .left:hover .desc {
        transition: all 0.4s;
        /* font-size: 18px; */
    }
    
    .index-pro .container .wrap .item:hover .title {
        color: #37388f;
    }
    
    .index-pro .container .wrap .item:hover .picbox img {
        transition: all 2s;
        transform: scale(1.15);
    }
    
    .index-pro .container .wrap .right .item:hover {
        box-shadow: 3px 3px 28px rgba(0, 0, 0, 0.3);
        border-radius: 10px;
    }
    
    .index-pro .container .wrap .right .item:hover .title {
        /* font-size: 23px; */
        transition: all 0.4s;
    }
    
    .index-pro .container .wrap .right .item:hover .desc {
        transition: all 0.4s;
        /* font-size: 18px; */
    }
    /* 主推产品 */
    
    .hot-pro {
        height: 700px;
        background: url(../images/picture/pro/hotpropic.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position-y: top;
        overflow-x: hidden;
    }
    
    .hot-pro .swiper2 {
        display: none;
    }
    
    .hot-pro .hot-title {
        text-align: center;
        margin: 0 auto 120px;
    }
    
    .hot-pro .hot-title .line {
        width: 2px;
        height: 110px;
        background: #fff;
        display: block;
        margin: 0 auto 20px;
    }
    
    .hot-pro .hot-title .title {
        font-size: 22px;
        color: #fff;
    }
    
    .hot-pro .hot-title .desc {
        font-size: 46px;
        color: #fff;
        font-weight: bold;
    }
    
    .hot-pro .container {
        padding: 80px 0 0 0;
    }
    /* .hot-pro .container .swiper .swiper-slide {
        width: 23.3125%;
        opacity: 0.5;
    } */
    
    .hot-pro .container .swiper .item {
        background: #fff;
        width: 100%;
        height: fit-content;
        position: relative;
        transition: all 0.4s;
    }
    
    .hot-pro .container .swiper .swiper-slide-active {
        /* margin-top: -40px; */
        transition: all 0.4s;
        opacity: 1;
    }
    
    .hot-pro .titledemo {
        position: relative;
    }
    
    .hot-pro .titledemo .line {
        display: block;
        position: absolute;
        left: 49.8%;
        width: 2px;
        height: 80px;
        background: #fff;
        top: -80px;
    }
    
    .hot-pro .container .swiper .item .size {
        font-size: 18px;
        color: #222;
        padding: 10px;
    }
    
    .hot-pro .container .swiper .item .picbox {
        width: 100%;
        overflow: hidden;
        height: fit-content;
        height: 180px;
    }
    
    .hot-pro .container .swiper .item .picbox img {
        width: 70%;
        object-fit: contain;
        height: 70%;
        display: block;
        margin: 0 auto;
    }
    
    .hot-pro .container .swiper .item .infobox {
        background: #fff;
        height: 126px;
        border-top: 1px solid #aeabc0;
        padding: 20px 0
    }
    
    .hot-pro .container .swiper .item .infobox .name {
        color: #000;
        padding: 10px;
        font-size: 24px;
    }
    
    .hot-pro .container .swiper .item .infobox .desc {
        color: #000;
        padding: 0 0 0 10px;
        font-size: 16px;
    }
    
    .hot-pro .container .swiper .swiper-slide-active .infobox {
        /* background: #e51824; */
        height: 126px;
        padding: 20px 0;
    }
    
    .hot-pro .container .swiper .swiper-wrapper .active .infobox .name {
        color: #fff;
        padding: 10px;
        font-size: 20px;
    }
    
    .hot-pro .container .swiper .swiper-wrapper .active .infobox {
        background: #e51824!important;
    }
    
    .hot-pro .container .swiper .swiper-wrapper .active .infobox .desc {
        color: #fff;
        padding: 0 0 0 10px;
        font-size: 14px;
    }
    
    .hot-pro .container .swiper {
        /* overflow-y: visible; */
        padding: 20px 0;
    }
    
    .hot-pro .container .swiper .item .infobox .more {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #fff;
        color: #e51824;
        font-size: 31px;
        text-align: center;
        line-height: 70px;
        position: absolute;
        left: 50%;
        margin: 0 0 0 -35px;
        bottom: -76px;
        opacity: 0;
        transition: all 0.4s;
    }
    
    .hot-pro .container .swiper .swiper-slide-active .infobox .more {
        opacity: 1;
        transition: all 0.4s;
        display: none;
    }
    
    .industry {
        margin: 0 0 50px 0;
    }
    
    .industry .container .swiper .txtbox {
        width: 58.6979%;
    }
    
    .industry .container .swiper .txtbox p {
        padding: 15px 0 5px 31px;
        font-size: 26px;
        color: #000;
    }
    
    .industry .container .swiper .txtbox span {
        font-size: 16px;
        padding: 0 0 0 30px;
        display: block;
        color: #000;
        width: 90%;
    }
    
    .industry .container .swiper .bigpic {
        margin: -280px 0 0 190px;
        max-width: 75%;
        width: calc(41vw + 60px);
        transition: all 0.4s;
    }
    
    .industry .container .swiper-slide {
        text-align: center;
        padding: 50px 0;
    }
    /* .industry .wrap {
        display: flex;
        flex-direction: column-reverse;
    } */
    
    .industry .container .swiper-slide .wrapper {
        display: flex;
        justify-content: flex-start;
    }
    
    .industry .container .swiper-slide .wrapper .picbox {
        max-width: 34.8%;
        max-height: 489px;
        height: calc(20vw + 69px);
        margin: 0 0.2% 0 0;
    }
    
    .industry .container .swiper-slide .wrapper .picbox img {
        width: 98%;
        height: 100%;
        object-fit: cover;
    }
    
    .industry .container .swiper-slide .wrapper .txtbox {
        width: 60%;
        max-height: 487px;
        height: calc(20vw + 69px);
        padding: 0 0 0 5%;
        /* border: 1px solid #ebebeb; */
    }
    
    .industry .container .swiper-slide .wrapper .txtbox .name {
        font-size: calc(2vw - 5px);
        color: #000;
        font-weight: bold;
        text-align: left;
    }
    
    .industry .container .swiper-slide .wrapper .txtbox .desc {
        font-size: calc(1vw + 1px);
        color: #000;
        text-align: left;
    }
    
    .industry .container .swiper-slide .wrapper .txtbox .piclist {
        display: flex;
        padding: 10px 0;
        align-items: flex-end;
        justify-content: flex-start;
    }
    
    .industry .container .swiper-slide .wrapper .txtbox .piclist img {
        margin: 0 20px 0 0;
        max-height: 100%;
        max-width: calc(100% / 3 - 10px);
    }
    
    .industry .wrap .indus-nav {
        width: 24.1145%;
        min-width: 330px;
    }
    
    .industry .wrap .indus-nav ul li a {
        padding: 40px 0;
        text-align: center;
        font-size: 20px;
        color: #000;
        border-bottom: 1px solid #f5f5f5;
        display: block;
        position: relative;
    }
    
    .industry .wrap .indus-nav ul li a i {
        width: 84px;
        height: 84px;
        /* background: #e51824; */
        border-radius: 50%;
        position: absolute;
        bottom: 16px;
        left: 6%;
        display: block;
        opacity: 0;
        transition: all 0.2s;
    }
    
    .industry .wrap .indus-nav ul li .active {
        box-shadow: 1px 0 20px rgba(0, 0, 0, 0.1);
        background: #f8f8f8;
    }
    
    .industry .wrap .indus-nav ul li .active i {
        transition: all 0.2s;
        opacity: 1;
        animation: swing 0.8s
    }
    
    .industry .wrap .indus-nav ul li .active::before {
        animation: swing 0.8s
    }
    
    .industry .wrap .indus-nav ul li:nth-child(1) a::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon1.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
    }
    
    .industry .wrap .indus-nav ul li:nth-child(2) a::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon2.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
    }
    
    .industry .wrap .indus-nav ul li:nth-child(3) a::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon3.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
    }
    
    .industry .wrap .indus-nav ul li:nth-child(4) a::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon4.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
    }
    
    .industry .wrap .indus-nav ul li:nth-child(5) a::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon5.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
    }
    
    .industry .wrap .indus-nav ul li .active::before {
        content: '';
        width: 55px;
        height: 55px;
        background: url(../images/picture/industry/icon1.png) no-repeat center;
        position: absolute;
        bottom: 32px;
        left: 10%;
        z-index: 2;
        filter: brightness(0.3);
    }
    
    .industry .wrap .indus-nav2 {
        display: flex;
        justify-content: center;
    }
    
    .industry .wrap .indus-nav2 .item {
        margin: 0 60px 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .industry .wrap .indus-nav2 .item img {}
    
    .industry .wrap .indus-nav2 .item span {
        font-size: 16px;
        color: #000;
    }
    /* 首页关于我们 */
    
    .index-about {
        /* height: 1106px; */
        background: #f5f5f5;
        background-position-y: top;
        background-size: cover;
    }
    
    .index-about .container .wrap {
        display: flex;
        justify-content: space-between;
        padding: 50px 0 0 0;
    }
    
    .index-about .container .wrap .txtbox {
        width: 34.125%;
        min-width: 346px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .index-about .container .wrap .txtbox .title {
        font-size: 22px;
        color: #555;
        /* padding: 220px 0 0 0; */
    }
    
    .index-about .container .wrap .txtbox .name {
        color: #000;
        font-weight: bold;
        font-size: calc(1vw + 20px);
        /* font-size: 36px; */
    }
    
    .index-about .container .wrap .txtbox .cont {
        font-size: 16px;
        color: #666;
        line-height: 32px;
        margin: 20px 0;
    }
    
    .index-about .container .wrap .txtbox .more {
        display: block;
        width: 176px;
        height: 50px;
        background: #e51824;
        color: #fff;
        text-align: center;
        line-height: 50px;
        font-size: 16px;
    }
    
    .index-about .container .wrap .picbox {
        width: 59.125%;
        height: 545px;
        overflow: hidden;
        /* padding: 110px 0 0 0; */
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .index-about .container .wrap .picbox img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .index-about .container .numbox {
        width: 100%;
        height: 228px;
        /* background: #fff; */
        display: flex;
        margin: -30px 0 0 0;
    }
    
    .index-about .container .numbox .numitem {
        width: calc(100% / 4);
        /* border-right: 1px solid #eaeaea; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
    .index-about .container .numbox .numitem p {
        font-size: 20px;
        color: #000;
        position: relative;
    }
    
    .index-about .container .numbox .numitem:nth-child(1) p::before {
        content: '';
        width: 44px;
        height: 43px;
        background: url(../images/picture/about/01.png)no-repeat center;
        background-size: contain;
        position: absolute;
        left: -45px;
        top: 12px;
    }
    
    .index-about .container .numbox .numitem:nth-child(2) p::before {
        content: '';
        width: 44px;
        height: 43px;
        background: url(../images/picture/about/02.png)no-repeat center;
        background-size: contain;
        position: absolute;
        left: -45px;
        top: 12px;
    }
    
    .index-about .container .numbox .numitem:nth-child(3) p::before {
        content: '';
        width: 44px;
        height: 43px;
        background: url(../images/picture/about/03.png)no-repeat center;
        background-size: contain;
        position: absolute;
        left: -45px;
        top: 12px;
    }
    
    .index-about .container .numbox .numitem:nth-child(4) p::before {
        content: '';
        width: 44px;
        height: 43px;
        background: url(../images/picture/about/04.png)no-repeat center;
        background-size: contain;
        position: absolute;
        left: -45px;
        top: 12px;
    }
    
    .index-about .container .numbox .numitem .num {
        font-size: calc(1vw + 30px);
        color: #37388f;
        font-weight: bold;
    }
    
    .index-about .container .numbox .numitem .name {
        font-size: 20px;
        color: #000;
    }
    
    .index-about .container .numbox .numitem:last-child {
        border: 0;
    }
    
    .certifi .container .cer-list .cer .picbox {
        border: 1px solid #dcdcdc;
        height: 320px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .certifi .swiper2 {
        display: none
    }
    
    .certifi .container .cer-list .cer .picbox img {
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }
    
    .certifi .container .cer-list .cer .name {
        text-align: center;
        padding: 20px 0;
        font-size: 20px;
    }
    
    .index-news {
        background: #f5f5f5;
        padding: 0 0 90px 0;
    }
    
    .index-news .container .wrap {
        display: flex;
    }
    
    .index-news .container .wrap .module {
        width: calc(100% / 3 - 20px);
        margin: 0 20px 0 0;
        height: fit-content;
        overflow: hidden;
        min-height: fit-content;
        transition: all 0.4s;
    }
    
    .index-news .container .wrap .module:last-child {
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .index-news .container .wrap .module1 .picbox {
        width: 100%;
        height: fit-content;
        height: 250px;
        overflow: hidden;
    }
    
    .index-news .container .wrap .module1 .picbox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .index-news .container .wrap .module1 .txtbox {
        padding: 20px 0;
        background: #fff;
    }
    
    .index-news .container .wrap .module1 .txtbox .title {
        font-size: calc(1vw + 4px);
        color: #000;
        padding: 0 0 0 36px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .index-news .container .wrap .module1 .txtbox .desc {
        font-size: 16px;
        color: #666;
        padding: 0 0 0 36px;
        margin: 12px 0;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 1;
    }
    
    .index-news .container .wrap .module1 .txtbox .date {
        font-size: 14px;
        color: #666;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 36px 0 36px;
    }
    
    .index-news .container .wrap .module2 {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .index-news .container .wrap .module2 .item {
        margin: 0 0 30px 0;
        background: #fff;
        flex-grow: 1;
    }
    
    .index-news .container .wrap .module2 .item:last-child {
        margin: 0;
    }
    
    .index-news .container .wrap .module2 .item .title {
        font-size: calc(1vw + 6px);
        color: #000;
        padding: 20px 0 20px 30px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .index-news .container .wrap .module2 .item .desc {
        font-size: 16px;
        color: #666;
        padding: 0 0 30px 36px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
    }
    
    .index-news .container .wrap .module2 .item .line {
        width: 90%;
        display: block;
        margin: 0 auto;
        background: #dadada;
        height: 1px;
    }
    
    .index-news .container .wrap .module2 .item .info {
        display: flex;
        justify-content: space-between;
        padding: 30px 0;
        width: 90%;
        margin: 0 auto;
        align-items: flex-end;
    }
    
    .index-news .container .wrap .module2 .item .info .date {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
    }
    
    .index-news .container .wrap .module2 .item .info .date .day {
        text-align: center;
        font-size: 46px;
        color: #666;
        ;
    }
    
    .index-news .container .wrap .module2 .item .info .date .ym {
        font-size: 14px;
        color: #666;
    }
    
    .index-news .container .wrap .module3 .item {
        margin: 0 0 20px 0;
        display: flex;
        flex-direction: row;
        padding: 36px 0;
        background: #fff;
        flex-grow: 1;
    }
    
    .index-news .container .wrap .module3 .item:last-child {
        margin: 0;
    }
    
    .index-news .container .wrap .module3 .item .date {
        display: flex;
        flex-direction: column;
        width: 25%;
        align-items: center;
        border-right: 1px solid #efefef;
    }
    
    .index-news .container .wrap .module3 .item .date .day {
        font-size: 46px;
        color: #666;
    }
    
    .index-news .container .wrap .module3 .item .date .line {
        display: block;
        height: 2px;
        width: 30px;
        background: #dadada;
    }
    
    .index-news .container .wrap .module3 .item .date .ym {
        font-size: 14px;
        color: #666;
    }
    
    .index-news .container .wrap .module3 .item .txtbox {
        width: 65%;
        padding: 0 4%;
    }
    
    .index-news .container .wrap .module3 .item .txtbox p {
        font-size: calc(1vw + 6px);
        color: #000;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    
    .index-news .container .wrap .module3 .item .txtbox img {
        display: block;
        margin: 20px 0;
    }
    
    footer {
        height: 216px;
        background: #111;
        padding: 58px 0;
    }
    
    footer .container {
        display: flex;
        justify-content: space-between;
    }
    
    footer .container .left .btm-nav {
        display: flex;
        margin: 0 0 50px 0;
    }
    
    footer .container .left .btm-nav a {
        color: #fff;
        font-size: 15px;
        margin: 0 60px 0 0;
        position: relative;
    }
    
    footer .container .left .btm-nav a::after {
        content: '';
        width: 10px;
        height: 2px;
        background: #fff;
        position: absolute;
        right: -35px;
        top: 10px;
    }
    
    footer .container .left .btm-nav a:last-child::after {
        display: none;
    }
    
    footer .container .left p {
        font-size: 15px;
        color: #8e8e8e;
        margin: 10px 0;
    }
    
    footer .container .left .info {
        margin: 30px 0 0 0;
    }
    
    footer .container .left .info a {
        color: #8e8e8e;
    }
    
    footer .container .right .btm-phone {
        font-size: calc(1vw + 10px);
        color: #fff;
        font-weight: bold;
    }
    
    footer .container .right .btm-phone span {
        font-size: 15px;
        color: #8e8e8e;
        text-align: left;
        width: 100%;
        display: block;
    }
    
    footer .container .right .qrcode {
        float: left;
        margin: 20px 0;
    }
    
    footer .backtotop {
        position: fixed;
        right: 5%;
        bottom: 10%;
        cursor: pointer;
    }
    /* 面包屑 */
    
    .crumb {
        height: 60px;
        line-height: 60px;
        background: #ffffff;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .crumb .container span {
        font-size: 14px;
        color: #222;
        display: inline-block;
    }
    
    .crumb .container span:first-child {
        position: relative;
        font-weight: bold;
        padding: 0 0 0 30px;
    }
    
    .crumb .container span:first-child::before {
        content: '';
        width: 19px;
        height: 17px;
        background: url(../images/crumb-icon.png) no-repeat center;
        position: absolute;
        left: -2px;
        top: 20px;
    }
    
    .crumb .container .catelist {
        float: right;
    }
    
    .crumb .container .catelist .cate {
        font-size: 16px;
        color: #000;
        margin: 0 15px;
        display: inline-block;
    }
    
    .crumb .container .catelist .active {
        height: 59px;
        border-bottom: 2px solid #f12026;
    }
    
    .crumb .container .searchbox {
        display: flex;
        justify-content: center;
        position: relative;
        float: right;
    }
    
    .crumb .container .searchbox input {
        width: 220px;
        height: 40px;
        border: 1px solid #dfdfdf;
        position: relative;
        padding: 0 0 0 10px;
        outline: 0;
        border-radius: 25px;
    }
    
    .crumb .container .searchbox input::placeholder {
        font-size: 14px;
        color: #999;
    }
    
    .crumb .container .searchbox::before {
        content: '';
        width: 22px;
        height: 22px;
        background: url(../images/search.png)no-repeat center;
        right: 12px;
        top: 19px;
        position: absolute;
        z-index: 9;
        opacity: 0.3;
    }
    
    .crumb .container .searchbox button {
        width: 40px;
        height: 41px;
        border: 0;
        background: #fff;
        text-align: center;
        line-height: 40px;
        color: #fff;
        font-size: 16px;
        letter-spacing: 1px;
        position: absolute;
        right: 1px;
        top: 10px;
        border-radius: 50%;
        opacity: 0;
        z-index: 9;
        cursor: pointer;
    }
    /* 品牌故事 */
    
    .brand-story {
        height: 31.25vw;
        background-image: url(../images/picture/about/boss.jpg);
        background-repeat: no-repeat;
        background-position-x: left;
        background-color: #f5f5f5;
        background-size: contain;
        min-height: 440px;
        margin: 120px 0;
    }
    
    .brand-story .m-company {
        display: none;
    }
    
    .brand-story .container .story {
        background: #f5f5f5;
        height: 31.25vw;
        width: 40%;
        float: right;
        min-height: 440px;
        padding: 0 2vw;
    }
    
    .brand-story .container .story .title {
        font-size: calc(1.1vw + 15px);
        color: #000;
        padding: 4vw 0 0 0;
    }
    
    .brand-story .container .story .line {
        display: block;
        width: 40px;
        height: 1px;
        background: #1a1f8b;
        margin: 4% 0;
    }
    
    .brand-story .container .story .cont {
        font-size: calc(0.5vw + 6px);
        color: #000;
        line-height: 26px;
        margin: calc(0.5vw + 5px) 0;
        text-align: justify;
    }
    /* 企业文化 */
    
    .culture .container .cul-list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 50px 0;
        flex-wrap: wrap;
    }
    
    .culture .container .cul-list .item {
        height: 180px;
        background: #f5f5f5;
        width: calc(100% / 3 - 110px);
        padding: 0 40px 0 50px;
        margin: 0 20px 30px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    
    .culture .container .cul-list .item:nth-child(3n) {
        margin: 0 0 30px 0;
    }
    
    .culture .container .cul-list .item .title {
        font-size: 22px;
        color: #000;
        margin: 10px 0;
    }
    
    .culture .container .cul-list .item .desc {
        font-size: 16px;
        color: #000;
    }
    
    .develop .miantitle {
        font-size: 32px;
        color: #222;
        text-align: center;
    }
    /* 合作伙伴 */
    
    .brandd .brandlist {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 0 80px 0;
    }
    
    .brandd .brandlist .brand {
        width: calc(100% / 6 - 10px);
        margin: 0 10px 10px 0;
    }
    
    .brandd .brandlist .brand:nth-child(6n) {
        margin: 0 0 10px 0;
    }
    
    .brandd .brandlist .brand img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* 产品中心 */
    
    .procenter {
        background: #f5f5f5;
    }
    
    .procenter .container .prolist {
        padding: 50px 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }
    
    .procenter .container .prolist .proitem {
        width: calc(100% / 3 - 10px);
        margin: 0 10px 10px 0;
        background: #fff;
    }
    
    .procenter .container .prolist .proitem:nth-child(3n) {
        margin: 0 0 10px 0;
    }
    
    .procenter .container .prolist .proitem .picbox {
        width: 90%;
        overflow: hidden;
        display: block;
        margin: 0 auto;
        height: 19vw;
        min-height: 230px;
        background: #fff;
        border-bottom: 1px solid #ccc;
    }
    
    .procenter .container .prolist .proitem .picbox img {
        width: 96%;
        height: 100%;
        display: block;
        margin: 0 auto;
        object-fit: contain;
    }
    
    .procenter .container .prolist .proitem .txtbox {
        padding: 20px 0;
        width: 90%;
        display: block;
        margin: 0 auto;
        text-align: left;
        background: #fff;
    }
    
    .procenter .container .prolist .proitem .txtbox .name {
        color: #000;
        font-size: calc(1vw + 1px);
        margin: 8px 0;
    }
    /* 产品详情 */
    
    .pro-info .container .wrap {
        display: flex;
        padding: 30px 0 0 0;
    }
    
    .pro-info .container .wrap .picbox {
        width: 500px;
        height: 340px;
        overflow: hidden;
        max-width: 46.875%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #efefef;
    }
    
    .pro-info .container .wrap .picbox img {
        max-width: 80%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .pro-info .container .wrap .txtbox {
        padding: 0 0 0 40px;
        width: 40%;
    }
    
    .pro-info .container .wrap .txtbox .title {
        font-size: calc(1vw + 6px);
        color: #000;
        margin: 0 0 30px 0;
    }
    
    .pro-info .container .wrap .txtbox .info {
        font-size: 14px;
        color: #000;
        margin: 6px 0;
    }
    
    .pro-info .container .wrap .txtbox .asked {
        width: 100px;
        height: 35px;
        border-radius: 22.5px;
        background: #f12026;
        text-align: center;
        line-height: 35px;
        color: #fff;
        display: inline-block;
        margin: 10px 20px 10px 0;
        font-size: 14px;
    }
    
    .pro-info .container .wrap .txtbox .other {
        margin: 29px 0;
        padding: 20px 0;
        border-top: 1px solid #efefef;
        border-bottom: 1px solid #efefef;
        width: 100%;
    }
    
    .detail-cate {
        margin: 30px 0 20px 0;
    }
    
    .detail-cate .container .catelist {
        display: flex;
        justify-content: center;
        border-top: 1px solid #efefef;
        border-bottom: 1px solid #efefef;
    }
    
    .detail-cate .container .catelist .cate {
        margin: 0 20px;
        font-size: 16px;
        padding: 25px 0;
        color: #666;
        user-select: none;
        cursor: pointer;
    }
    
    .detail-cate .container .catelist .active {
        border-bottom: 2px solid #f12026;
    }
    
    .cont-box .container #o2 {
        display: none;
    }
    
    .cont-box .container .detail-cont {
        padding: 10px 10%;
    }
    
    .cont-box .container .detail-cont .title {
        font-size: 32px;
        color: #222222;
        padding: 10px 0;
        text-align: center;
    }
    
    .cont-box .container .detail-cont .features {
        width: 100%;
        padding: 0.3rem 0.1rem;
        /* background: #f4f4f4; */
        /*text-align: center;*/
    }
    
    .cont-box .container .detail-cont .features p {
        font-size: 16px;
        color: #222;
        margin: 10px 0;
    }
    
    .cont-box .container .detail-cont .features table {
        /* border: 1px solid #333; */
        padding: 1px;
    }
    
    .cont-box .container .detail-cont .features tr {}
    
    .cont-box .container .detail-cont .features tr td {
        font-size: 18px;
        /*text-align: center;*/
        border: 1px solid #333;
        color: #333;
        text-align: center;
        width: fit-content;
    }
    
    .cont-box .container .detail-cont .detailpic {
        max-width: 100%;
        display: block;
        margin: 20px auto;
    }
    
    .cont-box .container .prolist {
        display: flex;
        padding: 40px 0;
        flex-wrap: wrap;
    }
    
    .cont-box .container .prolist .item {
        width: calc(100% / 4 - 10px);
        margin: 0 10px 0 0;
        /* border: 1px solid #d6d6d6; */
    }
    
    .cont-box .cotnainer .prolist .item:nth-child(4n) {
        margin: 0;
    }
    
    .cont-box .container .prolist .item .picbox {
        width: 100%;
        height: 13vw;
        min-height: 180px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 5px #ddd;
        border: 1px solid #ddd;
    }
    
    .cont-box .container .prolist .item .picbox img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
        transform: scale(0.95);
        transition: all 0.8s;
    }
    
    .cont-box .container .prolist .item .picbox:hover img {
        transition: all 0.8s;
        transform: scale(1.08);
    }
    
    .cont-box .container .prolist .item .txtbox {
        padding: 10px 0 20px 0;
    }
    
    .cont-box .container .prolist .item .txtbox p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        margin-bottom: 0;
        line-height: 2;
        color: #37474f;
        font-size: 14px;
    }
    
    .artical .list {
        padding: 80px 0;
    }
    
    .artical .list .item {
        padding: 30px 20px;
        background: #f8f8f8;
        margin: 0 0 50px 0;
        display: block;
    }
    
    .artical .list .item:hover {
        border-width: 1px;
        border-bottom: 1px solid #1a1f8b;
    }
    
    .artical .list .item .date {
        font-size: 16px;
        color: #222;
    }
    
    .artical .list .item .title {
        font-size: 26px;
        color: #222;
        margin: 30px 0;
    }
    
    .artical .list .item .desc {
        font-size: 16px;
        color: #666;
        width: 80%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* 新闻中心 */
    
    .news .list {
        padding: 80px 0;
    }
    
    .news .list .item {
        background: #f8f8f8;
        display: flex;
        margin: 0 0 50px 0;
    }
    
    .news .list .item .picbox {
        width: 400px;
        height: 250px;
        overflow: hidden;
    }
    
    .news .list .item .picbox img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news .list .item .txtbox {
        padding: 30px 20px;
        display: block;
        width: 60%;
    }
    
    .news .list .item .txtbox .date {
        font-size: 16px;
        color: #222;
    }
    
    .news .list .item .txtbox .title {
        font-size: calc(1vw + 8px);
        color: #222;
        margin: 30px 0;
    }
    
    .news .list .item .txtbox .desc {
        font-size: calc(0.8vw + 3px);
        color: #666;
        width: 80%;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    /* 联系我们 */
    
    .contact .container .info {
        display: flex;
        padding: 50px 0;
    }
    
    .contact .container .info .item {
        border: 1px solid #dedede;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 310px;
        width: calc(100% / 3 - 30px);
        margin: 0 30px 0 0;
    }
    
    .contact .container .info .item:nth-child(3) {
        margin: 0;
    }
    
    .contact .container .info .item .title {
        font-size: calc(1vw + 10px);
        color: #222;
        margin: 20px 0;
    }
    
    .contact .container .info .item .desc {
        font-size: calc(1vw + 1px);
        color: #666;
    }
    
    .contact .container .info .item div {
        padding: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .contact .container .info .item div span {
        font-size: calc(1vw + 1px);
        color: #666;
    }
    
    .contact .container .info .item div img {
        display: inline-block;
        margin: 0 0 0 10px;
    }
    
    .contact .container .map {
        width: 100%;
        height: 600px;
        margin: 40px 0;
    }
    /* 新闻详情 */
    
    .newsdetail-show {
        padding: 50px 0;
        background: #f8f8f8;
    }
    
    .newsdetail-show .container .detailtitle {
        font-size: calc(1vw + 12px);
        color: #333;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto;
        font-weight: bold;
    }
    
    .newsdetail-show .container .desc {
        max-width: 1200px;
        display: block;
        margin: 0 auto;
        border-bottom: 1px solid #cdcdcd;
    }
    
    .newsdetail-show .container .desc .time {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        margin: 20px 30px 20px 0;
    }
    
    .newsdetail-show .container .desc .read {
        font-size: 16px;
        font-weight: 400px;
        color: #999999;
        display: inline-block;
        text-align: left;
        ;
    }
    
    .newsdetail-show .container .detailcontent {
        padding: 0 30px 50px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .newsdetail-show .container .detailcontent img {
        max-width: 100%;
        display: block;
        margin: 10px auto;
        height: fit-content;
    }
    
    .newsdetail-show .container .detailcontent p {
        /*font-size: 16px;
        color: #333;
        font-weight: 300;
        line-height: 36px;
        text-indent: 32px;
        margin: 30px 0;*/
    }
    
    .container .prevnext {
        max-width: 1200px;
        display: flex;
        margin: 0 auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        border-top: 1px solid #cdcdcd;
        padding: 10px 0 0 0;
    }
    
    .container .prevnext .prev,
    .next {
        font-size: 16px;
        color: #333;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .container .prevnext .next {
        text-align: right;
    }
    
    .y-kefu-box {
        position: fixed;
        right: 0;
        top: 30%;
        z-index: 999;
        font-size: 13px
    }
    
    .y-kefu-box p {
        font-size: 12px
    }
    
    .y-kefu-box img {
        display: block;
        width: 100%;
        height: auto
    }
    
    .y-kefu-box01 .icon {
        display: block;
        background: url("../images//common//icons.png") no-repeat;
        margin: 0 auto 6px
    }
    
    .y-kefu-box01 {
        width: 54px;
        color: #666;
        text-align: center
    }
    
    .y-kefu-box01 .kf-close-btn {
        width: 29px;
        height: 29px;
        background-position: -4px -114px;
        position: relative;
        cursor: pointer
    }
    
    .y-kefu-box01 .kf-close-btn:before {
        content: '';
        display: block;
        width: 1px;
        height: 12px;
        background-color: #3f5aba;
        position: absolute;
        bottom: -12px;
        left: 13px;
        z-index: 1
    }
    
    .y-kefu-box01 .show-status>a,
    .y-kefu-box01 .show-status>div {
        display: block;
        width: 52px;
        padding: 8px 0 12px;
        background-color: #fff;
        border-left: solid 1px #efefef;
        border-top: solid 1px #efefef;
        border-right: solid 1px #efefef;
        position: relative
    }
    
    .y-kefu-box01 .show-status {
        position: relative
    }
    
    .y-kefu-box01 .show-status .kf-zixun {
        background-color: #3f5aba;
        border-color: #3f5aba;
        color: #fff;
        margin: 10px 0 7px
    }
    
    .y-kefu-box01 .kf-zixun {
        border-radius: 2px
    }
    
    .y-kefu-box01 .kf-zixun i {
        width: 21px;
        height: 22px;
        background-position: -5px -5px
    }
    
    .y-kefu-box01 .kf-mobile {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-mobile>i {
        width: 18px;
        height: 18px;
        background-position: -5px -32px
    }
    
    .y-kefu-box01 .kf-mobile:hover>i {
        background-position: -30px -32px
    }
    
    .y-kefu-box01 .kf-weChat>i {
        width: 22px;
        height: 19px;
        background-position: -5px -55px
    }
    
    .y-kefu-box01 .kf-weChat:hover>i {
        background-position: -30px -55px
    }
    
    .y-kefu-box01 .kf-email {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-email>i {
        width: 18px;
        height: 14px;
        background-position: -5px -80px
    }
    
    .y-kefu-box01 .kf-email:hover>i {
        background-position: -30px -80px
    }
    
    .y-kefu-box01 .kf-tel {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-tel>i {
        width: 21px;
        height: 19px;
        background-position: -5px -147px
    }
    
    .y-kefu-box01 .kf-tel:hover>i {
        background-position: -30px -147px
    }
    
    .y-kefu-box01 .back-top i {
        width: 13px;
        height: 11px;
        background-position: -5px -98px
    }
    
    .y-kefu-box01 .back-top:hover i {
        background-position: -30px -98px
    }
    
    .y-kefu-box01 .kf-email,
    .y-kefu-box01 .back-top {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .back-top {
        margin-top: 20px;
        border-radius: 2px;
        left: 55px
    }
    
    .y-kefu-box01 .hver:hover {
        background-color: #3f5aba;
        border-color: #3f5aba
    }
    
    .y-kefu-box01 .hver:hover>p {
        color: #fff
    }
    
    .y-kefu-box01 .mobile-infos,
    .y-kefu-box01 .y-ewm-box,
    .y-kefu-box01 .y-email-infos {
        background-color: #fff;
        border: solid 1px #efefef;
        position: absolute;
        right: 90px;
        z-index: 2;
        border-radius: 2px;
        display: none
    }
    
    .kf-tel>mobile-infos {
        width: 300px !important
    }
    
    .y-kefu-box01 .mobile-infos {
        width: 250px;
        text-align: left;
        top: 0
    }
    
    .y-kefu-box01 .mobile-infos>div {
        padding: 20px 0 20px 45px;
        position: relative
    }
    
    .y-kefu-box01 .mobile-infos>div i {
        width: 15px;
        height: 15px;
        background-position: -52px -32px;
        position: absolute;
        top: 22px;
        left: 20px;
        z-index: 2
    }
    
    .y-kefu-box01 .mobile-infos .online1 {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .mobile-infos span {
        color: #999
    }
    
    .y-kefu-box01 .mobile-infos p {
        color: #3f5aba;
        font-size: 18px
    }
    /* .right {
    width: 12px;
    height: 12px;
    position: absolute;
    right: -12px;
    top: 24px
} */
    
    .y-kefu-box01 .y-ewm-box {
        width: 151px;
        height: 202px;
        top: -60px
    }
    
    .y-kefu-box01 .y-ewm-box>div {
        width: 151px;
        height: 202px
    }
    
    .y-kefu-box01 .y-ewm-box img {
        width: 120px;
        height: 120px;
        margin: 30px auto 10px
    }
    
    .y-kefu-box01 .y-ewm-box .y-ewm-img1 {
        width: 150px;
        border-right: solid 1px #efefef
    }
    
    .y-kefu-box01 .y-ewm-box .right {
        top: 84px
    }
    
    .y-kefu-box a {
        color: #666
    }
    
    .y-kefu-box01 .show-status>a,
    .y-kefu-box01 .show-status>div {
        display: block;
        width: 52px;
        padding: 8px 0 12px;
        background-color: #fff;
        border-left: solid 1px #efefef;
        border-top: solid 1px #efefef;
        border-right: solid 1px #efefef;
        position: relative
    }
    
    .y-kefu-box01 .show-status {
        position: relative
    }
    
    .y-kefu-box01 .show-status .kf-zixun {
        background-color: #3f5aba;
        border-color: #3f5aba;
        color: #fff;
        margin: 10px 0 7px
    }
    
    .y-kefu-box01 .kf-zixun {
        border-radius: 2px
    }
    
    .y-kefu-box01 .kf-zixun i {
        width: 21px;
        height: 22px;
        background-position: -5px -5px
    }
    
    .y-kefu-box01 .kf-mobile {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-mobile>i {
        width: 18px;
        height: 18px;
        background-position: -5px -32px
    }
    
    .y-kefu-box01 .kf-mobile:hover>i {
        background-position: -30px -32px
    }
    
    .y-kefu-box01 .kf-weChat>i {
        width: 22px;
        height: 19px;
        background-position: -5px -55px
    }
    
    .y-kefu-box01 .kf-weChat:hover>i {
        background-position: -30px -55px
    }
    
    .y-kefu-box01 .kf-email {
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-email>i {
        width: 18px;
        height: 14px;
        background-position: -5px -80px
    }
    
    .y-kefu-box01 .kf-email:hover>i {
        background-position: -30px -80px
    }
    
    .y-kefu-box01 .kf-tel {
        border-top-left-radius: 2px;
        border-top-right-radius: 2px
    }
    
    .y-kefu-box01 .kf-tel>i {
        width: 21px;
        height: 19px;
        background-position: -5px -147px
    }
    
    .y-kefu-box01 .kf-tel:hover>i {
        background-position: -30px -147px
    }
    
    .y-kefu-box01 .back-top i {
        width: 13px;
        height: 11px;
        background-position: -5px -98px
    }
    
    .y-kefu-box01 .back-top:hover i {
        background-position: -30px -98px
    }
    
    .y-kefu-box01 .kf-email,
    .y-kefu-box01 .back-top {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .back-top {
        margin-top: 20px;
        border-radius: 2px;
        left: 55px
    }
    
    .y-kefu-box01 .hver:hover {
        background-color: #3f5aba;
        border-color: #3f5aba
    }
    
    .y-kefu-box01 .hver:hover>p {
        color: #fff
    }
    
    .y-kefu-box01 .mobile-infos,
    .y-kefu-box01 .y-ewm-box,
    .y-kefu-box01 .y-email-infos {
        background-color: #fff;
        border: solid 1px #efefef;
        position: absolute;
        right: 90px;
        z-index: 2;
        border-radius: 2px;
        display: none
    }
    
    .kf-tel>mobile-infos {
        width: 300px !important
    }
    
    .y-kefu-box01 .mobile-infos {
        width: 250px;
        text-align: left;
        top: 0
    }
    
    .y-kefu-box01 .mobile-infos>div {
        padding: 20px 0 20px 45px;
        position: relative
    }
    
    .y-kefu-box01 .mobile-infos>div i {
        width: 15px;
        height: 15px;
        background-position: -52px -32px;
        position: absolute;
        top: 22px;
        left: 20px;
        z-index: 2
    }
    
    .y-kefu-box01 .mobile-infos .online1 {
        border-bottom: solid 1px #efefef
    }
    
    .y-kefu-box01 .mobile-infos span {
        color: #999
    }
    
    .y-kefu-box01 .mobile-infos p {
        color: #3f5aba;
        font-size: 18px
    }
    
    .y-kefu-box01 .y-ewm-box {
        width: 151px;
        height: 202px;
        top: -60px
    }
    
    .y-kefu-box01 .y-ewm-box>div {
        width: 151px;
        height: 202px
    }
    
    .y-kefu-box01 .y-ewm-box img {
        width: 120px;
        height: 120px;
        margin: 30px auto 10px
    }
    
    .y-kefu-box01 .y-ewm-box .y-ewm-img1 {
        width: 150px;
        border-right: solid 1px #efefef
    }
    
    .y-kefu-box01 .y-ewm-box .right {
        top: 84px
    }
    
    .y-kefu-box a {
        color: #666
    }
    
    header .container .menuicon {
        margin: 0.15rem 0.15rem 0 0;
        position: relative;
    }
    
    header .container .menuicon .mopen {
        width: 0.68rem;
        height: 0.6rem;
    }
    
    header .container .menuicon .mclose {
        display: none;
        width: 0.68rem;
        height: 0.6rem;
    }
    /* 汉堡菜单icon */
    
    .hamburger .line {
        width: 0.56rem;
        height: 2px;
        background-color: #142b76;
        display: block;
        margin: 8px auto;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    .hamburger:hover {
        cursor: pointer;
    }
    
    #hamburger-11 {
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    
    #hamburger-11.is-active {
        animation: smallbig 0.6s forwards;
    }
    
    @keyframes smallbig {
        0%,
        100% {
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
        }
        50% {
            -webkit-transform: scale(0);
            -ms-transform: scale(0);
            -o-transform: scale(0);
            transform: scale(0);
        }
    }
    
    #hamburger-11.is-active .line:nth-child(1),
    #hamburger-11.is-active .line:nth-child(2) {
        -webkit-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
    }
    
    #hamburger-11.is-active .line:nth-child(1) {
        -webkit-transform: translateY(12px) rotate(45deg);
        -ms-transform: translateY(12px) rotate(45deg);
        -o-transform: translateY(12px) rotate(45deg);
        transform: translateY(12px) rotate(45deg);
    }
    
    #hamburger-11.is-active .line:nth-child(2) {
        -webkit-transform: translateY(1px) rotate(-45deg);
        -ms-transform: translateY(1px) rotate(-45deg);
        -o-transform: translateY(1px) rotate(-45deg);
        transform: translateY(1px) rotate(-45deg);
    }
    
    #hamburger-11.is-active .line:nth-child(3) {
        width: 0;
    }
    /* 移动端导航 */
    
    .mobilenav {
        position: absolute;
        z-index: 10;
        width: 100%;
        background: #fff;
        height: 100vh;
        left: -100%;
        transition: all 0.4s;
    }
    
    .mobilenav ul li {
        text-align: center;
    }
    
    .mobilenav ul li .navitem {
        font-size: 16px;
        padding: 10px 20px;
        display: block;
        border-bottom: 1px solid #efefef;
    }
    
    .mobilenav ul li .subnav ul li {
        border-bottom: 1px solid #efefef;
        padding: 10px 0 10px 45%;
    }
    
    .mobilenav ul li .subnav .subitem {
        font-size: 14px;
        padding: 0;
        position: relative;
        border: 0;
        text-align: left;
    }
    
    .mobilenav ul li .subnav .subitem::before {
        content: '';
        background: #a1a1a1;
        width: 10px;
        height: 1px;
        position: absolute;
        left: -15px;
        top: 10px;
    }
    /* ------------------------------------------媒介查询---------------------------------------------- */
    
    @media screen and (max-width:1366px) {
        .index-about .container .numbox {
            height: 160px;
        }
        .index-about .container .wrap .picbox {
            height: 485px;
        }
        .index-about .container .wrap {
            padding: 0;
        }
    }
    
    @media screen and (min-width:1024px) and (max-width:1250px) {
        .crumb {
            min-height: 60px;
        }
        .crumb .container span {
            display: none;
        }
        header .logobox .logodesc {
            font-size: calc(1vw + 16px);
            transition: all 0.4s;
        }
        .hot-pro .container .swiper .item .picbox {
            width: 100%;
            overflow: hidden;
            height: 150px;
        }
        .hot-pro .container .swiper .swiper-slide-active .infobox {
            height: 89px;
            padding: 20px 0;
        }
        .hot-pro .container .swiper .item .infobox .name {
            color: #000;
            padding: 10px;
            font-size: 18px;
        }
        .hot-pro .container .swiper .item .infobox {
            height: 89px;
        }
        .hot-pro .container .swiper .swiper-wrapper .infobox .desc {
            padding: 0 0 0 10px;
            font-size: 12px;
        }
        .hot-pro .container .swiper .swiper-wrapper .active .infobox .desc {
            color: #fff;
            padding: 0 0 0 10px;
            font-size: 12px;
        }
        .industry .container .swiper-slide .wrapper .txtbox .piclist {
            display: flex;
            padding: 10px 0;
            align-items: flex-end;
            justify-content: flex-start;
            min-height: 160px;
            height: 160px;
        }
        .hot-pro {
            height: 620px;
        }
        .crumb .container .catelist .cate {
            font-size: 16px;
            color: #000;
            margin: 0px 10px;
            display: inline-block;
        }
        .crumb {
            height: fit-content;
        }
        .industry .container .swiper .bigpic {
            margin: -280px 0 0 190px;
            max-width: 75%;
            width: calc(61vw + 60px);
            transition: all 0.4s;
        }
        .banner img {
            max-width: 100%;
        }
        header .container .phonebox {
            display: none;
        }
        .container {
            padding: 0 calc(1vw + 50px);
            transition: all 0.4s;
            min-width: 980px;
        }
        .index-news .container .wrap {
            justify-content: center;
        }
        .index-news .container .wrap .module {
            width: calc(100% / 2 - 20px);
            transition: all 0.4s;
        }
        .industry .wrap .indus-nav {
            display: none;
        }
        .index-pro .container .wrap .left {
            display: none;
        }
        .index-pro .container .wrap {
            justify-content: center;
        }
        nav .container .mainnav {
            justify-content: flex-start;
        }
        header .container {
            justify-content: flex-start;
        }
        nav .container .mainnav li a {
            padding: 0 40px;
        }
        .index-pro .container .wrap .right {
            width: calc(100% / 1 - 20px);
        }
    }
    
    @media screen and (max-width:1024px) {
        .crumb {
            min-height: 60px;
            line-height: inherit;
        }
        .crumb .container span {
            display: none;
        }
        .subnav {
            height: 0px;
            overflow: hidden;
        }
        header .container {
            justify-content: space-between;
        }
        .industry .container .swiper-slide .wrapper .txtbox .name {
            font-size: 26px;
        }
        .industry .container .swiper-slide .wrapper .txtbox .desc {
            font-size: 16px;
        }
        .industry .container .swiper-slide .wrapper {
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
        }
        .industry .container .swiper-slide .wrapper .picbox {
            max-width: 100%;
            max-height: max-content;
            height: fit-content;
            margin: 0 0.2% 0 0;
        }
        .industry .container .swiper-slide .wrapper .txtbox {
            width: 100%;
            max-height: fit-content;
            height: fit-content;
            padding: 0;
            border: none;
        }
        .industry .container .swiper-slide .wrapper .txtbox .piclist img {
            margin: 0 10px 0 0;
            max-height: 100%;
            width: calc(100% / 3 - 10px);
        }
        .index-news .container .wrap .module2 .item .title {
            font-size: 24px;
            color: #000;
            padding: 20px 0 20px 30px;
            text-overflow: ellipsis;
            overflow: hidden;
            white-space: nowrap;
        }
        .index-news .container .wrap .module {
            width: calc(100% / 1);
            margin: 0 0 20px 0;
            height: fit-content;
            overflow: hidden;
            min-height: fit-content;
            transition: all 0.4s;
        }
        .index-news .container .wrap {
            flex-direction: column;
        }
        .certifi .swiper2 {
            display: block
        }
        .certifi .swiper1 {
            display: none
        }
        .index-about .container .wrap .txtbox .title {
            font-size: 22px;
            color: #555;
            padding: calc(8vw + 27px) 0 0 0;
        }
        .index-about .container .wrap .txtbox .cont {
            width: 92%;
        }
        .index-about {
            height: fit-content;
            background-size: cover;
            background: #f5f5f5;
            padding: 0.2rem 0 0.1rem 0;
        }
        .index-about .container .numbox {
            width: 100%;
            height: 228px;
            /* background: #fff; */
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .index-about .container .numbox .numitem {
            width: calc(100% / 4 - 20px);
            display: flex;
            border: 0;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .index-about .container .wrap .txtbox {
            width: 98%;
        }
        .index-about .container .wrap {
            flex-direction: column;
        }
        .industry .container .swiper .txtbox p {
            font-size: 28px;
        }
        .industry .container .swiper .txtbox span {
            font-size: 16px;
        }
        .industry .container .swiper .txtbox {
            width: 90%;
            height: 424px;
        }
        .industry .wrap .indus-nav {
            display: none;
        }
        .industry .container .swiper .bigpic {
            margin: -240px 0 0 1%;
            max-width: 95%;
            width: auto;
        }
        .industry .wrap {
            display: block;
        }
        .hot-pro .swiper1 {
            display: none;
        }
        .hot-pro .swiper2 {
            display: block;
        }
        .hot-pro {
            height: fit-content;
        }
        .hot-pro .container .swiper .item {
            height: auto;
        }
        .hot-pro .container .swiper .item .picbox {
            height: auto;
        }
        .hot-pro .container .swiper .item .infobox .more {
            bottom: -30px;
            transition: all 0.5s;
        }
        .index-pro .container .wrap {
            flex-direction: column;
            height: auto;
        }
        .index-pro .container .wrap .left {
            width: 100%;
        }
        .index-pro .container .wrap .right {
            width: 100%;
        }
        .index-pro .container .wrap .right .item:nth-child(2n) {
            margin: 0 0 10px 0
        }
        .banner img {
            max-width: 100%;
        }
        .container {
            max-width: 96%;
            width: 96%;
            min-width: initial;
            padding: 0 2%;
        }
        nav {
            display: none;
        }
        header .container .menuicon {
            display: block;
        }
        .y-kefu-box01 {
            display: none;
        }
        .infotop {
            display: none;
        }
        header .logobox .logo {
            display: none;
        }
        header .logobox .m-logo {
            display: block;
        }
        header .logobox p {
            display: none!important;
        }
        header .container {
            height: 100px;
            align-items: center;
            padding: 0 calc(1vw + 1px);
        }
        header .container .phonebox {
            display: none;
        }
        .index-about .container .wrap .picbox {
            width: 100%;
            height: fit-content;
            overflow: hidden;
            padding: 20px 0 0 0;
            z-index: 1;
        }
        footer .container .left .btm-nav a {
            color: #fff;
            font-size: 12px;
            margin: 0 40px 0 0;
            position: relative;
        }
        .pro-info .container .wrap .picbox {
            width: 600px;
            height: 400px;
            overflow: hidden;
            max-width: 46.875%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #efefef;
        }
        .pro-info .container .wrap .txtbox {
            padding: 40px 0 0 88px;
            width: 40%;
        }
        .pro-info .container .wrap {
            flex-direction: column;
            width: 100%;
        }
        .cd-timeline-content {
            width: 31%;
        }
        .cd-timeline-content p {
            font-size: 0.16rem;
        }
        .cd-timeline-content h2 {
            font-size: 0.28rem;
        }
    }
    
    @media screen and (max-width:768px) {
        .index-about .container .numbox {
            width: 100%;
            height: 200px;
            background: #fff;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 0;
        }
        .index-about .container .numbox .numitem {
            width: calc(100% / 2 - 20px);
            display: flex;
            border: 0;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .procenter .container .prolist .proitem {
            width: calc(100% / 2 - 5px);
            margin: 0 5px 5px 0;
            background: #fff;
            transition: all 0.4s;
        }
        .procenter .container .prolist .proitem:nth-child(2n) {
            margin: 0 0 5px 0;
        }
        .procenter .container .prolist .proitem:nth-child(3n) {
            margin: 0 5px 5px 0;
        }
        .crumb .container .catelist .cate {
            font-size: 16px;
            color: #000;
            margin: 0px 10px;
            display: inline-block;
        }
        .crumb {
            height: fit-content;
        }
        footer .container {
            display: flex;
            justify-content: center;
        }
        footer {
            height: fit-content;
            background: #111;
            padding: 58px 0;
        }
        footer .container .left .btm-nav {
            display: none;
        }
        footer .container .right {
            display: none;
        }
        .cd-timeline-content {
            width: 31%;
        }
        .cd-timeline-content p {
            font-size: 0.2rem;
        }
        .contact .container .info {
            flex-wrap: wrap;
        }
        .contact .container .info .item {
            width: calc(100% / 2 - 24px);
            margin: 0 20px 20px 0;
        }
    }
    
    @media screen and (max-width:680px) {
        .pro-info .container .wrap .txtbox .title {
            font-size: 0.36rem;
        }
        .cont-box .container .detail-cont .features table {
            max-width: 360px;
            transform: scale(0.8);
        }
        .cont-box .container .detail-cont .features {
            margin: 0!important;
            padding: 0;
        }
        .crumb .container .searchbox {
            float: inherit;
        }
        .crumb .container .searchbox form {
            width: 100%;
        }
        .crumb .container .searchbox form input {
            width: 97%;
        }
        .industry .container .swiper-slide .wrapper .txtbox .name {
            font-size: 0.32rem;
            color: #000;
            font-weight: bold;
            text-align: left;
        }
        .industry .container .swiper-slide .wrapper .txtbox .desc {
            font-size: 0.2rem;
            color: #000;
            text-align: left;
        }
        .industry .wrap .indus-nav2 .item {
            margin: 0 10px 0 0;
            flex-grow: 1;
        }
        .industry .wrap .indus-nav2 .item img {
            height: 0.47rem;
        }
        .crumb {
            height: fit-content;
        }
        .index-pro {
            padding: 0 0 10px 0;
        }
        .hot-pro .container .swiper2 .swiper-pagination {
            bottom: 33px;
        }
        .hot-pro .container .swiper .swiper-slide {
            opacity: 1;
        }
        .hot-pro .container .swiper .swiper-slide-active {
            margin-top: 0;
        }
        .culture .container .cul-list .item .title {
            font-size: 0.34rem;
        }
        .news .list .item .txtbox .desc {
            font-size: 0.22rem;
        }
        .newsdetail-show .container .detailcontent p {
            font-size: 0.23rem;
            color: #333;
            font-weight: 300;
            line-height: 0.48rem;
            text-indent: 32px;
            margin: 0.2rem 0;
        }
        .hot-pro .container .swiper2 .swiper-pagination-bullet {
            background: #142b76;
        }
        .newsdetail-show {
            padding: 0.5rem 0;
        }
        .contact .container .info .item {
            height: fit-content;
            padding: 0.3rem 0;
        }
        .news .list .item .txtbox {
            padding: 0.2rem;
            display: block;
            width: 93%;
        }
        .news .list .item .txtbox .date {
            font-size: 0.24rem;
        }
        .news .list .item .txtbox .title {
            font-size: 0.28rem;
            color: #222;
            margin: 0.2rem 0;
        }
        .news .list .item {
            flex-direction: column;
        }
        .news .list .item .picbox {
            width: 100%;
        }
        .news .list {
            padding: 0.3rem 0;
        }
        footer .container .left p {
            font-size: 0.20rem;
        }
        .contact .container .info .item div span {
            font-size: 0.26rem;
        }
        .contact .container .info .item .title {
            font-size: 0.26rem;
        }
        .contact .container .info .item .desc {
            font-size: 0.21rem;
        }
        .contact .container .info {
            flex-wrap: wrap;
        }
        .contact .container .info .item {
            width: calc(100% / 1);
            margin: 0 0 10px 0;
        }
        .artical .list .item {
            margin: 0 0 0.2rem 0;
        }
        .artical .list .item .title {
            font-size: 0.31rem;
            color: #222;
            margin: 0.15rem 0;
        }
        .detail-cate .container .catelist .cate {
            font-size: 0.21rem;
        }
        .cd-timeline-content {
            width: 31%;
        }
        .cd-timeline-content p {
            font-size: 0.2rem;
        }
        .cont-box .container .prolist {
            flex-wrap: wrap;
        }
        .cont-box .container .prolist .item {
            width: calc(100% / 2 - 10px);
            margin: 0 8px 8px 0;
            border: 1px solid #d6d6d6;
        }
        .cont-box .container .prolist .item .picbox {
            height: fit-content;
        }
        .cont-box .container .detail-cont .title {
            font-size: 0.32rem;
            padding: 0.3rem 0;
        }
        .cont-box .container .detail-cont {
            overflow: hidden;
        }
        .pro-info .container .wrap .txtbox .other {
            margin: 0.5rem 0;
            padding: 0.1rem 0;
            border-top: 1px solid #efefef;
            border-bottom: 1px solid #efefef;
            width: 90%;
        }
        .pro-info .container .wrap .txtbox .other img {
            max-width: 100%;
        }
        .cont-box .container .prolist .item .txtbox {
            padding: 0.1rem 0;
        }
        .cont-box .container .prolist .item .txtbox p {
            font-size: 0.20rem;
        }
        .pro-info .container .wrap .picbox {
            width: 94%;
            height: fit-content;
            overflow: hidden;
            max-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #efefef;
        }
        .brandd .brandlist .brand {
            width: calc(100% / 3 - 10px);
            margin: 0 10px 10px 0;
        }
        .pro-info .container .wrap .txtbox {
            padding: 0.2rem 0;
            width: 100%;
            overflow: hidden;
        }
        .pro-info .container .wrap {
            flex-direction: column;
            width: 100%;
        }
        .newsdetail-show .container .detailtitle {
            font-size: 0.32rem;
        }
        .newsdetail-show .container .detailcontent {
            padding: 0 2% 50px;
            max-width: 94%;
            margin: 0 auto;
            text-align: justify;
        }
        .brand-story .m-company {
            display: block;
            margin: 0.2rem auto;
            max-width: 100%;
        }
        .brand-story .container .story .cont {
            font-size: 0.25rem;
            color: #000;
            line-height: 0.5rem;
            margin: 0.1rem 0;
            text-align: justify;
        }
        .brand-story .container .story {
            background: #f5f5f5;
            float: initial;
            min-height: 440px;
            padding: 0 2%;
            width: 96%;
            height: fit-content;
        }
        .brand-story {
            height: fit-content;
            background-image: none;
            background-repeat: no-repeat;
            background-position-x: left;
            background-color: #f5f5f5;
            background-size: contain;
            min-height: 440px;
            margin: 0.35rem 0;
        }
        .container .titledemo2 .desc {
            font-size: 0.25rem;
            line-height: 0.5rem;
            max-width: 100%;
        }
        .crumb .container span {
            display: none;
        }
        .about .container .cont {
            font-size: .24rem;
            color: #222;
            line-height: 0.5rem;
            text-indent: 0.52rem;
            margin: 10px 0;
            padding: 0 0.1rem;
            text-align: justify;
        }
        .culture .container .cul-list .item {
            width: 100%;
            padding: 0;
            margin: 0 0 0.3rem 0;
        }
        .procenter .container .prolist {
            padding: 0.3rem 0;
        }
        .procenter .container .prolist .proitem {
            width: calc(100% / 2 - 5px);
            margin: 0 5px 5px 0;
            background: #fff;
        }
        .procenter .container .prolist .proitem .txtbox .name {
            color: #000;
            font-size: 0.21rem;
            margin: 8px 0;
        }
        .procenter .container .prolist .proitem:nth-child(2n) {
            margin: 0 0 5px 0;
        }
        .procenter .container .prolist .proitem:nth-child(3n) {
            margin: 0 5px 5px 0;
        }
        .culture .container .cul-list .item img {
            padding: 0 0 0 0.5rem;
        }
        .culture .container .cul-list .item .title {
            padding: 0 0 0 0.5rem;
            font-size: 0.32rem;
        }
        .culture .container .cul-list .item .desc {
            padding: 0 0 0 0.5rem;
        }
        .culture .container .cul-list .item:nth-child(3n) {
            margin: 0 0 0.3rem 0;
        }
        .crumb .container .catelist .cate {
            font-size: 0.26rem;
            margin: 0 0.15rem;
            width: calc(100% / 3 - 0.36rem);
            text-align: center;
        }
        .crumb .container .catelist {
            float: inherit;
        }
        .artical .list {
            padding: 0.2rem 0;
        }
        .container .titledemo2 .title {
            font-size: 0.38rem;
        }
        .index-news .container .wrap .module2 .item .title {
            font-size: 0.28rem;
            padding: 0.2rem 0 0.2rem 0.3rem;
        }
        .index-news .container .wrap .module1 .txtbox .title {
            font-size: 0.28rem;
        }
        .index-news .container .wrap .module1 .txtbox .desc {
            font-size: 0.21rem;
        }
        .index-about .container .numbox .numitem .name {
            font-size: 0.20rem;
        }
        .index-news .container .wrap .module2 .item .desc {
            font-size: 0.21rem;
            padding: 0 0 0.15rem 0.3rem;
        }
        .index-news .container .wrap .module2 .item .info .date .day {
            font-size: 0.52rem;
        }
        .index-news .container .wrap .module2 .item .info {
            font-size: 0.15rem;
        }
        .index-news .container .wrap .module3 .item .txtbox p {
            font-size: 0.28rem;
        }
        .index-about .container .numbox .numitem:nth-child(1) p::before {
            height: 0.44rem;
            width: 0.44rem;
            left: -33%;
        }
        .index-about .container .numbox .numitem:nth-child(2) p::before {
            height: 0.44rem;
            width: 0.44rem;
            left: -57%;
        }
        .index-about .container .numbox .numitem:nth-child(3) p::before {
            height: 0.44rem;
            width: 0.44rem;
            left: -57%;
        }
        .index-about .container .numbox .numitem:nth-child(4) p::before {
            height: 0.44rem;
            width: 0.44rem;
            left: -16%;
        }
        .index-about .container .numbox .numitem .num {
            font-size: 0.38rem;
        }
        .industry .container .swiper .txtbox span {
            font-size: 0.22rem;
        }
        .index-pro .container .wrap .title {
            font-size: 0.28rem;
        }
        #banner {
            display: none;
        }
        #banner2 {
            display: block;
        }
        .tabbar {
            display: block
        }
        .container .titledemo .name {
            font-size: 0.46rem;
        }
        .container .titledemo .desc {
            font-size: 0.28rem;
        }
        footer .container {
            display: flex;
            justify-content: center;
        }
        footer {
            height: fit-content;
            background: #111;
            padding: 0.5rem 0;
            margin: 0 0 1.15rem 0;
        }
        footer .container .right {
            display: none;
        }
        footer .container .left .btm-nav {
            display: none;
        }
        .index-about .container .numbox {
            width: 100%;
            height: 200px;
            background: #fff;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 0;
        }
        .index-about .container .numbox .numitem {
            width: calc(100% / 2 - 20px);
            display: flex;
            border: 0;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .hot-pro .container .swiper .item .infobox .more {
            width: 0.7rem;
            height: 0.7rem;
            line-height: 0.7rem;
            display: none;
        }
        .banner img {
            max-width: 100%;
        }
        .container {
            max-width: 96%;
            width: 96%;
            min-width: initial;
            padding: 0 2%;
        }
        header .logobox .m-logo {
            display: block;
            width: 2.29rem;
        }
        header {
            height: 1rem;
            z-index: 99;
            ;
            width: 100%;
        }
        header .container {
            justify-content: space-between;
        }
        .cont-box .container .detail-cont .features tr {
            max-width: 100%;
        }
        .cont-box .container .detail-cont .features table tbody {
            max-width: 100%;
            display: block;
        }
    }
    
    @media screen and (max-width:414px) {
        .cont-box .container .detail-cont .features table {
            max-width: 100%!important;
        }
        .cont-box .container .detail-cont {
            padding: 10px 2%;
        }
        .cont-box .container .detail-cont .features tr td {
            /* max-width: fit-content; */
            white-space: pre-line;
        }
        .cont-box .container .detail-cont .features tr td span {
            display: block;
            white-space: pre-line;
        }
        .cont-box .container .detail-cont .features table tbody {
            max-width: 100%;
            display: block;
            transform: scale(1);
        }
    }