@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);
}
.wow {
    visibility: hidden;
}
html,
body {
    width: 100%;
    height: auto;
    min-height: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    -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;
}

/* 为所有具有滚动条的元素自定义滚动条样式 */
::-webkit-scrollbar {
  width: 5px; /* 设置滚动条的宽度 */
}
 
/* 设置滚动条的轨道（背景）样式 */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* 设置轨道的背景颜色 */
}
 
/* 设置滚动条的滑块（滚动条）样式 */
::-webkit-scrollbar-thumb {
  background: #888; /* 设置滑块的背景颜色 */
}
 
/* 设置滚动条滑块的hover样式 */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* 设置滑块的hover背景颜色 */
}
/*公共样式*/

.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: 44px;
    border: 1px solid #0073c8;
    text-align: center;
    line-height: 42px;
    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: 9999;
    width: 100%;
    line-height: 100px;
    text-align: center;
    color: #222;
    transition: all 0.5s;
    font-size: 16px;
    background: #222;
    box-shadow: 0px 0px 35px 0px rgba(255, 255, 255, 0.3);
}

#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 {
    width: 160px;
    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-application.ddr {
    padding-bottom: 0; 
}
/* 底部 */

#c-footer {
    color: #fff;
    background: #202021;
    padding-top: 20px;
}

#c-footer a {
    color: #a9a9a9;
    transition: .5s;
}

#c-footer a:hover {
    color: #0073c8;
}

#c-footer .c-footer-top {
    padding: 0.3rem 0;
    border-bottom: 1px solid #464647;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#c-footer .c-footer-top .c-title {
    padding-bottom: 12px;
    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: 8px;
    line-height: 26px;
    color: #a9a9a9;
    border-radius: 10px;
}

#c-footer .c-footer-top .c-right-box p {
    padding-bottom: 10px;
    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-footer-bottom .c-copyright {
    word-wrap: break-word;
    word-break: break-all;
}
#c-footer .c-title-box {
    padding: 0;
}
/* 回到顶部 */

#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-title-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 1rem;
}
.c-big-title {
    margin-bottom: .6rem;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}


/* 顶部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: #fff;
    transition: all 0.5s;
}
#c-top-banner .c-top-banner-info a:hover {
    margin-right: 12px;
    color: #23527c;
}
#c-top-banner .c-top-banner-info div {
    margin-right: 12px;
    color: #646465;
}
#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: 24px;
    line-height: 30px;
}

#c-case .c-list .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}

.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-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;
}


@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-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;
}

  
.product-desc-section1 {
    padding-top: 1rem;
  }
.product-desc-section1.ddr {
    padding-top: 0;
  }
  .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: 40%;
    z-index: 14;
    margin-bottom: 0.5rem;
  }
  .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);
    padding: 30px;
  }
  .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 .swiper-button-next {
      right: .6rem;
      background-image: url(../images/next.png);
  }
  
  .product-desc-section1 .swiper-button-prev {
      left: .6rem;
      background-image: url(../images/prev.png);
  }
  
    .product-desc-section1 .swiper-pagination {
        position: absolute;
        bottom: 20px;
    }

    .product-desc-section1 .swiper-pagination-bullet {
        opacity: 1;
        width: 10px;
        height: 10px;
        background: rgba(0, 0, 0, .1);
        margin: 0 10px;
    }

    .product-desc-section1 .swiper-pagination-bullet-active {
        background: rgba(0, 0, 0, .8);
    }

  .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;
  }
  /* ==================== 产品详情 - 板块一 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;
    white-space: pre-wrap;
    box-sizing: border-box;
    word-wrap: break-word; 
    word-break: break-all;
  }
  .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;
  }