/* 产品列表 */
.product-box {
    position: relative
}

.product-box .cate-box {
    margin-top: -50px
}

.product-box .cate-box .cate-list {
    display: flex;
    align-items: center;
    height: 260px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.product-box .cate-box .cate-list .cate-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer
}

.product-box .cate-box .cate-list .cate-item .pic-wrap {
}

.product-box .cate-box .cate-list .cate-item .pic-wrap img {
    height: 80px;
}

.product-box .cate-box .cate-list .cate-item.active .pic-wrap img {
    display: none
}

.product-box .cate-box .cate-list .cate-item .pic-wrap img.active {
    display: none
}

.product-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {
    display: inline-block
}

.product-box .cate-box .cate-list .cate-item .text-wrap {
    margin-top: 20px
}

.product-box .cate-box .cate-list .cate-item .text-wrap p {
    font-size: 16px;
    color: #5a5a5a
}

.product-box .cate-box .cate-list .cate-item.active .text-wrap p {
    color: #fff
}

.product-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
    display: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 45px;
    background: url(./Home/img/icon-product_arrow-down_white.png) no-repeat center center
}

.product-box .product-wrap .subcate-box {
    margin-top: 130px
}

.product-box .product-wrap .subcate-box .subcate-list {
    display: flex;
    justify-content: center
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item {
    position: relative;
    margin: 0 70px;
    padding: 40px 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    border-bottom: 2px solid transparent
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item::after {
    content: '';
    position: absolute;
    bottom: -14px;
    display: block;
    border-width: 6px;
    border-style: solid;
    border-color: transparent
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item.active {
    background-color: #fafafa;
    border-color: #70c5c8
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item.active::after {
    border-color: #70c5c8 transparent transparent transparent
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item .pic-wrap {
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item .text-wrap {
    margin-top: 25px
}

.product-box .product-wrap .subcate-box .subcate-list .subcate-item .text-wrap p {
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.product-box .product-wrap .prolist-box {
    margin-top: 60px;
    margin-bottom: 50px;
    /*padding-top: 40px;*/
    /*border-top: 1px solid #646464; */
    /*border-bottom:2px solid #dcdcdc*/
}

.product-box .product-wrap .prolist-box .product-list {
    display: none;
    flex-wrap: wrap
}

.product-box .product-wrap .prolist-box .product-list.active {
    display: flex
}

.product-box .product-wrap .prolist-box .product-list .product-item {
    width: 25%;
    margin-bottom: 30px;
    padding: 40px 5px 20px;
    border-bottom: 3px solid transparent
}

.product-box .product-wrap .prolist-box .product-list .product-item:hover {
    background-color: #ffffff;
    border-color: #70c5c8
}

.product-box .product-wrap .prolist-box .product-list .product-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end
}

.product-box .product-wrap .prolist-box .product-list .product-item .pic-wrap {
}

.product-box .product-wrap .prolist-box .product-list .product-item .text-wrap {
    text-align: center;
    margin-top: 25px
}

.product-box .product-wrap .prolist-box .product-list .product-item .text-wrap h3 {
    font-size: 20px;
    color: #000
}

.product-box .product-wrap .prolist-box .product-list .product-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 32px;
    text-align: left;
}

@media (min-width: 992px) {
    .product-box .cate-box_m {
        display: none
    }

    .product-box .cate-box .cate-list .cate-item:hover .pic-wrap img {
        display: none
    }

    .product-box .cate-box .cate-list .cate-item:hover .pic-wrap img.active {
        display: inline-block
    }

    .product-box .cate-box .cate-list .cate-item:hover .text-wrap p {
        color: #fff
    }

    .product-box .cate-box .cate-list .cate-item.active, .product-box .cate-box .cate-list .cate-item:hover {
        height: 120%;
        background-color: #70c5c8;
        box-shadow: 0px 0 p 15px 5px rgb(0 0 0 / 10%)
    }

    .product-box .cate-box .cate-list .cate-item.active .text-wrap .icon-arrow, .product-box .cate-box .cate-list .cate-item:hover .text-wrap .icon-arrow {
        display: inline-block
    }

    .product-box .product-wrap {
        display: none
    }

    .product-box .product-wrap.active {
        display: block
    }

    /* .product-box .product-wrap .prolist-box .product-list .product-item .pic-wrap{overflow:hidden} */
    .product-box .product-wrap .prolist-box .product-list .product-item .pic-wrap img {
        transition: all .5s ease;
        height: 200px;
    }

    .product-box .product-wrap .prolist-box .product-list .product-item:hover .pic-wrap img {
        transform: scale(1.1)
    }
}

@media (max-width: 991px) {
    .product-box .cate-box {
        display: none
    }

    .product-box .product-wrap .cate-box_m {
        margin-top: 50px
    }

    .product-box .product-wrap .cate-box_m .cate-list {
        display: block;
        height: unset;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: unset;
        border-radius: 20px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 7%);
        padding: 20px 10px 20px 50px;
        margin-bottom: 30px
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item::after {
        content: unset
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item.active {
        background-color: #70c5c8
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item a {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .pic-wrap {
        flex-shrink: 0
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .pic-wrap img {
        height: 80px;
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img {
        display: none;
        height: 80px;
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .pic-wrap img.active {
        display: none;
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img.active {
        display: inline-block
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .text-wrap {
        margin-top: 0;
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .text-wrap p {
        font-size: 36px;
        color: #000;
        margin-left: 40px
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item.active .text-wrap p {
        color: #fff
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item .text-wrap .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        margin-right: 30px
    }

    .product-box .product-wrap .cate-box_m .cate-list .cate-item.active .text-wrap .icon-arrow {
        background-image: url(../icon-footnav_arrow.png);
        transform: rotate(180deg)
    }

    .product-box .product-wrap .subcate-box {
        display: none;
        margin-top: 50px
    }

    .product-box .product-wrap.active .subcate-box {
        display: block
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item {
        margin: 0;
        width: 100%;
        height: auto;
        padding: 30px 0;
        border-width: 3px
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item.active {
        background-color: transparent
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item .pic-wrap {
        display: none
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item .text-wrap {
        margin-top: 0
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item .text-wrap p {
        font-size: 34px
    }

    .product-box .product-wrap .subcate-box .subcate-list .subcate-item::after {
        border-width: 12px;
        bottom: -26px
    }

    .product-box .product-wrap .prolist-box {
        display: none;
        margin-top: 50px;
        border: none;
        padding: 0
    }

    .product-box .product-wrap.active .prolist-box {
        display: block
    }

    .product-box .product-wrap .prolist-box .product-list .product-item {
        width: 50%;
        height: auto;
        border-width: 4px;
        margin-bottom: 50px
    }

    .product-box .product-wrap .prolist-box .product-list .product-item img {
        height: 200px;
    }

    .product-box .product-wrap .prolist-box .product-list .product-item .text-wrap {
        margin-top: 35px
    }

    .product-box .product-wrap .prolist-box .product-list .product-item .text-wrap h3 {
        font-size: 40px
    }

    .product-box .product-wrap .prolist-box .product-list .product-item .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }
}

/* 产品详情 */
.product_detail-box {
    position: relative;
    margin-top: -50px;
    z-index: 30
}

.product_detail-box .product_detail-wrap {
    background-color: #fafafa;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.product_detail-box .product_detail-wrap .logo-title {
    display: flex;
    align-items: center;
    padding: 70px 90px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.product_detail-box .product_detail-wrap .logo-title .pic-wrap {
    width: 50%
}

.product_detail-box .product_detail-wrap .logo-title .pic-wrap img {
    height: 40px;
    pointer-events: none;
}

.product_detail-box .product_detail-wrap .logo-title .text-wrap {
    width: 50%
}

.product_detail-box .product_detail-wrap .logo-title .text-wrap h3 {
    font-size: 24px
}

.product_detail-box .product_detail-wrap .logo-title .text-wrap span {
    display: block;
    width: 130px;
    height: 3px;
    background-color: #ffcd28;
    margin-top: 15px
}

.product_detail-box .product_detail-wrap .content-box {
    display: flex;
    justify-content: space-between;
    padding: 60px 30px;
    margin-top: 40px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap {
    width: 44%;
    flex-shrink: 0;
    padding: 30px;
    overflow: hidden
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper {
    position: relative;
    width: 420px;
    height: 420px;
    padding: 20px;
    border-radius: 50%;
    background-color: #e3e7f0;
    margin: 0 auto
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .swiper-container {
    border-radius: 50%
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .swiper-slide {
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .swiper-slide .pic-wrap {
    position: relative;
    display: flex;
    width: 380px;
    height: 380px;
    /* padding: 55px 55px 0; */
    border-radius: 50%;
    background-color: #fff;
    text-align: center;
    overflow: hidden
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .swiper-slide .pic-wrap img { /*max-width:unset;*/
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 4px solid #c8c8c8
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap {
    position: absolute;
    top: -4px;
    width: 210px;
    height: 420px;
    overflow: hidden
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap.left-wrap {
    left: -4px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap.right-wrap {
    right: -4px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-left, .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-right {
    position: absolute;
    top: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border-width: 4px;
    border-style: solid
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-left {
    left: 0;
    border-color: transparent transparent #70c5c8 #70c5c8;
    transform: rotate(-135deg)
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-right {
    right: 0;
    border-color: #70c5c8 #70c5c8 transparent transparent;
    transform: rotate(-135deg)
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .dot-progress::before {
    content: '';
    position: absolute;
    top: -11px;
    left: calc(50% - 13px);
    display: block;
    width: 12px;
    height: 12px;
    background-color: #70c5c8;
    border: 7px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    z-index: 20
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap {
    text-align: center;
    margin-top: 100px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap a {
    display: block;
    width: fit-content;
    min-width: 220px;
    font-size: 14px;
    color: #fff;
    padding: 12px 20px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin: 0 auto 20px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap a span {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(../icon-download.png) no-repeat center center;
    background-size: 100% 100%;
    vertical-align: middle;
    margin-left: 10px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap p {
    font-size: 12px;
    color: #5a5a5a;
    line-height: 24px
}

.product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap p span {
    font-size: 12px;
    color: #5a5a5a;
    font-weight: bold
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap {
    width: 50%
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap {
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap > span {
    font-size: 42px;
    color: #5a5a5a;
    font-weight: bold
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap > p {
    font-size: 22px;
    color: #5a5a5a;
    line-height: 24px;
    margin-top: 10px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li {
    position: relative;
    width: 50%;
    padding-left: 15px;
    margin-bottom: 30px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 3px;
    height: 30px;
    background-color: #ffcd28
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li span {
    font-size: 24px;
    color: #5a5a5a;
    font-weight: bold
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 28px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap {
    margin-top: 50px; /*border-top:1px solid #dcdcdc*/
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap ul {
    display: flex;
    flex-wrap: wrap
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap ul li {
    position: relative;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 22px;
    width: 50%;
    padding: 15px 30px 15px 15px;
    border-bottom: 1px solid #dcdcdc
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    display: block;
    width: 3px;
    height: 15px;
    background-color: #ffcd28
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .brand-wrap {
    padding: 20px 0; /*border-top:1px solid #dcdcdc;*/
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .brand-wrap img.m-pic {
    display: none
}

@media (min-width: 991px) and (max-width: 1200px) {
    .product_detail-box .product_detail-wrap .content-box {
        padding: 60px 0;
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap {
        width: 46%;
        padding: 30px 0;
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper {
        margin: 0 5px;
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap {
        width: 54%;
    }
}

@media (max-width: 991px) {
    .product_detail-box {
        margin-top: 60px
    }

    .product_detail-box .product_detail-wrap {
        background-color: transparent
    }

    .product_detail-box .product_detail-wrap .logo-title {
        flex-wrap: wrap;
        padding: 0;
        box-shadow: none
    }

    .product_detail-box .product_detail-wrap .logo-title .pic-wrap {
        width: 100%;
        text-align: center;
        padding: 100px 0;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
    }

    .product_detail-box .product_detail-wrap .logo-title .pic-wrap img {
        height: 80px;
    }

    .product_detail-box .product_detail-wrap .logo-title .text-wrap {
        width: 100%;
        margin-top: 50px
    }

    .product_detail-box .product_detail-wrap .logo-title .text-wrap h3 {
        font-size: 44px
    }

    .product_detail-box .product_detail-wrap .logo-title .text-wrap span {
        width: 250px;
        height: 6px;
        margin-top: 25px
    }

    .product_detail-box .product_detail-wrap .content-box {
        flex-wrap: wrap;
        padding: 0;
        margin-top: 100px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap {
        width: 100%
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper {
        position: relative;
        width: 600px;
        height: 600px;
        padding: 30px;
        border-radius: 50%;
        background-color: #e3e7f0;
        margin: 0 auto
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .swiper-slide .pic-wrap {
        width: 540px;
        height: 540px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress {
        width: 600px;
        height: 600px;
        border: 4px solid #c8c8c8
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap {
        top: -4px;
        width: 300px;
        height: 600px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap.left-wrap {
        left: -4px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-wrap.right-wrap {
        right: -4px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-left, .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .circle-progress .circle-right {
        width: 600px;
        height: 600px;
        border-width: 4px;
        border-style: solid
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .product-swiper .dot-progress::before {
        top: -19px;
        left: calc(50% - 20px);
        width: 17px;
        height: 17px;
        border: 12px solid #fff
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap a {
        min-width: 480px;
        font-size: 28px;
        padding: 24px 40px;
        margin-bottom: 40px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap a span {
        width: 26px;
        height: 26px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap p {
        font-size: 24px;
        line-height: 48px
    }

    .product_detail-box .product_detail-wrap .content-box .left-wrap .download-wrap p span {
        font-size: 24px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap {
        width: 100%;
        margin-top: 100px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap > span {
        font-size: 70px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap > p {
        font-size: 42px;
        line-height: 60px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul {
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li {
        padding-left: 30px;
        margin-bottom: 60px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li::before {
        width: 6px;
        height: 60px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li span {
        font-size: 32px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .parameter-wrap ul li p {
        font-size: 28px;
        line-height: 48px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap ul li {
        font-size: 28px;
        line-height: 44px;
        width: 100%;
        padding: 30px;
        border-bottom: 2px solid #dcdcdc
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .characteristic-wrap ul li::before {
        top: 36px;
        display: block;
        width: 6px;
        height: 30px;
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .brand-wrap {
        padding: 40px 0;
        border-top: 2px solid #dcdcdc;
        border-bottom: 2px solid #dcdcdc;
        margin-top: 100px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .brand-wrap img:first-child {
        display: none
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .brand-wrap img.m-pic {
        display: initial
    }
}

@keyframes circleProgressLeft {
    0% {
        transform: rotate(-135deg)
    }
    100% {
        transform: rotate(45deg)
    }
}

@keyframes circleProgressRight {
    0% {
        transform: rotate(-135deg)
    }
    100% {
        transform: rotate(45deg)
    }
}

@keyframes dotProgress {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

/* 产品成功案例 */
.product_case-box {
    position: relative;
    background-color: #fafafa
}

.product_case-box .cate-box {
    margin-top: -50px
}

.product_case-box .cate-box .cate-list {
    display: flex;
    align-items: center;
    height: 260px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.product_case-box .cate-box .cate-list .cate-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer
}

.product_case-box .cate-box .cate-list .cate-item .pic-wrap {
}

.product_case-box .cate-box .cate-list .cate-item .pic-wrap img {
    height: 80px;
}

.product_case-box .cate-box .cate-list .cate-item.active .pic-wrap img {
    display: none
}

.product_case-box .cate-box .cate-list .cate-item .pic-wrap img.active {
    display: none
}

.product_case-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {
    display: inline-block
}

.product_case-box .cate-box .cate-list .cate-item .text-wrap {
    margin-top: 20px
}

.product_case-box .cate-box .cate-list .cate-item .text-wrap p {
    font-size: 16px;
    color: #5a5a5a
}

.product_case-box .cate-box .cate-list .cate-item.active .text-wrap p {
    color: #fff
}

.product_case-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
    display: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 45px;
    background: url(../icon-product_arrow-down_white.png) no-repeat center center
}

.product_case-box .product_case-wrap .caselist-box {
    padding: 100px 0;
}

.product_case-box .product_case-wrap .caselist-box .product_case-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item {
    width: 32%;
    margin-bottom: 20px;
    margin-right: 2%;
    background-color: #fff;
    border-bottom: 3px solid transparent;
    /*height: 375px;*/
    overflow-y: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item:nth-child(3n) {
    margin-right: 0
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item:hover {
    /*background-color: #fafafa;*/
    /*border-color: #70c5c8*/
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item a {
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap {
    width: 100%;
    height: 225px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap img {
    width: 100%;
    height: 225px;
    transition: all .5s ease;

}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item:hover .pic-wrap img {
    transform: scale(1.1)
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap h3 {
    font-size: 16px;
    color: #000;
    /*margin-bottom: 10px*/
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 28px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap p span {
    font-size: 16px;
    color: #000;
    font-weight: bold
}

@media (min-width: 992px) {
    .product_case-box .cate-box_m {
        display: none
    }

    .product_case-box .cate-box .cate-list .cate-item:hover .pic-wrap img {
        display: none
    }

    .product_case-box .cate-box .cate-list .cate-item:hover .pic-wrap img.active {
        display: inline-block
    }

    .product_case-box .cate-box .cate-list .cate-item:hover .text-wrap p {
        color: #fff
    }

    .product_case-box .cate-box .cate-list .cate-item.active, .product_case-box .cate-box .cate-list .cate-item:hover {
        /*height: 120%;*/
        /*background-color: #70c5c8;*/
        /*box-shadow: 0px 0 p 15px 5px rgb(0 0 0 / 10%)*/
    }

    .product_case-box .cate-box .cate-list .cate-item.active .text-wrap .icon-arrow, .product_case-box .cate-box .cate-list .cate-item:hover .text-wrap .icon-arrow {
        /*display: inline-block*/
    }

    .product_case-box .product_case-wrap {
        display: none
    }

    .product_case-box .product_case-wrap.active {
        display: block
    }

    /* .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap{overflow:hidden} */
    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap img {
        transition: all .5s ease
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item:hover .pic-wrap img {
        /*transform: scale(1.1)*/
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap .detail-collapse {
        display: block
    }
}

@media (max-width: 991px) {
    .product_case-box .cate-box {
        display: none
    }

    .product_case-box .product_case-wrap .cate-box_m {
        margin-top: 50px
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list {
        display: block;
        height: unset;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: unset;
        border-radius: 20px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 7%);
        padding: 20px 10px 20px 50px;
        margin-bottom: 30px
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item::after {
        content: unset
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item.active {
        background-color: #70c5c8
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item a {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .pic-wrap {
        flex-shrink: 0
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .pic-wrap img {
        height: 80px;
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img {
        display: none
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .pic-wrap img.active {
        display: none
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img.active {
        display: inline-block;
        height: 80px;
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .text-wrap {
        margin-top: 0;
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .text-wrap p {
        font-size: 36px;
        color: #000;
        margin-left: 40px
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item.active .text-wrap p {
        color: #fff
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item .text-wrap .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        padding-right: 60px;
    }

    .product_case-box .product_case-wrap .cate-box_m .cate-list .cate-item.active .text-wrap .icon-arrow {
        background-image: url(../icon-footnav_arrow.png);
        transform: rotate(180deg)
    }

    .product_case-box .product_case-wrap .caselist-box {
        display: none;
        margin-top: 50px;
        border: none;
        padding: 0
    }

    .product_case-box .product_case-wrap.active .caselist-box {
        display: block
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item {
        width: 100%;
        margin-right: 0;
        height: auto;
        border-width: 4px;
        margin-bottom: 50px
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap {
        width: 100%;
        height: 100%;
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .pic-wrap img {
        width: 100%;
        height: 100%;
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap {
        margin-top: 15px
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap h3 {
        font-size: 32px;
        margin-bottom: 30px
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap p {
        font-size: 28px;
        line-height: 50px
    }

    .product_case-box .product_case-wrap .caselist-box .product_case-list .product_case-item .text-wrap p span {
        font-size: 32px
    }
}

/* 产品成功案例详情 */
.product_case_detail-box {
    margin-top: 50px;
    margin-bottom: 100px;
}

.product_case_detail-box .product_case_detail-wrap {
    display: flex
}

.product_case_detail-box .product_case_detail-wrap .text-wrap {
    flex: 1;
    padding: 50px;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%)
}

.product_case_detail-box .product_case_detail-wrap .text-wrap .title {
    margin-bottom: 45px
}

.product_case_detail-box .product_case_detail-wrap .text-wrap .title h3 {
    font-size: 26px;
    color: #000;
    font-weight: normal
}

.product_case_detail-box .product_case_detail-wrap .text-wrap .title .line {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin: 10px 0 20px
}

.product_case_detail-box .product_case_detail-wrap .text-wrap .title p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 26px
}

.product_case_detail-box .product_case_detail-wrap .text-wrap .title p span {
    display: block;
    font-size: 30px;
    color: #000;
    font-weight: bold
}

.product_case_detail-box .product_case_detail-wrap .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 30px;
    margin-top: 20px
}

.product_case_detail-box .product_case_detail-wrap .text-wrap p span {
    display: block;
    font-size: 14px;
    color: #000;
    line-height: 24px;
    font-weight: bold
}

.product_case_detail-box .product_case_detail-wrap .pic-wrap {
    flex-shrink: 0;
    flex: 2;
}

@media (max-width: 991px) {
    .product_case_detail-box .product_case_detail-wrap {
        flex-direction: column
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap {
        display: flex;
        flex-wrap: wrap
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap .title {
        flex-basis: 100%
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap .title h3 {
        font-size: 40px
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap .title .line {
        width: 135px;
        height: 5px;
        margin: 20px 0 30px
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap .title p {
        font-size: 28px;
        width: 100%;
        line-height: 44px
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap p {
        font-size: 28px;
        width: 33%;
        line-height: 44px
    }

    .product_case_detail-box .product_case_detail-wrap .text-wrap p span {
        font-size: 28px
    }
}

/*创始人介绍*/
.originator .image-box {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/

}

.originator .image-box .image-left {
    width: 31%;
}

.originator .image-box .text-right {
    margin-left: 5%;
    width: 64%;
}

/* 产品解决方案 */
.product_solution-box {
    position: relative
}

.product_solution-box .cate-box {
    margin-top: -50px
}

.product_solution-box .cate-box .cate-list {
    display: flex;
    align-items: center;
    height: 260px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.product_solution-box .cate-box .cate-list .cate-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20%;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer
}

.product_solution-box .cate-box .cate-list .cate-item::after {
    content: '';
    display: block;
    width: 1px;
    height: 95px;
    background-color: #ccc;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -47px
}

.product_solution-box .cate-box .cate-list .cate-item.active::after, .product_solution-box .cate-box .cate-list .cate-item:hover::after, .product-box .cate-box .cate-list .cate-item:last-child::after {
    content: unset
}

.product_solution-box .cate-box .cate-list .cate-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.product_solution-box .cate-box .cate-list .cate-item .pic-wrap {
}

.product_solution-box .cate-box .cate-list .cate-item .pic-wrap img {
    height: 80px;
}

.product_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img {
    display: none
}

.product_solution-box .cate-box .cate-list .cate-item .pic-wrap img.active {
    display: none
}

.product_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {
    display: inline-block
}

.product_solution-box .cate-box .cate-list .cate-item .text-wrap {
    margin-top: 20px
}

.product_solution-box .cate-box .cate-list .cate-item .text-wrap p {
    font-size: 16px;
    color: #5a5a5a
}

.product_solution-box .cate-box .cate-list .cate-item.active .text-wrap p {
    color: #fff
}

.product_solution-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
    display: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 45px;
    background: url(../img/icon-product_arrow-down_white.png) no-repeat center center
}

.product_solution-box .product_solution-wrap {
    display: flex
}

.product_solution-box .product_solution-wrap .left-wrap {
    width: 35%
}

.product_solution-box .product_solution-wrap .left-wrap .text-wrap {
    padding: 50px 30px;
    background-color: #fafafa
}

.product_solution-box .product_solution-wrap .left-wrap .text-wrap p {
    font-size: 14px;
    color: #000;
    line-height: 28px
}

.product_solution-box .product_solution-wrap .right-wrap {
    width: 65%;
    padding: 50px
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap {
    margin-bottom: 35px
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap .title {
    margin-bottom: 20px
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap .title h4 {
    font-size: 18px;
    color: #000
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap .title span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin: 10px 0
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap .title p {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    margin-top: 40px
}

.product_solution-box .product_solution-wrap .right-wrap .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

.product_solution-box .product_solution-wrap .right-wrap .pic-wrap {
}

@media (min-width: 992px) {
    .product_solution-box .cate-box .cate-list .cate-item:hover .pic-wrap img {
        display: none
    }

    .product_solution-box .cate-box .cate-list .cate-item:hover .pic-wrap img.active {
        display: inline-block
    }

    .product_solution-box .cate-box .cate-list .cate-item:hover .text-wrap p {
        color: #fff
    }

    .product_solution-box .cate-box .cate-list .cate-item.active, .product_solution-box .cate-box .cate-list .cate-item:hover {
        height: 120%;
        background-color: #70c5c8;
        box-shadow: 0px 0 p 15px 5px rgb(0 0 0 / 10%)
    }

    .product_solution-box .cate-box .cate-list .cate-item.active .text-wrap .icon-arrow, .product_solution-box .cate-box .cate-list .cate-item:hover .text-wrap .icon-arrow {
        display: inline-block
    }
}

@media (max-width: 991px) {
    .product_solution-box {
        margin-top: 50px
    }

    /*.product_solution-box .cate-box{display:none}*/
    .product_solution-box .cate-box {
        margin-top: 50px;
    }

    .product_solution-box .cate-box .cate-list {
        display: block;
        height: unset;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none;
    }

    .product_solution-box .cate-box .cate-list .cate-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: unset;
        border-radius: 20px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 7%);
        padding: 20px 10px 20px 50px;
        margin-bottom: 30px
    }

    .product_solution-box .cate-box .cate-list .cate-item::after {
        content: unset
    }

    .product_solution-box .cate-box .cate-list .cate-item.active {
        background-color: #70c5c8
    }

    .product_solution-box .cate-box .cate-list .cate-item a {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%
    }

    .product_solution-box .cate-box .cate-list .cate-item .pic-wrap {
        flex-shrink: 0
    }

    .product_solution-box .cate-box .cate-list .cate-item .pic-wrap img {
        height: 80px;
    }

    .product_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img {
        display: none;
        height: 80px;
    }

    .product_solution-box .cate-box .cate-list .cate-item .pic-wrap img.active {
        display: none;
    }

    .product_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {
        display: inline-block
    }

    .product_solution-box .cate-box .cate-list .cate-item .text-wrap {
        margin-top: 0;
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .product_solution-box .cate-box .cate-list .cate-item .text-wrap p {
        font-size: 36px;
        color: #000;
        margin-left: 40px
    }

    .product_solution-box .cate-box .cate-list .cate-item.active .text-wrap p {
        color: #fff
    }

    .product_solution-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        margin-right: 30px
    }

    .product_solution-box .cate-box .cate-list .cate-item.active .text-wrap .icon-arrow {
        background-image: url(../icon-footnav_arrow.png);
        transform: rotate(180deg)
    }

    .product_solution-box .product_solution-wrap {
        flex-direction: column
    }

    .product_solution-box .product_solution-wrap .left-wrap {
        width: 100%
    }

    .product_solution-box .product_solution-wrap .left-wrap .text-wrap {
        padding: 50px
    }

    .product_solution-box .product_solution-wrap .left-wrap .text-wrap p {
        font-size: 28px;
        line-height: 48px
    }

    .product_solution-box .product_solution-wrap .right-wrap {
        width: 100%;
        padding: 0;
        margin-top: 30px
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap .title {
        margin-bottom: 40px
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap .title h4 {
        font-size: 34px
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap .title span {
        width: 135px;
        height: 5px;
        margin: 20px 0
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap .title p {
        font-size: 28px;
        line-height: 44px
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap p {
        font-size: 28px;
        line-height: 48px
    }

    .product_solution-box .product_solution-wrap .right-wrap .text-wrap p b {
        font-size: 28px;
    }

    .product_solution-box .product_solution-wrap .right-wrap .pic-wrap img {
        width: 100%
    }
}

/* 产品品质控制 */
.product_quality-box {
}

.product_quality-box .product_quality-wrap {
}

.product_quality-box .product_quality-wrap .title {
    text-align: center
}

.product_quality-box .product_quality-wrap .title h3 {
    font-size: 24px;
    color: #000
}

.product_quality-box .product_quality-wrap .title span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28
}

.product_quality-box .product_quality-wrap .quality-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px
}

.product_quality-box .product_quality-wrap .quality-list .quality-item {
    width: 50%;
    display: flex;
    background-color: #fafafa;
    transition: all .3s ease
}

.product_quality-box .product_quality-wrap .quality-list .quality-item:hover {
    background-color: #70c5c8
}

.product_quality-box .product_quality-wrap .quality-list .quality-item .pic-wrap {
    width: 55%
}

.product_quality-box .product_quality-wrap .quality-list .quality-item .pic-wrap img {
    height: 100%
}

.product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap {
    width: 50%;
    padding: 30px 30px 10px
}

.product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap h4 {
    font-size: 18px;
    color: #000;
    padding-left: 10px;
    border-left: 3px solid #ffcd28;
    margin-bottom: 10px;
    transition: all .3s ease
}

.product_quality-box .product_quality-wrap .quality-list .quality-item:hover .text-wrap h4 {
    color: #fff
}

.product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    padding-left: 13px;
    transition: all .3s ease
}

.product_quality-box .product_quality-wrap .quality-list .quality-item:hover .text-wrap p {
    color: #fff
}

.product_quality_lab-box {
    position: relative;
    margin-top: 100px
}

.product_quality_lab-box .pic-wrap {
}

.product_quality_lab-box .pic-wrap .m-pic {
    display: none
}

.product_quality_lab-box .text-wrap {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%)
}

.product_quality_lab-box .text-wrap h3 {
    font-size: 30px;
    color: #70c5c8
}

.product_quality_lab-box .text-wrap .lab-list {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    margin-top: 50px
}

.product_quality_lab-box .text-wrap .lab-list .lab-item {
    width: 50%;
    padding-left: 10px;
    border-left: 3px solid #ffcd28;
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 15px
}

.product_quality_lab-box .text-wrap .more-btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin-top: 50px
}

@media (max-width: 991px) {
    .product_quality-box {
        margin-top: 50px
    }

    .product_quality-box .product_quality-wrap .title h3 {
        font-size: 40px
    }

    .product_quality-box .product_quality-wrap .title span {
        width: 135px;
        height: 5px;
        margin-top: 20px
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item {
        width: 100%
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item:nth-child(1) {
        order: 1
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item:nth-child(2) {
        order: 3
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item:nth-child(3) {
        order: 2
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item:nth-child(4) {
        order: 4
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap {
        width: 50.5%;
        padding: 20px 10px 20px 20px
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap h4 {
        font-size: 32px;
        padding-left: 15px;
        border-width: 5px
    }

    .product_quality-box .product_quality-wrap .quality-list .quality-item .text-wrap p {
        font-size: 28px;
        line-height: 38px
    }

    .product_quality_lab-box .pic-wrap img {
        display: none
    }

    .product_quality_lab-box .pic-wrap .m-pic {
        display: initial
    }

    .product_quality_lab-box .text-wrap h3 {
        font-size: 44px
    }

    .product_quality_lab-box .text-wrap .lab-list {
        width: 100%
    }

    .product_quality_lab-box .text-wrap .lab-list .lab-item {
        font-size: 28px;
        padding-left: 15px;
        border-width: 5px;
        margin-bottom: 30px
    }

    .product_quality_lab-box .text-wrap .more-btn {
        font-size: 28px;
        padding: 20px 100px
    }
}

/* 产品储能系统 */
.product_chuneng-box {
    position: relative
}

.product_chuneng-box .cate-box {
    margin-top: -50px
}

.product_chuneng-box .cate-box .cate-list {
    display: flex;
    align-items: center;
    height: 260px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.product_chuneng-box .cate-box .cate-list .cate-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer
}

.product_chuneng-box .cate-box .cate-list .cate-item .pic-wrap {
}

.product_chuneng-box .cate-box .cate-list .cate-item .pic-wrap img {
    height: 80px;
}

.product_chuneng-box .cate-box .cate-list .cate-item.active .pic-wrap img {
    display: none
}

.product_chuneng-box .cate-box .cate-list .cate-item .pic-wrap img.active {
    display: none
}

.product_chuneng-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {
    display: inline-block
}

.product_chuneng-box .cate-box .cate-list .cate-item .text-wrap {
    margin-top: 20px
}

.product_chuneng-box .cate-box .cate-list .cate-item .text-wrap p {
    font-size: 16px;
    color: #5a5a5a
}

.product_chuneng-box .cate-box .cate-list .cate-item.active .text-wrap p {
    color: #fff
}

.product_chuneng-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
    display: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 45px;
    background: url(../icon-product_arrow-down_white.png) no-repeat center center
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box {
    margin-top: 100px
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list {
    display: flex;
    flex-wrap: wrap; /*justify-content:center*/
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item {
    width: 23%;
    margin-bottom: 30px;
    background-color: #fafafa;
    border: 1px solid #dcdcdc;
    margin: 0 1% 30px
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item:hover {
    border-bottom: 3px solid #70c5c8
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .pic-wrap {
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .text-wrap {
    text-align: center;
    padding: 20px 0
}

.product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 32px
}

@media (min-width: 992px) {
    .product_chuneng-box .cate-box_m {
        display: none
    }

    .product_chuneng-box .cate-box .cate-list .cate-item:hover .pic-wrap img {
        display: none
    }

    .product_chuneng-box .cate-box .cate-list .cate-item:hover .pic-wrap img.active {
        display: inline-block
    }

    .product_chuneng-box .cate-box .cate-list .cate-item:hover .text-wrap p {
        color: #fff
    }

    .product_chuneng-box .cate-box .cate-list .cate-item.active, .product_chuneng-box .cate-box .cate-list .cate-item:hover {
        height: 120%;
        background-color: #70c5c8;
        box-shadow: 0px 0 p 15px 5px rgb(0 0 0 / 10%)
    }

    .product_chuneng-box .cate-box .cate-list .cate-item.active .text-wrap .icon-arrow, .product_chuneng-box .cate-box .cate-list .cate-item:hover .text-wrap .icon-arrow {
        display: inline-block
    }

    .product_chuneng-box .product_chuneng-wrap {
        display: none
    }

    .product_chuneng-box .product_chuneng-wrap.active {
        display: block
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .pic-wrap {
        overflow: hidden
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .pic-wrap img {
        transition: all .5s ease
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item:hover .pic-wrap img {
        transform: scale(1.1)
    }
}

@media (max-width: 991px) {
    .product_chuneng-box .cate-box {
        display: none
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m {
        margin-top: 50px
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list {
        display: block;
        height: unset;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: unset;
        border-radius: 20px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 7%);
        padding: 20px 10px 20px 50px;
        margin-bottom: 30px
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item::after {
        content: unset
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item.active {
        background-color: #70c5c8
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item a {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        width: 100%
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .pic-wrap {
        flex-shrink: 0
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .pic-wrap img {
        height: 80px;
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img {
        display: none
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .pic-wrap img.active {
        display: none
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item.active .pic-wrap img.active {
        display: inline-block;
        height: 80px;
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .text-wrap {
        margin-top: 0;
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .text-wrap p {
        font-size: 36px;
        color: #000;
        margin-left: 40px
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item.active .text-wrap p {
        color: #fff
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item .text-wrap .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        padding-right: 60px;
    }

    .product_chuneng-box .product_chuneng-wrap .cate-box_m .cate-list .cate-item.active .text-wrap .icon-arrow {
        background-image: url(../icon-footnav_arrow.png);
        transform: rotate(180deg)
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box {
        display: none;
        margin-top: 50px;
        border: none;
        padding: 0
    }

    .product_chuneng-box .product_chuneng-wrap.active .chunenglist-box {
        display: block;
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item {
        width: 100%;
        height: auto;
        border-width: 4px;
        margin-bottom: 50px
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .pic-wrap {
        width: 100%
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .pic-wrap img {
        width: 100%
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .text-wrap {
        width: 100%;
        padding: 20px
    }

    .product_chuneng-box .product_chuneng-wrap .chunenglist-box .product_chuneng-list .product_chuneng-item .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }
}

/* 储能详情 */
.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap {
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap .parameter-one {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li {
    position: relative;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 10px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 3px;
    height: 30px;
    background-color: #ffcd28
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li span {
    font-size: 14px;
    color: #5a5a5a;
    font-weight: bold
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 28px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap {
    margin-top: 50px; /*border-top:1px solid #dcdcdc*/
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul {
    display: flex;
    flex-wrap: wrap
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li {
    position: relative;
    width: 50%;
    padding: 15px 30px 15px 15px;
    border-bottom: 1px solid #dcdcdc
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li span {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 22px;
    font-weight: bold
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 22px;
    margin-top: 8px
}

.product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    display: block;
    width: 3px;
    height: 15px;
    background-color: #ffcd28
}

@media (max-width: 991px) {
    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul {
        display: flex;
        flex-wrap: wrap;
        margin-top: 100px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li {
        padding-left: 30px;
        margin-bottom: 60px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li::before {
        width: 6px;
        height: 60px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li span {
        font-size: 48px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_parameter-wrap ul li p {
        font-size: 28px;
        line-height: 48px
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li {
        font-size: 28px;
        line-height: 44px;
        width: 100%;
        padding: 30px;
        border-bottom: 2px solid #dcdcdc
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li::before {
        top: 36px;
        display: block;
        width: 6px;
        height: 30px;
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li p {
        font-size: 28px;
        line-height: 44px;
    }

    .product_detail-box .product_detail-wrap .content-box > .right-wrap .chuneng_characteristic-wrap ul li span {
        font-size: 28px;
        line-height: 44px;
    }
}

/* 管理团队 */
.team-box {
}

.team-box .team-list {
    padding: 50px;
    background-color: #fafafa;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 50px;
    grid-row-gap: 50px
}

.team-box .team-list .team-item {
    display: flex;
    flex-direction: column
}

.team-box .team-list .team-item .pic-wrap {
    width: 100%;
    height: 100%;;
    overflow: hidden
}

.team-box .team-list .team-item .pic-wrap img {
    width: 100%;
    height: 100%;;
    transition: all .5s ease
}

.team-box .team-list .team-item:hover .pic-wrap img {
    transform: scale(1.1)
}

.team-box .team-list .team-item .text-wrap {
    flex-grow: 1;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%)
}

.team-box .team-list .team-item .text-wrap h4 {
    font-size: 18px
}

.team-box .team-list .team-item .text-wrap p {
    font-size: 14px;
    color: #000;
    line-height: 24px;
    margin-top: 10px
}

.team-box .team-list .team-item .text-wrap span {
    display: block;
    width: 55px;
    height: 2px;
    background-color: #70c5c8;
    margin-top: 10px
}

@media (max-width: 991px) {
    .team-box {
        margin-top: 50px
    }

    .team-box .team-list {
        padding: 0;
        background-color: transparent;
        grid-template-columns: repeat(2, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 30px
    }

    .team-box .team-list .team-item {
        margin: 0 10px 30px;
        max-width: unset
    }

    .team-box .team-list .team-item .text-wrap h4 {
        font-size: 34px
    }

    .team-box .team-list .team-item .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }

    .team-box .team-list .team-item .text-wrap span {
        display: block;
        width: 55px;
        height: 2px;
        background-color: #70c5c8;
        margin-top: 10px
    }
}

/* 企业简介 */
.about-box {
}

.about-box .about-wrap {
}

.about-box .about-wrap .intro-list {
    display: flex;
    justify-content: space-between
}

.about-box .about-wrap .intro-list .intro-item {
    position: relative;
    width: 20%;
    flex-shrink: 0;
    transition: all .3s ease
}

.about-box .about-wrap .intro-list .intro-item .title {
    padding: 30px 0;
    background-color: #70c5c8;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.about-box .about-wrap .intro-list .intro-item .title h4 {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    text-align: center
}

.about-box .about-wrap .intro-list .intro-item .title .icon-arrow {
    display: none
}

.about-box .about-wrap .intro-list .intro-item .pic-wrap {
    overflow: hidden
}

.about-box .about-wrap .intro-list .intro-item .pic-wrap img {
    max-width: unset
}

.about-box .about-wrap .intro-list .intro-item .text-wrap {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px 60px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all .3s ease
}

.about-box .about-wrap .intro-list .intro-item .text-wrap h4 {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.about-box .about-wrap .intro-list .intro-item .text-wrap span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin: 10px 0 20px
}

.about-box .about-wrap .intro-list .intro-item .text-wrap p {
    font-size: 14px;
    color: #fff;
    line-height: 24px
}

.about-box .about-wrap .intro-list .intro-item.active .text-wrap {
    visibility: visible;
    opacity: 1
}

.about-box .about-wrap .data-list {
    display: flex;
    justify-content: space-between;
    margin-top: 100px
}

.about-box .about-wrap .data-list .data-item {
    width: 16%
}

.about-box .about-wrap .data-list .data-item .pic-wrap {
}

.about-box .about-wrap .data-list .data-item .pic-wrap img {
    height: 80px;
    transition: all .5s ease
}

.about-box .about-wrap .data-list .data-item .pic-wrap:hover img {
    transform: scale(1.1)
}

.about-box .about-wrap .data-list .data-item .text-wrap {
    margin-top: 15px
}

.about-box .about-wrap .data-list .data-item .text-wrap p {
    font-size: 14px;
    color: #000;
    line-height: 34px
}

.about-box .about-wrap .data-list .data-item .text-wrap p span {
    font-size: 24px;
    color: #000;
    font-weight: bold
}

.about-box .global-wrap {
    padding: 60px 0;
    background-color: #fafafa;
    margin-top: 60px
}

.about-box .global-wrap .text-wrap {
}

.about-box .global-wrap .text-wrap h3 {
    font-size: 20px;
    color: #061430
}

.about-box .global-wrap .text-wrap span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin: 10px 0 25px
}

.about-box .global-wrap .text-wrap p {
    font-size: 14px;
    color: #061430;
    line-height: 24px
}

.about-box .global-wrap .pic-wrap {
    text-align: center;
    margin-top: 50px
}

.about-box .global-wrap .pic-wrap .m-pic {
    display: none
}

.about-box .concept-wrap {
    padding: 60px 0;
    background-color: #fff
}

.about-box .concept-wrap .concept-list {
    /* display: flex; */
    /* justify-content: space-between */
}

.about-box .concept-wrap .concept-list .concept-item {
    /* width: 27% */
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.about-box .concept-wrap .concept-list .concept-item .pic-wrap {
    width: 20%;
    /* height: 60px; */
    text-align: center;
}

.about-box .concept-wrap .concept-list .concept-item .pic-wrap img {
    width: 60px;
    height: 60px;

}

.about-box .concept-wrap .concept-list .concept-item .pic-wrap .text-title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;

}

.about-box .concept-wrap .concept-list .concept-item .text-wrap {
    position: relative;
    width: 80%;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    padding: 15px;
    min-height: 120px;
    border: 1px solid #70c5c8;
    border-radius: 10px;

    /* margin-top: 50px */
}

.about-box .concept-wrap .concept-list .concept-item .text-wrap .text-title {
    position: absolute;
    top: -18px;
    left: calc(50% - 75px);
    display: inline-block;
    width: 150px;
    padding: 5px 0;
    font-size: 16px;
    text-align: center;
    color: #70c5c8;
    border: 2px solid #70c5c8;
    border-radius: 10px;
    background-color: #e8e7ef
}

.about-box .concept-wrap .concept-list .concept-item .text-wrap p {
    font-size: 18px;
    color: #000;
    line-height: 32px;
    /*transition: all .3s ease*/
}

/*.about-box .concept-wrap .concept-list .concept-item:hover .text-wrap .text-title {*/
/*font-weight: bold*/
/*}*/

/*.about-box .concept-wrap .concept-list .concept-item:hover .text-wrap p {*/
/*font-size: 20px*/
/*}*/

.about-box .insist-wrap {
    display: flex;
    align-items: center;
    /*padding: 80px 0;*/
    /*padding-top: 100px;*/
    height: 588px;
    background: url(../img/insist-bg.jpg) no-repeat center center;
    background-size: 100% !important;
}

.about-box .insist-wrap .text-wrap {
    /*margin-top: 50px;*/
}

.about-box .insist-wrap .text-wrap p {
    font-size: 14px
}

.about-box .insist-wrap .text-wrap h4 {
    font-size: 24px;
    margin-top: 10px
}

.about-box .insist-wrap .text-wrap span {
    display: block;
    width: 85px;
    height: 3px;
    background-color: #ffcd28;
    margin-top: 20px
}

.about-box .insist-wrap .insist-list {
    display: flex;
    margin-top: 60px
}

.about-box .insist-wrap .insist-list .insist-item {
    margin-right: 80px;
    text-align: center
}

.about-box .insist-wrap .insist-list .insist-item .pic-wrap {
}

.about-box .insist-wrap .insist-list .insist-item .pic-wrap img {
    width: 80px;
    transition: all .5s ease-out
}

.about-box .insist-wrap .insist-list .insist-item:hover .pic-wrap img {
    transform: rotate(360deg)
}

.about-box .insist-wrap .insist-list .insist-item .text-wrap {
    text-align: center;
    margin-top: 20px
}

.about-box .insist-wrap .insist-list .insist-item .text-wrap p {
    font-size: 18px
}

.about-box .video-wrap {
    text-align: center;
    margin-top: 100px
}

@media (min-width: 992px) {
    .about-box .about-wrap .intro-list .intro-item.active {
        width: 59%
    }

    .about-box .about-wrap .intro-list .intro-item.active .title {
        display: none
    }

    .about-box .global-wrap .text-wrap p i {
        display: block
    }

}

@media (max-width: 991px) {
    .about-box {
        margin-top: 60px
    }

    .about-box .about-wrap .intro-list {
        flex-wrap: wrap;
        margin: 0 -30px;
        padding: 30px 0;
    }

    .about-box .about-wrap .intro-list .intro-item {
        width: 100%;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
        margin-bottom: 40px
    }

    .about-box .about-wrap .intro-list .intro-item .title {
        padding: 50px 30px;
        background-color: #fff;
        position: relative;
        display: flex;
        justify-content: space-between
    }

    .about-box .about-wrap .intro-list .intro-item .title h4 {
        font-size: 38px;
        color: #000
    }

    .about-box .about-wrap .intro-list .intro-item .title .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        transition: all .3s ease
    }

    .about-box .about-wrap .intro-list .intro-item.active .title .icon-arrow {
        transform: rotate(180deg)
    }

    .about-box .about-wrap .intro-list .intro-item .pic-wrap {
        display: none
    }

    .about-box .about-wrap .intro-list .intro-item .pic-wrap img {
        width: 100%;
        max-width: 100%
    }

    .about-box .about-wrap .intro-list .intro-item .text-wrap {
        display: none;
        visibility: visible;
        opacity: 1;
        position: relative;
        padding: 40px 30px;
        background-color: transparent
    }

    .about-box .about-wrap .intro-list .intro-item .text-wrap h4 {
        display: none
    }

    .about-box .about-wrap .intro-list .intro-item .text-wrap span {
        display: none
    }

    .about-box .about-wrap .intro-list .intro-item .text-wrap p {
        font-size: 28px;
        color: #000;
        line-height: 44px
    }

    .about-box .about-wrap .intro-list .intro-item.active .title h4 {
        padding-bottom: 20px;
        border-bottom: 6px solid #ffcd28
    }

    .about-box .about-wrap .intro-list .intro-item.active .pic-wrap {
        display: block
    }

    .about-box .about-wrap .intro-list .intro-item.active .text-wrap {
        display: block
    }

    .about-box .about-wrap .data-list {
        flex-wrap: wrap
    }

    .about-box .about-wrap .data-list .data-item {
        width: 50%;
        margin-bottom: 50px;
        text-align: center
    }

    .about-box .about-wrap .data-list .data-item .pic-wrap img {
        height: 160px;
    }

    .about-box .about-wrap .data-list .data-item .text-wrap {
        margin-top: 15px
    }

    .about-box .about-wrap .data-list .data-item .text-wrap p {
        font-size: 28px;
        line-height: 60px
    }

    .about-box .about-wrap .data-list .data-item .text-wrap p span {
        font-size: 44px
    }

    .about-box .global-wrap .text-wrap h3 {
        font-size: 40px
    }

    .about-box .global-wrap .text-wrap span {
        width: 190px;
        height: 6px;
        margin: 20px 0 50px
    }

    .about-box .global-wrap .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }

    .about-box .global-wrap .pic-wrap img:first-child {
        display: none
    }

    .about-box .global-wrap .pic-wrap .m-pic {
        display: initial
    }

    .about-box .concept-wrap .concept-list {
        flex-wrap: wrap
    }

    .about-box .concept-wrap .concept-list .concept-item {
        width: 100%;
        padding: 0 40px;
        margin-bottom: 80px
    }

    .about-box .concept-wrap .concept-list .concept-item .pic-wrap {
        width: 20%;
        height: auto;
        text-align: center
    }

    .about-box .concept-wrap .concept-list .concept-item .pic-wrap img {
        /* height: 160px; */
    }

    .about-box .concept-wrap .concept-list .concept-item .text-wrap {
        min-height: 220px;
        padding: 30px 5px 5px;
        /* margin-top: 70px */
    }

    .about-box .concept-wrap .concept-list .concept-item .text-wrap span {
        top: -33px;
        left: calc(50% - 145px);
        font-size: 30px;
        padding: 14px 0;
        width: 290px
    }

    .about-box .concept-wrap .concept-list .concept-item .text-wrap p {
        font-size: 38px;
        line-height: 60px
    }

    .about-box .insist-wrap {
        height: 912px;
        background-image: url(../insist-bg_m.jpg);
        padding: 0;
        background-size: cover !important
    }

    .about-box .insist-wrap .text-wrap p {
        font-size: 28px
    }

    .about-box .insist-wrap .text-wrap h4 {
        font-size: 32px;
        line-height: 44px;
        margin-top: 20px
    }

    .about-box .insist-wrap .text-wrap h4 i {
        display: block
    }

    .about-box .insist-wrap .text-wrap span {
        width: 165px;
        height: 6px;
        margin-top: 30px
    }

    .about-box .insist-wrap .insist-list {
        flex-wrap: wrap
    }

    .about-box .insist-wrap .insist-list .insist-item {
        width: 25%;
        margin-right: 10%;
        margin-bottom: 60px
    }

    .about-box .insist-wrap .insist-list .insist-item .pic-wrap img {
        width: auto;
        height: 100px;
    }

    .about-box .insist-wrap .insist-list .insist-item .text-wrap p {
        font-size: 28px
    }

    .about-box .video-wrap video {
        width: 100%
    }
}

/*服务能力*/
/* 产品解决方案 */
.servic_solution-box {
    position: relative
}

.servic_solution-box .cate-box {
    margin-top: -50px
}

.servic_solution-box .cate-box .cate-list {
    display: flex;
    align-items: center;
    flex-flow: wrap;
    height: 360px;
    padding: 20px 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.servic_solution-box .cate-box .cate-list .cate-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 20%;
    /*height: 100%;*/
    text-align: center;
    border-radius: 10px;
    transition: all .3s ease;
    cursor: pointer
}

/*.servic_solution-box .cate-box .cate-list .cate-item::after {*/
/*content: '';*/
/*display: block;*/
/*width: 1px;*/
/*height: 95px;*/
/*background-color: #ccc;*/
/*position: absolute;*/
/*right: 0;*/
/*top: 50%;*/
/*margin-top: -47px*/
/*}*/

/*.servic_solution-box .cate-box .cate-list .cate-item.active::after, .servic_solution-box .cate-box .cate-list .cate-item:hover::after, .product-box .cate-box .cate-list .cate-item:last-child::after {*/
/*content: unset*/
/*}*/

.servic_solution-box .cate-box .cate-list .cate-item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.servic_solution-box .cate-box .cate-list .cate-item .pic-wrap {
}

.servic_solution-box .cate-box .cate-list .cate-item .pic-wrap img {
    height: 80px;
}

/*.servic_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img {*/
/*display: none*/
/*}*/

/*.servic_solution-box .cate-box .cate-list .cate-item .pic-wrap img.active {*/
/*display: none*/
/*}*/

/*.servic_solution-box .cate-box .cate-list .cate-item.active .pic-wrap img.active {*/
/*display: inline-block*/
/*}*/

.servic_solution-box .cate-box .cate-list .cate-item .text-wrap {
    margin-top: 20px
}

.servic_solution-box .cate-box .cate-list .cate-item .text-wrap p {
    font-size: 16px;
    color: #5a5a5a
}

.servic_solution-box .cate-box .cate-list .cate-item.active .text-wrap p {
    color: #fff
}

.servic_solution-box .cate-box .cate-list .cate-item .text-wrap .icon-arrow {
    display: none;
    font-size: 15px;
    color: #fff;
    padding: 12px 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    margin-top: 45px;
    background: url(../img/icon-product_arrow-down_white.png) no-repeat center center
}

.serviceability-box {
    padding-bottom: 50px;
}

.serviceability-wrap .banner-box {
    position: relative;
    margin-bottom: 35px;
    /* height: 100vh; */
    /*min-height: 700px*/
}

.serviceability-wrap .banner-box .banner-swiper {
    height: 100%
}

.serviceability-wrap .banner-box .banner-swiper .swiper-container {
    height: 100%
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide {
    position: relative
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap {
    /* position: absolute; */
    /* top: 30%; */
    width: 100%
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap h2 {
    font-size: 40px;
    color: #000;
    font-weight: 400
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap p {
    font-size: 26px;
    color: #000;
    margin-top: 10px
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap p.m-info {
    display: none;
    font-size: 28px;
    color: #000;
    margin-bottom: 40px;
    margin-top: 0
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap span {
    display: block;
    font-size: 26px;
    color: #000;
    margin-top: 20px
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    margin-top: 50px;
    padding: 14px 50px;
    background-color: #70c5c8;
    border-radius: 50px
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap {
    height: 100%
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap img {
    width: 100%;
    min-height: 100%
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1440 {
    display: initial
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1000 {
    display: none
}

.serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h795 {
    display: none
}

.serviceability-wrap .banner-box .banner-swiper .swiper-pagination {
    display: none;
    align-items: center;
    position: unset;
    width: 100%;
    padding: 0 30px;
    margin-top: 30px;
    height: 7px
}

.serviceability-wrap .banner-box .banner-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 100%;
    height: 3px;
    border-radius: 0;
    transition: all .3s ease
}

.serviceability-wrap .banner-box .banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
    height: 7px;
    background-color: #70c5c8
}

.serviceability-wrap .banner-box .banner-thumb {
    position: absolute;
    bottom: 5%;
    width: 100%
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide {
    width: 20%;
    cursor: pointer
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide span {
    position: relative;
    display: block;
    font-size: 16px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 4px solid #fff;
    transition: all .3s ease
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide span::before {
    content: '';
    visibility: hidden;
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 4px;
    width: 0%;
    background-color: #70c5c8;
    transition: width 3s linear
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide.swiper-slide-thumb-active span {
    color: #70c5c8
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide.swiper-slide-thumb-active span::before {
    visibility: visible;
    width: 100%
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide .text-wrap {
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide.swiper-slide-thumb-active .text-wrap {
    opacity: 1;
    visibility: visible
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide .text-wrap h3 {
    font-size: 12px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 15px
}

.serviceability-wrap .banner-box .banner-thumb .swiper-slide .text-wrap p {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    white-space: nowrap
}

@media (max-width: 1780px) {
    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1440 {
        display: none
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1000 {
        display: initial
    }
}

@media (max-width: 991px) {
    .serviceability-wrap .banner-box {
        height: auto;
    }

    .serviceability-wrap .banner-box .banner-swiper {
        height: auto;
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-container {
        height: auto;
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap h2 {
        font-size: 36px;
        color: #000;
        white-space: wrap
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap p {
        font-size: 36px;
        color: #000;
        margin-top: 20px
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap p.m-info {
        display: block
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap span {
        display: none
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .text-wrap a {
        display: none
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1440 {
        display: none
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h1000 {
        display: none
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-slide .pic-wrap .h795 {
        display: initial
    }

    .serviceability-wrap .banner-box .banner-swiper .swiper-pagination {
        display: flex
    }

    .serviceability-wrap .banner-box .banner-thumb {
        display: none
    }
}

/* 企业文化 */
.culture-box {
    background: url(../culture-bg.png) no-repeat top center; /*background-size:100%*/
    background-repeat-x: repeat;
}

.culture-box .culture-wrap {
}

.culture-box .bg {
    background-color: #fafafa;
}

.culture-box .culture-wrap .culture_pic-swiper {
    position: relative;
    background-color: #fff
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-slide {
    opacity: 0.1
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-slide-active {
    opacity: 1
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-slide img {
    width: 100%
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-pagination {
    display: flex;
    align-items: center;
    right: 0;
    bottom: -60px;
    width: 40%;
    margin-top: 50px;
    margin-right: 60px
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 100%;
    height: 1px;
    border-radius: 0;
    transition: all .3s ease
}

.culture-box .culture-wrap .culture_pic-swiper .swiper-pagination .swiper-pagination-bullet-active {
    height: 4px;
    background-color: #70c5c8
}

.culture-box .culture-wrap .swiper_toggle-wrap {
    position: relative;
    top: -150px;
    width: 35%;
    padding: 40px;
    background-color: #70c5c8;
    border-radius: 15px;
    z-index: 10
}

.culture-box .culture-wrap .swiper_toggle-wrap::after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% - 20px);
    border-width: 20px;
    border-style: solid;
    border-color: #70c5c8 transparent transparent transparent
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper {
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide {
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide p {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: bold;
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide-thumb-active p {
    border-color: #fff
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_intro-swiper {
    margin-top: 30px
}

.culture-box .culture-wrap .swiper_toggle-wrap .culture_intro-swiper .swiper-slide p {
    font-size: 14px;
    color: #fff;
    line-height: 26px
}

.culture_cate-swiper {
    padding-top: 80px;
    background-color: #fff;
}

.culture_cate-swiper .swiper-slide {
}

.culture_cate-swiper .swiper-slide .title {
}

.culture_cate-swiper .swiper-slide .title h3 {
    font-size: 24px
}

.culture_cate-swiper .swiper-slide .title span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin-top: 10px
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper {
    margin-top: 60px
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide {
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul {
    display: flex;
    flex-wrap: wrap
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 50px
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li:nth-child(3n) {
    margin-right: 0
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .pic-wrap {
    border-radius: 10px;
    overflow: hidden
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .pic-wrap img {
    width: 100%;
    transition: all .5s ease
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .pic-wrap img:hover {
    transform: scale(1.1)
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .text-wrap {
    margin-top: 30px
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .text-wrap h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px
}

.culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

@media (max-width: 991px) {
    .culture-box {
        margin-top: 60px;
        background-size: 100%;
    }

    .culture-box .culture-wrap .culture_pic-swiper .swiper-slide {
        opacity: 1
    }

    .culture-box .culture-wrap .culture_pic-swiper .swiper-pagination {
        display: none
    }

    .culture-box .culture-wrap .swiper_toggle-wrap {
        top: 0;
        background-color: transparent;
        width: 100%;
        padding: 0;
        margin-top: 50px
    }

    .culture-box .culture-wrap .swiper_toggle-wrap::after {
        content: none
    }

    .culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide {
        text-align: center;
        padding-bottom: 40px
    }

    .culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide p {
        display: block;
        position: relative;
        font-size: 32px;
        color: #646464;
        padding-bottom: 30px;
        border-bottom: 3px solid #70c5c8
    }

    .culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide-thumb-active p {
        border-color: #70c5c8
    }

    .culture-box .culture-wrap .swiper_toggle-wrap .culture_thumb-swiper .swiper-slide-thumb-active p::after {
        content: '';
        position: absolute;
        top: 100%;
        left: calc(50% - 16px);
        border-width: 16px;
        border-style: solid;
        border-color: #70c5c8 transparent transparent transparent
    }

    .culture-box .culture-wrap .swiper_toggle-wrap .culture_intro-swiper {
        display: none
    }

    .culture_cate-swiper .swiper-slide .title h3 {
        font-size: 44px
    }

    .culture_cate-swiper .swiper-slide .title span {
        width: 180px;
        height: 6px;
        margin-top: 20px
    }

    .culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li {
        width: 100%;
        margin-right: 0
    }

    .culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .text-wrap h4 {
        font-size: 34px;
        margin-bottom: 20px
    }

    .culture_cate-swiper .swiper-slide .swiper_nest-swiper .swiper-slide ul li .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }
}

/* 社会责任 */
.culture-box .culture-wrap.responsibility-wrap {
    background-color: #fafafa
}

.responsibility_intro-swiper {
    padding: 0 50px
}

.responsibility_intro-swiper .swiper-slide {
    display: flex;
    justify-content: space-between
}

.responsibility_intro-swiper .swiper-slide .left-wrap {
    width: 40%
}

.responsibility_intro-swiper .swiper-slide .left-wrap h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 20px
}

.responsibility_intro-swiper .swiper-slide .left-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    margin-bottom: 10px
}

.responsibility_intro-swiper .swiper-slide .right-wrap {
    width: 50%
}

.responsibility_intro-swiper .swiper-slide .right-wrap .m-pic {
    display: none
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul {
    display: flex;
    justify-content: space-between
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li {
    text-align: center;
    width: 33%
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .pic-wrap {
    height: 80px
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .pic-wrap img {
    height: 80px;
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap {
    margin-top: 20px
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap p {
    font-size: 14px;
    color: #000;
    line-height: 24px
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap p sup {
    font-size: 10px;
    vertical-align: top
}

.responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap span {
    display: block;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin: 10px 0 0
}

.responsibility_intro-swiper .swiper-slide .right-wrap > p {
    font-size: 14px;
    color: #000;
    line-height: 24px;
    text-align: right;
    margin-top: 50px
}

.responsibility_intro-swiper .swiper-slide .right-wrap > p sup {
    font-size: 10px;
    vertical-align: top
}

.report-box {
    margin-top: 60px
}

.report-box .report-wrap {
}

.report-box .report-wrap .report-swiper {
}

.report-box .report-wrap .report-swiper .title {
}

.report-box .report-wrap .report-swiper .title h3 {
    font-size: 24px
}

.report-box .report-wrap .report-swiper .title span {
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28;
    margin-top: 10px
}

.report-box .report-wrap .report-swiper .swiper-container {
    margin-top: 60px
}

.report-box .report-wrap .report-swiper .swiper-slide {
}

.report-box .report-wrap .report-swiper .swiper-slide > a {
}

.report-box .report-wrap .report-swiper .swiper-slide .pic-wrap {
    overflow: hidden
}

.report-box .report-wrap .report-swiper .swiper-slide .pic-wrap img {
    width: 100%;
    transition: all .5s ease
}

.report-box .report-wrap .report-swiper .swiper-slide:hover .pic-wrap img {
    transform: scale(1.1)
}

.report-box .report-wrap .report-swiper .swiper-slide .text-wrap {
    margin-top: 20px
}

.report-box .report-wrap .report-swiper .swiper-slide .text-wrap p {
    font-size: 16px;
    color: #000
}

.union-box {
    margin-top: 100px;
    padding: 50px 0;
    background-color: #fafafa
}

.union-box .union-wrap {
    display: flex;
    justify-content: space-between
}

.union-box .union-wrap .text-wrap {
    width: 42%
}

.union-box .union-wrap .text-wrap p {
    font-size: 14px;
    color: #000;
    line-height: 24px
}

.union-box .union-wrap .text-wrap h3 {
    font-size: 24px;
    line-height: 34px
}

.union-box .union-wrap .text-wrap span {
    display: block;
    width: 90px;
    height: 3px;
    background-color: #ffcd28;
    margin: 10px 0 20px
}

.union-box .union-wrap .pic-wrap {
    width: 52%;
    flex-shrink: 0
}

.union-box .union-wrap .pic-wrap img {
    width: 100%
}

@media (max-width: 991px) {
    .responsibility_intro-swiper .swiper-slide {
        flex-wrap: wrap
    }

    .responsibility_intro-swiper .swiper-slide .left-wrap {
        width: 100%;
        margin-bottom: 50px
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap {
        width: 100%
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap > img:first-child { /*display:none*/
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap .m-pic {
        display: initial
    }

    .responsibility_intro-swiper .swiper-slide .left-wrap h4 {
        font-size: 34px;
        line-height: 44px
    }

    .responsibility_intro-swiper .swiper-slide .left-wrap p {
        font-size: 28px;
        line-height: 44px
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap p {
        font-size: 28px;
        line-height: 34px;
        height: 60px;
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap p sup {
        font-size: 16px
    }

    .responsibility_intro-swiper .swiper-slide .right-wrap ul li .text-wrap span {
        font-size: 44px;
        margin: 20px 0 10px
    }

    .report-box .report-wrap .report-swiper .title h3 {
        font-size: 44px
    }

    .report-box .report-wrap .report-swiper .title span {
        width: 180px;
        height: 6px;
        margin-top: 20px
    }

    .report-box .report-wrap .report-swiper .swiper-wrapper {
        flex-wrap: wrap
    }

    .report-box .report-wrap .report-swiper .swiper-slide {
        margin-bottom: 50px
    }

    .report-box .report-wrap .report-swiper .swiper-slide .text-wrap p {
        font-size: 30px
    }

    .union-box .union-wrap {
        flex-wrap: wrap
    }

    .union-box .union-wrap .text-wrap {
        width: 100%;
        order: 2;
        margin-top: 50px
    }

    .union-box .union-wrap .text-wrap p {
        font-size: 28px;
        line-height: 48px
    }

    .union-box .union-wrap .text-wrap h3 {
        font-size: 44px;
        line-height: 60px
    }

    .union-box .union-wrap .text-wrap span {
        width: 160px;
        height: 6px;
        margin: 10px 0 30px
    }

    .union-box .union-wrap .pic-wrap {
        width: 100%;
        order: 1
    }
}

/* 企业新闻 */
.news-box {
    margin-top: 60px
}

.news-box .page_title-box {
    padding: 30px 0;
    border-bottom: 1px solid #646464
}

.news-box .page_title-box .page_title-wrap {
    display: flex
}

.news-box .page_title-box .page_title-wrap .left-wrap {
    width: 30%
}

.news-box .page_title-box .page_title-wrap .left-wrap h2 {
    font-size: 30px;
    color: #000;
    font-weight: lighter
}

.news-box .page_title-box .page_title-wrap .right-wrap {
    display: flex
}

.news-box .page_title-box .page_title-wrap .right-wrap .filter-box {
}

.news-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
    width: 150px
}

.news-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
    width: 100%;
    color: #5a5a5a;
    padding: 7px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.news-box .page_title-box .page_title-wrap .right-wrap .search-box {
    margin-left: 20px
}

.news-box .page_title-box .page_title-wrap .right-wrap .search-box form {
    position: relative;
    display: flex;
    align-items: center;
    width: 370px;
    margin: 0 auto
}

.news-box .page_title-box .page_title-wrap .right-wrap .search-box form input {
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: transparent
}

.news-box .page_title-box .page_title-wrap .right-wrap .search-box form button {
    position: absolute;
    right: 10px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.news-box .page_title-box .page_title-wrap .right-wrap .search-box form button img {
    width: 13px
}

.news-box .news-list {
}

.news-box .news-list .news-item {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.news-box .news-list .news-item:last-child {
    border-bottom: none
}

.news-box .news-list .news-item .left-wrap {
    width: 30%
}

.news-box .news-list .news-item .left-wrap span {
    display: inline-block;
    font-size: 30px;
    color: #000;
    padding-bottom: 5px;
    border-bottom: 3px solid #ffcd28;
    font-weight: bold;
}

.news-box .news-list .news-item .right-wrap {
    width: 70%
}

.news-box .news-list .news-item .right-wrap .month_news-list {
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #dcdcdc
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item a {
    display: block
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item h4 {
    font-size: 18px;
    color: #000
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item .date {
    display: block;
    font-size: 14px;
    color: #5a5a5a;
    margin-top: 15px
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item img {
    margin: 30px 0;
    transition: all .5s ease
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

.news-box .news-list .news-item .right-wrap .month_news-list .month_news-item .more-btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin-top: 50px;
    border: none;
    cursor: pointer
}

.news-box .pagination-box {
    padding-left: 30%;
    padding-top: 20px; /*border-top:1px solid #000*/
    text-align: center;
}

.news-box .pagination-box li {
    padding-top: 12px;
}

.news-box .pagination-box a {
    font-size: 14px;
    color: #5a5a5a;
    padding: 5px
}

.news-box .pagination-box a.active, .news-box .pagination-box a:hover, .news-box .pagination-box a:last-child {
    color: #70c5c8
}

@media (min-width: 992px) {
    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item img:hover {
        transform: scale(1.05)
    }
}

@media (max-width: 991px) {
    .news-box .page_title-box .page_title-wrap .left-wrap {
        display: none
    }

    .news-box .page_title-box .page_title-wrap .right-wrap {
        width: 100%
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .filter-box {
        width: 40%
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
        width: 100%
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
        font-size: 28px;
        width: 100%;
        padding: 15px;
        background-position-x: calc(100% - 26px);
        background-size: 26px
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .search-box {
        width: 60%
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .search-box form {
        width: 100%
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .search-box form input {
        font-size: 28px;
        padding: 15px
    }

    .news-box .page_title-box .page_title-wrap .right-wrap .search-box form button img {
        width: auto
    }

    .news-box .news-list .news-item {
        flex-wrap: wrap;
        border-width: 2px
    }

    .news-box .news-list .news-item .left-wrap {
        width: 100%;
        margin-bottom: 30px
    }

    .news-box .news-list .news-item .right-wrap {
        width: 100%
    }

    .news-box .news-list .news-item .left-wrap span {
        font-size: 50px;
        padding-bottom: 20px;
        border-bottom: 6px solid #ffcd28
    }

    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item h4 {
        font-size: 36px
    }

    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item .date {
        font-size: 26px;
        margin-top: 25px
    }

    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item img {
        width: 100%
    }

    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item p {
        font-size: 28px;
        line-height: 44px
    }

    .news-box .news-list .news-item .right-wrap .month_news-list .month_news-item .more-btn {
        font-size: 28px;
        padding: 20px 100px
    }

    .news-box .pagination-box {
        padding-left: 0;
        border-width: 2px
    }

    .news-box .pagination-box a {
        font-size: 28px;
        padding: 10px;
        margin-right: 10px
    }
}

/* 企业新闻详情 */
.news_detail-box {
    margin-top: 60px
}

.news_detail-box .page_title-box {
    padding: 30px 0;
    border-bottom: 1px solid #646464
}

.news_detail-box .page_title-box .page_title-wrap {
    display: flex
}

.news_detail-box .page_title-box .page_title-wrap .left-wrap {
    width: 30%
}

.news_detail-box .page_title-box .page_title-wrap .left-wrap h2 {
    font-size: 30px;
    color: #000;
    font-weight: lighter
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap {
    display: flex
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box {
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
    width: 150px
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
    width: 100%;
    color: #5a5a5a;
    padding: 7px 15px;
    border: 2px solid #dcdcdc;
    border-radius: 50px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box {
    margin-left: 20px
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form {
    position: relative;
    display: flex;
    align-items: center;
    width: 370px;
    margin: 0 auto
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form input {
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding: 0 10px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background-color: transparent
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form button {
    position: absolute;
    right: 10px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form button img {
    width: 13px
}

.news_detail-box .news-list {
}

.news_detail-box .news-list .news-item {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.news_detail-box .news-list .news-item:last-child {
    border-bottom: none
}

.news_detail-box .news-list .news-item .left-wrap {
    width: 30%
}

.news_detail-box .news-list .news-item .left-wrap span {
    display: inline-block;
    font-size: 30px;
    color: #000;
    padding-bottom: 5px;
    border-bottom: 3px solid #ffcd28;
    font-weight: bold;
}

.news_detail-box .news-list .news-item .right-wrap {
    width: 70%
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list {
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid #dcdcdc
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item h4 {
    font-size: 18px
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item .date {
    display: block;
    font-size: 14px;
    color: #5a5a5a;
    margin-top: 15px
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item .content-box {
    margin-top: 50px
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item img {
    margin: 30px 0;
    transition: all .5s ease
}

.news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .news_detail-box .page_title-box .page_title-wrap .left-wrap {
        display: none
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap {
        width: 100%
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box {
        width: 40%
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
        width: 100%
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
        font-size: 28px;
        width: 100%;
        padding: 15px;
        background-position-x: calc(100% - 26px);
        background-size: 26px
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box {
        width: 60%
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form {
        width: 100%
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form input {
        font-size: 28px;
        padding: 15px
    }

    .news_detail-box .page_title-box .page_title-wrap .right-wrap .search-box form button img {
        width: auto
    }

    .news_detail-box .news-list .news-item {
        flex-wrap: wrap;
        border-width: 2px
    }

    .news_detail-box .news-list .news-item .left-wrap {
        width: 100%;
        margin-bottom: 30px
    }

    .news_detail-box .news-list .news-item .right-wrap {
        width: 100%
    }

    .news_detail-box .news-list .news-item .left-wrap span {
        font-size: 50px;
        padding-bottom: 20px;
        border-bottom: 6px solid #ffcd28
    }

    .news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item h4 {
        font-size: 36px
    }

    .news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item .date {
        font-size: 26px;
        margin-top: 25px
    }

    .news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item img {
        width: 100%
    }

    .news_detail-box .news-list .news-item .right-wrap .month_news-list .month_news-item p {
        font-size: 28px;
        line-height: 44px
    }
}

/* 企业内刊 */
.magazine-box {
    margin-top: 60px
}

.magazine-box .page_title-box {
    padding: 30px 0;
    border-bottom: 1px solid #646464
}

.magazine-box .page_title-box .page_title-wrap {
    display: flex;
    justify-content: space-between
}

.magazine-box .page_title-box .page_title-wrap .left-wrap {
    width: 30%
}

.magazine-box .page_title-box .page_title-wrap .left-wrap h2 {
    font-size: 30px;
    color: #000;
    font-weight: lighter
}

.magazine-box .page_title-box .page_title-wrap .right-wrap {
    display: flex
}

.magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box {
}

.magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
    width: 150px
}

.magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
    width: 100%;
    color: #5a5a5a;
    padding: 7px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.magazine-box .magazine-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px
}

.magazine-box .magazine-list .magazine-item {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 50px
}

.magazine-box .magazine-list .magazine-item:nth-child(3n) {
    margin-right: 0
}

.magazine-box .magazine-list .magazine-item .pic-wrap {
    overflow: hidden;
    border: 1px solid #dcdcdc;
}

.magazine-box .magazine-list .magazine-item .pic-wrap img {
    width: 100%;
    transition: all .5s ease;
}

.magazine-box .magazine-list .magazine-item .text-wrap {
    padding: 20px 0
}

.magazine-box .magazine-list .magazine-item .text-wrap p {
    font-size: 18px;
    color: #000;
    font-weight: bold
}

@media (min-width: 992px) {
    .magazine-box .magazine-list .magazine-item:hover .pic-wrap img {
        transform: scale(1.05)
    }
}

@media (max-width: 991px) {
    .magazine-box .page_title-box .page_title-wrap .left-wrap {
        display: none
    }

    .magazine-box .page_title-box .page_title-wrap .right-wrap {
        width: 100%
    }

    .magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box {
        width: 100%
    }

    .magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box form {
        width: 100%
    }

    .magazine-box .page_title-box .page_title-wrap .right-wrap .filter-box form select {
        font-size: 28px;
        width: 100%;
        padding: 15px;
        background-position-x: calc(100% - 26px);
        background-size: 26px
    }

    .magazine-box .magazine-list {
        justify-content: space-between
    }

    .magazine-box .magazine-list .magazine-item {
        width: 48%;
        margin-right: 0
    }

    .magazine-box .magazine-list .magazine-item .text-wrap p {
        font-size: 28px;
        line-height: 40px
    }
}

/* 展会消息 */
.exhibition-box {
    margin-top: 60px
}

.exhibition-box .exhibition-list { /*border-bottom:2px solid #646464*/
}

.exhibition-box .exhibition-list .exhibition-item {
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.exhibition-box .exhibition-list .exhibition-item:last-child {
    border-bottom: none
}

.exhibition-box .exhibition-list .exhibition-item .left-wrap {
    width: 30%
}

.exhibition-box .exhibition-list .exhibition-item .left-wrap span {
    display: inline-block;
    font-size: 30px;
    color: #000;
    padding-bottom: 5px;
    border-bottom: 3px solid #ffcd28;
    font-weight: bold;
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap {
    width: 70%
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list {
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #dcdcdc
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item h4 {
    font-size: 18px;
    margin-bottom: 15px
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item img {
    margin: 30px 0;
    transition: all .5s ease
}

.exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

@media (min-width: 992px) {
    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item img:hover {
        transform: scale(1.05)
    }
}

@media (max-width: 991px) {
    .exhibition-box .exhibition-list .exhibition-item {
        flex-wrap: wrap;
        border-width: 2px
    }

    .exhibition-box .exhibition-list .exhibition-item .left-wrap {
        width: 100%;
        margin-bottom: 30px
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap {
        width: 100%
    }

    .exhibition-box .exhibition-list .exhibition-item .left-wrap span {
        font-size: 50px;
        padding-bottom: 20px;
        border-bottom: 6px solid #ffcd28
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item h4 {
        font-size: 36px
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item .date {
        font-size: 26px;
        margin-top: 25px
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item img {
        width: 100%
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item p {
        font-size: 28px;
        line-height: 44px
    }

    .exhibition-box .exhibition-list .exhibition-item .right-wrap .month_exhibition-list .month_exhibition-item a {
        font-size: 28px;
        padding: 20px 100px
    }
}

/* 加入我们 */
.join-box .join-wrap .title {
    text-align: center
}

.join-box .join-wrap .title h3 {
    font-size: 24px;
    color: #000
}

.join-box .join-wrap .title span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28
}

.join-box .join-wrap .intro {
    margin-top: 50px;
    text-align: center
}

.join-box .join-wrap .intro p {
    font-size: 14px;
    color: #061430;
    line-height: 22px
}

.join-box .join-wrap .recruitment-list-m {
    display: none;
}

.join-box .join-wrap .recruitment-list {
    display: flex;
    justify-content: space-between;
    margin-top: 80px
}

.join-box .join-wrap .recruitment-list .recruitment-item {
    position: relative;
    width: 23%;
    border-radius: 7px;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    overflow: hidden
}

.join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap {
    position: relative;
    overflow: hidden
}

.join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .bg {
    width: 100%;
    transition: all .5s ease
}

.join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .slogan {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .slogan .ico {
    display: block;
    margin: 0 auto;
    transition: all .5s ease;
    height: 160px;
}

.join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .slogan p {
    margin-top: 25px;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    text-align: center
}

.join-box .join-wrap .recruitment-list .recruitment-item .text-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #fff
}

.join-box .join-wrap .recruitment-list .recruitment-item .text-wrap p {
    font-size: 16px;
    color: #70c5c8;
    font-weight: bold;
    text-align: center
}

.join-box {
    margin-bottom: 100px;
}

.join-box .job-wrap {
    margin-top: 100px
}

.join-box .job-wrap .title {
    text-align: center
}

.join-box .job-wrap .title h3 {
    font-size: 24px;
    color: #000
}

.join-box .job-wrap .title span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28
}

.join-box .job-wrap form {
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    margin: 50px auto 0
}

.join-box .job-wrap form input {
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: transparent
}

.join-box .job-wrap form button {
    position: absolute;
    right: 10px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.join-box .job-wrap form button img {
    width: 13px
}

.join-box .job-wrap .job-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    padding: 50px 50px 0;
    background: url(../job-bg.png) no-repeat top left;
    background-size: 100% 100%
}

.join-box .job-wrap .job-list .job-item {
    width: 17%;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    margin-bottom: 30px
}

.join-box .job-wrap .job-list .job-item a {
    display: block;
    padding: 40px 20px
}

.join-box .job-wrap .job-list .job-item h4 {
    font-size: 18px;
    color: #000; /*white-space:nowrap;*/
    transition: all .3s ease
}

.join-box .job-wrap .job-list .job-item h4 span {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-weight: normal;
    padding: 2px 3px;
    background-color: #ffcd28;
    margin-right: 8px;
    vertical-align: top
}

.join-box .job-wrap .job-list .job-item p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    margin-top: 10px
}

.join-box .job-wrap .job-list .job-item .line {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #70c5c8;
    margin: 25px 0 40px;
    transition: all .3s ease
}

.join-box .job-wrap .job-list .job-item .date {
    display: block;
    font-size: 12px;
    color: #5a5a5a
}

.join-box .job-wrap .job-list .more-item {
    width: 100%;
    padding: 30px 0 0;
    text-align: center
}

.join-box .job-wrap .job-list .more-item .more-btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px
}

@media (min-width: 992px) {
    .join-box .join-wrap .intro p {
        white-space: nowrap
    }

    .join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .slogan .ico {
        width: 84px
    }

    .join-box .join-wrap .recruitment-list .recruitment-item:hover .pic-wrap .bg {
        transform: scale(1.1)
    }

    .join-box .join-wrap .recruitment-list .recruitment-item:hover .pic-wrap .slogan .ico {
        transform: scale(1.1)
    }

    .join-box .job-wrap .job-list .job-item:hover h4 {
        color: #70c5c8
    }

    .join-box .job-wrap .job-list .job-item:hover .line {
        width: 70px
    }
}

@media (max-width: 991px) {
    .join-box {
        margin-top: 50px
    }

    .join-box .join-wrap .title h3 {
        font-size: 40px
    }

    .join-box .join-wrap .title span {
        width: 180px;
        height: 6px;
        margin-top: 20px
    }

    .join-box .join-wrap .intro p {
        font-size: 28px;
        line-height: 44px
    }

    /*.join-box .join-wrap .recruitment-list{flex-wrap:wrap}
    .join-box .join-wrap .recruitment-list .recruitment-item{width:100%;border-radius:20px;margin-bottom:60px}
    .join-box .join-wrap .recruitment-list .recruitment-item .pic-wrap .slogan p{font-size:28px;line-height:44px;margin-top:60px}
    .join-box .join-wrap .recruitment-list .recruitment-item .text-wrap{padding:30px 0}
    .join-box .join-wrap .recruitment-list .recruitment-item .text-wrap p{font-size:40px}*/
    .join-box .join-wrap .recruitment-list {
        /*display: none;*/
    }

    .join-box .join-wrap .recruitment-list-m {
        /*display: block;*/
        margin-top: 60px;
    }

    .join-box .join-wrap .recruitment-list-m li {
        padding: 0 30px;
        margin: 0 -30px 50px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    }

    .join-box .join-wrap .recruitment-list-m .text-wrap-m {
        padding: 40px 0;
        display: flex;
        justify-content: space-between;
    }

    .join-box .join-wrap .recruitment-list-m .text-wrap-m p {
        font-size: 36px;
        color: #5a5a5a;
    }

    .join-box .join-wrap .recruitment-list-m .text-wrap-m .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-listjob_arrow-down_blue_m.png) no-repeat center center;
        transition: all .3s ease;
    }

    .join-box .job-wrap .title h3 {
        font-size: 40px
    }

    .join-box .job-wrap .title span {
        width: 180px;
        height: 6px;
        margin-top: 20px
    }

    .join-box .job-wrap form {
        width: 100%
    }

    .join-box .job-wrap form input {
        font-size: 28px;
        line-height: 44px;
        padding: 10px 20px
    }

    .join-box .job-wrap form button {
        right: 20px
    }

    .join-box .job-wrap form button img {
        width: auto
    }

    .join-box .job-wrap .job-list .job-item {
        width: 98%;
        padding: 80px 20px;
        margin-bottom: 50px
    }

    .join-box .job-wrap .job-list .job-item h4 {
        font-size: 32px
    }

    .join-box .job-wrap .job-list .job-item h4 span {
        font-size: 28px;
    }

    .join-box .job-wrap .job-list .job-item p {
        font-size: 28px;
        line-height: 44px;
        margin-top: 20px
    }

    .join-box .job-wrap .job-list .job-item .line {
        width: 100px;
        height: 3px;
        margin: 55px 0 70px
    }

    .join-box .job-wrap .job-list .job-item .date {
        font-size: 24px
    }

    .join-box .job-wrap .job-list .more-item {
        font-size: 32px;
    }

    .join-box .job-wrap .job-list .more-item .more-btn {
        font-size: 28px;
        line-height: 40px;
    }
}

/* 招聘列表 */
.join-box .job_list-pc_wrap {
    margin-top: 50px;
    display: flex
}

.join-box .job_list-pc_wrap .left-wrap {
    width: 18%;
    position: relative;
    background-color: #fafafa
}

/*.join-box .job_list-pc_wrap .left-wrap .sidenav-list{}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list>span{display:block;font-size:16px;color:#fff;padding:20px 25px;background-color:#70c5c8}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list .job_cate-list{margin-top:30px}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item{border-bottom:1px solid #dcdcdc}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item.active,.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover{background-color:#fff}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item .job_cate-link{display:block;font-size:16px;color:#5a5a5a;padding:22px 0 15px 30px}
.join-box .job_list-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item.active .job_cate-link,.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover .job_cate-link{color:#70c5c8;font-weight:bold}*/
.join-box .job_list-pc_wrap .left-wrap > span {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 20px 25px;
    background-color: #70c5c8
}

.join-box .job_list-pc_wrap .left-wrap .job_cate-list {
    margin-top: 30px
}

.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item {
    border-bottom: 1px solid #dcdcdc
}

.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item.active, .join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover {
    background-color: #fff
}

.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item .job_cate-link {
    display: block;
    font-size: 16px;
    color: #5a5a5a;
    padding: 22px 0 15px 30px
}

.join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item.active .job_cate-link, .join-box .job_list-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover .job_cate-link {
    color: #70c5c8;
    font-weight: bold
}

.join-box .job_list-pc_wrap .right-wrap {
    width: 76%;
    margin-left: 6%
}

.join-box .job_list-pc_wrap .right-wrap h4 {
    font-size: 18px;
    color: #000;
    padding: 30px 15px 5px;
    border-bottom: 1px solid #dcdcdc
}

.join-box .job_list-pc_wrap .right-wrap h4 span {
    display: none;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    margin-left: 20px
}

.join-box .job_list-pc_wrap .right-wrap h4 span b {
    font-weight: normal
}

.join-box .job_list-pc_wrap .right-wrap .job-list {
    margin-top: 20px
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item {
    display: flex
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item.hide {
    display: none
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item:nth-child(2n) {
    background-color: #fafafa
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item.filter {
    background-color: transparent
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item span {
    width: 20%;
    font-size: 14px;
    color: #5a5a5a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item span:first-of-type {
    width: 40%
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item span i {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-style: normal;
    padding: 2px 3px;
    background-color: #ffcd28;
    vertical-align: middle;
    margin-left: 8px
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item.desc {
    padding: 17px 15px
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item.desc span {
    font-weight: bold
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item a {
    display: flex;
    width: 100%;
    padding: 17px 15px
}

.join-box .job_list-pc_wrap .right-wrap .job-list .job-item:hover a span {
    color: #70c5c8
}

.join-box .job_list-m_wrap {
    display: none;
    margin-top: 60px
}

.join-box .job_list-m_wrap .job-temp {
    display: none
}

.join-box .job_list-m_wrap .job-panel {
    padding: 0 30px;
    margin: 0 -30px 50px;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%)
}

.join-box .job_list-m_wrap .job-panel.active {
}

.join-box .job_list-m_wrap .job-panel .title-wrap {
    padding: 40px 0
}

.join-box .job_list-m_wrap .job-panel.active .title-wrap {
    padding-bottom: 20px;
    border-bottom: 2px solid #646464;
    margin-bottom: 50px
}

.join-box .job_list-m_wrap .job-panel .title-wrap .text-wrap {
    display: flex;
    justify-content: space-between
}

.join-box .job_list-m_wrap .job-panel .title-wrap .text-wrap p {
    font-size: 36px;
    color: #5a5a5a
}

.join-box .job_list-m_wrap .job-panel.active .title-wrap .text-wrap p {
    color: #70c5c8
}

.join-box .job_list-m_wrap .job-panel .text-wrap .icon-arrow {
    display: inline-block;
    padding: 10px;
    border: none;
    margin-top: 0;
    background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
    transition: all .3s ease
}

.join-box .job_list-m_wrap .job-panel.active .text-wrap .icon-arrow {
    transform: rotate(180deg)
}

.join-box .job_list-m_wrap .job-panel form {
    display: none;
    position: relative;
    align-items: center;
    width: 100%;
    margin: 30px auto 0
}

.join-box .job_list-m_wrap .job-panel.active form {
    display: flex
}

.join-box .job_list-m_wrap .job-panel form input {
    width: 100%;
    font-size: 28px;
    color: #333;
    line-height: 44px;
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    background-color: transparent
}

.join-box .job_list-m_wrap .job-panel form button {
    position: absolute;
    right: 20px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.join-box .job_list-m_wrap .job-panel form button img {
    width: auto
}

.join-box .job_list-m_wrap .job-panel .job-list {
    display: none;
    border-top: 2px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.join-box .job_list-m_wrap .job-panel.active .job-list {
    display: block
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item {
    padding: 50px 0
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item:nth-child(2n+1) {
    background-color: #fafafa
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item.hide {
    display: none
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item a {
    display: block
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item p {
    display: flex;
    font-size: 34px;
    color: #5a5a5a;
    font-weight: bold;
    margin-bottom: 30px
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item p:last-child {
    margin-bottom: 0
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item p i {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    font-weight: normal;
    font-style: normal;
    padding: 2px 5px;
    background-color: #ffcd28;
    vertical-align: top;
    margin-left: 20px
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item p span {
    font-size: 28px;
    color: #5a5a5a;
    font-weight: normal;
    padding-right: 20px;
    border-right: 1px solid #5a5a5a;
    margin-right: 20px
}

.join-box .job_list-m_wrap .job-panel .job-list .job-item p span:last-child {
    border-right: none
}

.join-box .job_list-m_wrap .job-panel .more-wrap {
    display: none;
    text-align: center;
    padding: 40px 0
}

.join-box .job_list-m_wrap .job-panel .more-wrap .icon-arrow {
    display: inline-block;
    width: 25px;
    height: 16px;
    border: none;
    margin-bottom: 30px;
    background: url(../icon-nav_arrow.png) no-repeat center center
}

.join-box .job_list-m_wrap .job-panel .more-wrap p {
    font-size: 28px;
    color: #000;
    margin: 10px 0
}

@media (max-width: 991px) {
    .join-box .job_list-pc_wrap {
        display: flex
    }

    .join-box .job_list-m_wrap {
        display: none
    }
}

/* 招聘详情 */
.join-box .job_detail-pc_wrap {
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex
}

.join-box .job_detail-pc_wrap .left-wrap {
    width: 18%;
    position: relative;
    background-color: #fafafa
}

/*.join-box .job_detail-pc_wrap .left-wrap .sidenav-list{}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list>span{display:block;font-size:16px;color:#fff;padding:20px 25px;background-color:#70c5c8}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list .job_cate-list{margin-top:30px}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item{border-bottom:1px solid #dcdcdc}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item.active,.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover{background-color:#fff}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item .job_cate-link{display:block;font-size:16px;color:#5a5a5a;padding:22px 0 15px 30px}
.join-box .job_detail-pc_wrap .left-wrap .sidenav-list .job_cate-list .job_cate-item.active .job_cate-link,.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover .job_cate-link{color:#70c5c8;font-weight:bold}*/
.join-box .job_detail-pc_wrap .left-wrap > span {
    display: block;
    font-size: 16px;
    color: #fff;
    padding: 20px 25px;
    background-color: #70c5c8
}

.join-box .job_detail-pc_wrap .left-wrap .job_cate-list {
    margin-top: 30px
}

.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item {
    border-bottom: 1px solid #dcdcdc
}

.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item.active, .join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover {
    background-color: #fff
}

.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item .job_cate-link {
    display: block;
    font-size: 16px;
    color: #5a5a5a;
    padding: 22px 0 15px 30px
}

.join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item.active .job_cate-link, .join-box .job_detail-pc_wrap .left-wrap .job_cate-list .job_cate-item:hover .job_cate-link {
    color: #70c5c8;
    font-weight: bold
}

.join-box .job_detail-pc_wrap .right-wrap {
    width: 76%;
    margin-left: 6%
}

.join-box .job_detail-pc_wrap .right-wrap h4 {
    font-size: 18px;
    color: #000;
    padding: 30px 15px 5px;
    border-bottom: 1px solid #dcdcdc
}

.join-box .job_detail-pc_wrap .right-wrap h4 span {
    display: none;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    margin-left: 20px
}

.join-box .job_detail-pc_wrap .right-wrap h4 i {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-style: normal;
    padding: 2px 3px;
    background-color: #ffcd28;
    vertical-align: middle;
    margin-left: 8px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap {
    padding: 50px 15px 0
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .intro-wrap {
    margin-bottom: 70px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .intro-wrap p {
    font-size: 14px;
    color: #5a5a5a
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .intro-wrap p span {
    display: inline-block;
    font-size: 14px;
    color: #5a5a5a;
    margin-right: 30px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .content-wrap {
    margin-bottom: 40px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .content-wrap h5 {
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 15px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .content-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 28px
}

.join-box .job_detail-pc_wrap .right-wrap .job_content-wrap .btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin: 10px 0
}

.join-box .job_detail-m_wrap {
    display: none;
    margin-top: 60px
}

.join-box .job_detail-m_wrap .job-panel {
    padding: 0 30px;
    margin: 0 -30px 50px;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%)
}

.join-box .job_detail-m_wrap .job-panel .title-wrap {
    padding: 40px 0 20px;
    border-bottom: 2px solid #646464;
    margin-bottom: 50px
}

.join-box .job_detail-m_wrap .job-panel .title-wrap .text-wrap {
    display: flex;
    justify-content: space-between
}

.join-box .job_detail-m_wrap .job-panel .title-wrap .text-wrap p {
    font-size: 36px;
    color: #5a5a5a
}

.join-box .job_detail-m_wrap .job-panel .title-wrap .text-wrap p {
    color: #70c5c8
}

.join-box .job_detail-m_wrap .job-panel .title-wrap .text-wrap .icon-arrow {
    display: inline-block;
    padding: 10px;
    border: none;
    margin-top: 0;
    background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
    transition: all .3s ease;
    transform: rotate(180deg)
}

.join-box .job_detail-m_wrap .job-panel.more-panel .title-wrap {
    padding: 40px 0;
    border-bottom: 0;
    margin-bottom: 0
}

.join-box .job_detail-m_wrap .job-panel.more-panel .title-wrap .text-wrap {
    align-items: center
}

.join-box .job_detail-m_wrap .job-panel.more-panel .title-wrap .text-wrap p {
    color: #5a5a5a;
    font-weight: bold
}

.join-box .job_detail-m_wrap .job-panel.more-panel .title-wrap .text-wrap p span {
    font-size: 36px;
    color: #70c5c8
}

.join-box .job_detail-m_wrap .job-panel.more-panel .title-wrap .text-wrap .icon-arrow {
    width: 25px;
    height: 16px;
    padding: 0;
    background-image: url(../icon-nav_arrow.png);
    transform: rotate(-90deg)
}

.join-box .job_detail-m_wrap .job-panel .job-list {
    border-top: 2px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    margin-top: 50px
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item {
    padding: 50px 0;
    background-color: #fafafa
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item p {
    display: flex;
    font-size: 36px;
    color: #5a5a5a;
    font-weight: bold;
    margin-bottom: 30px
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item p:last-child {
    margin-bottom: 0
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item p i {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    font-weight: normal;
    font-style: normal;
    padding: 2px 5px;
    background-color: #ffcd28;
    vertical-align: top;
    margin-left: 20px
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item p span {
    font-size: 28px;
    color: #5a5a5a;
    font-weight: normal;
    padding-right: 20px;
    border-right: 1px solid #5a5a5a;
    margin-right: 20px
}

.join-box .job_detail-m_wrap .job-panel .job-list .job-item p span:last-child {
    border-right: none
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap {
    margin-top: 50px;
    padding-bottom: 90px
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .content-wrap {
    margin-bottom: 90px
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .content-wrap h5 {
    font-size: 28px;
    color: #5a5a5a;
    margin-bottom: 50px
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .content-wrap p {
    font-size: 28px;
    color: #5a5a5a;
    line-height: 48px;
    margin-bottom: 20px
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .content-wrap p strong {
    font-weight: bold;
    font-size: 28px;
    color: #5a5a5a;
    line-height: 48px;
    margin-bottom: 20px
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .btn-wrap {
    text-align: center
}

.join-box .job_detail-m_wrap .job-panel .job_content-wrap .btn {
    display: inline-block;
    font-size: 28px;
    color: #fff;
    padding: 20px 100px;
    background-color: #70c5c8;
    border-radius: 50px
}

@media (max-width: 991px) {
    .join-box .job_detail-pc_wrap {
        display: flex
    }

    .join-box .job_detail-m_wrap {
        display: none
    }
}

/* 联系我们-组件销售 */
.contact-box {
    margin-bottom: 50px;
}

.contact-box .contact-wrap {
    display: flex
}

.contact-box .contact-wrap .left-wrap {
    width: 15%;
    position: relative
}

.contact-box .contact-wrap .right-wrap {
    width: 70%
}

.contact-box .contact-wrap .right-wrap .contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item {
    width: 47%;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    background-color: #fff;
    margin-bottom: 40px
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child {
    position: relative;
    display: flex;
    width: 100%;
    margin-bottom: 90px
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #dcdcdc
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .pic-wrap {
    overflow: hidden
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child .pic-wrap {
    width: 48%
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .pic-wrap img {
    width: 100%;
    transition: all .5s ease
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:hover .pic-wrap img {
    transform: scale(1.1)
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap {
    padding: 30px 10px 10px 20px
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child .text-wrap {
    width: 52%;
    padding: 30px 10px 10px 50px
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap h4 {
    font-size: 16px;
    color: #000
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:hover .text-wrap h4 {
    color: #70c5c8
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap span {
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #70c5c8;
    margin: 10px 0;
    transition: all .5s ease
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item:hover .text-wrap span {
    width: 70px
}

.contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 26px
}

@media (min-width: 992px) {
    .contact-box .contact-wrap .right-wrap {
        margin-left: 15%
    }
}

@media (max-width: 991px) {
    .contact-box {
        margin-top: 70px
    }

    .contact-box .contact-wrap {
        flex-wrap: wrap
    }

    .contact-box .contact-wrap .left-wrap {
        width: 100%
    }

    .contact-box .contact-wrap .right-wrap {
        width: 100%;
        margin-top: 40px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item {
        width: 100%;
        padding: 30px 20px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child {
        flex-wrap: wrap;
        margin-bottom: 40px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child::after {
        content: none
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child .pic-wrap {
        width: 100%
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item:first-child .text-wrap {
        width: 100%;
        padding: 30px 20px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap h4 {
        font-size: 34px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap span {
        width: 135px;
        height: 5px;
        margin: 20px 0
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item:hover .text-wrap span {
        width: 155px
    }

    .contact-box .contact-wrap .right-wrap .contact-list .contact-item .text-wrap p {
        font-size: 28px;
        line-height: 44px
    }
}

/* 下载中心 */
.download-box {
}

.download-box .download-wrap {
    display: flex
}

.download-box .download-wrap .left-wrap {
    width: 15%;
    position: relative
}

.download-box .download-wrap .right-wrap {
    width: 70%
}

.download-box .download-wrap .right-wrap .download-panel select {
    width: 50%;
    color: #5a5a5a;
    padding: 7px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.download-box .download-wrap .right-wrap .download-panel .filter-box {
    border-radius: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%);
    margin-top: 40px
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .logo {
    padding: 0 20px 20px;
    text-align: left
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .logo img {
    height: 50px;
    pointer-events: none;
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item {
    display: flex
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item:nth-child(2n+1) {
    background-color: #fafafa
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item a {
    display: block;
    width: 50%;
    font-size: 14px;
    color: #5a5a5a;
    text-align: left;
    padding: 20px 0 20px 20px
}

.download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item a:hover {
    color: #70c5c8
}

.download-box .download-wrap .right-wrap .download-panel.report-panel {
}

.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box {
    text-align: center
}

.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list {
}

/*.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list .filter-item{display:none}*/
.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list .filter-item:first-child {
    display: flex
}

.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list .show_more-item {
}

.download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list .show_more-item .more-btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin: 10px 0
}

@media (min-width: 992px) {
    .download-box .download-wrap .right-wrap {
        margin-left: 15%
    }

    .download-box .download-wrap .right-wrap .download-panel {
        display: none
    }

    .download-box .download-wrap .right-wrap .download-panel.active {
        display: block
    }

    .download-box .download-wrap .right-wrap .download-panel .cate-box_m {
        display: none
    }
}

@media (max-width: 991px) {
    .download-box {
        margin-top: 60px
    }

    .download-box .download-wrap .left-wrap {
        display: none
    }

    .download-box .download-wrap .right-wrap {
        width: 100%
    }

    .download-box .download-wrap .right-wrap .download-panel {
        padding: 0 30px;
        margin: 0 -30px 50px;
        box-shadow: 0 0 15px 5px rgb(0 0 0 / 10%)
    }

    .download-box .download-wrap .right-wrap .download-panel .cate-box_m {
        padding: 40px 0
    }

    .download-box .download-wrap .right-wrap .download-panel.active .cate-box_m {
        padding-bottom: 20px;
        border-bottom: 2px solid #646464;
        margin-bottom: 50px
    }

    .download-box .download-wrap .right-wrap .download-panel .cate-box_m .text-wrap {
        display: flex;
        justify-content: space-between
    }

    .download-box .download-wrap .right-wrap .download-panel .cate-box_m .text-wrap p {
        font-size: 36px;
        color: #5a5a5a
    }

    .download-box .download-wrap .right-wrap .download-panel.active .cate-box_m .text-wrap p {
        color: #70c5c8
    }

    .download-box .download-wrap .right-wrap .download-panel .cate-box_m .text-wrap .icon-arrow {
        display: inline-block;
        padding: 10px;
        border: none;
        margin-top: 0;
        background: url(../icon-product_arrow-down_blue_m.png) no-repeat center center;
        transition: all .3s ease
    }

    .download-box .download-wrap .right-wrap .download-panel.active .cate-box_m .text-wrap .icon-arrow {
        transform: rotate(180deg)
    }

    .download-box .download-wrap .right-wrap .download-panel select {
        display: none;
        font-size: 28px;
        width: 100%;
        padding: 15px;
        background-position-x: calc(100% - 19px);
        background-size: 19px
    }

    .download-box .download-wrap .right-wrap .download-panel.active select {
        display: block
    }

    .download-box .download-wrap .right-wrap .download-panel .filter-box {
        display: none;
        box-shadow: none
    }

    .download-box .download-wrap .right-wrap .download-panel.active .filter-box {
        display: block
    }

    .download-box .download-wrap .right-wrap .download-panel.active .filter-box .logo img {
        height: 80px;
    }

    .download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item {
        flex-wrap: wrap
    }

    .download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item:nth-child(2n+1) {
        background-color: transparent
    }

    .download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item a {
        width: 100%;
        font-size: 28px;
        padding: 35px 10px
    }

    .download-box .download-wrap .right-wrap .download-panel .filter-box .filter-list .filter-item a:first-child {
        background-color: #fafafa
    }

    .download-box .download-wrap .right-wrap .download-panel.report-panel .filter-box .filter-list .show_more-item .more-btn {
        font-size: 28px;
        padding: 20px 100px
    }

}

/* 销售服务 */
.service-box {
}

.service-box .service-wrap {
}

.service-box .service-wrap .service-list {
    display: flex;
    align-items: stretch;
    padding: 50px 0;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 5px rgb(0 0 0 / 10%)
}

.service-box .service-wrap .service-list .service-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 50%;
    text-align: center
}

.service-box .service-wrap .service-list .service-item:first-child::after {
    content: '';
    display: block;
    width: 1px;
    height: 90%;
    background-color: #ccc;
    position: absolute;
    right: 0;
    top: 10%
}

.service-box .service-wrap .service-list .service-item .pic-wrap {
}

.service-box .service-wrap .service-list .service-item .pic-wrap img {
    transition: all .5s ease;
    /*height: 160px;*/
}

.service-box .service-wrap .service-list .service-item:hover .pic-wrap img {
    transform: scale(1.1)
}

.service-box .service-wrap .service-list .service-item .text-wrap {
    margin-top: 30px
}

.service-box .service-wrap .service-list .service-item .text-wrap h4 {
    font-size: 18px;
    color: #000;
    margin-bottom: 15px
}

.service-box .service-wrap .service-list .service-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

.service-box .service-wrap .service-list .service-item .text-wrap span {
    display: block;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    font-weight: bold
}

.service-box .service-wrap .service-list .service-item .text-wrap .form-btn {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    margin-top: 20px
}

.service_form-box {
    margin-top: 100px
}

.service_form-box .service_form-wrap {
}

.service_form-box .service_form-wrap form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.service_form-box .service_form-wrap form .form-group {
    width: 45%;
    margin-bottom: 30px
}

.service_form-box .service_form-wrap form .form-group.full-width {
    width: 100%
}

.service_form-box .service_form-wrap form .form-group label {
    display: block;
    font-size: 16px;
    color: #5a5a5a;
    margin-bottom: 10px
}

.service_form-box .service_form-wrap form .form-group input {
    width: 100%;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    padding: 5px 10px;
    border: 1px solid #dcdcdc
}

.service_form-box .service_form-wrap form .form-group textarea {
    width: 100%;
    height: 120px;
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px;
    padding: 5px 10px;
    border: 1px solid #dcdcdc;
    resize: none
}

.service_form-box .service_form-wrap form .form-group button {
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px;
    border: none;
    cursor: pointer
}

@media (min-width: 992px) {
    .service-box .service-wrap .service-list .service-item .pic-wrap img {
        width: 107px
    }
}

@media (max-width: 991px) {
    .service-box {
        margin-top: 60px
    }

    .service-box .service-wrap .service-list {
        flex-wrap: wrap;
        padding: 0
    }

    .service-box .service-wrap .service-list .service-item {
        width: 100%;
        padding: 70px 0
    }

    .service-box .service-wrap .service-list .service-item:first-child::after {
        width: 70%;
        height: 2px;
        left: 15%;
        right: auto;
        top: auto;
        bottom: 0
    }

    .service-box .service-wrap .service-list .service-item .text-wrap {
        margin-top: 50px
    }

    .service-box .service-wrap .service-list .service-item .text-wrap h4 {
        font-size: 36px;
        margin-bottom: 25px
    }

    .service-box .service-wrap .service-list .service-item .text-wrap p {
        font-size: 28px;
        line-height: 46px
    }

    .service-box .service-wrap .service-list .service-item .text-wrap span {
        font-size: 28px;
        line-height: 46px
    }

    .service-box .service-wrap .service-list .service-item .text-wrap .form-btn {
        font-size: 28px;
        padding: 20px 100px
    }

    .service_form-box .service_form-wrap form .form-group {
        width: 100%
    }

    .service_form-box .service_form-wrap form .form-group label {
        font-size: 32px;
        margin-bottom: 20px
    }

    .service_form-box .service_form-wrap form .form-group input {
        font-size: 28px;
        line-height: 44px;
        padding: 15px;
        border-width: 2px
    }

    .service_form-box .service_form-wrap form .form-group textarea {
        height: 200px;
        font-size: 28px;
        line-height: 44px;
        padding: 15px;
        border-width: 2px
    }

    .service_form-box .service_form-wrap form .form-group button {
        width: 100%;
        font-size: 28px;
        padding: 20px 100px
    }
}

/* 经销商查询序列号 */
.serial-box {
}

.serial-box .serial-wrap {
    background: url(../serial-bg.png) no-repeat right top
}

.serial-box .serial-wrap form {
}

.serial-box .serial-wrap form .form-group {
    margin-bottom: 40px
}

.serial-box .serial-wrap form .form-group label {
    font-size: 16px;
    color: #000;
    font-weight: bold
}

.serial-box .serial-wrap form .form-group label i {
    display: inline-block;
    width: 16px
}

.serial-box .serial-wrap form .form-group select {
    font-size: 14px;
    color: #5a5a5a;
    width: 300px;
    padding: 5px;
    border: none;
    border-bottom: 2px solid #dcdcdc;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.serial-box .serial-wrap form .form-group input {
    font-size: 14px;
    color: #5a5a5a;
    width: 300px;
    padding: 5px;
    border: none;
    border-bottom: 2px solid #dcdcdc
}

.serial-box .serial-wrap form .form-group span {
    display: block;
    font-size: 12px;
    color: #5a5a5a;
    margin-left: 64px;
    margin-top: 15px
}

.serial-box .serial-wrap form .form-group button {
    font-size: 14px;
    color: #fff;
    border: none;
    padding: 8px 35px;
    background-color: #70c5c8;
    border-radius: 50px;
    cursor: pointer
}

.serial-box .serial-wrap .info-wrap {
    margin-top: 70px
}

.serial-box .serial-wrap .info-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

.serial-box .serial_result-wrap {
    display: none;
    padding-top: 30px;
    background: url(../serial-bg.png) no-repeat right top
}

.serial-box .serial_result-wrap .title {
}

.serial-box .serial_result-wrap .title h3 {
    font-size: 24px;
    color: #000
}

.serial-box .serial_result-wrap .title span {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #ffcd28
}

.serial-box .serial_result-wrap .text-wrap {
    margin-top: 70px
}

.serial-box .serial_result-wrap .text-wrap h4 {
    font-size: 14px;
    color: #5a5a5a
}

.serial-box .serial_result-wrap .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    margin-top: 20px
}

.serial-box .serial_result-wrap .text-wrap p span {
    font-size: 14px;
    color: #5a5a5a
}

.serial-box .serial_result-wrap .status-wrap {
    display: flex;
    align-items: center;
    margin-top: 50px
}

.serial-box .serial_result-wrap .status-wrap .status-icon {
    width: 42px;
    height: 42px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    margin-right: 15px
}

.serial-box .serial_result-wrap .status-wrap .status-icon.success {
    background-image: url(../icon-success.png)
}

.serial-box .serial_result-wrap .status-wrap .status-icon.error {
    background-image: url(../icon-error.png)
}

.serial-box .serial_result-wrap .status-wrap p {
    font-size: 16px;
    color: #000;
    line-height: 24px
}

.serial-box .serial_result-wrap .status-wrap p b {
    font-size: 16px;
    color: #70c5c8;
    font-weight: bold
}

.serial-box .serial_result-wrap .btn-wrap {
    margin-top: 100px
}

.serial-box .serial_result-wrap .btn-wrap button {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    border: none;
    padding: 8px 46px;
    background-color: #70c5c8;
    border-radius: 50px;
    cursor: pointer
}

@media (max-width: 991px) {
    .serial-box {
        margin-top: 60px
    }

    .serial-box .serial-wrap {
        background: none
    }

    .serial-box .serial-wrap form .form-group {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 60px
    }

    .serial-box .serial-wrap form .form-group label {
        font-size: 32px;
        width: 20%;
        padding-top: 5px
    }

    .serial-box .serial-wrap form .form-group select {
        font-size: 28px;
        width: 80%;
        padding: 10px;
        background-position-x: calc(100% - 26px);
        background-size: 26px
    }

    .serial-box .serial-wrap form .form-group input {
        font-size: 28px;
        width: 80%;
        padding: 10px
    }

    .serial-box .serial-wrap form .form-group span {
        font-size: 24px;
        margin-left: 20%;
        margin-top: 30px
    }

    .serial-box .serial-wrap form .form-group button {
        font-size: 28px;
        padding: 16px 70px
    }

    .serial-box .serial-wrap .info-wrap p {
        font-size: 28px;
        line-height: 48px
    }

    .serial-box .serial_result-wrap {
        background: none
    }

    .serial-box .serial_result-wrap .title {
        text-align: center
    }

    .serial-box .serial_result-wrap .title h3 {
        font-size: 40px
    }

    .serial-box .serial_result-wrap .title span {
        width: 180px;
        height: 6px;
        margin-top: 20px
    }

    .serial-box .serial_result-wrap .text-wrap {
        text-align: center;
        margin-top: 100px
    }

    .serial-box .serial_result-wrap .text-wrap h4 {
        font-size: 28px
    }

    .serial-box .serial_result-wrap .text-wrap p {
        font-size: 28px;
        margin-top: 30px
    }

    .serial-box .serial_result-wrap .text-wrap p span {
        font-size: 28px
    }

    .serial-box .serial_result-wrap .status-wrap {
        flex-direction: column;
        margin-top: 100px
    }

    .serial-box .serial_result-wrap .status-wrap .status-icon {
        width: 84px;
        height: 84px;
        margin-right: 0;
        margin-bottom: 30px
    }

    .serial-box .serial_result-wrap .status-wrap p {
        font-size: 36px;
        line-height: 50px;
        text-align: center
    }

    .serial-box .serial_result-wrap .status-wrap p b {
        font-size: 36px
    }

    .serial-box .serial_result-wrap .btn-wrap {
        text-align: center;
        margin-top: 130px
    }

    .serial-box .serial_result-wrap .btn-wrap button {
        font-size: 28px;
        padding: 16px 90px
    }
}

/* 国外经销商 */
.dealer_foreign-box {
}

.dealer_foreign-box .dealer_foreign-wrap {
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px; /*border-bottom:1px solid #dcdcdc*/
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap p {
    font-size: 18px;
    color: #000;
    font-weight: bold
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap p span {
    font-size: 18px;
    color: #70c5c8;
    border-bottom: 1px solid #70c5c8
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list {
    display: flex
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item {
    text-align: center;
    margin-left: 10px
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item a {
    display: block;
    font-size: 14px;
    color: #5a5a5a;
    padding: 7px 25px;
    background-color: #fff;
    border: 2px solid #dcdcdc;
    border-radius: 50px
}

.dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item:hover a, .dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item.active a {
    color: #fff;
    background-color: #70c5c8;
    border-color: #70c5c8
}

.dealer_foreign-box .dealer_foreign-wrap .map-wrap {
    margin-top: 50px;
    text-align: center
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 50px
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item:nth-child(3n) {
    margin-right: 0
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .pic-wrap img {
    border: 1px solid #bebebe
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap {
    margin-top: 20px
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px
}

.dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

@media (max-width: 991px) {
    .dealer_foreign-box {
        margin-top: 60px
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap {
        flex-wrap: wrap;
        border-width: 2px
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap p {
        font-size: 36px
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap p span {
        font-size: 36px;
        border-width: 2px
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list {
        justify-content: space-between;
        width: 100%;
        margin-top: 30px
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item {
        width: 24%;
        margin-left: 0
    }

    .dealer_foreign-box .dealer_foreign-wrap .cate-wrap .cate-list .cate-item a {
        font-size: 28px
    }

    .dealer_foreign-box .dealer_foreign-wrap .map-wrap {
        display: none
    }

    .dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item {
        width: 100%;
        margin-right: 0
    }

    .dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap {
        margin-top: 40px
    }

    .dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap h4 {
        font-size: 32px;
        margin-bottom: 30px
    }

    .dealer_foreign-box .dealer_foreign-wrap .dealer-list .dealer-item .text-wrap p {
        font-size: 28px;
        line-height: 48px
    }
}

/* 国内经销商 */
.dealer_domestic-box {
}

.dealer_domestic-box .dealer_domestic-wrap {
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px; /*border-bottom:1px solid #dcdcdc*/
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap {
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap p {
    font-size: 18px;
    color: #000;
    font-weight: bold
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap p span {
    font-size: 18px;
    color: #70c5c8;
    border-bottom: 1px solid #70c5c8
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap {
    display: flex;
    justify-content: space-between;
    width: 60%
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap select {
    width: 42%;
    color: #5a5a5a;
    padding: 7px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 50px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url(../icon-product_arrow-down_blue_m.png);
    background-repeat: no-repeat;
    background-position-x: calc(100% - 13px);
    background-position-y: center;
    background-size: 13px
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form {
    position: relative;
    display: flex;
    align-items: center;
    width: 55%;
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form input {
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background-color: transparent
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form button {
    position: absolute;
    right: 10px;
    height: 30px;
    border: none;
    background-color: transparent;
    cursor: pointer
}

.dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form button img {
    width: 13px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 50px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap {
    width: 32%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list {
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 30px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item h4 {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item p {
    font-size: 14px;
    color: #5a5a5a;
    line-height: 24px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .pagination-box {
    margin-top: 10px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .pagination-box a {
    font-size: 14px;
    color: #5a5a5a;
    padding: 5px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .pagination-box a.active {
    color: #70c5c8
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap {
    position: relative;
    width: 60%;
    flex-shrink: 0
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap img {
    width: 100%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item {
    position: absolute;
    font-size: 14px;
    line-height: 16px;
    color: #333;
    padding-left: 16px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:hover {
    font-weight: bold
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 8px;
    height: 8px;
    background-color: #ffcd28;
    border-radius: 100%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(1) {
    left: 84.33%;
    top: 12.56%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(2) {
    left: 83.788%;
    top: 23.352%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(3) {
    left: 78.43%;
    top: 31.635%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(4) {
    left: 70.17%;
    top: 35.969%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(5) {
    left: 71.52%;
    top: 39.229%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(6) {
    left: 68.41%;
    top: 43.1336%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(7) {
    left: 74.1%;
    top: 46.7%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(8) {
    left: 76.142%;
    top: 52.9129%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(9) {
    left: 80.7%;
    top: 58.455%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(10) {
    left: 79.15%;
    top: 64.3%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(11) {
    left: 74.8%;
    top: 74.9%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(12) {
    left: 70.46%;
    top: 72.7164%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(13) {
    left: 67%;
    top: 82.7186%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(14) {
    left: 58.18%;
    top: 82.94%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(15) {
    left: 59.5%;
    top: 95.8686%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(16) {
    left: 42.51%;
    top: 79.8364%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(17) {
    left: 52.38%;
    top: 72.9021%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(18) {
    left: 63.636%;
    top: 70.716%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(19) {
    left: 63.57%;
    top: 63.3073%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(20) {
    left: 63.9%;
    top: 54.2406%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(21) {
    left: 63.5%;
    top: 46.7861%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(22) {
    left: 72.5%;
    top: 56.343%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(23) {
    left: 54.937%;
    top: 34.0654%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(24) {
    left: 53.1%;
    top: 43.9115%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(25) {
    left: 56.06%;
    top: 54.2317%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(26) {
    left: 56.04%;
    top: 65.5819%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(27) {
    left: 44.2%;
    top: 61.774%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(28) {
    left: 36.8%;
    top: 34.1734%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(29) {
    left: 34.78%;
    top: 44.2154%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(30) {
    left: 17.43%;
    top: 25.96%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(31) {
    left: 18.53%;
    top: 54.72%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(32) {
    left: 82.4%;
    top: 80.9329%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(33) {
    left: 69.5%;
    top: 85.7117%
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(34) {
    left: 61%;
    top: 86.9416%;
    padding: 0 16px 0 0
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(34):before {
    right: 0;
    left: auto
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item.cur {
    padding-left: 32px
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item.cur:before {
    width: 24px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    background-image: url(../icon-market.png);
    background-color: transparent;
    border-radius: 0
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(34).cur {
    padding: 0 32px 0 0
}

.dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap .list .item:nth-child(34).cur:before {
    left: auto;
    right: 0
}

@media (max-width: 991px) {
    .dealer_domestic-box {
        margin-top: 60px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap {
        flex-wrap: wrap
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap {
        margin-top: 50px;
        order: 2
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap p {
        font-size: 36px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .text-wrap p span {
        font-size: 36px;
        border-width: 2px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap {
        flex-wrap: wrap;
        width: 100%;
        order: 1
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap select {
        font-size: 28px;
        width: 100%;
        padding: 15px;
        background-position-x: calc(100% - 26px);
        background-size: 26px;
        margin-bottom: 30px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form {
        width: 100%
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form input {
        font-size: 28px;
        padding: 15px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form button {
        right: 20px
    }

    .dealer_domestic-box .dealer_domestic-wrap .top-wrap .filter-wrap form button img {
        width: auto
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap {
        width: 100%
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item {
        padding-bottom: 40px;
        margin-bottom: 40px
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item h4 {
        font-size: 32px;
        margin-bottom: 20px
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .dealer-list .dealer-item p {
        font-size: 28px;
        line-height: 48px
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .left-wrap .pagination-box a {
        font-size: 28px;
        padding: 10px
    }

    .dealer_domestic-box .dealer_domestic-wrap .bottom-wrap .right-wrap {
        display: none
    }

}

/* 投资者关系 */
.investor-box {
}

.investor-box .investor-wrap {
    padding: 100px 0;
    box-shadow: 0 0 20px 5px rgb(0 0 0 / 10%)
}

.investor-box .investor-wrap .pic-wrap {
    text-align: center
}

.investor-box .investor-wrap .text-wrap {
    text-align: center;
    margin-top: 70px
}

.investor-box .investor-wrap .text-wrap a {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    padding: 10px 55px;
    background-color: #70c5c8;
    border-radius: 50px
}

@media (max-width: 991px) {
    .investor-box {
        margin-top: 50px
    }

    .investor-box .investor-wrap .text-wrap a {
        font-size: 28px;
        padding: 20px 100px
    }
}