@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 1.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;
    background-image: url(jt2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 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(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;
}

#c-header.c-style2 {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}

#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-logo a img:last-child,
#c-header.c-style2 .c-logo a img:first-child {
    display: none;
}

#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;
}

#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-style2 .c-nav>li>a {
    color: #222;
}

#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: 50px 1.6rem;
    width: 100%;
    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;
    width: 75%;
}

#c-header .c-nav .c-list .c-left-box .c-item {
    width: 25%;
}

#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(dq.png)no-repeat right center / 20px auto;
}

#c-header.c-style2 .c-language>a {
    color: #222;
    background: url(dq-h.png)no-repeat right center / 20px auto;
}

#c-header .c-language a:hover {
    color: #0073c8;
    background: url(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 {
    background: #fff;
}

.c-banner1-top .swiper-slide {
    position: relative;
    overflow: hidden;
    z-index: 1 !important;
    opacity: 0 !important;
}

.c-banner1-top .swiper-slide-active {
    z-index: 2 !important;
    opacity: 1 !important;
}

.c-banner1-top .swiper-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.c-banner1-top .swiper-slide .c-text-box {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    padding: 0 1.6rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

.c-banner1-top .swiper-slide .c-text-box .c-title {
    font-size: 45px;
	font-family:"Berlin Sans FB Demi"
    line-height: 80px;
}

.c-banner1-top .swiper-slide .c-text-box .c-subtitle {
    padding: .45rem 0 .75rem;
    font-size: 20px;
    line-height: 28px;
}

.c-banner1-top .swiper-pagination {
    bottom: 20px;
    display: none;
}

.c-banner1-top .swiper-pagination-bullet {
    opacity: 1;
    background: #fff;
}

.c-banner1-top .swiper-pagination-bullet-active {
    background: #0073c8;
}

.c-banner1-top .swiper-button-next {
    right: .6rem;
    background-image: url(next.png);
}

.c-banner1-top .swiper-button-prev {
    left: .6rem;
    background-image: url(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-banner1-bottom {
    padding: 0 20px;
    position: absolute;
    left: 50%;
    bottom: 60px;
    width: 100%;
    max-width: 1000px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-banner1-bottom .swiper-slide {
    position: relative;
    border-bottom: 2px solid #999;
    padding: 22px 0;
    line-height: 26px;
    text-align: center;
    color: #999;
    transition: .3s;
    cursor: pointer;
}

.c-banner1-bottom .swiper-slide::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: #fff;
    transition: 0s;
}

.c-banner1-bottom .swiper-slide-thumb-active::before {
    width: 100%;
    transition: 4s linear;
}

.c-banner1-bottom .swiper-slide-thumb-active {
    color: #fff;
}


/* 底部 */

#c-footer {
    color: #fff;
    background: #10357E;
}

#c-footer a {
    color: #ffffff;
    transition: .5s;
}

#c-footer a:hover {
    color: #0073c8;
}

#c-footer .c-footer-top {
    padding: 1.15rem 0 1.35rem;
    border-bottom: 1px solid #fff;
    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: #fff;
}

#c-footer .c-footer-bottom a {
    color: #fff;
}

#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(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(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-news {
    padding: 1.45rem 0 1.65rem;
}

#c-news .c-common-btn {
    margin-right: 34px;
}

#c-news .c-top-box {
    margin-bottom: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#c-news .c-top-box .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

#c-news .c-list {
    margin: 0 -25px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-news .c-list li {
    padding: 0 25px;
    width: 33.333%;
}

#c-news .c-list .c-wrap {
    display: block;
}

#c-news .c-list .c-wrap .c-img-box {
    height: 3.05rem;
    overflow: hidden;
}

#c-news .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-news .c-list .c-wrap .c-title {
    margin: 35px 0 10px;
    font-size: 22px;
    line-height: 32px;
    color: #222;
    transition: .5s;
}

#c-news .c-list .c-wrap .c-time {
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

#c-news .c-list .c-wrap .c-text {
    margin: .3rem 0 .5rem;
    line-height: 26px;
    color: #666;
}

#c-news .c-list .c-wrap .c-jt {
    height: 8px;
    background: url(jt3.png)no-repeat left center;
    background-size: auto 8px;
}

#c-news .c-list .c-wrap:hover .c-jt {
    background: url(jt4.png)no-repeat left center;
    background-size: auto 8px;
}

#c-news .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

#c-news .c-list .c-btn {
    color: #0073c8;
    line-height: 26px;
}

#c-news.c-dt {
    padding-bottom: 0;
}

#c-news.c-dt .c-list .c-wrap:hover .c-title {
    color: #0073c8;
}

#c-news.c-dt .c-list li {
    margin-bottom: .8rem;
}


/* 产品中心 */

#c-product {
    padding: 1.55rem 0 1.2rem;
    background: #f7f7f7;
}

#c-product .c-top-box {
    margin-bottom: .6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#c-product .c-top-box .c-title {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
}

#c-product .c-top-box .c-menu {
    overflow-x: auto;
    width: 67.5%;
    display: flex;
    align-items: center;
    font-size: 18px;
    line-height: 68px;
}

#c-product .c-top-box .c-menu li {
    flex: none;
    position: relative;
    width: 25%;
    color: #666;
    border-bottom: 2px solid #c6c6c6;
    cursor: pointer;
}

#c-product .c-top-box .c-menu li::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    width: 0;
    background: #0073c8;
    transition: 0s;
}

#c-product .c-top-box .c-menu li.active {
    color: #0073c8;
}

#c-product .c-top-box .c-menu li.active::before {
    width: 100%;
    transition: 4s linear;
}

.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: #222;
}

.c-banner3 {
    padding-top: 3rem;
}

.c-banner3 .swiper-slide {
    opacity: 0!important;
}

.c-banner3 .swiper-slide-active {
    opacity: 1!important;
}

.c-banner3 .swiper-slide {
    padding: 0 1.6rem;
    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(next-h.png);
    left: 50%;
}

.c-banner3 .swiper-button-prev {
    background-image: url(prev-h.png);
    left: auto;
    right: 50%;
}

.c-banner3 .swiper-button-next:hover {
    background-image: url(next.png);
    background-color: #0073c8;
}

.c-banner3 .swiper-button-prev:hover {
    background-image: url(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: 5rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
}

#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-product2 {
    text-align: center;
}

#c-product2 .c-top-box {
    text-align: center;
    padding: 1.15rem 0 1rem;
}

#c-product2 .c-top-box .c-title {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

#c-product2 .c-top-box .c-text {
    font-size: 18px;
    line-height: 28px;
    color: #666;
}

#c-product2 .c-bottom-box {
    padding-bottom: 1.1rem;
    background: #f7f7f7;
}

#c-product2 .c-bottom-box .c-title {
    padding: .95rem 0 .5rem;
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
    color: #666;
}

#c-product2 .c-list {
    margin: 0 -15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-product2 .c-list li {
    width: 33.33%;
    margin-bottom: 30px;
    padding: 0 15px;
}

#c-product2 .c-list .c-wrap {
    padding-bottom: .9rem;
    display: block;
    color: #222;
    transition: .5s;
}

#c-product2 .c-list .c-img-box {
    height: 3.23rem;
    overflow: hidden;
}

#c-product2 .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product2 .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product2 .c-list .c-title2 {
    padding: 0 20px;
    margin-bottom: .4rem;
    font-size: 30px;
    line-height: 40px;
}

#c-product2 .c-list .c-btn {
    margin: 0 auto;
    width: 170px;
    border: 1px solid #222;
    line-height: 48px;
    border-radius: 25px;
    transition: .5s;
}

#c-product2 .c-list .c-wrap:hover {
    background: #fff;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .1);
}

#c-product2 .c-list .c-wrap:hover .c-btn {
    border-color: #0073c8;
    background: #0073c8;
    color: #fff;
}


/* 顶部菜单 */

#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-product3 .c-list li {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#c-product3 .c-list li:last-child {
    margin-bottom: 1rem;
}

#c-product3 .c-list li:nth-child(even) {
    flex-direction: row-reverse;
}

#c-product3 .c-list .c-img-box {
    width: 50%;
    height: 5.6rem;
    overflow: hidden;
    transition: .5s;
}

#c-product3 .c-list li:hover .c-img-box {
    background: #f5f5f5;
}

#c-product3 .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-product3 .c-list .c-text-box {
    width: 50%;
    padding: 0 .9rem;
}

#c-product3 .c-list .c-text-box .c-title {
    font-weight: bold;
    font-size: 60px;
    line-height: 70px;
}

#c-product3 .c-list .c-text-box .c-subtitle {
    padding: 20px 0 30px;
    font-weight: bold;
    font-size: 28px;
    line-height: 38px;
}

#c-product3 .c-list .c-text-box .c-text {
    font-size: 18px;
    line-height: 38px;
    color: #666;
}

#c-product3 .c-list .c-ico-box {
    padding-top: .5rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-product3 .c-list .c-ico-box .c-item {
    margin: 0 30px 30px 0;
    width: 90px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#c-product3 .c-list .c-ico-box .c-item .c-img-box2 {
    overflow: hidden;
    height: 60px;
}

#c-product3 .c-list .c-ico-box .c-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-product3 .c-list .c-ico-box .c-item .c-title2 {
    padding-bottom: 10px;
    color: #666;
    line-height: 1.5em;
    text-align: center;
}


/* 相关解决方案 */

#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: 6.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(next2.png);
}

.c-banner4 .swiper-button-prev {
    left: 0;
    background-image: url(prev2.png);
}

.c-banner4 .swiper-button-next:hover {
    background-image: url(next2-h.png);
}

.c-banner4 .swiper-button-prev:hover {
    background-image: url(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-news2 .c-big-title {
    padding: 1.1rem 0;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-news2 .c-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-news2 .c-list li {
    margin-bottom: 20px;
    width: 26.7%;
}

#c-news2 .c-list .c-wrap {
    display: block;
    color: #222;
}

#c-news2 .c-list .c-wrap .c-title {
    font-size: 22px;
    line-height: 32px;
}

#c-news2 .c-list .c-wrap .c-time {
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0 .3rem;
    color: #999;
}

#c-news2 .c-list .c-wrap .c-text {
    margin-bottom: .7rem;
    line-height: 26px;
    color: #666;
}

#c-news2 .c-list .c-wrap .c-more {
    line-height: 26px;
    transition: .5s;
}

#c-news2 .c-list .c-wrap:hover .c-more {
    color: #0073c8;
}


/* 底部链接 */

#c-common-link {
    padding: 1.2rem 0;
}

#c-common-link .c-list {
    margin: 0 -20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-common-link .c-list li {
    width: 50%;
    padding: 0 20px;
}

#c-common-link .c-list .c-wrap {
    padding: .6rem;
    display: block;
    position: relative;
    color: #222;
    line-height: 40px;
    background: #f5f5f5;
    transition: .5s;
}

#c-common-link .c-list .c-wrap .c-en-title {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1;
    width: 100%;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1em;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: rgba(0, 0, 0, .05);
}

#c-common-link .c-list .c-wrap .c-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

#c-common-link .c-list .c-wrap .c-box .c-title {
    font-size: 30px;
}

#c-common-link .c-list .c-wrap .c-box .c-right-box {
    position: relative;
}

#c-common-link .c-list .c-wrap .c-box .c-right-box .c-text {
    transition: .5s;
}

#c-common-link .c-list .c-wrap .c-box .c-right-box .c-jt {
    opacity: 0;
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-image: url(jt1.png);
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat;
    transition: .5s;
}

#c-common-link .c-list .c-wrap:hover {
    background: #0073c8;
}

#c-common-link .c-list .c-wrap:hover .c-box {
    color: #fff;
}

#c-common-link .c-list .c-wrap:hover .c-box .c-right-box .c-text {
    opacity: 0;
}

#c-common-link .c-list .c-wrap:hover .c-box .c-right-box .c-jt {
    opacity: 1;
    left: 0;
}


/* 案例 */

#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: 60px;
    line-height: 70px;
}

#c-case .c-list .c-text-box .c-text {
    line-height: 26px;
    color: #666;
}


/* 相关产品 */

#c-product4 {
    padding: 1.2rem 0;
    background: #f6f6f8;
}

#c-product4 .c-big-title {
    margin-bottom: .55rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;

    text-align: left;
}

.c-banner5 {
    margin: 0 -40px;
    padding: 0 40px;
    text-align: center;
}

.c-banner5 .swiper-button-next {
    right: 0;
    background-image: url(next2.png);
}

.c-banner5 .swiper-button-prev {
    left: 0;
    background-image: url(prev2.png);
}

.c-banner5 .swiper-button-next:hover {
    background-image: url(next2-h.png);
}

.c-banner5 .swiper-button-prev:hover {
    background-image: url(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: 4.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-plan .c-wrap {
    position: relative;
    padding: .7rem 0;
    text-align: center;
    color: #fff;
    /*background: url(hzjh.jpg) no-repeat center;*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#c-plan .c-wrap .c-box {
    position: relative;
    z-index: 2;
}

#c-plan .c-wrap .c-title {
    margin-bottom: .5rem;
    font-size: 48px;
    line-height: 58px;
}

#c-plan .c-wrap .c-btn {
    line-height: 26px;
    color: #fff;
}

#c-plan .c-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}


/* 多项专利布局 */

#c-common-box2 {
    padding: 1.2rem 0;
    background: #f5f5f5;
    text-align: center;
}

#c-common-box2 .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

#c-common-box2 .c-subtitle {
    padding: 20px 0 .6rem;
    font-size: 18px;
    line-height: 28px;
}

#c-common-box2 .c-wrap {
    margin: 0 -15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-common-box2 .c-wrap .c-item {
    width: 50%;
    padding: 0 15px;
}

#c-common-box2 .c-wrap .c-item .c-img-box {
    position: relative;
    background: #fff;
    overflow: hidden;
}

#c-common-box2 .c-wrap .c-item .c-img-box img {
    width: 100%;
}

#c-common-box2 .c-wrap .c-item .c-img-box .c-mask {
    position: absolute;
    bottom: 25.816%;
    left: 14%;
    width: 71.6%;
    height: 100%;
    background: #fff;
    transition: 3s linear;
}

#c-common-box2 .c-wrap .c-item .c-img-box.active .c-mask {
    bottom: 100%;
}


/* 研发合作 */

#c-development .c-big-title {
    padding: 1rem 0 .6rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-development .c-list {
    margin: 0 -15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    text-align: center;
}

#c-development .c-list li {
    width: 50%;
    margin-bottom: 30px;
    padding: 0 15px;
}

#c-development .c-list .c-wrap {
    padding: 1rem;
    background: #f5f5f5;
}

#c-development .c-list .c-wrap .c-num {
    margin-bottom: -90px;
    font-weight: bold;
    font-size: 150px;
    line-height: 1em;
    color: #666;
    opacity: .1;
}

#c-development .c-list .c-wrap .c-title {
    margin-bottom: 60px;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}

#c-development .c-list .c-wrap .c-text {
    font-size: 18px;
    line-height: 36px;
    color: #666;
}


/* SCY每年耗费巨资引进先进设备 */

#c-equipment .c-big-title {
    margin-bottom: .6rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-equipment.c-dt {
    padding: 1.2rem 0;
    background: #f5f5f5;
}

#c-equipment .c-list {
    margin: 0 -15px .4rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
}

#c-equipment .c-list li {
    margin-bottom: 30px;
    width: 33.333%;
    padding: 0 15px;
}

#c-equipment .c-list .c-img-box {
    height: 3.6rem;
    overflow: hidden;
}

#c-equipment .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-equipment .c-list .c-wrap:hover .c-img-box img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

#c-equipment .c-list .c-title {
    padding-top: 15px;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
}

#c-equipment .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-equipment .c-btn:hover {
    color: #fff;
    background: #0073c8;
    border-color: #0073c8;
}
#c-equipment .c-btn.on i{
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* SCY产品保固政策 */

#c-policy .c-big-title {
    padding: 1rem 0 .6rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-policy .c-main-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-policy .c-left-box {
    position: sticky;
    top: 0;
    width: 27.5%;
}

#c-policy .c-left-box .c-list li {
    margin-right: .4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .3rem;
    padding: .4rem .35rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: .5s;
    cursor: pointer;
}

#c-policy .c-left-box .c-list li:last-child {
    margin-bottom: 0;
}

#c-policy .c-left-box .c-list li.active {
    padding-right: .75rem;
    margin-right: 0;
    color: #fff;
    background: #0073c8;
    border-color: #0073c8;
}

#c-policy .c-left-box .c-list .c-img-box {
    width: 20%;
}

#c-policy .c-left-box .c-list .c-img-box img {
    width: 100%;
}

#c-policy .c-left-box .c-list .c-text-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 73.5%;
    line-height: 34px;
}

#c-policy .c-left-box .c-list .c-text-box .c-title {
    font-size: 24px;
}

#c-policy .c-left-box .c-list .c-text-box i {
    font-size: 20px;
}

#c-policy .c-right-box {
    padding: .45rem;
    width: 68.75%;
    border: 1px solid #ddd;
    border-radius: 10px;
}

#c-policy .c-right-box .c-list li {
    display: none;
}

#c-policy .c-right-box .c-list li.active {
    display: block;
}

#c-policy .c-right-box .c-list .c-text {
    line-height: 36px;
}


/* 认证体系 */

#c-system .c-text-box {
    padding-top: 1rem;
    line-height: 30px;
}

#c-system .c-text-box img {
    max-width: 100%;
    height: auto!important;
}


/* 公司介绍 */

#c-about .c-list li {
    padding: 40px 0 0 1.6rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-about .c-list li:nth-child(2) {
    padding: 0 1.6rem;
    flex-direction: row-reverse;
    align-items: center;
}

#c-about .c-list .c-text-box {
    padding-right: 1.2rem;
    width: 45.4545%;
}

#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(1).active .c-text-box .c-text {
    height: auto;
}

#c-about .c-list li:nth-child(1).active .c-btn i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#c-about .c-list li:nth-child(2) .c-text-box {
    padding: 0 0 0 1.2rem;
    width: 50%;
}

#c-about .c-list .c-img-box {
    position: relative;
    width: 54.5455%;
}

#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: 48px;
    line-height: 58px;
}

#c-about .c-list li:nth-child(1) .c-text-box .c-title {
    margin: 0.1rem 0 .5rem;
}

#c-about .c-list .c-text-box .c-text {
    line-height: 30px;
    color: #666;
}

#c-about .c-list .c-text-box .c-btn {
    margin: .5rem 0 1.1rem;
    display: block;
    width: 170px;
    line-height: 48px;
    text-align: center;
    color: #222;
    border: 1px solid #222;
    border-radius: 25px;
    transition: .5s;
    cursor: pointer;
}

#c-about .c-list .c-text-box .c-btn:hover {
    color: #fff;
    background: #0073c8;
    border-color: #0073c8;
}

#c-about .c-list .c-text-box .c-num-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#c-about .c-list .c-text-box .c-num-box .c-top-box {
    display: flex;
    align-items: flex-start;
    color: #10357e;
}

#c-about .c-list .c-text-box .c-num-box .c-top-box .c-p1 {
    font-size: 72px;
    line-height: 1em;
}

#c-about .c-list .c-text-box .c-num-box .c-top-box .c-p2 {
    margin-left: 10px;
    font-size: 24px;
    line-height: 30px;
}

#c-about .c-list .c-text-box .c-num-box .c-item:first-child .c-top-box .c-p2 {
    font-size: 16px;
}

#c-about .c-list .c-text-box .c-num-box .c-p3 {
    margin-left: 5px;
    padding-top: 10px;
    line-height: 26px;
}

#c-about .c-list .c-img-box .c-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0073c8;
    display: flex;
    justify-content: center;
    align-items: center;
}

#c-about .c-list .c-img-box .c-dot i {
    flex: 0 0 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 115, 200, .4);
    border: 1px solid #0073c8;
    animation: scalemap 2s linear infinite;
    -moz-animation: scalemap 2s linear infinite;
    -webkit-animation: scalemap 2s linear infinite;
}

#c-about .c-list .c-img-box .c-1 {
    top: 43.2975%;
    left: 18.375%;
}

#c-about .c-list .c-img-box .c-2 {
    top: 30.1075%;
    left: 33.5%;
}

#c-about .c-list .c-img-box .c-3 {
    top: 38.7096%;
    left: 57.25%;
}

#c-about .c-list .c-img-box .c-4 {
    top: 58.8709%;
    left: 60.5%;
}


#c-about .c-list .c-img-box .c-5 {
    top: 48.387%;
    left: 68.5%;
}

#c-about .c-list .c-img-box .c-6 {
    top: 43.2795%;
    left: 81.75%;
}

#c-about .c-list .c-img-box .c-7 {
    top: 68.6817%;
    left: 84.75%;
}

@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;   height: 6.8rem; background-color:#10357E 
}

.c-banner6 .c-text-box .c-title1 {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 28px;
}

.c-banner6 .c-text-box .c-title2 {
 margin-top:200px; color:#FFFFFF;
      font-weight: bold;
    font-size:28px;
    line-height: 72px;
}

.c-banner6 .c-text-box .c-title2 span {
    color: #0073c8; font-size:24px; 
}

.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-history .c-top-box {
    padding: 1rem 0 .8rem;
    text-align: center;
}

#c-history .c-top-box .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

#c-history .c-top-box .c-text {
    padding-top: 20px;
    color: #666;
    line-height: 26px;
}

#c-history .c-list {
    padding-bottom: .8rem;
    position: relative;
}

#c-history .c-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    border-left: 1px solid #ddd;
}

#c-history .c-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: .8rem;
    padding: 0 .8rem;
}

#c-history .c-list li:nth-child(even) {
    flex-direction: row-reverse;
}

#c-history .c-list .c-img-box {
    width: 43%;
    height: 3.2rem;
    overflow: hidden;
}

#c-history .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-history .c-list .c-img-box:hover img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
}

#c-history .c-list .c-text-box {
    width: 43%;
}

#c-history .c-list .c-text-box .c-year {
    margin-bottom: .2rem;
    font-size: 72px;
    line-height: 82px;
    transition: .5s;
}

#c-history .c-list .c-text-box .c-text {
    font-size: 20px;
    line-height: 36px;
}

#c-history .c-list li:hover .c-text-box .c-year {
    color: #0073c8;
}

#c-history .c-list .c-dot {
    position: absolute;
    top: .45rem;
    left: 50%;
    margin-left: -14px;
    width: 28px;
    height: 28px;
    padding: 5px;
    background: #ffb7b7;
    border: 5px solid #ffe5e5;
    border-radius: 50%;
}

#c-history .c-list .c-dot i {
    display: block;
    width: 100%;
    height: 100%;
    background: #ff0000;
    border-radius: 50%;
}

#c-history .c-btn {
    margin: 0 auto;
    width: 170px;
    border-radius: 25px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: #0073c8;
}



/* 联系我们 */

#c-contact {
    padding-top: .1rem;
}

#c-contact .c-main-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}

#c-contact .c-left-box {
    position: relative;
    width: 100%;
    height: 760px;
}

#c-contact .c-left-box1 {
    position: relative;
    width: 50%;
    height: 760px;
}


#c-contact .c-right-box {
    padding: 0 0.5rem 0 0.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 li {
    display: none;
}

#c-contact .c-right-box .c-list li.active {
    display: block;
}

#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;
}

#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 {
    opacity: 0;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1!important;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.c-map.active {
    opacity: 1;
    z-index: 2!important;
}

.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;
}

/* 在SCY工作 */

#c-join .c-top-box {
    padding: 1rem 0 .8rem;
    text-align: center;
}

#c-join .c-top-box .c-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
}

#c-join .c-top-box .c-text {
    padding-top: 20px;
    color: #666;
    line-height: 26px;
}

.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-join2 .c-big-title {
    padding: 1.2rem 0 .6rem;
    font-weight: bold;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
}

#c-join2 .c-list {
    margin: 0 -15px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-join2 .c-list li {
    width: 25%;
    margin-bottom: 30px;
    padding: 0 15px;
}

#c-join2 .c-list .c-wrap {
    padding: 50px 30px 40px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
    transition: .5s;
}

#c-join2 .c-list .c-wrap .c-title {
    height: 80px;
    font-size: 30px;
    line-height: 40px;
}

#c-join2 .c-list .c-wrap .c-text {
    line-height: 26px;
    color: #666;
    transition: .5s;
}

#c-join2 .c-list .c-wrap:hover {
    color: #fff;
    background: #0073c8;
    box-shadow: 0 2px 20px rgba(0, 115, 200, .2);
}

#c-join2 .c-list .c-wrap:hover .c-text {
    color: #fff;
}

#c-join2 .c-list .c-mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    display: none;
}

#c-join2 .c-list .c-mask .c-box {
    padding: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    max-width: 860px;
    max-height: 780px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
}

#c-join2 .c-list .c-mask .c-box .c-title {
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
}

#c-join2 .c-list .c-mask .c-box .c-text-box {
    position: absolute;
    top: 156px;
    left: 60px;
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    height: -webkit-calc(100% - 216px);
    height: calc(100% - 216px);
    overflow-y: auto;
    line-height: 30px;
}

#c-join2 .c-list .c-mask .c-box .c-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #999 url(close.png) no-repeat center;
    background-size: 18px;
    cursor: pointer;
    transition: .5s;
}

#c-join2 .c-list .c-mask .c-box .c-close:hover {
    background-color: #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;
}


/* 新闻 */

#c-news3 {
    padding: 1.1rem 0;
}

#c-news3 .c-main-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

#c-news3 .c-left-box {
    width: 60%;
}

#c-news3 .c-left-box .c-title-box .c-title {
    font-size: 36px;
    line-height: 46px;
}

#c-news3 .c-left-box .c-title-box .c-text {
    padding: .3rem 0 .45rem;
}

#c-news3 .c-left-box .c-title-box .c-text,
#c-news3 .c-left-box .c-title-box .c-text a {
    line-height: 26px;
    color: #999;
    transition: .5s;
}

#c-news3 .c-left-box .c-title-box .c-text a:hover {
    color: #0073c8;
}

#c-news3 .c-left-box .c-text-box {
    padding-bottom: .75rem;
    border-bottom: 1px solid #ddd;
    line-height: 30px;
    color: #666;
}

#c-news3 .c-left-box .c-text-box img {
    max-width: 100%;
    height: auto !important;
}

#c-news3 .c-left-box .c-btn-box {
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#c-news3 .c-left-box .c-btn-box .c-return {
    display: block;
    width: 170px;
    border: 1px solid #222;
    border-radius: 25px;
    line-height: 48px;
    text-align: center;
    color: #222;
    transition: .5s;
}

#c-news3 .c-left-box .c-btn-box .c-return:hover {
    color: #fff;
    border-color: #0073c8;
    background: #0073c8;
}

#c-news3 .bshare-custom .bshare-more.more-style-addthis {
    padding-left: 30px !important;
    font-size: 16px;
    height: 20px!important;
    line-height: 20px!important;
    color: #222;
    background: url(fx.png) no-repeat left center;
    background-size: auto 20px;
}

#c-news3 .c-right-box {
    padding-top: 74px;
    width: 31.25%;
}

#c-news3 .c-right-box .c-big-title {
    border-bottom: 2px solid #222;
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 1em;
}

#c-news3 .c-right-box .c-list li {
    margin-bottom: 30px;
}

#c-news3 .c-right-box .c-list li:last-child {
    margin-bottom: 0;
}

#c-news3 .c-right-box .c-list .c-wrap {
    display: flex;
    align-items: flex-start;
    color: #222;
}

#c-news3 .c-right-box .c-list .c-img-box {
    width: 38%;
    overflow: hidden;
    height: 86px;
}

#c-news3 .c-right-box .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-news3 .c-right-box .c-list .c-wrap:hover img {
    transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}

#c-news3 .c-right-box .c-list .c-text-box {
    padding-left: 20px;
    width: 62%;
}

#c-news3 .c-right-box .c-list .c-text-box .c-title {
    height: 52px;
    font-size: 16px;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

#c-news3 .c-right-box .c-list .c-text-box .c-text {
    padding-top: 10px;
    font-size: 14px;
    line-height: 24px;
    color: #0073c8;
}

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-lx {
    padding-top: .1rem;
}

#c-lx  .c-main-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row-reverse;
}

#c-lx  .c-left-box {
  position: relative;
    width: 40%;
    height: 760px;
}

#c-lx  .c-right-box {
    padding: 0 2.5rem 0 1.8rem;
    width: 60%;
}

#c-lx .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-lx  .c-right-box .c-menu p {
    flex: none;
    margin-right: .3rem;
    cursor: pointer;
}

#c-lx  .c-right-box .c-menu p.active {
    font-weight: bold;
    color: #0073c8;
}

#c-lx  .c-right-box .c-list {
    position: relative;
}

#c-lx  .c-right-box .c-list li {
    display: none;
}

#c-lx  .c-right-box .c-list li.active {
    display: block;
}

#c-lx  .c-right-box .c-list .c-title {
    padding: .6rem 0;
    font-weight: bold;
    font-size: 24px;
    line-height: 34px;
}

#c-lx .c-right-box .c-list .c-text p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 28px;
}

#c-lx  .c-right-box .c-list .c-text p:last-child {
    margin: 0;
}

#c-lx  .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-lx  .c-right-box .c-code {
    display: inline-block;
}

#c-contact3 .c-right-box .c-code img {
    border: 1px solid #ddd;
    width: 178px;
}

#c-contact3 .c-right-box .c-code p {
    padding-top: 15px;
    line-height: 26px;
    text-align: center;
}


/* 地图 */

.c-map3 {
    opacity: 0;
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1!important;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
}

.c-map3.active {
    opacity: 1;
    z-index: 2!important;
}

.c-map3 .map-title {
    font-size: 14px;
    font-weight: bold;
    color: #0073c8;
}

.c-map3 .map-content {
    font-size: 12px;
    color: #222;
}

.c-map3 .anchorBL {
    display: none;
}
