@charset "utf-8";

/*初始化*/

* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    font-size: calc(100vw/19.2);
}

html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'WenQuanYi Micro Hei', 'Arial', 'sans-serif', \5b8b\4f53;
    font-size: 16px;
    line-height: 1.5em;
    color: #222;
    background: #fff;
}

input,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

textarea {
    resize: none;
    overflow: auto;
}

input,
button,
textarea,
select {
    border: 0;
}

img {
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

div,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* placeholder修改 */

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #999 !important;
    opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #999 !important;
}

select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}


/*公共样式*/

.c-clear {
    zoom: 1;
}

.c-clear:after {
    content: '';
    display: block;
    clear: both;
}

.c-fl {
    float: left;
}

.c-fr {
    float: right;
}

.c-container {
    position: relative;
    width: 100%;
    padding: 0 2.6rem;
}

body.c-open {
    overflow: hidden;
}


/* 公共按钮 */

.c-common-btn {
    position: relative;
    display: block;
    width: 150px;
    height: 50px;
    border: 1px solid #0073c8;
    text-align: center;
    line-height: 48px;
    color: #222;
    transition: .5s;
}

.c-common-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -34px;
    margin-top: -4px;
    width: 60px;
    height: 8px;
    transition: .5s;
}

.c-common-btn:hover,
.c-common-btn.c-dt2:hover {
    color: #fff;
    background: #0073c8;
}

.c-common-btn:hover::before {
    right: -54px;
}

.c-common-btn.c-dt1 {
    background: #0073c8;
    color: #fff;
}

.c-common-btn.c-dt2 {
    background: transparent;
    color: #fff;
}

.c-common-btn.c-dt2::before {
    background-image: url(../images/jt1.png);
}


/* 动画 */

@-webkit-keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 60px, 0);
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp2 {
    -webkit-animation-name: fadeInUp2;
    animation-name: fadeInUp2;
}


/*顶部*/

#c-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    line-height: 100px;
    text-align: center;
    color: #222;
    transition: all 0.5s;
    font-size: 16px;
    background: #222;
}

#c-header .c-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#c-header a {
    color: #222;
    transition: all 0.5s;
}

#c-header.c-head-move {
    top: -120px;
}


/*顶部logo*/

#c-header .c-logo a {
    float: left;
    text-align: left;
}

#c-header .c-logo a img {
    height: 40px;
    vertical-align: middle;
}

#c-header.c-style2 .c-logo a img:last-child {
    display: inline-block;
}


/*顶部pc导航*/

#c-header .c-nav {
    display: block;
    text-align: center;
}

#c-header .c-nav>li {
    margin: 0 38px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

#c-header .c-nav li a {
    position: relative;
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#c-header .c-nav li a i {
    margin-left: 8px;
    font-size: 20px;
}

#c-header .c-nav>li>a {
    color: #fff;
}


#c-header .c-nav>li.active>a,
#c-header .c-nav>li:hover>a {
    color: #0073c8;
}

#c-header .c-nav .c-list-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 30px;
    width: 600px;
    height: 300px;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}

#c-header .c-nav .c-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#c-header .c-nav .c-list .c-left-box {
    text-align: left;
    display: flex;
    align-items: flex-start;
}

#c-header .c-nav .c-list .c-left-box .c-item {
    margin-right: 100px;
}

#c-header .c-nav .c-list .c-left-box .c-item a:last-child {
    margin-bottom: 0;
}

#c-header .c-nav .c-list .c-left-box .c-item .c-title1 {
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 34px;
}

#c-header .c-nav .c-list .c-left-box .c-item .c-no-pointer {
    cursor: default;
}

#c-header .c-nav .c-list .c-left-box .c-item .c-title2 {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

#c-header .c-nav .c-list .c-left-box .c-item .c-title2:hover {
    color: #0073c8;
}

#c-header .c-nav .c-list .c-right-box {
    width: 25%;
}

#c-header .c-nav .c-list .c-right-box .c-img-box img {
    width: 100%;
}

#c-header .c-nav .c-list .c-right-box .c-title {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}

#c-header .c-nav .c-list .c-right-box .c-btn {
    margin: 0 auto;
    width: 170px;
    height: 42px;
    border-radius: 21px;
    line-height: 42px;
    background: #0073c8;
    color: #fff;
}


/* 语言 */

#c-header .c-language {
    position: relative;
}

#c-header .c-language a {
    display: block;
}

#c-header .c-language>a {
    padding-right: 30px;
    color: #fff;
    background: url(../images/dq.png)no-repeat right center / 20px auto;
}

#c-header.c-style2 .c-language>a {
    color: #222;
    background: url(../images/dq-h.png)no-repeat right center / 20px auto;
}

#c-header .c-language a:hover {
    color: #0073c8;
    background: url(../images/dq-h2.png)no-repeat right center / 20px auto;
}

#c-header .c-language img {
    margin-right: 20px;
    height: 20px;
    vertical-align: middle;
}

#c-header .c-language i {
    margin-left: 10px;
    font-size: 20px;
    margin-top: -2px;
    vertical-align: middle;
}

#c-header .c-language .c-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 116px;
    text-align: left;
    background: #fff;
    box-shadow: 0 2px 11px rgba(0, 0, 0, 0.05);
}

#c-header .c-language .c-list .c-item {
    line-height: 40px;
}

#c-header .c-language .c-list .c-item a {
    padding: 0 20px;
    display: block;
    transition: .5s;
    border-bottom: 1px solid #f1f1f1;
}

#c-header .c-language .c-list .c-item:last-child a {
    border: 0;
}

#c-header .c-language .c-list .c-item a:hover {
    color: #0073c8;
}


/*顶部移动端导航*/

#c-header .c-nav2 {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    font-size: 14px;
    line-height: 50px;
    overflow-y: auto;
    background: #fff;
    transition: all 0.5s;
}

.c-open #c-header .c-nav2 {
    height: calc(100% - 60px);
    height: -webkit-calc(100% - 60px);
}

#c-header .c-nav2 a {
    display: block;
    margin: 0 20px;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
    color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header .c-nav2>li:first-child {
    border-top: 1px solid #f1f1f1;
}

#c-header .c-nav2 li:hover>a,
#c-header .c-nav2 li.active>a {
    color: #0073c8
}

#c-header .c-nav2 li a i {
    float: right;
    margin-top: 15px;
    font-size: 20px;
}

#c-header .c-nav2 li ul {
    display: none;
}

#c-header .c-nav2 li ul a {
    padding-left: 15px;
}

#c-header .c-nav2 li li li a {
    padding-left: 30px;
}

#c-header .c-nav2 .c-language {
    float: left;
    position: relative;
    padding: 20px 0 0 20px;
}

#c-header .c-nav2 .c-language>a {
    margin: 0;
    display: block;
    padding: 0 5px;
    width: 80px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #f1f1f1;
}

#c-header .c-nav2 .c-language>a i {
    margin-top: 9px;
}

#c-header .c-nav2 .c-language .c-list {
    display: none;
    background: #fff;
    line-height: 40px;
    box-shadow: 0 2px 11px rgba(0, 0, 0, 0.05);
}

#c-header .c-nav2 .c-language .c-list a {
    display: block;
    padding: 0 5px;
    margin: 0;
}

#c-header .c-nav2 .c-language .c-list .c-item:last-child a {
    border-bottom: 0;
}

#c-header .c-nav2 .c-search-box {
    float: right;
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    padding: 20px 20px 0 0;
}

#c-header .c-nav2 .c-search-box form {
    position: relative;
    border: 1px solid #f1f1f1;
    line-height: 38px;
}

#c-header .c-nav2 .c-search-box form input {
    float: left;
    padding: 0 5px;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 50px);
    height: 38px;
}

#c-header .c-nav2 .c-search-box form button {
    float: right;
    width: 50px;
    height: 38px;
    color: #fff;
    background: #bb1c14;
}


/*顶部导航开关*/

#c-header .c-switch {
    position: absolute;
    top: 50%;
    right: 20px;
    display: none;
    width: 24px;
    height: 20px;
    margin-top: -10px;
    cursor: pointer;
}

#c-header .c-switch i {
    position: relative;
    display: block;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header.c-style2 .c-switch i {
    background: #222;
}

#c-header .c-switch i:nth-child(1) {
    top: 0;
}

#c-header .c-switch i:nth-child(3) {
    bottom: 0;
}

#c-header .c-switch i:nth-child(2) {
    margin: 6px 0;
}

body.c-open #c-header .c-switch i:nth-child(2) {
    opacity: 0;
}

body.c-open #c-header .c-switch i:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

body.c-open #c-header .c-switch i:nth-child(3) {
    bottom: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/*首页轮播图*/

.c-banner1-wrap {
    position: relative;
}

.c-banner1-top .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.c-banner1-top .swiper-pagination {
    bottom: 20px;
}

.c-banner1-top .swiper-pagination-bullet {
    opacity: 1;
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, .8);
}

.c-banner1-top .swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, .5);
}

.c-banner1-top .swiper-button-next {
    right: .6rem;
    background-image: url(../images/next.png);
}

.c-banner1-top .swiper-button-prev {
    left: .6rem;
    background-image: url(../images/prev.png);
}

.c-banner1-top .swiper-button-next,
.c-banner1-top .swiper-button-prev {
    top: 50%;
    width: 22px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background-size: 22px 40px;
    background-position: center;
    background-repeat: no-repeat;
}

/* 底部 */

#c-footer {
    color: #fff;
    background: #202021;
}

#c-footer a {
    color: #a9a9a9;
    transition: .5s;
}

#c-footer a:hover {
    color: #0073c8;
}

#c-footer .c-footer-top {
    padding: 1.15rem 0 1.35rem;
    border-bottom: 1px solid #464647;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#c-footer .c-footer-top .c-title {
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 28px;
}

#c-footer .c-footer-top .c-title i {
    display: none;
    transition: .5s;
}

#c-footer .c-footer-top .c-left-box {
    width: 72%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-footer .c-footer-top .c-left-box>li {
    width: 25%;
}

#c-footer .c-footer-top .c-list li {
    padding-bottom: 20px;
    line-height: 26px;
    color: #a9a9a9;
}

#c-footer .c-footer-top .c-right-box p {
    padding-bottom: 20px;
    line-height: 26px;
}

#c-footer .c-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 55px 0;
    font-size: 14px;
    line-height: 24px;
    color: #646465;
}

#c-footer .c-footer-bottom a {
    color: #646465;
}

#c-footer .c-footer-bottom a:hover {
    color: #0073c8;
}

#c-footer .c-footer-bottom .c-copyright {
    word-wrap: break-word;
    word-break: break-all;
}


/* 微信弹窗 */

#c-footer .c-weixin {
    display: none;
    position: fixed;
    z-index: 910;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

#c-footer .c-weixin .c-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -138px 0 0 -120px;
    padding: 20px;
    width: 240px;
    background: #fff;
    overflow: hidden;
}

#c-footer .c-weixin .c-img-box img {
    width: 100%;
    margin-bottom: 20px;
}

#c-footer .c-weixin .c-img-box p {
    font-size: 16px;
    line-height: 1em;
    text-align: center;
    color: #555;
}


/* 回到顶部 */

#c-go-top {
    display: none;
    position: fixed;
    z-index: 20;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: #0073c8 url(../images/goTop.png) no-repeat center;
    transition: all .5s linear;
    background-size: 26px auto;
    border-radius: 5px;
}


/* 生态产业链 */

#c-ecology {
    padding: 1.5rem 0 1.6rem;
}

#c-ecology .c-top-box {
    margin-bottom: .9rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-ecology .c-top-box .c-title {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
}

#c-ecology .c-top-box .c-text {
    width: 32.2%;
    line-height: 26px;
    color: #666;
}

#c-ecology .c-list {
    margin: 0 -15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-ecology .c-list li {
    padding: 0 15px;
    width: 33.333%;
}

#c-ecology .c-list .c-wrap {
    position: relative;
    display: block;
    transition: .5s;
    height: 7rem;
    overflow: hidden;
}

#c-ecology .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-ecology .c-list .c-wrap .c-text-box {
    position: absolute;
    left: 11%;
    bottom: 40px;
    padding: 45px;
    width: 78%;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, .5);
    transition: .5s;
}

#c-ecology .c-list .c-wrap .c-text-box .c-title {
    margin-bottom: 20px;
    font-size: 36px;
    line-height: 46px;
}

#c-ecology .c-list .c-wrap .c-text-box .c-text {
    margin-bottom: 20px;
    line-height: 26px;
}

#c-ecology .c-list .c-wrap .c-text-box .c-jt {
    opacity: 0;
    height: 8px;
    background: url(../images/jt1.png)no-repeat center;
    background-size: auto 8px;
    transition: .5s;
}

#c-ecology .c-list .c-wrap:hover {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
}

#c-ecology .c-list .c-wrap:hover .c-text-box {
    background: rgba(0, 115, 200, .9);
}

#c-ecology .c-list .c-wrap:hover .c-text-box .c-jt {
    opacity: 1;
}


/* 产品中心 */


.c-banner2 {
    margin: 0 -40px;
}

.c-banner2 .swiper-slide {
    opacity: 0!important;
}

.c-banner2 .swiper-slide-active {
    opacity: 1!important;
}

.c-banner2 .swiper-pagination {
    padding: 0 40px;
    bottom: 1rem;
    text-align: left;
}

.c-banner2 .swiper-pagination-bullet {
    background: #666;
    vertical-align: middle;
}

.c-banner2 .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
}

.c-banner2 .swiper-slide {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.c-banner2 .c-text-box {
    padding-right: 1.15rem;
    width: 32.5%;
}

.c-banner2 .c-text-box .c-title {
    padding: .9rem 0 30px;
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
}

.c-banner2 .c-text-box .c-text {
    margin-bottom: 1.25rem;
    line-height: 26px;
    color: #666;
}

.c-banner2 .c-img-box {
    width: 67.5%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .14);
    overflow: hidden;
}

.c-banner2 .c-img-box img {
    width: 100%;
}


/* 解决方案 */

#c-solution {
    padding: 2.35rem 0 0;
}

#c-solution .c-top-box {
    position: relative;
    z-index: 10;
    margin-bottom: -3rem;
}

#c-solution .c-top-box .c-title {
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
}

#c-solution .c-top-box .c-menu {
    margin-bottom: 90px;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

#c-solution .c-top-box .c-menu li {
    flex: none;
    margin-right: 48px;
    font-size: 18px;
    line-height: 28px;
    color: #999;
    cursor: pointer;
}

#c-solution .c-top-box .c-menu li:last-child {
    margin-right: 0;
}

#c-solution .c-top-box .c-menu li.active {
    color: #0073c8;
}

.c-banner3 {
    padding-top: 3rem;
}

.c-banner3 .swiper-slide {
    opacity: 0!important;
}

.c-banner3 .swiper-slide-active {
    opacity: 1!important;
}

.c-banner3 .swiper-slide {
    background: #fff;
    background: -webkit-linear-gradient(left, #f7f7f7 77.6%, #fff 77.6%);
    background: linear-gradient(to right, #f7f7f7 77.6%, #fff 77.6%);
}

.c-banner3 .swiper-slide .c-wrap {
    position: relative;
}

.c-banner3 .swiper-slide .c-wrap .c-text-box {
    padding: .95rem 0 1.8rem;
    width: 40%;
}

.c-banner3 .swiper-slide .c-wrap .c-text-box .c-title {
    margin-bottom: 30px;
    font-size: 48px;
    line-height: 58px;
}

.c-banner3 .swiper-slide .c-wrap .c-text-box .c-text {
    margin-bottom: 1.4rem;
    line-height: 26px;
    color: #666;
}

.c-banner3 .swiper-slide .c-wrap .c-text-box .c-text p {
    height: 78px;
    overflow: hidden;
}

.c-banner3 .swiper-slide .c-wrap .c-img-box {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    width: 40%;
    height: 8rem;
    overflow: hidden;
}

.c-banner3 .swiper-slide .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner3 .swiper-pagination {
    display: none;
}

.c-banner3 .swiper-button-next {
    background-image: url(../images/next-h.png);
    left: 50%;
}

.c-banner3 .swiper-button-prev {
    background-image: url(../images/prev-h.png);
    left: auto;
    right: 50%;
}

.c-banner3 .swiper-button-next:hover {
    background-image: url(../images/next.png);
    background-color: #0073c8;
}

.c-banner3 .swiper-button-prev:hover {
    background-image: url(../images/prev.png);
    background-color: #0073c8;
}

.c-banner3 .swiper-button-next,
.c-banner3 .swiper-button-prev {
    top: auto;
    bottom: 1rem;
    width: 1.4rem;
    height: 84px;
    margin-top: 0;
    background-color: #fff;
    background-size: 12px auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: .5s;
}


/* 顶部banner */

#c-top-banner {
    display: flex;
    align-items: center;
    margin-top: 100px;
    height: 3rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    position: relative;
}
#c-top-banner .c-top-banner-info {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: 30px;
    left: 2.6rem;
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}
#c-top-banner .c-top-banner-info a {
    margin-right: 12px;
    color: #646465;
    transition: all 0.5s;
}
#c-top-banner .c-top-banner-info a:hover {
    margin-right: 12px;
    color: #23527c;
}
#c-top-banner .c-title1 {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 28px;
}

#c-top-banner .c-title2 {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
}

#c-top-banner.c-dt .c-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-top-banner.c-dt .c-container>div {
    padding-right: 10px;
}

#c-top-banner.c-dt .c-img {
    width: 5.1rem;
}

#c-top-banner.c-dt .c-img img {
    width: 100%;
}


/* 产品列表 *

/* 顶部菜单 */

#c-top-menu {
    background: #f7f7f7;
}

#c-top-menu.c-dt {
    margin-top: 100px;
}

#c-top-menu .c-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    line-height: 80px;
}

#c-top-menu .c-list {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
}

#c-top-menu .c-list li {
    flex: none;
    margin-right: .8rem;
    font-size: 18px;
    border-bottom: 2px solid transparent;
    line-height: 78px;
}

#c-top-menu .c-list li a {
    display: block;
    color: #222;
}

#c-top-menu .c-list li.active {
    border-color: #0073c8;
}

#c-top-menu .c-site,
#c-top-menu .c-site a {
    color: #666;
    transition: .5s;
}

#c-top-menu .c-site a:hover {
    color: #0073c8;
}

.c-click-move.active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}

.c-click-move.active .c-site {
    display: none;
}


/* 产品概述 */

#c-summary {
    padding: 1rem 0;
    text-align: center;
}

#c-summary .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 30px;
}

#c-summary .c-text {
    font-size: 18px;
    line-height: 28px;
    color: #666;
}




/* 相关解决方案 */

#c-solution2 {
    padding: 1.2rem 0;
    background: #f6f6f8;
}

#c-solution2 .c-big-title {
    padding-bottom: .55rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

.c-banner4 {
    margin: 0 -40px;
    padding: 0 40px;
}

.c-banner4 .c-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    flex-wrap: wrap;
}

.c-banner4 .c-wrap .c-img-box {
    width: 48.4%;
    height: 4.7rem;
    overflow: hidden;
}

.c-banner4 .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner4 .c-wrap .c-text-box {
    padding: 0 .35rem;
    width: 51.6%;
    color: #222;
}

.c-banner4 .c-wrap .c-text-box .c-title {
    font-size: 30px;
    line-height: 40px;
}

.c-banner4 .c-wrap .c-text-box .c-text {
    margin: .3rem 0 .5rem;
    line-height: 26px;
    color: #666;
}

.c-banner4 .c-wrap .c-text-box .c-btn {
    width: 170px;
    border: 1px solid #222;
    line-height: 48px;
    text-align: center;
    border-radius: 25px;
    transition: .5s;
}

.c-banner4 .c-wrap:hover .c-text-box .c-btn {
    border-color: #0073c8;
    background: #0073c8;
    color: #fff;
}

.c-banner4 .swiper-button-next {
    right: 0;
    background-image: url(../images/next2.png);
}

.c-banner4 .swiper-button-prev {
    left: 0;
    background-image: url(../images/prev2.png);
}

.c-banner4 .swiper-button-next:hover {
    background-image: url(../images/next2-h.png);
}

.c-banner4 .swiper-button-prev:hover {
    background-image: url(../images/prev2-h.png);
}

.c-banner4 .swiper-button-next,
.c-banner4 .swiper-button-prev {
    top: 50%;
    width: 22px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background-size: 22px 40px;
    background-position: center;
    background-repeat: no-repeat;
}

/* 案例 */

#c-case .c-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

#c-case .c-list .c-img-box {
    width: 50%;
    height: 5.6rem;
    overflow: hidden;
}

#c-case .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-case .c-list .c-img-box img:hover {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

#c-case .c-list .c-text-box {
    padding-left: 1.2rem;
    width: 50%;
}

#c-case .c-list li:nth-child(even) {
    flex-direction: row-reverse;
}

#c-case .c-list li:nth-child(even) .c-text-box {
    padding: 0 1.2rem 0 0;
}

#c-case .c-list .c-text-box .c-title {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 35px;
    line-height: 70px;
}

#c-case .c-list .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}



#c-product .c-title-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#c-product .c-big-title {
    margin-bottom: .6rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-product.c-dt {
    padding: 1.2rem 0;
    background: #f5f5f5;
}

#c-product .c-list {
    margin: 0 -15px .4rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

#c-product .c-list li {
    margin-bottom: 30px;
    width: 33.333%;
    padding: 0 15px;
}

#c-product .c-list .c-img-box {
    padding-top: 0.5rem;
    height: 5.6rem;
    overflow: hidden;
    text-align: center;
    background: #fff;
}
#c-product .c-list .c-img-box:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

#c-product .c-list .c-img-box .title {
    font-size: 0.3rem;
    color: #000;
    line-height: 1;
}
#c-product .c-list .c-img-box .tip {
    margin-top: 0.2rem;
    font-size: 0.16rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-family: "Alibaba_PuHuiTi_Regular";
}
#c-product .c-list .c-img-box .speed {
    font-size: 0.16rem;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    font-family: "Alibaba_PuHuiTi_Regular";
}
#c-product .c-list .c-img-box img {
    width: 60%;
    height: 60%;
    object-fit: cover;
    transition: 1s;
}

#c-product .c-list .c-img-box a {
    margin: 0 auto;
    margin-bottom: 0.4rem;
}

#c-product .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
}

#c-product .c-list .c-title {
    padding-top: 15px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

#c-product .c-btn {
    margin: 0 auto;
    display: block;
    width: 206px;
    line-height: 48px;
    text-align: center;
    color: #222;
    border: 1px solid #222;
    border-radius: 25px;
    transition: .5s;
}

#c-product .c-btn:hover {
    color: #fff;
    background: #0073c8;
    border-color: #0073c8;
}
#c-product .c-btn.on i{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.c-banner5 {
    margin: 0 -40px;
    padding: 0 40px;
    text-align: center;
}

.c-banner5 .swiper-button-next {
    right: 0;
    background-image: url(../images/next2.png);
}

.c-banner5 .swiper-button-prev {
    left: 0;
    background-image: url(../images/prev2.png);
}

.c-banner5 .swiper-button-next:hover {
    background-image: url(../images/next2-h.png);
}

.c-banner5 .swiper-button-prev:hover {
    background-image: url(../images/prev2-h.png);
}

.c-banner5 .swiper-button-next,
.c-banner5 .swiper-button-prev {
    top: 50%;
    width: 22px;
    height: 40px;
    margin-top: -20px;
    z-index: 10;
    cursor: pointer;
    background-size: 22px 40px;
    background-position: center;
    background-repeat: no-repeat;
}

.c-banner5 .c-wrap {
    padding-bottom: .9rem;
    display: block;
    color: #222;
    transition: .5s;
}

.c-banner5 .c-img-box {
    height: 3.23rem;
    overflow: hidden;
}

.c-banner5 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.c-banner5 .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

.c-banner5 .c-title2 {
    padding: 0 20px;
    margin-bottom: .4rem;
    font-size: 30px;
    line-height: 40px;
}

.c-banner5 .c-btn {
    margin: 0 auto;
    width: 170px;
    border: 1px solid #222;
    line-height: 48px;
    border-radius: 25px;
    transition: .5s;
}

.c-banner5 .c-wrap:hover {
    background: #fff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .1);
}

.c-banner5 .c-wrap:hover .c-btn {
    border-color: #0073c8;
    background: #0073c8;
    color: #fff;
}


/* 公共盒子 */

.c-common-box {
    padding-bottom: 1.2rem;
}

.c-common-box .c-big-title {
    padding: 1rem 0 .8rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

.c-common-box .c-wrap {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.c-common-box .c-wrap:last-child {
    margin-bottom: 0;
}

.c-common-box.c-dt .c-wrap:nth-child(odd) {
    flex-direction: row-reverse;
}

.c-common-box .c-wrap .c-img-box {
    width: 50%;
    height: 5.6rem;
    overflow: hidden;
}

.c-common-box .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.c-common-box .c-wrap .c-img-box:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

.c-common-box .c-wrap .c-text-box {
    width: 50%;
    padding: 0 1rem;
}

.c-common-box .c-wrap .c-text-box .c-title {
    margin-bottom: .3rem;
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
}

.c-common-box .c-wrap .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}
#c-application {
    padding: 40px 0;
}
#c-application .c-product4-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
#c-application .c-product4-box .c-product4-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, .3);
    margin-right: 20px;
    color: #7e7575;
    width: 150px;
    height: 60px;
    transition: all .5s;
    border-radius: 4px;
}
#c-application .c-product4-box .c-product4-item:hover {
    color: #0073c8;
    border: 1px solid #0073c8;
}
#c-application .c-product4-box .c-product4-item.active {
    color: #fff;
    background-color: #0073c8;
    border: 1px solid #0073c8;
}
#c-equipment .c-big-title {
    margin: 1rem 0;
    font-weight: bold;
    font-size: 32px;
    line-height: 58px;
    text-align: center;
}

#c-equipment .c-list li {
    margin-bottom: 30px;
    width: 33.333%;
    padding: 0 15px;
}

#c-equipment .c-img-box {
    margin-bottom: 100px;
    width: 100%;
    padding: 0 15px;
    overflow: hidden;
}

#c-equipment .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-equipment .c-img-box:hover .c-img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

/* 公司介绍 */

#c-about .c-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
}


#c-about .c-list .c-text-box {
    padding-right: 1.2rem;
    width: 50%;
}

#c-about .c-list .c-img-box.pc {
    display: block;
}
#c-about .c-list .c-img-box.mob {
    display: none;
}
#c-about .c-list li:nth-child(1) .c-text-box .c-text {
    height: 150px;
    overflow: hidden;
    transition: .5s;
}

#c-about .c-list li:nth-child(2) .c-text-box {
    padding-left: 0.6rem;
    padding-right: 0;
}

#c-about .c-list li:nth-child(2) .c-img-box {
    padding-left: 0;
    padding-right: 0;
}

#c-about .c-list .c-img-box {
    position: relative;
    width: 48%;
}

#c-about .c-list li:nth-child(2) .c-img-box {
    width: 50%;
}

#c-about .c-list .c-img-box img {
    width: 100%;
}

#c-about .c-list .c-text-box .c-title {
    margin-bottom: .5rem;
    font-weight: bold;
    font-size: 30px;
    line-height: 58px;
    text-align: center;
}

#c-about .c-list .c-text-box .c-text {
    line-height: 30px;
    color: #666;
}

@keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@-webkit-keyframes scalemap {
    0% {
        transform: scale(0.2);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* 团队风采 */

.c-banner6 .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0 !important;
}

.c-banner6 .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.c-banner6 .c-img-box {
    width: 50%;
    height: 6.8rem;
    overflow: hidden;
}

.c-banner6 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner6 .c-text-box {
    width: 50%;
    padding: 0 1.6rem 0 1.1rem;
}

.c-banner6 .c-text-box .c-title1 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}

.c-banner6 .c-text-box .c-title2 {
    font-weight: bold;
    font-size: 48px;
    line-height: 72px;
}

.c-banner6 .c-text-box .c-title2 span {
    color: #0073c8;
}

.c-banner6 .swiper-pagination {
    padding-left: 1.1rem;
    left: 50%;
    bottom: .5rem;
    width: 50%;
    text-align: left;
}

.c-banner6 .swiper-pagination span {
    vertical-align: middle;
}

.c-banner6 .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: #0073c8;
}
#c-product4 {
    margin-bottom: 1rem;
}
#c-product4 .c-product4-title {
    font-size: 40px;
    margin: 60px 0;
    font-weight: 700;
}
#c-product4 .c-product4-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
#c-product4 .c-product4-box .c-product4-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 4rem;
    height: 3.5rem;
    margin-right: 20px;
    transition: all 0.6s;
    border: 1px solid rgba(0, 0, 0, .1);
}
#c-product4 .c-product4-box .c-product4-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
}
#c-product4 .c-product4-box .c-product4-item:hover img {
    transform: scale(1.1);
}
#c-product4 .c-product4-box .c-product4-item img {
    transition: all 0.6s;
    width: 100%;
}
#c-product4 .c-product4-box .c-product4-item h2 {
    font-size: 18px;
    color: #000;
}
/* 联系我们 */

#c-contact {
    padding-top: .6rem;
}

#c-contact .c-main-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;

    padding-right: 10%;
}

#c-contact .c-left-box {
    position: relative;
    width: 40%;
    height: 500px;
    padding: 0 2.5rem 0 1.8rem;
}

#c-contact .c-right-box {
    padding: 0 2.5rem 0 1.8rem;
    width: 50%;
}

#c-contact .c-right-box .c-menu {
    border-bottom: 1px solid #ddd;
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 30px;
    line-height: 40px;
    color: #999;
    overflow-x: auto;
}

#c-contact .c-right-box .c-menu p {
    flex: none;
    margin-right: .3rem;
    cursor: pointer;
}

#c-contact .c-right-box .c-menu p.active {
    font-weight: bold;
    color: #0073c8;
}

#c-contact .c-right-box .c-list {
    position: relative;
}

#c-contact .c-right-box .c-list .c-title {
    padding: .6rem 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}

#c-contact .c-right-box .c-list .c-text p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
    color: #666;
}

#c-contact .c-right-box .c-list .c-text p:last-child {
    margin: 0;
}

#c-contact .c-right-box .c-list .c-btn {
    margin: 35px 0 40px;
    display: block;
    width: 170px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #0073c8;
    border-radius: 25px;
}

#c-contact .c-right-box .c-code {
    display: inline-block;
}

#c-contact .c-right-box .c-code img {
    border: 1px solid #ddd;
    width: 178px;
}

#c-contact .c-right-box .c-code p {
    padding-top: 15px;
    line-height: 26px;
    text-align: center;
}


/* 地图 */

.c-map {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1!important;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.c-map .map-title {
    font-size: 14px;
    font-weight: bold;
    color: #0073c8;
}

.c-map .map-content {
    font-size: 12px;
    color: #222;
}

.c-map .anchorBL {
    display: none;
}


.c-banner7 .swiper-slide {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: .8rem;
    background: #f5f5f5;
}

.c-banner7 .c-img-box {
    width: 39%;
    height: 3.75rem;
    overflow: hidden;
}

.c-banner7 .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner7 .c-text-box {
    padding: 30px 0 30px .8rem;
    width: 61%;
}

.c-banner7 .c-text-box .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

.c-banner7 .c-text-box .c-text {
    padding-top: .3rem;
    font-size: 18px;
    line-height: 36px;
    color: #666;
}

.c-banner7 .swiper-pagination {
    left: 45%;
    bottom: .8rem;
    width: 50%;
    text-align: left;
}

.c-banner7 .swiper-pagination span {
    vertical-align: middle;
}

.c-banner7 .swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: #0073c8;
}

/* 分页 */

#c-prevNext {
    padding-top: 30px;
    text-align: center;
    line-height: 30px;
    border-top: 1px solid #ddd;
}

#c-prevNext a {
    margin: 0 15px;
    font-size: 20px;
    color: #222;
}

#c-prevNext a:hover,
#c-prevNext a.active {
    color: #0073c8;
    text-decoration: underline;
}

div.bsLogoLink,
#bsBox .bsTop,
#bsBox #bsMorePanel {
    width: 100% !important;
}

.bFind-wrapper-top {
    height: 26px !important;
}

#bsBox #bsMorePanel {
    height: 373px !important;
}

.bsPlatDiv {
    height: 312px !important;
}

.bFind {
    width: 204px !important;
}

#bsBox {
    height: 408px !important;
    width: 276px !important;
    margin-left: -138px !important;
}

.bsTop {
    width: 208px !important;
}

.bsFrameDiv div {
    width: 208px !important;
    height: 208px !important;
}

.bsFrameDiv img {
    width: 166px !important;
    height: 166px !important;
}
#c-about #labels .icon {
    background: url(../images/img025@17x21.png) no-repeat center;
    background-size: 100%;
    width: 0.2833rem;
    height: 0.35rem;
    margin-left: auto;
    margin-right: auto;
  }


  
.product-desc-section1 {
    padding-top: 1rem;
  }
  .product-desc-section1 .product-zoom {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    margin-left: 0.33rem;
    overflow: hidden;
    display: none;
    z-index: 99;
    background-color: #fff;
    border: 1px solid #eee;
  }
  .product-desc-section1 .product-zoom img {
    width: 200%;
    max-width: inherit;
  }
  .product-desc-section1 .body {
    display: flex;
    justify-content: space-between;
  }
  .product-desc-section1 .left-body {
    position: relative;
    width: 43.75%;
    z-index: 14;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper1 {
    position: relative;
    background-color: #ffffff;
    box-shadow: 0 0 10px 0 rgba(4, 0, 0, 0.08);
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper1 img {
    width: 100%;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-prev,
  .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-prev {
    left: 20px;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-next {
    right: 20px;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper2 {
    margin-top: 0.521vw;
    padding-right: 5.729vw;
    margin-left: -0.521vw;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper2 .swiper-slide {
    padding: 0.521vw;
    cursor: pointer;
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper2 .image {
    background-color: #ffffff;
    box-shadow: 0vw 0vw 0.469vw 0vw rgba(4, 0, 0, 0.08);
  }
  .product-desc-section1 .left-body .product-desc-section1-swiper2 .image img {
    width: 100%;
  }
  .product-desc-section1 .right-body {
    width: 49%;
  }
  .product-desc-section1 .right-body .text1 {
    font-size: 2.083vw;
    color: #000;
    line-height: 1.1;
    padding-bottom: 1.563vw;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 1.563vw;
    font-family: "Montserrat-Regular";
  }
  .product-desc-section1 .right-body .text2 {
    font-size: 0.833vw;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 4.167vw;
  }
  .product-desc-section1 .right-body .text3 {
    font-size: 1.563vw;
    border-bottom: 1px solid #F0F0F0;
    padding-bottom: 1.563vw;
    margin-bottom: 1.563vw;
  }
  .product-desc-section1 .right-body .itembox {
    margin-bottom: 3.125vw;
  }
  .product-desc-section1 .right-body .item {
    border: 0.052vw solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 1.563vw 1.042vw;
    transition: all 0.4s;
  }
  .product-desc-section1 .right-body .item:hover {
    background-color: #cf3b1b;
  }
  .product-desc-section1 .right-body .item:hover .text {
    color: #fff;
  }
  .product-desc-section1 .right-body .item:hover .icon {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  }
  .product-desc-section1 .right-body .item .icon {
    width: 1.146vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.781vw;
    transition: all 0.4s;
  }
  .product-desc-section1 .right-body .item .text {
    font-size: 0.833vw;
    color: #000;
    transition: all 0.4s;
  }
  .product-desc-section1 .right-body .more-btn {
    width: 13.021vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.052vw solid rgba(0, 0, 0, 0.06);
    padding: 1.042vw;
  }
  .product-desc-section1 .right-body .more-btn:hover {
    background-color: #cf3b1b;
    transition: all 0.4s;
  }
  .product-desc-section1 .right-body .more-btn:hover .text {
    color: #fff;
  }
  .product-desc-section1 .right-body .more-btn .icon {
    width: 0.938vw;
    flex-shrink: 0;
    margin-right: 0.729vw;
    font-size: 0.625vw;
  }
  .product-desc-section1 .right-body .more-btn .text {
    font-size: 1.042vw;
    color: #cf3b1b;
    line-height: 1.1;
  }
  @media screen and (max-width: 749px) {
    .product-desc-section1 {
      padding-top: 40px;
      padding-bottom: 40px;
    }
    .product-desc-section1 .product-zoom {
      display: none!important;
      border: 1px solid #eee;
    }
    .product-desc-section1 .body {
      display: block;
    }
    .product-desc-section1 .left-body {
      width: 100%;
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper1 {
      box-shadow: 0px 0px 9px 0px rgba(4, 0, 0, 0.08);
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-prev {
      left: 8px;
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper1 .swiper-button-next {
      right: 15px;
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper2 {
      margin-top: 5px;
      padding-right: 55px;
      margin-left: -10px;
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper2 .swiper-slide {
      padding: 8px;
    }
    .product-desc-section1 .left-body .product-desc-section1-swiper2 .image {
      box-shadow: 0px 0px 9px 0px rgba(4, 0, 0, 0.08);
    }
    .product-desc-section1 .right-body {
      width: 100%;
      margin-top: 30px;
    }
    .product-desc-section1 .right-body .text1 {
      font-size: 18px;
      padding-bottom: 10px;
      margin-bottom: 10px;
    }
    .product-desc-section1 .right-body .text2 {
      font-size: 14px;
      margin-bottom: 30px;
    }
    .product-desc-section1 .right-body .text3 {
      font-size: 15px;
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
    .product-desc-section1 .right-body .itembox {
      margin-bottom: 15px;
    }
    .product-desc-section1 .right-body .item {
      border: 1px solid rgba(0, 0, 0, 0.06);
      padding: 20px 10px;
    }
    .product-desc-section1 .right-body .item .icon {
      width: 20px;
      margin-bottom: 10px;
    }
    .product-desc-section1 .right-body .item .text {
      font-size: 12px;
    }
    .product-desc-section1 .right-body .more-btn {
      width: 100%;
      border: 1px solid rgba(0, 0, 0, 0.06);
      padding: 15px 10px;
    }
    .product-desc-section1 .right-body .more-btn .icon {
      width: 16px;
      margin-right: 7px;
      font-size: 12px;
    }
    .product-desc-section1 .right-body .more-btn .text {
      font-size: 14px;
    }
  }
  /* ==================== 产品详情 - 板块一 End ==================== */
  /* ==================== 产品详情 - 板块二 Start ==================== */
  .product-desc-section2 {
    background-color: #fff;
    padding-bottom: 7.813vw;
  }
  .product-desc-section2 .table {
    width: 100%;
  }
  .product-desc-section2 .table table {
    border-collapse: collapse;
    width: 100%;
  }
  .product-desc-section2 .table table th {
    background-color: #EEEEEE;
    padding-top: 1.563vw;
    padding-bottom: 1.563vw;
    text-align: center;
    color: #000;
    font-size: 1.25vw;
    font-family: "Alibaba_PuHuiTi_Regular";
    font-weight: 400;
  }
  .product-desc-section2 .table table td {
    border: 1px solid #eee;
    padding: 1.042vw;
    color: rgba(0, 0, 0, 0.6);
    font-size: 0.833vw;
  }
  .product-desc-section2 .table table td strong {
    font-weight: 400;
    color: #000;
    display: block;
    text-align: center;
    font-size: 1.042vw;
  }
  .product-desc-section2 .content {
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.833vw;
    line-height: 1.8;
  }
  .product-desc-section2 .swiper-slide {
    padding-bottom: 10px;
  }
  @media screen and (min-width: 1920px) {
    .product-desc-section2 {
      padding-bottom: 150px;
    }
    .product-desc-section2 .table table th {
      padding-top: 30px;
      padding-bottom: 30px;
      font-size: 24px;
    }
    .product-desc-section2 .table table td {
      border: 1px solid #eee;
      padding: 20px;
      font-size: 16px;
    }
    .product-desc-section2 .table table td strong {
      font-size: 20px;
    }
    .product-desc-section2 .content {
      font-size: 16px;
    }
  }
  @media screen and (max-width: 749px) {
    .product-desc-section2 {
      padding-bottom: 38px;
    }
    .product-desc-section2 .table table th {
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 14px;
    }
    .product-desc-section2 .table table td {
      border: 1px solid #eee;
      padding: 10px;
      font-size: 12px;
    }
    .product-desc-section2 .table table td strong {
      font-size: 12px;
    }
    .product-desc-section2 .content {
      font-size: 14px;
    }
  }