@charset "utf-8";

/*初始化*/

* {
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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;
    overflow-x:hidden;
}

body {
    /*font-family: 'Source Han Sans CN', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'Source Han Serif CN', 'SimSun', 'SimHei', 'Arial';*/
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background: #fff;
}

img {
    border: 0;
    vertical-align: top;
}

li {
    list-style: none;
}

div,
ul,
ol,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

input,
button {
    -webkit-appearance: none;
    border-radius: 0;
}

textarea {
    resize: none;
    overflow: auto;
}

input,
button,
textarea,
select {
    border: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: transparent;
}


/* placeholder修改 */

/*input::-webkit-input-placeholder,*/
/*textarea::-webkit-input-placeholder {*/
/*    !* WebKit, Blink, Edge *!*/
/*    color: #fff;*/
/*}*/

/*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;
}
@font-face {
    font-family: "DINCond-Bold_1";
    src: url("../fonts/dincond-bold_1.woff2") format("woff2"),
    url("../fonts/dincond-bold_1.woff") format("woff"),
    url("../fonts/dincond-bold_1.ttf") format("truetype"),
    url("../fonts/dincond-bold_1.eot") format("embedded-opentype"),
    url("../fonts/dincond-bold_1.svg") format("svg");
}
.c-container {
    position: relative;
    margin: 0 auto;
    width: 72.917666%;
}
.c-container img{
    max-width: 100%;
}
.c-container tr,.c-container td{
    border:1px solid #ddd;
}
.c-container p{
    word-break: break-all;
}
body.c-open {
    position: fixed;
    left: 0;
    width: 100%;
}

.c-common-btn1 {
    position: relative;
    display: inline-block;
    border: 2px solid #fff;
}

.c-common-btn1::before {
    content: "";
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: -2px;
    left: -2px;
    width: 0;
    height: -webkit-calc(100% + 4px);
    height: calc(100% + 4px);
    background: #fff;
    transition: .5s;
}

.c-common-btn1 div {
    position: relative;
    z-index: 2;
    font-size: 16px;
    line-height: 56px;
    padding: 0 72px 0 40px;
    background: url(../images/jt1.png)no-repeat right 40px center / 22px;
    color: #fff;
    transition: all .5s;
}

.c-common-btn1:hover div {
    color: #555;
    background-image: url(../images/jt3.png);
}

.c-common-btn1:hover::before {
    width: -webkit-calc(100% + 4px);
    width: calc(100% + 4px);
}

.c-common-btn1.c-dt {
    border-color: #0168b7;
    background-color: #0168b7;
    cursor: pointer;
}

.c-common-btn1.c-dt::before {
    background: #045898;
}

.c-common-btn1.c-dt:hover div {
    color: #fff;
    background-image: url(../images/jt1.png);
}


/* 动画 */

@-webkit-keyframes jump {
    0% {
        opacity: 1;
        top: -10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 11px;
    }
}

@keyframes jump {
    0% {
        opacity: 1;
        top: -10px;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 11px;
    }
}

@-webkit-keyframes jump2 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-20px)
    }
    100% {
        transform: translateY(0)
    }
}

@keyframes jump2 {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-20px)
    }
    100% {
        transform: translateY(0)
    }
}

@-webkit-keyframes enlarge {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@keyframes enlarge {
    0% {
        opacity: 1;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}

@keyframes goTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes goTop {
    0% {
        opacity: 0;
        -webkit-transform: translateY(80px);
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.goTop {
    -webkit-animation-name: goTop;
    animation-name: goTop;
}

@keyframes goRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes goRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.goRight {
    -webkit-animation-name: goRight;
    animation-name: goRight;
}

@keyframes goLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(80px);
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes goLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(80px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.goLeft {
    -webkit-animation-name: goLeft;
    animation-name: goLeft;
}


/*字体*/

@font-face {
    font-family: "DINCond-Bold_1";
    src: url("../fonts/futurabt-medium.otf") format("opentype");
}


/* 占位标签，设置导航样式 */

#c-placeholder {
    height: 100px;
}


/*顶部*/

#c-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 100%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    color: #fff;
    transition: all 0.5s;
    -webkit-box-shadow: 1px 1px 15px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 1px 1px 15px 0px rgba(0,0,0,0.1);
    box-shadow: 1px 1px 15px 0px rgba(0,0,0,0.1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#c-header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    transition: .5s;
}

#c-header.c-style2::before {
    border-bottom: 1px solid #ececec;
}

#c-header a {
    color: #fff;
    transition: all 0.5s;
}

#c-header.c-head-move {
    top: -100px;
}

#c-header.c-style2 {
    color: #333;
    background: #fff;
    border: 0;
}

#c-header.c-style2 a {
    color: #777;
}

#c-header>.c-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0  70px;
    width: 100%;
}

#c-header .c-right-box {
    display: flex;
    align-items: center;
}


/*顶部logo*/

#c-header .c-logo {
    display: flex;
    align-items: center;
}

#c-header .c-logo .c-img-box {
    display: flex;
    align-items: center;
}

#c-header .c-logo img {
    height: 60px;
}

/*#c-header .c-logo img:nth-child(2),*/
/*#c-header.c-style2 .c-logo img:nth-child(1) {*/
/*    display: none;*/
/*}*/

#c-header.c-style2 .c-logo img:nth-child(2) {
    display: inline-block;
}


/*顶部pc导航*/

#c-header .c-nav {
    display: flex;
    align-items: center;
}

#c-header .c-nav>li {
    position: relative;
    margin-right: 50px;
}

#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:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0168B7;
    transition: .5s;
}

#c-header .c-nav li a i {
    margin-left: 8px;
    font-size: 20px;
}

#c-header .c-nav ul {
    position: absolute;
    top: 99%;
    left: 50%;
    display: none;
    width: 150px;
    line-height: 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#c-header .c-nav ul li {
    border-bottom: 1px solid #eee;
}

#c-header .c-nav ul li:last-child {
    border: 0;
}

#c-header .c-nav ul a {
    color: #777777;
}

#c-header.c-style2 .c-nav li.on>a,
#c-header .c-nav li:hover>a {
    color: #0168B7;
}

#c-header.c-style2 .c-nav li.on>a::before,
#c-header .c-nav>li:hover>a::before {
    left: 0;
    width: 100%;
}


/*顶部移动端导航*/

#c-header .c-nav2 {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 0;
    font-size: 14px;
    line-height: 50px;
    background: #fff;
    overflow-y: auto;
    transition: all 0.5s;
}

.c-open #c-header .c-nav2 {
    height: calc(100vh - 60px);
    height: -webkit-calc(100vh - 60px);
}

#c-header .c-nav2 a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    border-bottom: 1px solid #f1f1f1;
    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: #0168B7
}

#c-header .c-nav2 li a i {
    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-menu {
    padding: 34px 30px;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: .5s;
}

#c-header .c-menu:hover {
    background: #0168B7;
}

#c-header .c-menu i {
    position: relative;
    display: block;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-header.c-style2 .c-menu i {
    background: #555555;
}

#c-header .c-menu:hover i {
    background: #fff;
}

#c-header .c-menu i:nth-child(2) {
    margin: 6px 0;
}


/* 顶部功能区 */

#c-header .c-gn {
    display: flex;
    align-items: center;
}

#c-header .c-gn .c-phone {
    display: flex;
    align-items: center;
    padding: 0 50px;
    border-left: 1px solid rgba(255, 255, 255, .2);
    border-right: 1px solid rgba(255, 255, 255, .2);
}

#c-header.c-style2 .c-gn .c-phone {
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
}

#c-header .c-gn .c-phone .c-ico {
    margin-right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff url(../images/phone.png)no-repeat center / 16px auto;
}

#c-header.c-style2 .c-gn .c-phone .c-ico {
    background: #0168B7 url(../images/phone2.png)no-repeat center / 16px auto;
}

#c-header .c-gn .c-phone span {
    font-weight: bold;
    font-size: 20px;
    font-family: "DINCond-Bold_1";
}


/* 弹窗导航 */

#c-fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: all .5s;
}

#c-fixed-nav.on {
    height: 100%;
}

#c-fixed-nav .c-main-wrap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url(../images/tcdh-bg.jpg)no-repeat center bottom / cover;
    transition: all .5s;
}

#c-fixed-nav .c-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    border-bottom: 1px solid #1255a8;
}

#c-fixed-nav .c-top .c-logo2 img {
    height: 38px;
}

#c-fixed-nav .c-menu {
    padding: 34px 30px;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: .5s;
    background: #1255a8;
}

#c-fixed-nav .c-menu i {
    position: relative;
    display: block;
    height: 3px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

#c-fixed-nav .c-menu i:nth-child(1) {
    margin-top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#c-fixed-nav .c-menu i:nth-child(2) {
    margin-top: -3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#c-fixed-nav .c-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    height: -webkit-calc(100vh - 91px);
    height: calc(100vh - 91px);
    color: #fff;
}

#c-fixed-nav .c-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

#c-fixed-nav .c-left {
    width: 57%;
}

#c-fixed-nav .c-right {
    width: 30%;
}

#c-fixed-nav .c-left .c-title {
    position: relative;
    padding-bottom: 35px;
    font-size: 44px;
    line-height: 54px;
    border-bottom: 1px solid #1b549b;
}

#c-fixed-nav .c-left .c-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 210px;
    height: 1px;
    background: #fff;
}

#c-fixed-nav .c-left .c-title span {
    font-weight: normal;
}

#c-fixed-nav .c-left .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 50px 0 20px;
    border-bottom: 1px solid #1b549b;
}

#c-fixed-nav .c-left .c-list li {
    margin-bottom: 30px;
    padding-right: 20px;
    width: 40%;
    line-height: 26px;
    opacity: .5;
}

#c-fixed-nav .c-left .c-list li:nth-child(even) {
    width: 60%;
}

#c-fixed-nav .c-left .c-list .c-title2 {
    font-weight: bold;
}

#c-fixed-nav .c-left .c-list .c-text.c-dt {
    font-family: "DINCond-Bold_1";
    font-size: 20px;
    line-height: 30px;
}

#c-fixed-nav form .c-text2 {
    padding: 45px 0 25px;
    font-size: 22px;
    line-height: 32px;
}

#c-fixed-nav form .c-box {
    display: flex;
    align-items: flex-start;
    margin: 0 -5px;
}

#c-fixed-nav form .c-box .c-wrap {
    padding: 0 5px 10px;
    width: 50%;
}

#c-fixed-nav input::-webkit-input-placeholder,
#c-fixed-nav textarea::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #a4b1cc !important;
}

#c-fixed-nav input:-moz-placeholder,
#c-fixed-nav textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #a4b1cc !important;
    opacity: 1;
}

#c-fixed-nav input::-moz-placeholder,
#c-fixed-nav textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #a4b1cc !important;
    opacity: 1;
}

#c-fixed-nav input::-ms-input-placeholder,
#c-fixed-nav textarea::-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a4b1cc !important;
}

#c-fixed-nav form .c-box .c-wrap input {
    padding: 0 20px;
    width: 100%;
    height: 60px;
    line-height: 58px;
    border: 1px solid #1b549b;
}

#c-fixed-nav form .c-box2 {
    display: flex;
    align-items: flex-start;
}

#c-fixed-nav form .c-box2 input {
    padding: 0 20px;
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px);
    height: 60px;
    line-height: 58px;
    border: 1px solid #1b549b;
}

#c-fixed-nav form .c-box2 button {
    width: 150px;
    font-weight: bold;
    line-height: 60px;
    color: #333;
    background: #fff;
    cursor: pointer;
}

#c-fixed-nav .c-right .c-title {
    position: relative;
    padding-top: 54px;
    padding-bottom: 35px;
    font-size: 44px;
    line-height: 54px;
    border-bottom: 1px solid #1b549b;
}

#c-fixed-nav .c-right .c-title::before {
    content: "";
    position: absolute;
    bottom: -1px;
    width: 100px;
    height: 1px;
    background: #fff;
}

#c-fixed-nav .c-right .c-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -10px -40px;
    padding-top: 45px;
}

#c-fixed-nav .c-right .c-nav li {
    margin-bottom: 30px;
    padding: 0 10px;
    width: 50%;
    font-size: 22px;
    line-height: 32px;
}

#c-fixed-nav .c-right .c-nav a {
    opacity: .6;
    color: #fff;
    transition: .5s;
}

#c-fixed-nav .c-right .c-nav a:hover {
    opacity: 1;
}


/*首页轮播图*/

.c-banner1 {
    background: #fff;
}

.c-banner1 .c-sb {
    position: absolute;
    bottom: 50px;
    left: 50%;
    z-index: 10;
    text-align: center;
    color: #fff;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
}

.c-banner1 .c-sb .c-wrap {
    position: relative;
    margin: 0 auto;
    width: 30px;
    height: 38px;
    border: 2px solid #fff;
    border-radius: 15px;
    overflow: hidden;
}

.c-banner1 .c-sb .c-wrap .c-line {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 2px;
    height: 10px;
    background: #fff;
    animation: jump 1.5s linear infinite;
    -webkit-animation: jump 1.5s linear infinite;
}

.c-banner1 .c-sb .c-text {
    padding-top: 5px;
    font-size: 12px;
    line-height: 22px;
}

.c-banner1 .swiper-slide {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.c-banner1 video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    background: #000;
}

.c-banner1 .c-mb {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-banner1 .c-mask {
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3) url(../images/wl.png)repeat;
}

.c-banner1 .c-text-box {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 4;
    width: 100%;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.c-banner1 .c-text-box .c-num {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 35px;
}

.c-banner1 .c-text-box .c-num img {
    width: 188px;
}

.c-banner1 .c-text-box .c-num p {
    margin-left: 10px;
    font-size: 24px;
    line-height: 1;
}

.c-banner1 .c-text-box .c-title {
    font-size: 48px;
    line-height: 58px;
}

.c-banner1 .c-text-box .c-text {
    margin-bottom: 75px;
    font-size: 20px;
    line-height: 30px;
}


/* 底部 */

#c-footer {
    color: #fff;
    background: #1b1c1d;
}

#c-footer a {
    color: #999;
    transition: .5s;
}

#c-footer a:hover {
    color: #0168B7;
}

#c-footer .c-top-box {
    padding: 80px 0;
}

#c-footer .c-top-box .c-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#c-footer .c-top-box .c-title {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 26px;
}

#c-footer .c-top-box .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: -10px;
    width: 300px;
    font-size: 14px;
    line-height: 24px;
}

#c-footer .c-top-box .c-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
    width: 150px;
}

#c-footer .c-top-box .c-list li:nth-child(odd) {
}

#c-footer .c-top-box .c-text {
    margin-bottom: 44px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

#c-footer .c-top-box .c-text:last-child {
    margin-bottom: 0;
}

#c-footer .c-top-box .c-phone {
    margin-bottom: 20px;
    font-family: "DINCond-Bold_1";
    font-size: 40px;
    line-height: 50px;
}

#c-footer .c-ico {
    display: flex;
    align-items: center;
}

#c-footer .c-ico a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #1c1c1c;
    background: #4b4c4d;
    transition: all .5s;
}

#c-footer .c-ico a:hover {
    color: #fff;
    background: #0168B7;
}

#c-footer .c-weixin {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

#c-footer .c-weixin .c-img-box {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 20px;
    width: 200px;
    border-radius: 5px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-footer .c-weixin .c-img-box img {
    width: 100%;
}

#c-footer .c-weixin .c-img-box p {
    padding-top: 10px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #333;
}

#c-footer .c-bottom-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid #262828;
    font-size: 14px;
    line-height: 24px;
    color: #666;
}

#c-footer .c-bottom-wrap a {
    color: #666;
}

#c-footer .c-bottom-wrap .c-copyright {
    word-wrap: break-word;
    word-break: break-all;
}

#c-footer .c-bottom-wrap .c-right {
    display: flex;
    align-items: center;
}

#c-footer .c-bottom-wrap .c-right>a {
    margin-right: 20px;
}

#c-footer .c-bottom-wrap .c-menu {
    position: relative;
    width: 140px;
    border: 1px solid #333;
    line-height: 42px;
    text-align: center;
    transition: .5s;
    cursor: pointer;
}

#c-footer .c-bottom-wrap .c-menu:hover {
    border-color: #0168B7;
    background: #0168B7;
}

#c-footer .c-bottom-wrap .c-menu .c-title {
    display: inline-block;
    vertical-align: middle;
    transition: .5s;
}

#c-footer .c-bottom-wrap .c-menu:hover .c-title {
    color: #fff;
}

#c-footer .c-bottom-wrap .c-menu .c-line {
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 12px;
}

#c-footer .c-bottom-wrap .c-menu .c-line i {
    display: block;
    height: 1px;
    background: #666;
    transition: .5s;
}

#c-footer .c-bottom-wrap .c-menu:hover .c-line i {
    background: #fff;
}

#c-footer .c-bottom-wrap .c-menu .c-line i:nth-child(2) {
    margin: 3px 0;
}

#c-footer .c-bottom-wrap .c-list {
    display: none;
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 100%;
    background: #fff;
}

#c-footer .c-bottom-wrap .c-list li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

#c-footer .c-bottom-wrap .c-list li a {
    display: block;
    padding: 4px 10px;
    line-height: 26px;
}

#c-footer .c-bottom-wrap a:hover {
    color: #0168B7;
}


/* 回到顶部 */

#c-go-top {
    opacity: .4;
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: url(../images/go-top.png) no-repeat center;
    transition: all .5s linear;
    background-size: 30px;
    border-radius: 50%;
}

#c-go-top:hover {
    opacity: 1;
}


/* 当前定位 */

#c-site {
    padding: 15px 0;
    background: rgb(255,255,255,0);
}

#c-site p {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    line-height: 24px;
    flex-wrap: wrap;
    color: #fff;
}

#c-site a {
    color: #fff;
    transition: .5s;
}

#c-site a:hover {
    color: #0168B7;
}

#c-site a:first-child {
    display: inline-block;
    width: 15px;
    height: 24px;
    background: url(../images/sy.png)no-repeat center / 100% auto;
}

/*#c-site a:first-child:hover {*/
/*    background-image: url(../images/sy-h.png);*/
/*}*/

#c-site span {
    display: inline-block;
    padding: 0 10px;
}


/* 顶部banner */

#c-top-banner {
    position: relative;
    height: 700px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

#c-top-banner .c-wrap {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255,255,255,0);
}

#c-top-banner .c-box {
    position: relative;
    padding: 55px 0 70px;
    overflow: hidden;
}

#c-top-banner .c-box .c-num {
    position: absolute;
    bottom: 0px;
    right: 0;
    font-family: "DINCond-Bold_1";
    font-size: 124px;
    line-height: 1;
    color: #f3f3f3;
}

#c-top-banner .c-box2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#c-top-banner .c-box2 .c-title {
    font-size: 48px;
    line-height: 58px;
    color: #fff;
}

#c-top-banner .c-box2 .c-text {
    padding: 10px 0 25px;
    font-size: 26px;
    line-height: 36px;
    color: #fff;
}

#c-top-banner .c-box2 .c-line {
    width: 10px;
    height: 6px;
    background: #0168B7;
}

#c-top-banner .c-box2 .c-lt {
    width: -webkit-calc(100% - 60px);
    width: calc(100% - 60px);
}

#c-top-banner .c-box2 .c-gt {
    width: 36px;
    height: 36px;
    border: 1px solid #999;
    border-radius: 50%;
    background: url(../images/jt4.png)no-repeat center / 10px auto;
}


/* #c-top-banner::before {
	content: "";
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
} */


/* 顶部菜单 */

#c-top-menu {
    background: #f7f7f7;
    border-bottom: 1px solid #fafafa;
}

#c-top-menu .c-list {
    position: relative;
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    margin-bottom: -1px;
}

#c-top-menu .c-list li {
    flex: none;
    margin-right: .4rem;
    line-height: 80px;
    width: 190px;
}

#c-top-menu .c-list li a {
    position: relative;
    display: block;
    color: #666;
    transition: .5s;
}

#c-top-menu .c-list li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 2px solid #0168B7;
    transition: .5s;
}

#c-top-menu .c-list li.active a,
#c-top-menu .c-list li:hover a {
    color: #0168B7;
}

#c-top-menu .c-list li.active a::before,
#c-top-menu .c-list li:hover a::before {
    width: 100%;
}

#c-top-menu.c-click-move .c-list li {
    width: 25%;
    margin: 0;
}


/* 地图 */

.c-map {
    opacity: 1;
    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: #0168B7;
}

.c-map .map-content {
    font-size: 12px;
    color: #222;
}

.c-map .anchorBL {
    display: none;
}


/* 分享 */

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-prevNext {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#c-prevNext a {
    max-width: 46%;
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #666;
    transition: .5s;
}

#c-prevNext a:hover {
    color: #0168B7;
}

#c-prevNext .prev i {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: middle;
}

#c-prevNext .next i {
    margin-left: 10px;
    font-size: 20px;
    vertical-align: middle;
}


/* 分页 */

.c-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.c-page a {
    margin: 5px;
    display: block;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    color: #999;
    transition: .5s;
    background: #fff;
}

.c-page .prev,
.c-page .next {
    padding: 0 15px;
    width: auto;
}

.c-page a:hover,
.c-page a.active {
    color: #fff;
    background: #0168B7;
}


/* 公共标题 */

.c-common-title {
    margin-bottom: 50px;
    text-align: center;
}

.c-common-title .c-title {
    font-size: 40px;
    line-height: 50px;
}

.c-common-title .c-text {
    max-width: 810px;
    margin: 0 auto;
    padding-top: 20px;
    font-size: 20px;
    line-height: 30px;
    color: #666;
}


/* 关于我们  */

#c-about {
    padding: 90px 0;
    background: url(../images/about-bg.jpg)no-repeat center / cover;
}

#c-about .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#c-about .c-box-wrap .c-text-box1 {
    position: relative;
    width: 42.1%;
}

#c-about .c-box-wrap .c-text-box1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -68px;
    width: 40px;
    height: 32px;
    background: url(../images/dh.png)no-repeat center / 40px auto;
}

#c-about .c-box-wrap .c-text-box1 .c-title {
    font-size: 40px;
    line-height: 50px;
}

#c-about .c-box-wrap .c-text-box2 {
    width: 46.4%;
}

#c-about .c-box-wrap .c-text-box2 .c-title {
    font-size: 22px;
    line-height: 32px;
}

#c-about .c-box-wrap .c-text-box2 .c-text {
    padding: 25px 0 45px;
    line-height: 26px;
    color: #777;
}


/* 数据 */

#c-data {
    padding: 50px 0;
    background: #fff;
}

#c-data .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

#c-data .c-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    text-align: center;
}

#c-data .c-list .c-num-move {
    font-family: "DINCond-Bold_1";
    font-size: 60px;
    line-height: 1;
}

#c-data .c-list .c-text {
    margin-left: 10px;
    line-height: 26px;
    color: #777;
}

#c-data.c-dt {
    background: #eff1f5;
    text-align: center;
}

#c-data.c-dt .c-list li {
    justify-content: center;
}

#c-data.c-dt .c-list .c-text {
    flex: 100%;
}


/* 产品 */

#c-product .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-product .c-list li {
    width: 25%;
}

#c-product .c-list .c-wrap {
    position: relative;
    display: block;
    height: 7rem;
    color: #fff;
    overflow: hidden;
}

#c-product .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-product .c-list .c-wrap:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-product .c-list .c-wrap .c-text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 50px;
    width: 100%;
}

#c-product .c-list .c-wrap .c-text-box .c-more {
    position: relative;
    margin-bottom: 50px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: .5s;
}

#c-product .c-list .c-wrap:hover .c-text-box .c-more {
    width: 110px;
}

#c-product .c-list .c-wrap .c-text-box .c-more .c-text {
    padding-left: 22px;
    font-size: 12px;
    line-height: 40px;
    color: #0168B7;
    white-space: nowrap;
}

#c-product .c-list .c-wrap .c-text-box .c-more .c-add {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    transition: .5s;
}

#c-product .c-list .c-wrap:hover .c-text-box .c-more .c-add {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

#c-product .c-list .c-wrap .c-text-box .c-more .c-add::before,
#c-product .c-list .c-wrap .c-text-box .c-more .c-add::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -6px;
    width: 12px;
    height: 2px;
    background: #0168B7;
}

#c-product .c-list .c-wrap .c-text-box .c-more .c-add::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

#c-product .c-list .c-wrap .c-text-box .c-title {
    font-size: 28px;
    line-height: 38px;
}

#c-product .c-list .c-wrap .c-text-box .c-subtitle {
    font-size: 20px;
    line-height: 30px;
}


/* 生产环境 */

#c-environment {
    overflow: hidden;
}

#c-environment .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #eff1f5;
}

#c-environment .c-box-wrap .c-img-box {
    width: 50%;
    height: 9.8rem;
    overflow: hidden;
}

#c-environment .c-box-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-environment .c-box-wrap .c-text-box {
    width: 50%;
    padding: 80px 2.6rem 80px 80px;
}

#c-environment .c-box-wrap .c-text-box .c-title {
    padding-right: 0px;
    font-size: 40px;
    line-height: 50px;
}

#c-environment .c-box-wrap .c-text-box .c-line {
    margin: 15px 0;
    width: 8px;
    height: 4px;
    background: #0168B7;
}

#c-environment .c-box-wrap .c-text-box .c-text {
    font-size: 20px;
    line-height: 30px;
    color: #555;
}

#c-environment .c-box-wrap .c-text-box .c-common-btn1 {
    margin: 60px 0 80px;
}

#c-environment .c-list {
    display: flex;
    align-items: flex-start;
    width: -webkit-calc(100% + 120px);
    width: calc(100% + 120px);
    margin-left: -120px;
    background: #fff;
}

#c-environment .c-list li {
    padding: 40px;
    width: 50%;
    cursor: pointer;
}

#c-environment .c-list li:first-child {
    border-right: 1px solid #eff1f5;
}

#c-environment .c-list .c-img-box2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#c-environment .c-list .c-img-box2 .c-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.3rem;
    overflow: hidden;
}

#c-environment .c-list .c-img-box2 .c-box img {
    max-width: 100%;
    max-height: 100%;
}

#c-environment .c-list .c-img-box2 .c-ico {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, .6) url(../images/fd-ico.png)no-repeat center /20px auto;
    transition: .5s;
}

#c-environment .c-list li:hover .c-img-box2 .c-ico {
    opacity: 1;
}

#c-environment .c-list .c-title2 {
    padding-top: 15px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}

.honorpadd{
    padding: 90px 0;
    background:#eff1f5;
}
.honorpadd .c-list{
    display: block!important;
    width: auto!important;
    margin-left: 0!important;
}
.honorpadd .c-list li{
    width: 25%!important;
    border: 1px solid #e8e7e7;
    margin-right: -1px;
    margin-top: -1px;
    float: left;
}
.honorpadd .c-list .c-title2{
    font-size: 17px!important;
    color: #666666;!important;
}
@media (max-width: 767px) {
    .honorpadd{
        padding: 60px 0 30px;
    }
}
/* 优势 */

#c-advantage {
    overflow: hidden;
}

#c-advantage .c-box-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: #fff;
}

#c-advantage .c-box-wrap .c-img-box {
    width: 50%;
    height: 9.8rem;
    overflow: hidden;
}

#c-advantage .c-box-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-advantage .c-box-wrap .c-text-box {
    width: 50%;
    padding: 80px 80px 80px 1.6rem;
}

#c-advantage .c-box-wrap .c-text-box .c-title {
    padding-right: 140px;
    font-size: 40px;
    line-height: 50px;
}

#c-advantage .c-box-wrap .c-text-box .c-line {
    margin: 15px 0;
    width: 8px;
    height: 4px;
    background: #0168B7;
}

#c-advantage .c-box-wrap .c-text-box .c-text {
    font-size: 18px;
    line-height: 30px;
    color: #555;
}

#c-advantage .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 30px 0;
}

#c-advantage .c-list li {
    margin-bottom: -1px;
    width: 50%;
}

#c-advantage .c-list .c-wrap {
    display: block;
    border: 1px solid #eff1f5;
    padding: 50px 20px;
    text-align: center;
    background: url(../images/ys-bg.jpg)no-repeat center/ cover;
    cursor: pointer;
    transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
}

#c-advantage .c-list .c-wrap .c-text2 {
    font-size: 14px;
    line-height: 24px;
    color: #cecece;
}

#c-advantage .c-list .c-wrap .c-title2 {
    font-size: 68px;
    line-height: 78px;
    color: #333;
    font-weight: bold;
}

#c-advantage .c-list .c-wrap .c-line2 {
    margin: 15px auto;
    width: 10px;
    height: 2px;
    background: transparent;
}

#c-advantage .c-list .c-wrap .c-text3 {
    line-height: 26px;
    color: #777;
}

#c-advantage .c-list .c-wrap:hover {
    background: -webkit-linear-gradient(left, #0168b7 , #02497f );
        background: -o-linear-gradient(right, #0168b7 , #02497f );
        background: -moz-linear-gradient(right, #0168b7 , #02497f );
        background: linear-gradient(to right, #0168b7 , #02497f );
}

#c-advantage .c-list .c-wrap:hover .c-text2,
#c-advantage .c-list .c-wrap:hover .c-title2,
#c-advantage .c-list .c-wrap:hover .c-text3 {
    color: #fff;
}

#c-advantage .c-list .c-wrap:hover .c-line2 {
    background: #78d92e;
}


/* 业务覆盖 */

#c-coverage {
    padding: 90px 0;
    background: #eff1f5;
}

#c-coverage .c-img-box {
    position: relative;
    margin: 0 auto;
    max-width: 1124px;
    text-align: center;
}

#c-coverage .c-img-box>img {
    width: 100%;
}

#c-coverage .c-img-box .c-wz {
    position: absolute;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-coverage .c-img-box .c-wz1 {
    top: 43.333333%;
    left: 75.978647%;
}

#c-coverage .c-img-box .c-wz2 {
    top: 20%;
    left: 64.857651%;
}

#c-coverage .c-img-box .c-wz3 {
    top: 31.666666%;
    left: 15.569395%;
}

#c-coverage .c-img-box .c-wz4 {
    top: 42.333333%;
    left: 65.836298%;
}

#c-coverage .c-img-box .c-wz5 {
    top: 54.166666%;
    left: 51.868327%;
}

#c-coverage .c-img-box .c-wz6 {
    top: 73.333333%;
    left: 30.693950%;
}

#c-coverage .c-img-box .c-wz7 {
    top: 77.5%;
    left: 84.697508%;
}

#c-coverage .c-img-box .c-wz .c-img1 {
    position: relative;
    z-index: 2;
    width: 32px;
    animation: jump2 1.5s linear infinite;
    -webkit-animation: jump2 1.5s linear infinite;
}

#c-coverage .c-img-box .c-wz .c-img2 {
    display: block;
    margin: -8px auto 5px;
    width: 34px;
    animation: enlarge 1.5s linear infinite;
    -webkit-animation: enlarge 1.5s linear infinite;
}

#c-coverage .c-img-box .c-wz p {
    font-size: 14px;
    line-height: 24px;
    color: #484d54;
}

#c-coverage .c-img-box .c-wz1 .c-img1 {
    width: 42px;
}

#c-coverage .c-img-box .c-wz1 p {
    font-weight: bold;
}


/* 新闻资讯 */

#c-news {
    padding: 90px 0;
    background: #fff;
}

#c-news .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -20px -40px;
}

#c-news .c-list li {
    margin-bottom: 40px;
    padding: 0 20px;
    width: 33.333333%;
}

#c-news .c-list .c-wrap {
    display: block;
    border: 1px solid #eff1f5;
}

#c-news .c-list .c-wrap .c-img-box {
    height: 3rem;
    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:hover .c-img-box img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-news .c-list .c-wrap .c-text-box {
    padding: 30px 30px 0;
}

#c-news .c-list .c-wrap .c-text-box .c-title {
    height: 30px;
    font-size: 20px;
    line-height: 30px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
#c-news .c-list .c-wrap:hover .c-text-box .c-title{
    color: #084879;
}

#c-news .c-list .c-wrap .c-text-box .c-text {
    margin: 10px 0 25px;
    height: 48px;
    font-size: 14px;
    line-height: 24px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

#c-news .c-list .c-wrap .c-text-box .c-time {
    position: relative;
    padding: 25px 0;
    border-top: 1px solid #eff1f5;
    font-family: "DINCond-Bold_1";
    font-size: 14px;
    line-height: 24px;
    color: #999;
    background: url(../images/jt3.png) no-repeat right center / 22px auto;
}

#c-news .c-list .c-wrap .c-text-box .c-time::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background: #cdd0d4;
    transition: .5s;
}

#c-news .c-list .c-wrap:hover .c-text-box .c-time::before {
    width: 100%;
}

#c-news.c-dt {
    background: #eff1f5;
}

#c-news.c-dt .c-list {
    margin-bottom: 0;
}

#c-news.c-dt .c-list .c-wrap {
    background: #fff;
}

#c-news .c-btn-box {
    padding-top: 60px;
    text-align: center;
}


/* 标语 */

#c-gg {
    padding: 50px 0;
    background: url(../images/gg-bg.jpg)no-repeat center / cover;
}

#c-gg .c-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#c-gg .c-title {
    width: -webkit-calc(100% - 180px);
    width: calc(100% - 180px);
    font-weight: normal;
    font-size: 34px;
    line-height: 44px;
    color: #fff;
}

#c-gg .c-title span {
    font-weight: bold;
}

.c-banner2-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    /*z-index: -10;*/
    display: none;
}

.c-banner2-wrap.on {
    z-index: 910;
    display: block;
}

.c-banner2 {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.c-banner2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
}

.c-banner2 .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
}

.c-banner2 .swiper-button-next,
.c-banner2 .swiper-button-prev {
    opacity: .6;
    width: 40px;
    height: 60px;
    margin-top: -30px;
    transition: .5s;
}

.c-banner2 .swiper-button-next {
    background: #fff url(../images/next.png)no-repeat center / 20px auto;
}

.c-banner2 .swiper-button-prev {
    background: #fff url(../images/prev.png)no-repeat center / 20px auto;
}

.c-banner2 .swiper-button-next:hover,
.c-banner2 .swiper-button-prev:hover {
    opacity: 1;
}

.c-banner2 .swiper-button-disabled {
    display: none;
}

.c-banner2-wrap .c-close {
    position: fixed;
    top: 90%;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
    color: #fff;
    background: #fff;
    border-radius: 50%;
    transition: .5s;
    cursor: pointer;
    z-index:99;
}

.c-banner2-wrap .c-close:after,
.c-banner2-wrap .c-close:before {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 10px;
    width: 30px;
    height: 2px;
    background: #0168B7;
    transition: .5s;
}

.c-banner2-wrap .c-close:hover {
    background: #0168B7;
}

.c-banner2-wrap .c-close:hover:after,
.c-banner2-wrap .c-close:hover:before {
    background: #fff;
}

.c-banner2-wrap .c-close:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.c-banner2-wrap .c-close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


/* 新闻详情 */

#c-news2 {
    padding: 20px 0 90px;
    background: #eff1f5;
}

#c-news2 .c-main-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -10px;
}

#c-news2 .c-left {
    padding: 0 10px;
    width: 75%;
}

#c-news2 .c-info {
    padding: 50px;
    background: #fff;
}

#c-news2 .c-info .c-title {
    font-size: 40px;
    line-height: 50px;
}

#c-news2 .c-info .c-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 60px;
}

#c-news2 .c-info .c-bottom .c-time {
    font-size: 14px;
    line-height: 24px;
    color: #999;
}

#c-news2 .c-info .c-bottom .c-text {
    display: inline-block;
    vertical-align: middle;
    line-height: 24px;
}

#c-news2 .c-info .c-text-box {
    font-size: 14px;
    line-height: 2;
    color: #555;
}

#c-news2 .c-info .c-text-box img {
    max-width: 100%;
    height: auto !important;
}

#c-news2 .c-np-box {
    margin: 20px -10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-news2 .c-np-box .c-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
    width: 50%;
}

#c-news2 .c-np-box a {
    display: flex;
    align-items: center;
    padding: 30px;
    width: 100%;
    line-height: 24px;
    color: #333;
    background: #fff;
    transition: all .5s;
}

#c-news2 .c-np-box a:hover {
    color: #fff;
    background: #0168B7;
}

#c-news2 .c-np-box .c-text {
    width: 95px;
    line-height: 1.2;
    color: #999;
    border-right: 1px solid #dedede;
    transition: all .5s;
}

#c-news2 .c-np-box a:hover .c-text {
    color: #fff;
    border-color: #fff;
}

#c-news2 .c-np-box .next {
    flex-direction: row-reverse;
}

#c-news2 .c-np-box .next .c-title {
    padding: 0 30px 0 0;
    text-align: right;
    transition: .5s;
}

#c-news2 .c-np-box .next .c-text {
    border-right: 0;
    border-left: 1px solid #dedede;
    text-align: right;
}

#c-news2 .c-np-box .c-title {
    padding-left: 30px;
    width: -webkit-calc(100% - 95px);
    width: calc(100% - 95px);
    height: 24px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    transition: .5s;
}

#c-news2 .c-np-box a:hover .c-title {
    color: #fff;
}

#c-news2 .c-right {
    padding: 0 10px;
    width: 25%;
}

#c-news2 .c-right .c-box {
    padding: 20px;
    background: #fff;
}

#c-news2 .c-right .c-box.c-dt {
    margin-bottom: 20px;
    padding-bottom: 0;
}

#c-news2 .c-right .c-box .c-title {
    padding-bottom: 15px;
    border-bottom: 1px solid #dedede;
    font-size: 24px;
    line-height: 34px;
}

#c-news2 .c-right .c-box .c-list li {
    padding: 30px 0;
    border-bottom: 1px dashed #e1e1e1;
}

#c-news2 .c-right .c-box .c-list li:last-child {
    border: 0;
}

#c-news2 .c-right .c-box .c-list a {
    display: flex;
    align-items: center;
}

#c-news2 .c-right .c-box .c-list .c-img-box {
    width: 35%;
    height: .74rem;
}

#c-news2 .c-right .c-box .c-list .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-news2 .c-right .c-box .c-list .c-title2 {
    padding-left: 20px;
    width: 65%;
    height: 52px;
    font-size: 16px;
    line-height: 26px;
    color: #555;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
}

#c-news2 .c-right .c-box form {
    padding: 30px 0 20px;
}

#c-news2 .c-right .c-box input {
    margin-bottom: 10px;
    padding: 20px;
    border: 1px solid #dedede;
    width: 100%;
    height: 60px;
    line-height: 58px;
}

#c-news2 .c-right .c-box textarea {
    margin-bottom: 10px;
    padding: 15px 20px;
    width: 100%;
    overflow-y: auto;
    line-height: 26px;
    border: 1px solid #dedede;
}

#c-news2 .c-right .c-box button {
    width: 100%;
    font-weight: bold;
    font-size: 24px;
    line-height: 60px;
    color: #fff;
    background: #0168B7;
    cursor: pointer;
}

#c-news2 .c-right .c-box2 {
    margin-top: 2px;
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

#c-news2 .c-right .c-box2 .c-ico {
    margin: 0 auto 15px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0168B7 url(../images/phone2.png)no-repeat center / 24px auto;
}

#c-news2 .c-right .c-box2 .c-text {
    line-height: 26px;
    color: #999;
}

#c-news2 .c-right .c-box2 .c-phone {
    font-family: "DINCond-Bold_1";
    font-size: 30px;
    line-height: 40px;
}


/* 弹窗表单 */

#c-pop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
}

#c-pop form {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 690px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
}

#c-pop form .c-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5) url(../images/close.png)no-repeat center /16px auto;
    cursor: pointer;
}

#c-pop form .c-title-box {
    padding: 25px 40px;
    text-align: center;
    color: #fff;
    background: url(../images/tc-bg.jpg)no-repeat center / cover;
}

#c-pop form .c-title-box .c-title {
    margin-bottom: 5px;
    font-size: 32px;
    line-height: 42px;
}

#c-pop form .c-title-box .c-text {
    font-weight: bold;
    line-height: 26px;
}

#c-pop form .c-box {
    padding: 40px;
}

#c-pop form .c-list {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-pop form .c-list li {
    width: 50%;
    padding: 0 5px 20px;
}

#c-pop form .c-list li:nth-child(3),
#c-pop form .c-list li:nth-child(4) {
    width: 100%;
}

#c-pop form .c-list li:nth-child(5) {
    width: 70%;
}

#c-pop form .c-list li:nth-child(6) {
    width: 30%;
}

#c-pop form .c-list li:nth-child(5),
#c-pop form .c-list li:nth-child(6) {
    padding-bottom: 0;
}

#c-pop form .c-list .c-text2 {
    margin-bottom: 10px;
    font-weight: bold;
    line-height: 1;
}

#c-pop form .c-list input {
    padding: 0 20px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f4f4f4;
}

#c-pop form .c-list select {
    padding: 0 40px 0 20px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f4f4f4 url(../images/sj.png)no-repeat right 20px center / 14px auto;
}

#c-pop form .c-list textarea {
    padding: 15px 20px;
    width: 100%;
    height: 120px;
    line-height: 26px;
    background: #f4f4f4;
}

#c-pop form button {
    width: 100%;
    font-weight: bold;
    font-size: 16px;
    line-height: 70px;
    color: #fff;
    background: #0168B7;
    cursor: pointer;
}

#c-pop form a {
    display: block;
    border: 2px solid #0168B7;
    font-weight: bold;
    font-size: 16px;
    line-height: 66px;
    text-align: center;
    color: #0168B7;
}


/* 右侧浮窗 */

#c-right-fixed {
    display: none;
    position: fixed;
    top: 50%;
    right: 5px;
    z-index: 905;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#c-right-fixed a {
    position: relative;
    right: 0;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    width: 70px;
    height: 70px;
    text-align: center;
    color: #777;
    background: #fff;
}

#c-right-fixed a:last-child {
    margin-bottom: 0;
}

#c-right-fixed a:nth-child(3) {
    z-index: 2;
}

#c-right-fixed .c-wrap {
    border: 1px solid #eff1f5;
    padding: 11px 0;
    width: 70px;
    height: 70px;
    flex: 0 0 70px;
    transition: all .5s;
}

#c-right-fixed .c-wrap img {
    height: 28px;
}

#c-right-fixed .c-wrap img:nth-child(3),
#c-right-fixed .c-wrap img:nth-child(2),
#c-right-fixed a:hover .c-wrap img:nth-child(1) {
    display: none;
}

#c-right-fixed a:hover .c-wrap img:nth-child(2) {
    display: inline-block;
}

#c-right-fixed .c-title {
    padding-top: 5px;
    font-size: 12px;
    line-height: 1;
}

#c-right-fixed a:last-child .c-title {
    font-family: "Arial";
    font-weight: bold;
}

#c-right-fixed .c-text {
    flex: 0 0 auto;
    width: 170px;
    font-weight: bold;
    font-size: 18px;
    line-height: 40px;
    border-left: 1px solid #1a50aa;
    color: #fff;
    transition: all .5s;
}

#c-right-fixed .c-img {
    position: absolute;
    right: -300px;
    top: -1px;
    z-index: -1;
    padding: 5px;
    width: 148px;
    border: 1px solid #eff1f5;
    background: #fff;
    transition: .5s;
    box-shadow: 0 0 50px rgba(0, 0, 0, .1);
}

#c-right-fixed .c-img::before {
    content: "";
    position: absolute;
    top: 34px;
    right: -8px;
    border-left: 8px solid #fff;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

#c-right-fixed .c-img img {
    width: 100%;
}

#c-right-fixed .c-img .c-text2 {
    padding: 5px;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #777;
}

#c-right-fixed a .c-box {
    position: absolute;
    top: 0;
    left: 0;
    padding: 11px 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
    transition: all .5s;
    overflow: hidden;
}

#c-right-fixed a:hover .c-wrap {
    color: #fff;
    border-color: #0168B7;
    background: #0168B7;
}

#c-right-fixed a:last-child .c-wrap {
    color: #fff;
    border-color: #0168b7;
    background: #0168b7;
}

#c-right-fixed a:first-child:hover .c-box {
    width: 250px;
    height: 70px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    overflow: none;
    background: #0168B7;
}

#c-right-fixed a:nth-child(2):hover .c-box {
    width: 250px;
    height: 70px;
    -webkit-transform: translateX(-180px);
    transform: translateX(-180px);
    overflow: none;
    background: #0168B7;
}

#c-right-fixed a:nth-child(3):hover .c-box {
    width: 320px;
    height: 70px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
    overflow: none;
    background: #0168B7;
}

#c-right-fixed a:hover .c-img {
    right: 84px;
}


/* 联系我们 */

#c-contact {
    padding: 90px 0;
}

#c-contact .c-top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #dedede;
}

#c-contact .c-top .c-title {
    font-size: 40px;
    line-height: 50px;
}

#c-contact .c-top .c-wrap {
    display: flex;
    align-items: center;
}

#c-contact .c-top .c-wrap .c-lt {
    text-align: right;
}

#c-contact .c-top .c-wrap .c-text {
    line-height: 26px;
    color: #555;
}

#c-contact .c-top .c-wrap .c-phone {
    margin-bottom: 25px;
    font-family: "DINCond-Bold_1";
    font-weight: bold;
    font-size: 36px;
    line-height: 46px;
}

#c-contact .c-top .c-wrap .c-line {
    display: inline-block;
    vertical-align: top;
    width: 10px;
    height: 6px;
    background: #0168B7;
}

#c-contact .c-top .c-wrap .c-gt {
    margin-left: 30px;
    width: 132px;
    height: 132px;
    border: 1px solid #dedede;
}

#c-contact .c-top .c-wrap .c-gt img {
    width: 100%;
    height: 100%;
}

#c-contact .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

#c-contact .c-list li {
    display: flex;
    align-items: center;
}

#c-contact .c-list li:nth-child(2) {
    justify-content: center;
    padding: 0 20px;
    width: 48%;
    border-left: 1px solid #dedede;
    border-right: 1px solid #dedede;
}

#c-contact .c-list .c-ico {
    margin-right: 20px;
    width: 80px;
    height: 80px;
    border: 1px solid #333;
    border-radius: 50%;
    flex: 0 0 80px;
}

#c-contact .c-list .c-ico img {
    width: 100%;
    height: 100%;
}

#c-contact .c-list .c-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: bold;
}

#c-contact .c-list .c-text {
    font-size: 14px;
    line-height: 24px;
    color: #777;
}


/* 联系我们表单 */

#c-contact2 {
    padding: 90px 0;
    background: #eff1f5;
}

#c-contact2 .c-list {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

#c-contact2 .c-list li {
    margin-bottom: 10px;
    position: relative;
    width: 50%;
    padding: 0 5px;
}
#c-contact2 .c-list li.text{
    width: 100%;
}
#c-contact2 .c-list li:nth-child(5),
#c-contact2 .c-list li:nth-child(6) {
    width: 100%;
}

#c-contact2 .c-list input {
    padding: 0 20px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background: #fff;
}

#c-contact2 .c-list input:-moz-placeholder,
#c-contact2 .c-list textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #999 !important;
    opacity: 1;
}

#c-contact2 .c-list li:nth-child(1) input,
#c-contact2 .c-list li:nth-child(2) input {
    padding-right: 50px;
}

#c-contact2 .c-list i {
    position: absolute;
    top: 50%;
    right: 20px;
    height: 10px;
    font-size: 20px;
    font-style: normal;
    line-height: 1;
    color: #0168B7;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#c-contact2 .c-list textarea {
    width: 100%;
    height: 200px;
    padding: 25px 20px;
    line-height: 26px;
    background: #fff;
    overflow-y: auto;
}

#c-contact2 .c-list .c-text {
    padding: 10px 0 20px;
    line-height: 26px;
    color: #555;
}

#c-contact2 .c-list button {
    width: 100%;
    line-height: 80px;
    font-size: 22px;
    color: #fff;
    background: #0168b7;
    cursor: pointer;
}

#c-contact2 .c-list li:last-child button {
    color: #555;
    background: #dadde3;
}


/* 安全性和质量 */

#c-product2 {
    padding: 90px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#c-product2 .c-text-box {
    margin: 0 auto;
    max-width: 950px;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    color: #555;
}

#c-product2 .c-jt {
    margin: 40px auto 0;
    width: 20px;
    height: 20px;
    background: url(../images/jt5.png)no-repeat center / 100%;
}


/* 公共盒子 */

.c-common-box {
    padding: 90px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.c-common-box .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -10px;
}

.c-common-box .c-list li {
    padding: 0 10px;
    width: 50%;
}

.c-common-box .c-list .c-wrap {
    padding: 40px;
    border-radius: 5px;
    text-align: center;
    background: #fff;
}

.c-common-box .c-list .c-wrap .c-title {
    font-size: 32px;
    line-height: 42px;
}

.c-common-box .c-list .c-wrap .c-line {
    margin: 15px auto;
    width: 10px;
    height: 5px;
    background: #0168B7;
}

.c-common-box .c-list .c-wrap .c-text {
    line-height: 26px;
    color: #555;
}


/* 优势 */

#c-advantage2 {
    padding: 90px 0;
}

#c-advantage2 .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 -10px -30px;
}

#c-advantage2 .c-list li {
    margin-bottom: 30px;
    padding: 0 10px;
    width: 160px;
    text-align: center;
}

#c-advantage2 .c-list .c-ico {
    margin: 0 auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #0168B7;
}

#c-advantage2 .c-list .c-ico img {
    width: 100%;
    height: 100%;
}

#c-advantage2 .c-list .c-title {
    padding-top: 10px;
    font-size: 18px;
    line-height: 28px;
}


/* 环境 */

#c-environment2 {
    padding-bottom: 90px;
}

#c-environment2 .c-list {
    margin: 0 -.05rem;
}

#c-environment2 .c-list li {
    float: left;
    width: 25%;
    margin-bottom: .1rem;
    padding: 0 .05rem;
}

#c-environment2 .c-list li:first-child {
    width: 50%;
}

#c-environment2 .c-list .c-wrap {
    position: relative;
    height: 2.55rem;
    overflow: hidden;
}

#c-environment2 .c-list li:first-child .c-wrap {
    height: 5.2rem;
}

#c-environment2 .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

#c-environment2 .c-list .c-wrap:hover img {
    transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
}

#c-environment2 .c-list .c-wrap .c-title {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 26px;
    color: #fff;
    background: url(../images/hj-zz.png)repeat-x left bottom / auto;
    transition: .5s;
}

#c-environment2 .c-list .c-wrap:hover .c-title {
    opacity: 1;
}


/* 品质保障 */

#c-guarantee {
    padding: 90px 0;
}

#c-guarantee .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -10px;
}

#c-guarantee .c-list li {
    padding: 0 10px;
    width: 33.333333%;
}

#c-guarantee .c-list .c-wrap {
    background: #f8f8f8;
}

#c-guarantee .c-list .c-wrap .c-img-box {
    height: 3.4rem;
    overflow: hidden;
}

#c-guarantee .c-list .c-wrap .c-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-guarantee .c-list .c-wrap .c-text-box {
    padding: 30px;
    text-align: center;
}

#c-guarantee .c-list .c-wrap .c-text-box .c-title {
    font-size: 24px;
    line-height: 34px;
}

#c-guarantee .c-list .c-wrap .c-text-box .c-text {
    padding-top: 10px;
    line-height: 26px;
    color: #777;
}


/* 产品展示 */

#c-exhibition .c-main-list .c-item {
    padding: 90px 0;
}

#c-exhibition .c-main-list .c-item:nth-child(even) {
    background: #eff1f5;
}

#c-exhibition .c-main-wrap {
    position: relative;
}

#c-exhibition .c-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
}

#c-exhibition .c-menu {
    position: sticky;
    top: 20px;
    z-index: 10;
    left: 13.54166%;
    padding: 90px 0;
    width: 15.625%;
}

#c-exhibition .c-left {
    position: relative;
    overflow: hidden;
}

#c-exhibition .c-main-list {
    margin-top: -400px;
}

#c-exhibition .c-list {
    position: relative;
    border-left: 2px solid #dddfe4;
}

#c-exhibition .c-left .c-line2 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 2px;
    height: 0;
    background: #0168B7;
}

#c-exhibition .c-list li {
    margin-bottom: 20px;
    padding: 0 40px;
}

#c-exhibition .c-list li:last-child {
    margin-bottom: 0;
}

#c-exhibition .c-list a {
    display: inline-block;
    vertical-align: top;
    font-size: 18px;
    line-height: 28px;
    color: #888;
}

#c-exhibition .c-list li.on a {
    font-weight: bold;
    color: #333;
}

#c-exhibition .c-right {
    width: 78.5%;
}

#c-exhibition .c-title {
    margin-bottom: 20px;
    font-size: 40px;
    line-height: 50px;
}

#c-exhibition .c-text-box {
    line-height: 26px;
    color: #555;
}

#c-exhibition .c-list2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0 20px;
}

#c-exhibition .c-list2 li {
    margin-bottom: 20px;
}

#c-exhibition .c-list2 li:last-child {
    display: none;
}

#c-exhibition .c-list2 .c-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 160px;
    height: 160px;
    border: 1px solid #cecece;
    font-weight: bold;
    font-size: 18px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
}

#c-exhibition .c-list2 .c-add {
    position: relative;
    margin: 0 60px;
    width: 14px;
    height: 14px;
}

#c-exhibition .c-list2 .c-add::before,
#c-exhibition .c-list2 .c-add::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: 100%;
    height: 2px;
    background: #cecece;
}

#c-exhibition .c-list2 .c-add::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.c-banner3 {
    padding-bottom: 60px;
}

.c-banner3 .c-title2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 40px;
    width: 100%;
    height: 100%;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #333;
    /* background: url(../images/hj-zz.png)repeat-x bottom left / auto; */
}

.c-banner3.c-dt .c-title2 {
    color: #fff;
}

.c-banner3 .swiper-slide img {
    width: 100%;
    height: 5.1rem;
    object-fit: cover;
}

.c-banner3 .c-bottom-wrap {
    display: flex;
    align-items: flex-end;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.c-banner3 .c-bottom-wrap .swiper-pagination {
    position: relative;
    bottom: 0;
    width: 100px;
    font-style: italic;
    text-align: left;
    color: #999;
}

.c-banner3 .c-bottom-wrap .swiper-pagination-current {
    font-size: 30px;
    color: #333;
}

.c-banner3 .c-bottom-wrap .swiper-pagination-total {
    font-size: 14px;
}

.c-banner3 .c-bottom-wrap .c-btn-box {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    width: 130px;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-prev {
    width: 22px;
    height: 12px;
    background: url(../images/prev2.png)no-repeat left top / 100% auto;
    cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-prev:hover {
    background-image: url(../images/prev2-h.png);
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-next {
    margin: 0 30px 0 20px;
    width: 22px;
    height: 12px;
    background: url(../images/next2.png)no-repeat left top / 100% auto;
    cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-next:hover {
    background-image: url(../images/next2-h.png);
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-btn {
    width: 12px;
    height: 12px;
    background: url(../images/zt.png)no-repeat left top / 100% auto;
    cursor: pointer;
}

.c-banner3 .c-bottom-wrap .c-btn-box .c-btn.on {
    background-image: url(../images/bf.png);
}

.c-banner3 .c-bottom-wrap .c-line-box {
    position: relative;
    margin-bottom: 5px;
    width: -webkit-calc(100% - 230px);
    width: calc(100% - 230px);
    height: 1px;
    background: #dadada;
    overflow: hidden;
}

.c-banner3 .c-bottom-wrap .c-line-box .c-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #0168B7;
}


/* 专注 */

#c-absorbed {
    padding: 90px 0;
    background: #fff;
}

#c-absorbed .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 -10px -20px;
}

#c-absorbed .c-list li {
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: center;
}

#c-absorbed .c-list .c-ico {
    margin: 0 auto 20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #eff1f5;
}

#c-absorbed .c-list .c-ico img {
    width: 100%;
    height: 100%;
}

#c-absorbed .c-list .c-title {
    font-size: 24px;
    line-height: 34px;
}

#c-absorbed .c-list .c-text {
    line-height: 26px;
    color: #555;
    max-width: 260px;
}


/* 专注 */

#c-process {
    padding: 90px 0;
    background: #eff1f5;
}

#c-process .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: -20px;
}

#c-process .c-list li {
    width: -webkit-calc(25% - 60px);
    width: calc(25% - 60px);
    margin-bottom: 20px;
    text-align: center;
}

#c-process .c-list li:last-child {
    display: none;
}

#c-process .c-list li:nth-child(even) {
    width: 80px;
}

#c-process .c-list .c-bg {
    margin-top: 60px;
    height: 40px;
    background: url(../images/lc-dot.png)no-repeat center / 100% auto;
}

#c-process .c-list .c-ico {
    margin: 0 auto 20px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fff;
}

#c-process .c-list .c-ico img {
    width: 100%;
    height: 100%;
}

#c-process .c-list .c-title {
    font-size: 24px;
    line-height: 34px;
}

#c-process .c-list .c-text {
    line-height: 26px;
    color: #555;
}


/* 数据 */

#c-data2 {
    padding: 90px 0;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#c-data2 .c-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

#c-data2 .c-list li {
    margin: 0 60px 20px;
    width: 200px;
    height: 200px;
    border: 8px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    overflow: hidden;
}

#c-data2 .c-list .c-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 60, 158, .6);
}

#c-data2 .c-list .c-wrap .c-num {
    font-family: "DINCond-Bold_1";
    font-size: 58px;
    line-height: 1;
}

#c-data2 .c-list .c-wrap .c-num i {
    font-style: normal;
    font-size: 24px;
}

#c-data2 .c-list .c-wrap .c-title {
    padding-top: 5px;
    font-size: 22px;
    line-height: 32px;
}

#c-data2 .c-text-box {
    margin: 0 auto;
    max-width: 1100px;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
}


/* 生产设备 */

#c-equipment {
    padding: 90px 0;
    background: #fff;
}

.anchor_fixed {
    display: block;
    position: relative;
    top: -100px;
}
.anchor_fixed2 {
    display: block;
    position: relative;
    top: -120px;
}
/* 公司简介 */
#c-about2jump{
    position: fixed;
    left: 0;
    top: 100px;
}
#c-about2 {
    position: relative;
    border-bottom: 1px solid #e0e2e7;
    background: #eff1f5;
}

#c-about2 .c-text-box {
    padding: 90px 0;
    /* width: 46%; */
}

#c-about2 .c-text-box .c-title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 50px;
}

#c-about2 .c-text-box .c-subtitle {
    font-size: 22px;
    line-height: 32px;
    color: #555;
}

#c-about2 .c-text-box .c-line {
    margin: 35px 0;
    width: 10px;
    height: 6px;
    background: #0168B7;
}

#c-about2 .c-text-box .c-text {
    line-height: 2;
    color: #777;
}

#c-about2 .c-img-box {
    position: absolute;
    bottom: 20%;
    right: 0;
    width: 50%;
    max-width: 1032px;
}

#c-about2 .c-img-box img {
    width: 100%;
}


/* 服务领域 */

#c-service {
    padding: 90px 0;
}

#c-service .c-list {
    margin: 0 -.05rem;
}

#c-service .c-list li {
    float: left;
    margin-bottom: .1rem;
    padding: 0 .05rem;
    width: 50%;
}

#c-service .c-list .c-wrap {
    position: relative;
    height: 3.15rem;
}

#c-service .c-list li:nth-child(1) .c-wrap {
    height: 6.4rem;
}

#c-service .c-list .c-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#c-service .c-list .c-wrap .c-text-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
    width: 100%;
    height: 100%;
    color: #fff;
    background: url(../images/hj-zz.png) repeat-x left bottom / auto;
}

#c-service .c-list .c-wrap .c-text-box .c-title {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 36px;
}

#c-service .c-list .c-wrap .c-text-box .c-text {
    height: 24px;
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}


/* 企业理念 */

#c-idea {
    padding: 90px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

#c-idea .c-wrap {
    width: 43%;
}

#c-idea .c-title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 50px;
}

#c-idea .c-subtitle {
    font-size: 22px;
    line-height: 32px;
    color: #fff;
}

#c-idea .c-line {
    margin: 35px 0;
    width: 10px;
    height: 6px;
    background: #fff;
}

#c-idea .c-list li {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(2552, 255, 255, .1);
}

#c-idea .c-list li:last-child {
    padding: 0;
    margin: 0;
    border: 0;
}

#c-idea .c-list .c-title2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 34px;
}

#c-idea .c-list .c-text {
    line-height: 26px;
    opacity: .4;
}


/* 拔山致远 */

#c-bashan {
    padding: 90px 0;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#c-bashan .c-img-box {
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
    padding: 36px;
    border-top: 2px solid #fff;
    background: rgba(0, 0, 0, .35);
}

#c-bashan .c-img-box::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    border-top: 4px solid #fff;
}

#c-bashan .c-img-box img {
    width: 275px;
}

#c-bashan .c-dh {
    width: 45px;
}


/* 发展历程 */

#c-history {
    padding: 90px 0;
    background: #eff1f5;
}

.c-banner4-wrap {
    margin-bottom: 60px;
    position: relative;
}

.c-banner4-wrap .c-prev {
    position: absolute;
    top: 50%;
    left: -110px;
    z-index: 10;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff url(../images/prev2.png)no-repeat center / 20px auto;
    transition: .5s;
    cursor: pointer;
}

.c-banner4-wrap .c-next {
    position: absolute;
    top: 50%;
    right: -110px;
    z-index: 10;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff url(../images/next2.png)no-repeat center / 20px auto;
    transition: .5s;
    cursor: pointer;
}

.c-banner4-wrap .c-prev:hover {
    background-color: #0168B7;
    background-image: url(../images/prev2-h2.png);
}

.c-banner4-wrap .c-next:hover {
    background-color: #0168B7;
    background-image: url(../images/next2-h2.png);
}

.c-banner4-top .c-num {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "DINCond-Bold_1";
    font-size: 400px;
    line-height: 1;
    color: #e6e8ec;
}

.c-banner4-top .c-box-wrap {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-banner4-top .c-text-box {
    margin: 0 auto;
    padding: 70px 40px;
    max-width: 500px;
    background: #fff;
    display: flex;
    align-items: center;
}

.c-banner4-top .c-text-box .c-num2 {
    flex: 0 0 120px;
    border-right: 1px solid #dedede;
    font-family: "DINCond-Bold_1";
    font-size: 40px;
    line-height: 1;
}

.c-banner4-top .c-text-box .c-text {
    padding-left: 30px;
    line-height: 2;
    color: #555;
}

.c-banner4-bottom::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    z-index: -1;
    width: 100%;
    border-top: 1px solid #e0e2e7;
}

.c-banner4-bottom .c-dot {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 20px;
    height: 20px;
    border: 2px solid #e0e2e7;
    border-radius: 50%;
    background: #fff;
    transition: .5s;
}

.c-banner4-bottom .c-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transition: .5s;
}

.c-banner4-bottom .swiper-slide-thumb-active .c-dot {
    border-color: #0168B7;
}

.c-banner4-bottom .swiper-slide-thumb-active .c-dot::before {
    background: #0168B7;
}

.c-banner4-bottom .c-num {
    padding-top: 15px;
    font-size: 20px;
    line-height: 30px;
    color: #999;
    text-align: center;
    transition: .5s;
}

.c-banner4-bottom .swiper-slide-thumb-active .c-num {
    color: #0168B7;
}


/* 法律声明、网站地图 */

#c-common-box2 {
    padding: 90px 0;
    background: #eff1f5;
}

#c-common-box2 .c-wrap {
    padding: 80px 100px;
    background: #fff;
}

#c-common-box2 .c-title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ececec;
}

#c-common-box2 .c-title-box .c-title {
    font-size: 40px;
    line-height: 50px;
}

#c-common-box2 .c-title-box a {
    display: inline-block;
    padding-right: 25px;
    font-size: 16px;
    line-height: 26px;
    color: #777;
    background: url(../images/fhsy.png)no-repeat right center / 14px;
    transition: .5s;
}

#c-common-box2 .c-title-box a:hover {
    color: #0168B7;
}

#c-common-box2 .c-text-box {
    line-height: 2;
    color: #777;
}

#c-common-box2 .c-list {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin: 0 -13px -20px;
}

#c-common-box2 .c-list li {
    margin-bottom: 20px;
    padding: 0 13px;
    width: 20%;
}

#c-common-box2 .c-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 70px;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #333;
    background: #f0f2f5;
    transition: all .5s;
}

#c-common-box2 .c-list a:hover {
    color: #fff;
    background: #0168B7;
}


/* 提交成功弹窗 */

#c-pop2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 910;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
}

#c-pop2 .c-box {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 80px 40px;
    width: 90%;
    max-width: 440px;
    background: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#c-pop2 .c-box .c-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background: url(../images/close2.png)no-repeat center / 24px auto;
    cursor: pointer;
}

#c-pop2 .c-box .c-ico {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: #eff1f5 url(../images/tjcg.png)no-repeat center / 36px auto;
}

#c-pop2 .c-box .c-text {
    padding: 25px 0 35px;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #888;
}

#c-pop2 .c-box .c-btn {
    margin: 0 auto;
    width: 200px;
    font-weight: bold;
    font-size: 22px;
    line-height: 70px;
    text-align: center;
    border-radius: 35px;
    color: #fff;
    background: #003c9e;
    cursor: pointer;
}