﻿@charset "UTF-8";
/* 预加载 */
#preloader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-out, visibility 0s linear .2s;
    -o-transition: opacity .2s ease-out, visibility 0s linear .2s;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1002;
}

    #preloader.fullscreen {
        padding: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        background-color: #fff;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #preloader.show {
        -webkit-transition: opacity .4s ease-out, visibility 0s linear 0s;
        -o-transition: opacity .4s ease-out, visibility 0s linear 0s;
        transition: opacity .4s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

    #preloader .circular {
        -webkit-animation: loader-rotate 2s linear infinite;
        animation: loader-rotate 2s linear infinite;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-top: -24px;
        margin-left: -24px;
        display: block;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    #preloader .path {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        -webkit-animation: loader-dash 1.5s ease-in-out infinite;
        animation: loader-dash 1.5s ease-in-out infinite;
        stroke-linecap: round;
    }

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}


.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@charset "UTF-8";

.container, .head_main, .wrap, .index-container, .foot-main {
    padding-right: 0px;
    padding-left: 0px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .wrap, .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .wrap, .container, .head_main, .index-container, .foot-main {
        width: 970px;
    }
}

@media (min-width: 1260px) {
    .wrap, .container, .head_main, .index-container, .foot-main {
        width: 1200px;
    }
}

@media (min-width: 1460px) {
    .container, .head_main, .index-container {
        width: 1430px;
    }
}

@media (min-width: 1520px) {
    .index-container {
        width: 1490px;
    }
}

@media (min-width: 1680px) {
    .container, .head_main, .index-container, .foot-main {
        width: 1600px;
    }
}

.header {
    z-index: 1000;
    position: fixed;
    top: 0;
    height: 100px;
    width: 100%;
    border-bottom: solid 1px rgba(0,0,0,0.1);
    background: #111;
}
    /* .header.white{background: rgba(0,0,0,0.8);border-color: rgba(0,0,0,0.1);}
.header:hover{background: rgba(0,0,0,0.8);border-color: rgba(0,0,0,0.1);} */


    /*===============下拉==============*/
    .header .logo {
        padding: 27.5px 0;
        float: left;
    }

.navbar {
    float: left;
    margin-left: 135px;
}

    .navbar * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

.category-item {
    float: left;
    padding: 0 30px;
}

.category-item-single {
    position: relative;
}

.category-a {
    padding: 0 0;
    display: block;
    font-size: 16px;
    line-height: 100px;
    color: #fff;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    position: relative;
}

    .category-a.on, .category-a:hover {
        color: #0060e7;
    }

    .category-a::after {
        content: '';
        width: 0;
        height: 2px;
        background: #0060e7;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

.category-item.active .category-a::after, .category-item:hover .category-a::after {
    width: 100%;
}

.category-item.active .category-a, .category-item:hover .category-a {
    color: #0060e7;
}

.dropdown-menu.single {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    z-index: 1100;
    background: rgba(255,255,255,1);
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: max-height .8s;
    -o-transition: max-height .8s;
    transition: max-height .8s;
    border: none;
    color: #303233;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
    height: auto;
    padding: 0;
    display: block;
}

    .dropdown-menu.single ul {
        padding: 0px 0;
    }

    .dropdown-menu.single li {
        display: block;
        width: 100%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
/*        position: relative;*/
    }

        .dropdown-menu.single li:last-child {
            border-bottom: 0;
        }

        .dropdown-menu.single li > a {
            padding: 0 60px;
            display: block;
            font-size: 16px;
            color: #666;
            line-height: 59px;
/*            border-top: solid 1px #efefef;*/
            text-align: center;
            white-space: nowrap;
            width: 100%;
            height: auto;
            background: 0 0;
            -webkit-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
        }

        .dropdown-menu.single li:hover a {
            color: #0060e7;
        }

.category-item:hover .dropdown-menu.single {
    max-height: 450px;
    opacity: 1;
}

.nav-language {
    width: 118px;
    height: 34px;
    border-radius: 17px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 1px solid rgba(119,119,119,0.6);
    float: right;
    margin-top: 34px;
    padding: 0 22px;
}

    .nav-language span {
        display: block;
        position: relative;
    }

.icon-down {
    color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.nav-language a {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    line-height: 32px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.lan-box {
    display: none;
}

    .lan-box a {
        display: block;
        border-bottom: 1px solid #fff;
    }

.nav-language span:hover a, .nav-language span:hover .icon-down {
    color: #0060e7;
}

.lan-box a:hover {
    color: #0060e7;
}

/*app-头部*/
.header-app {
    background: #111;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 500;
    -webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    -o-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
}

    .header-app.open-menu {
        height: 100%;
        background: #000;
        -webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        -o-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
        transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
    }

.navbar-app {
    position: relative;
    -webkit-box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    box-shadow: 3px 0 7px 0 rgba(0,0,0,.1);
    height: 60px;
    text-align: center;
}

.header-app .logo {
    float: left;
    height: 60px;
    vertical-align: middle;
    padding: 10px 15px;
}

    .header-app .logo img {
        height: 100%;
    }

.navbar-togger {
    float: right;
    background: transparent;
    border: none;
    padding: 22px 15px;
    display: inline-block;
    visibility: visible;
    transition: transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96),opacity 0.28s 0.36s cubic-bezier(0.52, 0.16, 0.24, 1),-webkit-transform 0.44s 0.2s cubic-bezier(0.04, 0.04, 0.12, 0.96);
}

    .navbar-togger .icon_bar {
        width: 24px;
        height: 2px;
        background-color: #0060e7;
        opacity: 1;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .navbar-togger .icon_bar:nth-of-type(2) {
            margin: 5px 0;
        }

.open-menu .navbar-togger .icon_bar:nth-of-type(2) {
    opacity: 0;
}

.open-menu .navbar-togger .icon_bar:first-child {
    -webkit-transform: translate(0,7px) rotate(45deg);
    -ms-transform: translate(0,7px) rotate(45deg);
    transform: translate(0,7px) rotate(45deg);
}

.open-menu .navbar-togger .icon_bar:last-child {
    -webkit-transform: translate(0,-7px) rotate(-45deg);
    -ms-transform: translate(0,-7px) rotate(-45deg);
    transform: translate(0,-7px) rotate(-45deg);
}

.nav-menu {
    position: absolute;
    top: 60px;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 620;
    padding: 20px 15px;
    overflow-x: hidden;
    overflow-y: auto;
    visibility: hidden;
    -webkit-transition: visibility 0s linear 1s;
    -o-transition: visibility 0s linear 1s;
    transition: visibility 0s linear 1s;
}

.header-app.open-menu .nav-menu {
    visibility: visible;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.nav-list li {
    border-bottom: 1px solid #424242;
    opacity: 0;
    pointer-events: none;
}

    .nav-list li.open {
        border-bottom: none;
    }

.header-app.open-menu .nav-list li {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.nav-list li:nth-child(1) {
    -webkit-transform: translateY(-44px);
    -ms-transform: translateY(-44px);
    transform: translateY(-44px);
    transition: opacity .3345s cubic-bezier(0.52, 0.16, 0.52, 0.84) .15s,transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s,-webkit-transform .4669s cubic-bezier(0.52, 0.16, 0.52, 0.84) .108s;
}

.header-app.open-menu .nav-list li:nth-child(1) {
    transition: opacity .3091s cubic-bezier(0.32, 0.08, 0.24, 1) .03s,transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s,-webkit-transform .3455s cubic-bezier(0.32, 0.08, 0.24, 1) .02s;
}

.nav-list li:nth-child(2) {
    -webkit-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    transform: translateY(-40px);
    transition: opacity .29294s cubic-bezier(0.52, 0.16, 0.52, 0.84) .13s,transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s,-webkit-transform .45043s cubic-bezier(0.52, 0.16, 0.52, 0.84) .095s;
}

.header-app.open-menu .nav-list li:nth-child(2) {
    transition: opacity .32244s cubic-bezier(0.32, 0.08, 0.24, 1) .05s,transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s,-webkit-transform .35825s cubic-bezier(0.32, 0.08, 0.24, 1) .04s;
}

.nav-list li:nth-child(3) {
    -webkit-transform: translateY(-36px);
    -ms-transform: translateY(-36px);
    transform: translateY(-36px);
    transition: opacity .26098s cubic-bezier(0.52, 0.16, 0.52, 0.84) .11s,transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s,-webkit-transform .43756s cubic-bezier(0.52, 0.16, 0.52, 0.84) .082s;
}

.header-app.open-menu .nav-list li:nth-child(3) {
    transition: opacity .33467s cubic-bezier(0.32, 0.08, 0.24, 1) .07s,transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s,-webkit-transform .37539s cubic-bezier(0.32, 0.08, 0.24, 1) .06s;
}

.nav-list li:nth-child(4) {
    -webkit-transform: translateY(-32px);
    -ms-transform: translateY(-32px);
    transform: translateY(-32px);
    transition: opacity .2386s cubic-bezier(0.52, 0.16, 0.52, 0.84) .09s,transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s,-webkit-transform .42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) .069s;
}

.header-app.open-menu .nav-list li:nth-child(4) {
    transition: opacity .34577s cubic-bezier(0.32, 0.08, 0.24, 1) .09s,transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s,-webkit-transform .39692s cubic-bezier(0.32, 0.08, 0.24, 1) .08s;
}

.nav-list li:nth-child(5) {
    -webkit-transform: translateY(-28px);
    -ms-transform: translateY(-28px);
    transform: translateY(-28px);
    transition: opacity .22581s cubic-bezier(0.52, 0.16, 0.52, 0.84) .07s,transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s,-webkit-transform .42259s cubic-bezier(0.52, 0.16, 0.52, 0.84) .056s;
}

.header-app.open-menu .nav-list li:nth-child(5) {
    transition: opacity .35577s cubic-bezier(0.32, 0.08, 0.24, 1) .11s,transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .1s;
}

.nav-list li:nth-child(6) {
    -webkit-transform: translateY(-24px);
    -ms-transform: translateY(-24px);
    transform: translateY(-24px);
    transition: opacity .20343s cubic-bezier(0.52, 0.16, 0.52, 0.84) .05s,transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s,-webkit-transform .41691s cubic-bezier(0.52, 0.16, 0.52, 0.84) .043s;
}

.header-app.open-menu .nav-list li:nth-child(6) {
    transition: opacity .36577s cubic-bezier(0.32, 0.08, 0.24, 1) .13s,transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s,-webkit-transform .41718s cubic-bezier(0.32, 0.08, 0.24, 1) .12s;
}

.nav-list li:nth-child(7) {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
    transition: opacity .18105s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s,-webkit-transform .41123s cubic-bezier(0.52, 0.16, 0.52, 0.84) .03s;
}

.header-app.open-menu .nav-list li:nth-child(7) {
    transition: opacity .37577s cubic-bezier(0.32, 0.08, 0.24, 1) .15s,transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s,-webkit-transform .4115s cubic-bezier(0.32, 0.08, 0.24, 1) .14s;
}

.nav-list li:nth-child(8) {
    -webkit-transform: translateY(-16px);
    -ms-transform: translateY(-16px);
    transform: translateY(-16px);
    transition: opacity .15867s cubic-bezier(0.52, 0.16, 0.52, 0.84) .01s,transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s,-webkit-transform .40555s cubic-bezier(0.52, 0.16, 0.52, 0.84) .17s;
}

.header-app.open-menu .nav-list li:nth-child(8) {
    transition: opacity .38577s cubic-bezier(0.32, 0.08, 0.24, 1) .17s,transform .40582s cubic-bezier(0.32, 0.08, 0.24, 1) .16s,-webkit-transform .42286s cubic-bezier(0.32, 0.08, 0.24, 1) .16s;
}

.cate-item {
    position: relative;
}

    .cate-item a {
        font-size: 16px;
        line-height: 48px;
        margin-right: 60px;
        display: block;
        color: #fff;
    }

.nav-list li.active .cate-item a, .nav-list li.open .cate-item a {
    color: #0060e7
}

.category-cont a:last-child {
    border: none;
}

.category-cont a.active {
    color: #0060e7;
}

.category-tig {
    font-size: 14px;
    color: #888;
    text-align: right;
    line-height: 48px;
    width: 50px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
}

    .category-tig::before, .category-tig::after {
        content: '';
        background: #888;
        position: absolute;
        top: 50%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .category-tig::before {
        width: 16px;
        height: 2px;
        right: 0;
        margin-top: -1px;
    }

    .category-tig::after {
        width: 2px;
        height: 16px;
        margin-top: -8px;
        right: 7px;
    }

.nav-list li.open .category-tig::after {
    opacity: 0;
}

.nav-list li.open .category-tig::before {
    background: #0060e7;
}

.category-cont {
    display: none;
}

.nav-list li.open .category-cont {
    display: block;
    border-top: solid 1px #424242;
    border-bottom: solid 1px #424242;
}

.category-pad {
    padding: 0 15px;
}

.category-cont a {
    line-height: 40px;
    border-bottom: 1px solid #424242;
    display: block;
    color: #fff;
}

.category-pad a.on {
    color: #0060e7;
}

.lan-box-app {
    padding: 20px 0;
    text-align: center;
}

    .lan-box-app a {
        font-size: 14px;
        color: #fff;
        display: inline-block;
        padding: 0 10px;
        position: relative;
    }

        .lan-box-app a:after {
            content: '';
            width: 1px;
            height: 10px;
            background: #fff;
            position: absolute;
            right: 0;
            top: 50%;
            margin-top: -5px;
        }

        .lan-box-app a:hover, .lan-box-app a.on {
            color: #0060e7;
        }

        .lan-box-app a:last-child:after {
            display: none;
        }


/* banner */
.banner {
    overflow: hidden;
    position: relative;
}

    .banner img {
        display: block;
        width: 100%;
    }

        .banner img.app-banner {
            display: none;
        }

.banner-font {
    position: absolute; /* width: 100%; */
    left: 50%;
    top: 26.7%;
    transform: translateX(-50%);
}

    .banner-font h3 {
        opacity: 0;
        transform: translateY(-20px);
        transition: all 1s .5s;
        font-size: 48px;
        color: #fff;
        margin-bottom: 40px;
        line-height: 68px;
    }

    .banner-font h4 {
        padding-bottom: 38px;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 1s .7s;
        font-size: 26px;
        color: #fff;
        line-height: 40px;
        position: relative;
    }
/*.banner-font h4:after{content: '';width: 32px;height: 2px;background: #fff;position: absolute;left: 0;bottom: 0;}*/
.swiper-slide-active .banner-font h3, .swiper-slide-active .banner-font h4 {
    opacity: 1;
    transform: translateY(0);
}

.swiper-pagination {
    bottom: 40px !important;
    text-align: left;
}

.swiper-pagination-bullet {
    opacity: 1;
    width: 16px;
    height: 16px;
    background: transparent;
    margin: 0px 5px !important;
    border: 2px solid #ccc;
}

.banner .swiper-pagination-bullet {
    border-color: #fff;
}

.banner .swiper-pagination-bullet-active {
    border-color: #388ded;
}

.banner .swiper-slide-active img {
    visibility: visible !important;
    -webkit-animation: scaleUpDown 6s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
    animation: scaleUpDown 6s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite;
}

.pagination-box {
    position: relative;
}

.swiper-num {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
    bottom: 40px;
    z-index: 2;
    color: #fff;
}

    .swiper-num span {
        color: #fff;
        font-size: 24px;
        font-family: DINM;
    }

        .swiper-num span.active {
            font-size: 48px;
        }

/* 内页banner */
.inner-banner {
    margin-top: 100px;
    position: relative;
}

    .inner-banner img {
        display: block;
        min-height: 330px;
        width: 100%;
    }

        .inner-banner img.inner-app {
            display: none;
        }

@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/**/
.foot {
    background: #111;
}

    .foot a {
        transition: all 0.3s;
    }

.foot-top {
    padding: 45px 0 120px;
}

.foot-ttop {
    border-bottom: solid 1px #333;
    color: #fff;
    font-size: 14px;
    padding-bottom: 30px;
}

    .foot-ttop a {
        color: #777;
        display: inline-block;
        margin-right: 20px;
    }

.foot-tbot {
    position: relative;
    padding-top: 57px;
}

    .foot-tbot dl dt a {
        font-size: 18px;
        color: #fff;
        display: inline-block;
        margin-bottom: 20px;
    }

    .foot-tbot dl dd a {
        display: inline-block;
        font-size: 14px;
        color: #777;
        line-height: 28px;
    }

    .foot-tbot dl {
        display: inline-block;
        vertical-align: top;
/*        margin-right: 5.5%;*/
        max-width: 100px;
    }

        .foot-tbot dl.last-dl {
            float: right;
            margin-right: 0;
            max-width: 135px;
        }

            .foot-tbot dl.last-dl dt {
                color: #777;
                font-size: 18px;
                margin-bottom: 20px;
            }

            .foot-tbot dl.last-dl dd {
                color: #fff;
                font-size: 36px;
                font-family: DINM;
            }

.dl-box {
    max-height: 88px;
/*    overflow-y: auto;*/
    padding-right: 15px;
}

    .dl-box.scrollbar::-webkit-scrollbar {
        width: 2px;
        background: url(../images/line.png) no-repeat center;
        background-size: cover;
    }

    .dl-box.scrollbar::-webkit-scrollbar-thumb {
        background: url(../images/line1.png) no-repeat center;
    }

.foot-bot {
    padding: 20px 0;
    border-top: 1px solid #333;
}

    .foot-bot p, .foot-bot p a {
        font-size: 14px;
        color: #777;
        line-height: 24px;
    }

    .foot-bot p {
        display: inline-block;
    }

        .foot-bot p.p2 {
            float: right;
        }

    .foot-bot a {
        padding-right: 40px;
    }

.foot a:hover {
    color: #fff;
}

/*app-底部*/
.foot-app {
    width: 100%;
    display: none;
    background: #111;
    padding: 20px 0 40px;
}

.footer-menu {
    padding: 0 15px;
}

.footer-link {
    padding: 15px 0;
    color: #777;
    font-size: 14px
}

    .footer-link a {
        font-size: 14px;
        color: #777;
        line-height: 24px;
    }

.footer-tit {
    position: relative;
    border-bottom: 1px solid #333;
}

    .footer-tit.on > a {
        color: #0060e7;
    }

    .footer-tit a {
        font-size: 16px;
        color: #777;
        line-height: 48px;
        margin-right: 48px;
        display: block;
        transition: all 0.4s;
    }

.footer-tig {
    font-size: 14px;
    color: #777;
    text-align: right;
    line-height: 48px;
    width: 20px;
    height: 48px;
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 2;
}

    .footer-tig::before, .footer-tig::after {
        content: '';
        background: rgba(255,255,255,0.6);
        position: absolute;
        top: 50%;
        transition: all .3s;
        left: 50%;
    }

    .footer-tig::before {
        width: 18px;
        height: 2px;
        margin-left: -8px;
    }

    .footer-tig::after {
        width: 2px;
        height: 18px;
        margin-top: -8px;
    }

.footer-tit.on .footer-tig::after {
    opacity: 0;
}

.footer-tit.on .footer-tig::before {
    background: #0060e7;
}

.footer-cont {
    display: none;
    padding: 0 15px 15px;
}

    .footer-cont a {
        font-size: 14px;
        line-height: 24px;
    }

.footer-tit.on .footer-cont a.on {
    color: #0060e7;
}

.footer-bot {
    padding: 20px 15px;
}

    .footer-bot p a {
        margin-right: 20px;
    }

    .footer-bot p.p2 {
        margin-top: 10px;
    }

    .footer-bot p, .footer-bot p a {
        color: #777;
        font-size: 14px;
    }

    .footer-bot .tel {
        color: #777;
        font-size: 14px;
        margin-bottom: 10px;
    }

        .footer-bot .tel span {
            color: #777;
            display: inline-block;
            font-size: 18px;
            font-family: DINM;
            margin-left: 10px;
        }

/*pc-客服*/
.kf {
    z-index: 600;
    background-color: #fff;
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 62px;
    border-radius: 5px;
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    transition: all .8s;
}

    .kf span {
        z-index: 602;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        cursor: pointer;
        position: relative;
        display: block;
        width: 62px;
        height: 62px;
        border-bottom: 1px solid #e3e3e3;
        background: url(../images/kefu_j.png) no-repeat center #fff;
    }

        .kf span:hover {
            background-color: #005bac;
        }

    .kf .zx {
        border-radius: 5px 5px 0 0;
        background-position: 0 0;
    }

        .kf .zx:hover {
            background-position: 0 -62px;
        }

    .kf .freetel {
        background-position: -62px 0;
    }

        .kf .freetel:hover {
            background-position: -62px -62px;
        }

    .kf .act {
        background-position: -186px 0;
    }

        .kf .act:hover {
            background-position: -186px -62px;
        }

    .kf .zxlya {
        background-position: 0px 0px;
    }

        .kf .zxlya:hover {
            background-position: 0px -62px;
        }

    .kf .back_top {
        border-radius: 0 0 5px 5px;
        border: none;
        background-position: -248px 0;
    }

        .kf .back_top:hover {
            background-position: -248px -62px;
        }

    .kf span div {
        display: none;
        background-color: #fff;
        border-radius: 5px;
        position: absolute;
        right: 75px;
        padding: 20px;
        font-size: 14px;
        color: #f4474c;
        bottom: 2px;
        text-align: center;
    }

        .kf span div input {
            text-indent: .5em;
            display: block;
            margin: 15px 0;
            line-height: 28px;
            color: #696969;
            font-size: 12px;
            width: 140px;
            border: 1px solid #d1d1d1;
            border-radius: 2px;
            height: 28px;
        }

        .kf span div a {
            -o-transition: .5s;
            transition: .5s;
            -webkit-transition: .5s;
            display: block;
            background: #f4474c;
            border-radius: 2px;
            color: #fff;
            line-height: 26px;
            font-size: 12px;
            text-align: center;
            width: 79px;
            height: 26px;
        }

            .kf span div a:hover {
                background: #f4474c;
            }

.kfimgr {
    position: absolute;
    bottom: 23px;
    right: -9px;
}

.kf span div i {
    display: block;
    position: absolute;
    width: 15px;
    height: 200px;
    right: -15px;
    top: 0;
}

.kf .zx div, .kf .freetel div,
.kf .zxlya div, .kf span:nth-child(4) div {
    text-align: center;
    min-width: 148px;
    font-size: 14px;
    color: #666;
}

.kf span:nth-child(4) div {
    white-space: nowrap;
}

.kf a {
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}

.kf span div, .kf {
    -webkit-box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 13px rgba(0, 0, 0, 0.25);
}

.nav_center div, .index_nav_center div, .shou, .zhan {
    -webkit-box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.shou {
    z-index: 601;
    cursor: pointer;
    width: 30px;
    height: 40px;
    top: 50%;
    margin-top: -15px;
    border-radius: 5px 0 0 5px;
    right: 62px;
    background: url("../images/kefu_j.png") no-repeat -310px 0 #fff;
    position: absolute;
}

    .shou.on {
        background-position: -310px -40px;
    }

/*app-客服*/
.kefu {
    display: none;
    position: fixed;
    width: 240px;
    overflow: hidden;
    z-index: 400;
    background: rgba(0, 0, 0, 0.5);
    left: 50%;
    margin-left: -120px;
    bottom: 15px;
    padding: 8px 0;
    transition: all .5s;
}

    .kefu li {
        width: 60px;
        float: left;
        border-left: 1px solid #fff;
    }

        .kefu li:first-child {
            border-left: none;
        }

        .kefu li a {
            font-size: 20px;
            display: block;
            margin: 0 auto;
            width: 100%;
            height: 30px;
            text-align: center;
            line-height: 30px;
            color: white;
        }

/* banner */
@media (max-width: 1680px) {
}

@media (max-width: 1519px) {
    .navbar {
        margin-left: 70px;
    }
}

@media (max-width: 1459px) {
    .category-a {
        padding: 0;
    }

    .category-item {
        padding: 0 20px;
    }
}

@media (max-width: 1259px) {
    .navbar {
        margin-left: 25px;
    }

    .category-item {
        padding: 0 8px;
    }

    .foot-tbot dl {
        margin-right: 3%;
    }

    .foot-nav a {
        margin-right: 33px;
    }
}

@media (max-width: 991px) {
    .header, .foot, .kf {
        display: none !important;
    }

    .header-app, .foot-app, .kefu {
        display: block;
    }

    .banner {
        margin-top: 60px;
    }

        .banner img.app-banner {
            display: block;
        }

        .banner img.pc-banner {
            display: none;
        }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination {
        bottom: 15px !important;
        width: 100%;
        text-align: center;
    }

    .swiper-num {
        display: none;
    }

    .inner-banner img {
        min-height: auto;
    }

        .inner-banner img.inner-app {
            display: block;
        }

        .inner-banner img.inner-pc {
            display: none;
        }
}

@media (max-width: 767px) {

    .banner-font h3 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 10px;
    }

    .banner-font h4 {
        font-size: 16px;
        line-height: 1.5;
    }

    .banner-font {
        top: 45% !important;
        transform: translateY(-50%);
        left: 0;
    }
}


/* contain */
/* 首页 */
/* part1 */
.in-one {
    padding: 80px 0 90px;
}

.tit-con {
    position: relative;
    margin-bottom: 44px;
}

.in-tit {
    display: inline-block;
}

    .in-tit h3 {
        font-size: 40px;
        color: #333;
        margin-bottom: 20px;
    }

    .in-tit p {
        font-size: 18px;
        color: #777;
    }

.in-more {
    width: 140px;
    height: 41px;
    border-radius: 20.5px;
    border: 1px solid #c2c2c2;
    line-height: 40px;
    color: #005fe5;
    font-size: 16px;
    display: inline-block;
    padding: 0 35px;
    vertical-align: top;
    float: right;
    position: relative;
}

    .in-more i {
        display: inline-block;
        width: 20px;
        height: 20px;
        background: url(../images/right.png) no-repeat center;
        position: absolute;
        right: 35px;
        top: 50%;
        margin-top: -10px;
        transition: all 0.4s;
    }

    .in-more:hover i {
        transform: translateX(8px);
    }

.in1-list .in1-swiper {
    overflow: hidden;
    position: relative;
    padding-bottom: 55px;
}

    .in1-list .in1-swiper .swiper-pagination {
        bottom: 0 !important;
        width: 100%;
        text-align: center;
    }

.swiper-pagination-bullet-active {
    border-color: #e0641d;
}

.in1-list .swiper-slide {
    width: 31.3%;
    overflow: hidden;
    float: left;
    position: relative;
    background: url(../images/bg.jpg) no-repeat center;
    background-size: cover;
}

.in1-pic {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .in1-pic img {
        display: block;
        width: 100%;
        transition: all 0.4s;
    }

.in1-desc {
    padding: 40px 35px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: all 0.4s;
}

.in1-descIn {
    transition: all 0.4s;
    background: url(../images/right1.png) no-repeat right center;
    background-position: 118%;
}

.in1-desc h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 85%;
}

.in1-desc p {
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 85%;
}

.in1-list .swiper-slide:hover .in1-desc {
    background: #e0641d;
}

.in1-list .swiper-slide:hover .in1-descIn {
    background-position: 99%;
}

.in1-list .swiper-slide:hover .in1-pic img {
    transform: scale(1.1);
}

/* part2 */
.in-two {
    padding: 80px 0 110px;
    background: url(../images/img4.jpg) no-repeat center bottom;
    background-size: cover;
}

    .in-two .tit-con {
        margin-bottom: 84px;
    }

.in2-con .in-tit {
    text-align: center;
    width: 100%;
}

    .in2-con .in-tit h3 {
        color: #fff;
    }

    .in2-con .in-tit p {
        color: rgba(255,255,255,0.6);
    }

.in2-list li {
    width: 21.25%;
    float: left;
    padding: 40px 40px 20px;
    position: relative;
    z-index: 1;
    margin-right: 5%;
}

    .in2-list li:nth-child(4n) {
        margin-right: 0;
    }

    .in2-list li:after {
        content: '';
        width: 100%;
        height: 0.01px;
        border: 1px solid rgba(85,85,85,0.7);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: all 0.4s;
    }

.in2-pic {
    width: 60px;
    height: 60px;
    margin-bottom: 65px;
}

    .in2-pic img {
        display: block;
    }

.in2-list span {
    color: #fff;
    font-size: 48px;
    font-family: DINM;
    display: inline-block;
    line-height: 1;
}

.in2-list p {
    color: #bfbfbf;
    font-size: 18px;
}

    .in2-list p.p2 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: 48px;
    }

.in2-desc-top {
    margin-bottom: 55px;
}

    .in2-desc-top span {
        margin-right: 5px;
        margin-bottom: 5px;
    }

.in2-desc-bot {
    padding-top: 10px;
    position: relative;
    z-index: 1;
}

    .in2-desc-bot span {
        color: #999;
        transition: all 0.4s;
    }

    .in2-desc-bot:after {
        content: '';
        width: 100%;
        height: 34px;
        background: rgba(51,51,51,0.5);
        position: absolute;
        left: -55px;
        bottom: 0;
        z-index: -1;
        transition: all 0.4s;
    }

.in2-list li:hover:after {
    height: 100%;
}

.in2-list li:hover .in2-desc-bot span {
    color: #fff;
}

.in2-list li:hover .in2-desc-bot:after {
    background: #0060e7;
}

/* part3 */
.in-three {
    padding: 80px 0 90px;
    background: #f5f5f5;
}

    .in-three .tit-con {
        text-align: center;
    }

    .in-three .in-tit h3 {
        margin-bottom: 0;
    }

.in3-top {
    position: relative;
}

.in3-tl {
    width: 50%;
    float: left;
    overflow: hidden;
}

    .in3-tl img {
        display: block;
        width: 100%;
        transition: all 0.4s;
    }

.in3-tr {
    width: 50%;
    float: right;
    background: #fff;
    position: absolute;
    right: 0;
    height: 100%;
    padding: 55px 90px;
}

.in3-tl:hover img {
    transform: scale(1.1);
}

.in3-tr p {
    color: #666;
    font-size: 16px;
    line-height: 36px;
    max-height: 175px;
    overflow-y: auto;
    padding-right: 10px;
}

.in3-tr .in-more {
    float: left;
    margin-top: 35px;
}

.in3-top {
    margin-bottom: 44px;
}

.in3-bot li {
    width: 33.33%;
    float: left;
    position: relative;
}

.in3-bot .in3-pic:after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.4s;
}

.in3-bot .in3-pic {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

    .in3-bot .in3-pic img {
        display: block;
        width: 100%;
    }

.in3-bot .in3-desc {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 3;
}

    .in3-bot .in3-desc img {
        display: block;
        margin: 0 auto 8px;
    }

    .in3-bot .in3-desc p {
        color: #fff;
        font-size: 24px;
    }

    .in3-bot .in3-desc i {
        display: block;
        width: 28px;
        height: 28px;
        background: url(../images/right1.png) no-repeat center;
        margin: 20px auto 0;
        opacity: 0;
        transition: all 0.4s;
        background-size: cover;
    }

.in3-bot li:hover .in3-pic:after {
    background: rgba(0,96,231,0.7);
}

.in3-bot li:hover .in3-desc i {
    opacity: 1;
}

/* part4 */
.in-four {
    padding: 80px 0 120px;
    background: #1b4f77;
    border-top: 10px solid #113b62;
}

    .in-four .in-tit h3 {
        color: #fff;
        margin-bottom: 0;
    }

    .in-four .in-more {
        color: #fff;
        border-color: #fff;
    }

        .in-four .in-more i {
            background: url(../images/right2.png) no-repeat center;
        }

.in4-left {
    width: 47.5%;
    float: left;
}

    .in4-left .in4-pic {
        overflow: hidden;
    }

        .in4-left .in4-pic img {
            display: block;
            width: 100%;
            transition: all 0.4s;
        }

.in4-desc {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s;
}

.in4-desc-in {
    position: relative;
}

.in4-desc-lf {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-right: 13px;
}

    .in4-desc-lf:before {
        content: '';
        width: 1px;
        height: 90%;
        background: rgba(255,255,255,0.2);
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -45%;
    }

.in4-desc-rt {
    padding-left: 12%;
}

.in4-desc-lf span {
    font-size: 40px;
    color: #fff;
    font-family: DINM;
    line-height: 1;
    display: inline-block;
}

.in4-desc-lf p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    font-family: DINM;
}

.in4-desc-rt h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: all 0.4s;
}

.in4-desc-rt p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.in4-right {
    width: 47.5%;
    float: right;
}

    .in4-right li {
        margin-bottom: 30px;
        border: 1px solid rgba(255,255,255,0.2);
        padding: 30px 40px;
        transition: all 0.4s;
    }

    .in4-right .in4-desc {
        padding: 0;
        border-bottom: none;
    }

    .in4-right li:last-child {
        margin-bottom: 0;
    }

    .in4-right li:hover {
        background: #0060e7;
        border-color: transparent;
    }

.in4-left:hover .in4-pic img {
    transform: scale(1.1);
}

.in4-left:hover .in4-desc h3 {
    color: #0060e7;
}

/* 产品中心 */

.crumb {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 48px;
    color: #fff;
}

    .crumb .wrap {
        color: #fff;
    }

    .crumb a {
        color: #fff;
        font-size: 16px;
    }

        .crumb a:hover, .crumb a:last-child {
            color: #e0641d;
        }

.ny-tit {
    background: #fff;
}

.ny-tlf {
    float: left;
}

    .ny-tlf h3 {
        font-size: 30px;
        color: #fff;
        padding: 24px 90px;
        background: #e0641d;
    }

.ny-trt {
    display: inline-block;
    float: right;
}

    .ny-trt a {
        display: inline-block;
        line-height: 78px;
        color: #111;
        font-size: 18px;
        margin-left: 46px;
        position: relative;
    }

        .ny-trt a:first-child {
            margin-left: 0;
        }

        .ny-trt a:after {
            content: '';
            width: 68px;
            height: 2px;
            background: #e0641d;
            position: absolute;
            bottom: 0;
            left: 50%;
            margin-left: -34px;
            display: none;
        }

        .ny-trt a:hover, .ny-trt a.on {
            color: #e0641d;
        }

            .ny-trt a.on:after {
                display: block;
            }

.ny-box {
    background: #f5f5f5;
}

.pro-nav a {
    line-height: 58px;
    display: inline-block;
    color: #111;
    font-size: 18px;
    margin-right: 66px;
}

    .pro-nav a:hover, .pro-nav a.on {
        color: #e0641d;
    }

    .pro-nav a:last-child {
        margin-right: 0;
    }

.pro-nav {
    border-bottom: 1px solid #d9d9d9;
}

.pro-list {
    padding: 100px 0;
}

    .pro-list li {
        width: 373px;
        position: relative;
        height: 383px;
        overflow: hidden;
        float: left;
        margin-right: 40px;
        background: #111;
        margin-bottom: 40px;
    }

        .pro-list li:nth-child(3n) {
            margin-right: 0;
        }

        .pro-list li .in1-desc {
            padding: 25px 32px;
        }

            .pro-list li .in1-desc h3 {
                margin-bottom: 5px;
            }

        .pro-list li:hover .in1-desc {
            background: #e0641d;
        }

        .pro-list li:hover .in1-descIn {
            background-position: 99%;
        }

        .pro-list li:hover .in1-pic img {
            transform: scale(1.1);
        }

.inner-scroll {
    overflow-x: auto;
    white-space: nowrap;
}

/* 分页 */
.page {
    text-align: center;
    margin-top: 20px;
}

    .page a {
        display: inline-block;
        width: 43px;
        height: 43px;
        border-radius: 50%;
        line-height: 43px;
        text-align: center;
        color: #222;
        font-size: 18px;
        background: #fff;
        vertical-align: middle;
    }

        .page a:hover, .page a.on {
            color: #fff;
            background: #e0641d;
        }

        .page a.page-prev {
            margin-right: 15px;
        }

        .page a.page-next {
            margin-left: 15px;
        }

/* 产品详情 */
.proxq-one {
    background: #f5f5f5;
    padding: 100px 0;
}

.proxq-left {
    width: 50%;
    float: left;
    height: 616px;
    overflow: hidden;
}

.pro-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #111;
}

    .pro-swiper .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .pro-swiper .gallery-top {
        height: 100%;
        width: 100%;
    }

    .pro-swiper .gallery-thumbs {
        box-sizing: border-box;
        padding: 10px 0;
        width: 66.67%;
        margin: 0 auto;
        position: absolute;
        bottom: 6%;
        left: 50%;
        margin-left: -33.3%;
    }

        .pro-swiper .gallery-thumbs .swiper-slide {
            width: 25%;
            height: 100%;
            opacity: 1;
            background-size: cover;
            border: 1px solid #7d7d7d;
        }

        .pro-swiper .gallery-thumbs .swiper-slide-thumb-active {
            border-color: #e0641d;
        }

    .pro-swiper .swiper-button-next, .pro-swiper .swiper-button-prev {
        margin-top: 32.4%;
        background-size: 10px 17px;
    }

    .pro-swiper .swiper-slide img {
        display: block;
        width: 100%;
    }

    .pro-swiper .swiper-button-next {
        right: 10%;
    }

    .pro-swiper .swiper-button-prev {
        left: 10%;
    }

    .pro-swiper .swiper-pagination {
        text-align: center;
        display: none;
    }

    .pro-swiper .swiper-pagination-bullet {
        display: inline-block;
    }

.proxq1-con {
    position: relative;
}

.proxq-right {
    width: 50%;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 60px 40px 100px;
}

.proxq-pbox {
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 30px 0;
}

.proxq-rdesc h3 {
    color: #111;
    font-size: 36px;
    margin-bottom: 30px;
}

.proxq-pbox p {
    color: #111;
    font-size: 18px;
}

    .proxq-pbox p span {
        display: inline-block;
        color: #777;
        font-size: 18px;
    }

.proxq-rdesc a {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    background: #e0641d;
    margin-top: 30px;
}

.proxq-two {
    padding: 100px 0;
    background: #fff;
}

.proxq2-nav {
    background: #1f1f1f;
    margin-bottom: 40px;
}

    .proxq2-nav li {
        line-height: 56px;
        padding: 0 40px;
        color: #fff;
        font-size: 18px;
        display: inline-block;
    }

        .proxq2-nav li.on {
            background: #e0641d;
        }

.proxq2-item li {
    font-size: 18px;
    color: #111;
    padding: 13px 40px;
}

    .proxq2-item li:nth-child(odd) {
        background: #e5eaf1;
    }

    .proxq2-item li span {
        font-size: 18px;
        color: #111;
        display: inline-block;
        margin-right: 20px;
        position: relative;
        padding-left: 18px;
    }

        .proxq2-item li span:before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            position: absolute;
            left: 0;
            top: 50%;
            margin-top: -3px;
            background: #000;
        }

.proxq2-item {
    display: none;
}

    .proxq2-item.on1 {
        display: block;
    }

.xq-menu {
    text-align: center;
    margin-bottom: 100px;
    border: 1px solid #d2d2d2;
}

    .xq-menu a {
        display: inline-block;
        font-size: 14px;
        color: #777;
        line-height: 60px;
        width: 33.33%;
        float: left;
    }

        .xq-menu a i {
            display: inline-block;
            font-size: 14px;
            color: #777;
            transition: all 0.4s;
        }

.ny-box1 {
    background: #fff;
}

.xq-menu a.xqmenu-prev {
    border-right: 1px solid #d2d2d2;
}

.xq-menu a.xqmenu-next {
    border-left: 1px solid #d2d2d2;
}

.xq-menu a:hover {
    color: #fff;
    background: #0060e7;
}

    .xq-menu a:hover i {
        color: #fff;
    }

.promote {
    padding: 100px 0;
    border-top: 2px solid #f5f5f5;
}

.promote-tit {
    font-size: 40px;
    color: #111;
    margin-bottom: 50px;
}

.promote .in1-list .in1-desc {
    padding: 25px 32px;
}

    .promote .in1-list .in1-desc h3 {
        margin-bottom: 5px;
    }

.promote .in1-list .swiper-slide {
    background: #111;
}



/* 技术支持 */
.ser-box {
    padding: 70px 0 80px;
}

.ser-tit {
    text-align: center;
}

    .ser-tit h3 {
        font-size: 40px;
        color: rgba(51,51,51,0.06);
        text-transform: uppercase;
        font-family: DINM;
    }

    .ser-tit h4 {
        font-size: 36px;
        color: #333;
        margin-top: -17px;
    }

    .ser-tit p {
        color: #666;
        font-size: 18px;
        line-height: 30px;
        margin-top: 30px;
    }

.ser-form {
    margin-top: 48px;
}

.ser-block input {
    width: 48.75%;
    line-height: 46px;
    height: 46px;
    background: #fff;
    border: none;
    outline: medium;
    color: #777;
    font-size: 18px;
    padding: 0 30px;
    margin-right: 2.5%;
}

    .ser-block input:last-child {
        margin-right: 0;
    }

.ser-block {
    margin-bottom: 2.5%;
    font-size: 0;
    text-align: center;
}

    .ser-block textarea {
        width: 100%;
        height: 200px;
        background: #fff;
        font-size: 18px;
        color: #777;
        padding: 15px 30px;
    }

    .ser-block:last-child {
        margin-bottom: 0;
    }

.ny-btn {
    width: 189px;
    height: 53px;
    line-height: 53px;
    color: #fff;
    font-size: 18px;
    background: #e0641d;
    margin-top: 30px;
    text-align: center;
}

.ser2-con {
    padding-top: 82px;
}

    .ser2-con .ser-tit h4 {
        margin-top: 0;
    }

.ser2-list {
    display: flex;
    justify-content: space-between;
}

    .ser2-list dl {
        display: inline-block;
        vertical-align: top;
    }

        .ser2-list dl dt {
            font-size: 18px;
            color: #666;
            margin-bottom: 18px;
            padding-left: 30px;
        }

            .ser2-list dl dt.qq {
                background: url(../images/qq.png) no-repeat left center;
            }

            .ser2-list dl dt.phone {
                background: url(../images/tel.png) no-repeat left center;
            }

            .ser2-list dl dt.wx {
                background: url(../images/wx.png) no-repeat left center;
            }

        .ser2-list dl dd.tel {
            color: #666;
            font-size: 36px;
        }

.ser2-list {
    margin-top: 74px;
}

/* 常见问题 */
.faq-box {
    padding: 60px 0;
}

.faq_box {
    background: #fff;
}

.faq_list li {
    text-align: left;
    background: #fff;
    border-bottom: 1px solid #f5f5f5;
}

    .faq_list li.on, .faq_list li:hover {
        background: #e0641d;
    }

        .faq_list li:hover .faq_tit h3, .faq_list li.on .faq_tit h3 {
            color: #fff;
        }

.faq_font {
    display: none;
}

.faq_tit-con {
    padding: 30px 40px;
    position: relative;
    background: url(../images/quest.png) no-repeat left center;
}

.faq_tit {
    padding: 0 40px;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

    .faq_tit h3 {
        color: #777;
        font-size: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.faq_list li.on .faq_tit-con, .faq_list li:hover .faq_tit-con {
    background: url(../images/questh.png) no-repeat left center;
}

.faq_list li:hover .faq_tit .icon-down, .faq_list li.on .faq_tit .icon-down {
    color: #fff;
    transform: rotate(180deg) translateY(50%);
}

.faq_det {
    padding: 40px 80px;
    box-sizing: border-box;
    position: relative;
    background: #fbfbfb;
}

    .faq_det span {
        display: inline-block;
        position: absolute;
        left: 40px;
        top: 45px;
        width: 18px;
        height: 18px;
        background: url(../images/answ.png) no-repeat center;
    }

    .faq_det p {
        color: #777;
        font-size: 18px;
    }

.faq_tit .icon-down {
    color: #7e7e7e;
    font-size: 18px;
}

.faq-box .page {
    margin-top: 60px;
}

/* 下载中心 */
.down-box {
    padding-bottom: 60px;
}

    .down-box .pro-nav {
        text-align: right;
        margin-bottom: 100px;
    }

.down_list table {
    width: 100%;
}

    .down_list table tr {
        height: 57px;
        line-height: 57px;
        border: 1px solid #eee;
        background: #fff;
        text-align: left;
        transition: all 0.4s;
    }

        .down_list table tr.tr1 {
            background: #2e77d2;
        }

        .down_list table tr td {
            color: #b1b1b1;
            font-size: 18px;
            height: 57px;
            position: relative;
            font-family: arial;
            padding: 0 36px;
            text-align: left;
            transition: all 0.4s;
            text-overflow: ellipsis;
            white-space: nowrap;
            overflow: hidden;
        }

            .down_list table tr td.td1 {
                width: 600px;
                color: #111;
            }

            .down_list table tr td.td4 {
                width: 100px;
            }

            .down_list table tr td a {
                display: inline-block;
                background: url(../images/down1.png)no-repeat center;
                width: 100%;
                height: 48px;
                position: absolute;
                left: 0;
                top: 0;
            }

        .down_list table tr:hover td a {
            background: url(../images/down1h.png)no-repeat center;
        }

        .down_list table tr:hover {
            background: #e0641d;
        }

            .down_list table tr:hover td {
                color: #fff;
            }

.down_list .page {
    margin-top: 60px;
}

/* 关于我们 */
.abo-one {
    padding: 100px 0;
    background: #f2f6fa;
}

.abo1-con {
    text-align: center;
}

    .abo1-con .ser-tit {
        margin-bottom: 55px;
    }

    .abo1-con h5 {
        color: #e0641d;
        font-size: 24px;
        margin-bottom: 54px;
    }

    .abo1-con p {
        color: #333;
        font-size: 16px;
        line-height: 36px;
        text-align: left;
    }

.abo1-swiper {
    overflow: hidden;
    margin-top: 60px;
}

    .abo1-swiper .swiper-pagination {
        display: none;
    }

.abo1-pic img {
    display: block;
    width: 100%;
}

.abo1-desc {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.1);
    width: 100%;
    height: 100%;
}

.abo1-descIn {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}

    .abo1-descIn p {
        color: #fff;
        font-size: 16px;
    }

        .abo1-descIn p span {
            font-size: 36px;
            color: #fff;
            font-family: DINM;
        }

.abo1-swiper .swiper-button-next, .abo1-swiper .swiper-button-prev {
    width: 28px;
    height: 28px;
    background: #d9d9d9;
    border-radius: 50%;
    line-height: 28px;
    margin-top: -14px;
    transition: all 0.4s;
    font-size: 12px;
}

    .abo1-swiper .swiper-button-next:hover, .abo1-swiper .swiper-button-prev:hover {
        color: #fff;
        background: #0060e7;
    }

.abo-two {
    padding: 70px 0 90px;
    background: url(../images/img27.jpg) no-repeat top center;
}

    .abo-two .ser-tit h3 {
        color: rgba(255,255,255,0.06);
    }

    .abo-two .ser-tit h4 {
        color: #fff;
    }

.abo2-list {
    text-align: center;
    margin-top: 70px;
    margin-bottom: 55px;
}

    .abo2-list .abo2-pic {
        margin-bottom: 25px;
    }

    .abo2-list h3 {
        font-size: 24px;
        color: #fff;
        margin-bottom: 18px;
    }

    .abo2-list p {
        color: #fff;
        font-size: 18px;
        line-height: 32px;
    }

    .abo2-list li {
        width: 30%;
        display: inline-block;
        vertical-align: top;
        padding: 0 7.5%;
    }

.abo2-list2 li {
    position: relative;
    text-align: center;
}

.abo2-lf {
    background: #fff;
    width: 50%;
    position: absolute;
    height: 100%;
    top: 0;
    padding: 25px 60px;
    transition: all 0.3s;
}

    .abo2-lf:after {
        content: '';
        width: 0;
        height: 0;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 15px solid #fff;
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        transition: all 0.4s;
    }

    .abo2-lf.right:after {
        right: auto;
        left: -15px;
        border-right: 15px solid #fff;
        border-left: none;
    }

    .abo2-lf.left {
        left: 0;
    }

    .abo2-lf.right {
        right: 0;
    }

.abo2-rt {
    width: 50%;
    position: relative;
    overflow: hidden;
}

    .abo2-rt:hover img {
        transform: scale(1.1);
    }

    .abo2-rt img {
        display: block;
        width: 100%;
        transition: all 0.4s;
    }

.abo2-lf h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.abo2-lf p {
    color: #333;
    font-size: 18px;
    line-height: 30px;
}

.abo2-pic2 {
    width: 60px;
    height: 70px;
    display: inline-block;
    margin-bottom: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.abo2-lf.left .abo2-pic2 {
    background-image: url(../images/ccimg33.png);
}

.abo2-lf.right .abo2-pic2 {
    background-image: url(../images/ccimg34.png);
}

.abo2-lf:hover {
    background: #e0641d;
}

    .abo2-lf:hover h3, .abo2-lf:hover p {
        color: #fff;
    }

    .abo2-lf:hover:after {
        border-left-color: #0060e7;
    }

.abo2-lf.right:hover:after {
    border-right-color: #0060e7;
}

.abo2-lf.left:hover .abo2-pic2 {
    background-image: url(../images/img33h.png);
}

.abo2-lf.right:hover .abo2-pic2 {
    background-image: url(../images/img34h.png);
}

.abo-three {
    padding: 0 0 100px;
}

.abo3-con {
    overflow: hidden;
}

.abt-top .swiper-slide {
    padding: 100px 140px 70px;
}

.abt-year {
    font-size: 72px;
    color: #e0641d;
    font-family: DINM;
    line-height: 72px;
    border-right: solid 1px #0060e7;
    padding-right: 60px;
    display: inline-block;
    vertical-align: bottom;
}

.abt-dec {
    margin-left: 60px;
    width: 330px;
    display: inline-block;
}

    .abt-dec p {
        font-size: 18px;
        color: #777;
        line-height: 30px;
        vertical-align: bottom;
    }

.abt-pic {
    width: 320px;
    display: inline-block;
    vertical-align: bottom;
}

    .abt-pic img {
        display: block;
        width: 100%;
    }

.abt-top .abt-prev {
    left: 20px;
    top: 50%;
    margin-top: 0;
    width: 52px;
    height: 52px;
    background: #d9d9d9;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

.abt-top .abt-next {
    right: 20px;
    top: 50%;
    margin-top: 0;
    width: 52px;
    height: 52px;
    background: #d9d9d9;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

    .abt-top .abt-prev:hover, .abt-top .abt-next:hover {
        color: white;
        background: #0664e7;
    }

.abt-thumbs {
    padding: 0 20px;
    overflow: hidden;
}

    .abt-thumbs .time-line {
        height: 60px;
        position: relative;
    }

    .abt-thumbs .dot {
        padding: 3px;
        width: 14px;
        height: 14px;
        border: 1px solid #e0641d;
        border-radius: 50%;
        position: absolute;
        top: 21px;
        left: -6px;
        opacity: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

        .abt-thumbs .dot i {
            display: block;
            background: #e0641d;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

    .abt-thumbs .swiper-slide.active-nav .dot {
        opacity: 1;
    }

    .abt-thumbs .daty {
        font-size: 16px;
        line-height: 32px;
        position: absolute;
        top: 37px;
        left: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 10;
        color: #666;
        font-family: DINM;
    }

    .abt-thumbs .swiper-slide.active-nav .daty {
        color: #e0641d;
    }

    .abt-thumbs .swiper-slide {
        float: left;
        background: url(../images/time-line.png) no-repeat top left;
        cursor: pointer;
        background-size: contain;
    }

.abo-four {
    padding: 70px 0 100px;
    background: url(../images/img36.jpg) no-repeat center;
    background-size: cover;
}

    .abo-four .ser-tit h3 {
        color: rgba(255,255,255,0.06);
    }

    .abo-four .ser-tit h4 {
        color: #fff;
    }

.abo4-swiper {
    overflow: hidden;
    padding: 0 100px;
    position: relative;
}

    .abo4-swiper .swiper-container {
        overflow: hidden;
    }

.honor-pic {
    height: 307px;
    overflow: hidden;
}

    .honor-pic img {
        display: block;
        width: 100%;
        height: 100%;
    }

.abo4-swiper .swiper-button-next, .abo4-swiper .swiper-button-prev {
    width: 52px;
    height: 52px;
    background: #d9d9d9;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    transition: all 0.4s;
    top: 40%;
}

    .abo4-swiper .swiper-button-next:hover, .abo4-swiper .swiper-button-prev:hover {
        color: white;
        background: #0664e7;
    }

.abo4-swiper .swiper-pagination {
    bottom: 0 !important;
    text-align: center;
    display: none;
}

.honor-tit {
    font-size: 14px;
    color: #fff;
    text-align: center;
    padding: 25px 0;
}

.abo4-nav {
    margin-bottom: 70px;
    margin-top: 60px;
    text-align: center;
}

    .abo4-nav a {
        display: inline-block;
        font-size: 18px;
        color: #fff;
        padding: 5px 36px;
    }

    .abo4-nav li {
        border: 1px solid #d9d9d9;
        display: inline-block;
        border-radius: 20.5px;
        margin: 0 35px;
    }

        .abo4-nav li.on {
            background: #e0641d;
            border-color: transparent;
        }

            .abo4-nav li.on a {
                color: #fff;
            }

.abo4-item {
    display: none;
}

    .abo4-item.on1 {
        display: block;
    }

.nei_anchor {
    text-align: center;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1001;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.2);
    transition:all 0.5s;
}
    .nei_anchor2{
        top:135px;
    }
    .nei_anchor .wrap {
        font-size: 0;
    }

    .nei_anchor span {
        display: inline-block;
        *display: inline;
        *zoom: 1;
    }

        .nei_anchor span a {
            font-size: 16px;
            color: #fff;
            line-height: 50px;
            padding: 0 40px;
            display: inline-block;
            -webkit-transition: .5s;
            -moz-transition: .5s;
            -ms-transition: .5s;
            -o-transition: .5s;
            transition: .5s;
            position: relative;
        }

            .nei_anchor span a:after {
                content: '';
                width: 1px;
                height: 17px;
                background: #dadada;
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
            }

            .nei_anchor span.on a:after, .nei_anchor span a:hover:after {
                display: none;
            }

        .nei_anchor span:hover a,
        .nei_anchor span.on a {
            color: #fff;
            background: #e0641d;
        }

.ab_poti {
    position: relative;
}

.abposi_ab {
    position: absolute;
    height: 1px;
    top: -140px;
}

/*图片放大*/
#darkbox {
    position: fixed;
    z-index: 9999;
    background: rgba(0,0,0,0.8) no-repeat none 50%;
    background-size: contain;
    -webkit-box-shadow: 0 0 0 3000px rgba(0,0,0,0.8);
    box-shadow: 0 0 0 3000px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
}

    #darkbox.on {
        opacity: 1;
        visibility: visible;
        height: 90% !important;
        width: 90% !important;
        left: 5% !important;
        top: 5% !important;
    }

.dark-close i {
    color: #fff;
}

#darkbox_prev, #darkbox_next {
    cursor: pointer;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    position: absolute;
    top: 50%;
    margin-top: -15px;
    height: 30px;
    width: 30px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#darkbox_prev {
    left: -2px;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

#darkbox_next {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: -2px;
}

    #darkbox_prev:hover, #darkbox_next:hover {
        border-color: #0060e7;
    }

#darkbox-description {
    position: absolute;
    width: 100%;
    color: #fff;
    font-size: 18px;
    bottom: 5px;
    text-align: right;
    text-shadow: 0 1px 1px #000;
}

#darkbox .dark-close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 2em;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    #darkbox .dark-close:hover {
        color: #0060e7;
    }

/* 联系我们 */
.cont-box {
    background: #f2f6fa;
}

.add-box {
    padding: 90px 0 0;
}

.add-item {
    margin-bottom: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid #d9d9d9;
}

.add-item-lf {
    width: 50%;
}

    .add-item-lf h3 {
        color: #222;
        font-size: 30px;
        margin-bottom: 48px;
    }

    .add-item-lf p span {
        color: #777;
        font-size: 18px;
        padding-left: 26px;
        display: block;
        margin-bottom: 8px;
    }

        .add-item-lf p span.c_111 {
            color: #111;
            padding-left: 0;
        }

        .add-item-lf p span.blue {
            font-size: 36px;
            color: #0060e7;
            font-family: DINM;
            padding-left: 0;
            letter-spacing: -2px;
        }

        .add-item-lf p span.tel {
            background: url(../images/img41.png) no-repeat left center;
        }

        .add-item-lf p span.mail {
            background: url(../images/img42.png) no-repeat left center;
        }

        .add-item-lf p span.add {
            background: url(../images/img43.png) no-repeat left center;
        }

        .add-item-lf p span.fax {
            background: url(../images/img44.png) no-repeat left center;
        }

        .add-item-lf p span.sky {
            background: url(../images/img45.png) no-repeat left center;
        }

    .add-item-lf .add-block1 p {
        display: inline-block;
        width: 50%;
    }

    .add-item-lf .add-block {
        margin-bottom: 30px;
    }

        .add-item-lf .add-block:last-child {
            margin-bottom: 0;
        }

.add-item-rt {
    margin-top: 35px;
    width: 50%;
    overflow: hidden;
}

    .add-item-rt img {
        display: block;
        width: 100%;
    }

.cont-tit {
    font-size: 30px;
    color: #333;
    text-align: center;
}

.cont-form {
    padding: 40px 0 70px;
}
/* 人才招聘 */
.join-one {
    padding: 90px 0 95px;
}

.join1-con .join-block {
    text-align: center;
    margin-top: 56px;
}

.join1-con .in-more {
    width: auto;
    font-size: 20px;
    color: #777;
    display: inline-block;
    float: none;
    margin: 0 16px;
    padding-right: 60px;
    text-align: left;
}

    .join1-con .in-more i {
        background: url(../images/right3.png) no-repeat center;
    }

    .join1-con .in-more:hover {
        background: #e0641d;
        border-color: transparent;
        color: #fff;
    }

        .join1-con .in-more:hover i {
            background: url(../images/right2.png) no-repeat center;
        }

.join1-con p {
    color: #222;
    font-size: 18px;
    text-align: center;
    line-height: 28px;
}

.join1-list {
    margin-top: 108px;
}

    .join1-list li {
        width: 25%;
        float: left;
        text-align: center;
    }

        .join1-list li .join1-pic {
            width: 80px;
            height: 80px;
            overflow: hidden;
            margin: 0 auto;
            transition: all 0.4s;
        }

            .join1-list li .join1-pic img {
                display: block;
                margin: 0 auto;
            }

        .join1-list li p {
            color: #333;
            font-size: 24px;
            margin-top: 36px;
        }

        .join1-list li:hover .join1-pic {
            transform: translateY(-10px);
        }

.join-two {
    padding-bottom: 70px;
}

    .join-two .ser-tit {
        margin-bottom: 65px;
    }

.join_tit {
    padding: 28px 40px;
    background: #f5f5f5;
}

.join_tit-con {
    position: relative;
}

.join2-list li.on .join_tit {
    background: #e0641d;
}

.join_font {
    display: none;
    padding: 45px 40px;
    background: #fff;
}

.join2-list li {
    border: #d9d9d9 1px solid;
    border-bottom: none;
}

    .join2-list li:last-child {
        border-bottom: 1px solid #d9d9d9;
    }

.join_tit-con h3 span {
    font-size: 24px;
    color: #222;
    display: inline-block;
    transition: all 0.4s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .join_tit-con h3 span.span1 {
        width: 340px;
    }

    .join_tit-con h3 span.span2, .join_tit-con h3 span.span3 {
        display: none;
    }

    .join_tit-con h3 span.span3 {
        width: 250px;
        float: right;
    }

.join2-list li.on .join_tit-con h3 span {
    color: #fff;
}

.join2-list li.on .join_tit .icon-down {
    color: #fff;
}

.join_tit .icon-down {
    color: #838383;
    font-size: 20px;
}

.join_det-item span {
    font-size: 18px;
    color: #333;
    padding: 0 30px;
    line-height: 34px;
    border: 1px solid #dddee5;
    display: inline-block;
    margin-bottom: 25px;
}

.join_det-item p {
    color: #777;
    font-size: 16px;
}

.join_det-item {
    margin-bottom: 40px;
}

.join2-list li.on span.span2, .join2-list li.on span.span3 {
    display: inline-block;
}

.join-two .page {
    margin-top: 80px;
}


/* 新闻列表 */
.news-box {
    padding: 110px 0 70px;
}

.news-descIn-lf span {
    font-family: DINM;
    color: #777;
    font-size: 20px;
    display: block;
    transition: all 0.4s;
}

    .news-descIn-lf span.span1 {
        color: #111;
        font-size: 80px;
        line-height: 1;
    }

.news-list li {
    position: relative;
    margin-bottom: 55px;
}

    .news-list li:last-child {
        margin-bottom: 0;
    }

.news-pic {
    width: 36.8%;
    overflow: hidden;
}

    .news-pic img {
        display: block;
        width: 100%;
        transition: all 0.4s;
    }

.news-desc {
    position: absolute;
    right: 0;
    height: 100%;
    width: 63.2%;
    background: #fff;
}

.news-descIn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 50px;
}

.news-descIn-lf {
    width: 140px;
    height: 140px;
    border: 1px solid #dddee5;
    text-align: center;
    padding-top: 20px;
    transition: all 0.4s;
}

.news-descIn-rt {
    width: 480px;
    padding-left: 45px;
}

    .news-descIn-rt h3 {
        color: #111;
        font-size: 24px;
        margin-bottom: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .news-descIn-rt p {
        color: #777;
        font-size: 16px;
        line-height: 24px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: 48px;
    }

    .news-descIn-rt span {
        display: inline-block;
        width: 29px;
        height: 29px;
        background-image: url(../images/right4.png);
        margin-top: 18px;
        transition: all 0.4s;
        background-repeat: no-repeat;
        background-position: center;
    }

.news-box .page {
    margin-top: 120px;
}

.news-list li:hover .news-pic img {
    transform: scale(1.1);
}

.news-list li:hover .news-descIn-lf {
    background: #e0641d;
    border-color: transparent;
}

    .news-list li:hover .news-descIn-lf span {
        color: #fff;
    }

.news-list li:hover .news-descIn-rt span {
    background-image: url(../images/right4h.png);
}

/* 新闻详情 */
.newsxq-box {
    padding: 100px 0px;
}

.newsxq-tit {
    padding-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
}

    .newsxq-tit h3 {
        font-size: 30px;
        color: #222;
        margin-bottom: 25px;
    }

.share span {
    color: #777;
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
}

    .share span.xq-time {
        margin-right: 36px;
    }

.share .bdsharebuttonbox {
    display: inline-block;
    vertical-align: middle;
}

    .share .bdsharebuttonbox a {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: transparent;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 0 0 18px;
        padding: 0;
        transition: all .3s;
        -webkit-transition: all .3s;
    }

    .share .bdsharebuttonbox .bds_sqq {
        background-image: url(../images/qq-h.png);
        background-color: #148fed;
    }

    .share .bdsharebuttonbox .bds_tsina {
        background-image: url(../images/weibo-h.png);
        background-color: #ea5e5d;
    }

    .share .bdsharebuttonbox .bds_weixin {
        background-image: url(../images/weixin-h.png);
        background-color: #51b674;
    }

.newsxq-inner {
    padding: 40px 0 90px;
}

    .newsxq-inner p {
        color: #222;
    }

.newsxq-box .xq-menu {
    margin-bottom: 0;
}

    .newsxq-box .xq-menu a {
        background: #fff;
    }

.newsxq-box .xq-menu {
    border: none;
}

    .newsxq-box .xq-menu a.xqmenu-prev, .newsxq-box .xq-menu a.xqmenu-next {
        border-color: #f5f5f5;
    }

    .newsxq-box .xq-menu a:hover {
        background: #0060e7;
    }

/* 研发与制造 */
.rd-two {
    background: url(../images/img57.jpg) no-repeat center;
}

.rd-one {
    padding: 85px 0 60px;
}

.rd1-con .ser-tit {
    margin-bottom: 60px;
}

    .rd1-con .ser-tit p {
        color: #333;
        font-size: 16px;
        margin-top: 40px;
        line-height: 24px;
    }

.rd1-pic img {
    display: block;
    width: 100%;
}

.rd-thumbs {
    width: 23%;
    height: 565px;
    float: left;
    background: #fff;
    padding: 42px 43px 42px 21px;
    position: relative;
}

.rd1-con .abt-thumbs {
    height: 100%;
    padding: 0;
    padding: 0 15px;
}

    .rd1-con .abt-thumbs .swiper-slide {
        background: none;
    }

.rd1-con .abt-prev {
    top: -4px;
    left: 50%;
    margin-left: -26px;
    width: 52px;
    height: 52px;
    background: url(../images/up2.png) no-repeat center;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

.rd1-con .abt-next {
    top: auto;
    bottom: -26px;
    left: 50%;
    margin-left: -26px;
    width: 52px;
    height: 52px;
    background: url(../images/down2.png) no-repeat center;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

.rd1-con .abt-prev:hover {
    background: url(../images/up2-h.png) no-repeat center;
    color: #fff;
}

.rd1-con .abt-next:hover {
    background: url(../images/down2-h.png) no-repeat center;
    color: #fff;
}

.rd1-con .abt-thumbs p {
    color: #333;
    font-size: 16px;
    text-align: center;
    margin-top: 12px;
}

.rd-top {
    height: 565px;
    float: right;
    width: 74%;
    position: relative;
}

.rd1-con .abt-top {
    height: 100%;
    overflow: hidden;
}

    .rd1-con .abt-top .swiper-slide {
        padding: 0;
    }

    .rd1-con .abt-top .rd1-desc {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.72);
        padding: 0 20px;
    }

        .rd1-con .abt-top .rd1-desc p {
            color: #fff;
            text-align: center;
            font-size: 18px;
            padding: 13px 0;
        }

.rd-top .swiper-pagination {
    display: none;
}

.rd1-pic {
    position: relative;
}

.rd1-con .abt-thumbs .rd1-pic:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #0060e7;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    z-index: 10;
    transition: all 0.4s;
    display: none;
}

.rd1-con .abt-thumbs .swiper-slide.active-nav .rd1-pic {
    border: 5px solid #0060e7;
    border-radius: 5px;
}

    .rd1-con .abt-thumbs .swiper-slide.active-nav .rd1-pic:after {
        display: block;
    }

.rd-three {
    padding: 100px 0 80px;
}

    .rd-three .rd-top1 {
        width: 100%;
        float: none;
        height: auto;
    }

.rd3-con .abt-top1 {
    overflow: hidden;
}

.rd-three .rd-thumbs1 {
    height: auto;
    width: 100%;
    float: none;
    padding: 43px 140px 27px;
}

.rd-three .abt-thumbs1 {
    overflow: hidden;
    padding: 15px 0;
}

.rd-three .rd1-pic img {
    display: block;
    width: 100%;
}

.rd3-con .abt-top1 .rd1-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.72);
    padding: 0 20px;
}

    .rd3-con .abt-top1 .rd1-desc p {
        color: #fff;
        text-align: center;
        font-size: 18px;
        padding: 17px 0;
    }

.rd3-con .abt-prev1 {
    top: 50%;
    left: 40px;
    width: 52px;
    height: 52px;
    background: url(../images/left5.png) no-repeat center;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

.rd3-con .abt-next1 {
    top: 50%;
    right: 40px;
    width: 52px;
    height: 52px;
    background: url(../images/right5.png) no-repeat center;
    text-align: center;
    line-height: 52px;
    color: #000;
    border-radius: 50%;
    z-index: 3;
    transition: all 0.4s;
}

.rd3-con .abt-prev1:hover {
    background: url(../images/left5h.png) no-repeat center;
    color: #fff;
}

.rd3-con .abt-next1:hover {
    background: url(../images/right5h.png) no-repeat center;
    color: #fff;
}

.rd3-con .abt-thumbs1 .rd1-pic:after {
    content: '';
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #0060e7;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.4s;
    display: none;
}

.rd3-con .abt-thumbs1 .swiper-slide.active-nav .rd1-pic {
    border: 5px solid #0060e7;
    border-radius: 5px;
}

    .rd3-con .abt-thumbs1 .swiper-slide.active-nav .rd1-pic:after {
        display: block;
    }


@media (max-width: 1680px) {
    /* .in1-list li{width: 449px;height: 461px;} */
    .in4-right li {
        padding: 25px 40px;
    }
}

@media (max-width: 1459px) {
    .in2-list li {
        padding: 25px 20px 20px;
    }

    .in2-list li {
        width: 23%;
        margin-right: 2.6%;
    }

    .in2-desc-bot:after {
        left: -33px;
    }

    .in3-tr {
        padding: 35px 45px;
    }

        .in3-tr p {
            max-height: 140px;
            line-height: 30px;
        }

    .in4-right li {
        padding: 20px 30px;
        margin-bottom: 27px;
    }

    .in4-desc-rt {
        padding-left: 14%;
    }

    /* 字体调整 */
    .banner-font h3 {
        font-size: 20px;
    }

    .banner-font h4 {
        font-size: 16px;
    }

    .in-tit h3 {
        font-size: 36px;
    }

    .in1-desc h3 {
        font-size: 22px;
    }

    .in2-list span {
        font-size: 44px;
    }

    .in3-bot .in3-desc p {
        font-size: 22px;
    }

    .in4-desc-rt h3 {
        font-size: 22px;
    }

    .in4-desc-lf span {
        font-size: 36px;
    }

    .foot-tbot dl.last-dl dd {
        font-size: 32px;
    }

    .ny-tlf h3 {
        font-size: 28px;
    }

    .pro-nav a {
        font-size: 16px;
    }

    .ny-trt a {
        font-size: 16px;
    }

    .proxq-rdesc h3 {
        font-size: 32px;
    }

    .promote-tit {
        font-size: 36px;
    }

    .news-descIn-lf span.span1 {
        font-size: 68px;
    }

    .news-descIn-rt h3 {
        font-size: 22px;
    }

    .newsxq-tit h3 {
        font-size: 28px;
    }

    .ser-tit h4 {
        font-size: 32px;
    }

    .ser-tit h3 {
        font-size: 36px;
    }

    .ser2-list dl dd.tel {
        font-size: 32px;
    }

    .abo1-con h5 {
        font-size: 22px;
    }

    .abo2-lf h3 {
        font-size: 22px;
    }

    .abt-year {
        font-size: 58px;
    }

    .add-item-lf h3 {
        font-size: 28px;
    }

    .add-item-lf p span.blue {
        font-size: 32px;
    }

    .cont-tit {
        font-size: 28px;
    }

    .join1-con .in-more {
        font-size: 18px;
    }

    .join1-list li p {
        font-size: 22px;
    }

    .join_tit-con h3 span {
        font-size: 22px;
    }
}

@media (max-width: 1259px) {
    .in-tit h3 {
        font-size: 32px;
    }

    .in1-desc {
        padding: 20px 15px;
    }

        .in1-desc h3 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .in1-desc p {
            font-size: 14px;
        }

    .in3-tr p {
        max-height: 120px;
    }

    .in3-tr .in-more {
        margin-top: 20px;
    }

    .in3-tr {
        padding: 25px 45px;
    }

    .in3-bot .in3-desc p {
        font-size: 18px;
    }

    .in3-bot .in3-desc img {
        width: 50%;
        margin: 0 auto 8px;
    }

    .in3-bot .in3-desc i {
        opacity: 1;
        width: 22px;
        height: 22px;
        margin: 8px auto 0;
    }

    .in4-right li {
        padding: 15px 20px;
        margin-bottom: 19px;
    }

    .in4-desc-rt {
        padding-left: 18%;
    }

    .pro-list li {
        width: 31.3%;
        margin-right: 3%;
        margin-bottom: 3%;
        height: auto;
    }
    /* .proxq-left{height: 500px;} */
    .proxq-rdesc h3 {
        margin-bottom: 20px;
    }

    .proxq-right {
        padding: 20px 30px;
    }

    .proxq-pbox {
        padding: 10px 0;
    }

    .proxq-rdesc a {
        margin-top: 16px;
    }

    .promote-tit {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .abo2-pic2 {
        width: 45px;
        height: 55px;
        background-size: contain;
        margin-bottom: 10px;
    }

    .abo2-lf h3 {
        margin-bottom: 8px;
    }

    .abo-dec {
        margin-top: 20px;
        height: 200px;
    }

    .abt-top .swiper-slide {
        padding: 80px 100px 50px;
    }

    .abt-year {
        font-size: 60px;
        line-height: 66px;
        padding-right: 48px;
    }

    .abt-dec {
        margin-left: 54px;
        width: 290px;
    }

    .abt-pic {
        width: 250px;
    }

    .add-item-lf .add-block1 p {
        width: 100%;
    }

    .news-descIn-rt {
        width: 420px;
        padding-left: 30px;
    }

    .news-descIn {
        padding: 0 25px;
    }

    .rd-top {
        height: 451px;
    }

    .rd-thumbs {
        height: 451px;
    }

    .proxq-left {
        height: auto;
    }
}

@media (max-width: 991px) {
    /* part1 */
    .in-one {
        padding: 40px 0;
    }

    .in-tit h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .in-tit p {
        font-size: 14px;
    }

    .tit-con {
        margin-bottom: 25px;
    }

    .container, .head_main, .wrap, .index-container, .foot-main {
        padding-right: 10px;
        padding-left: 10px;
        margin: 0 auto;
    }

    .in1-list .swiper-slide {
        width: 48.5%;
    }

    .in1-desc h3 {
        margin-bottom: 5px;
    }

    .in1-desc {
        padding: 15px 10px;
    }

    .in-more {
        width: 110px;
        height: 36px;
        line-height: 34px;
        padding: 0 20px;
        font-size: 14px;
    }

        .in-more i {
            right: 20px;
        }

    .in1-list .in1-swiper {
        padding-bottom: 30px;
    }
    /* part2 */
    .in-two {
        padding: 40px 0;
    }

        .in-two .tit-con {
            margin-bottom: 25px;
        }

    .in2-list li {
        width: 47%;
        margin-right: 6%;
    }

        .in2-list li:nth-child(2n) {
            margin-right: 0;
        }

    .in2-pic {
        width: 30px;
        height: 30px;
        margin-bottom: 30px;
    }

        .in2-pic img {
            width: 100%;
        }

    .in2-list li {
        margin-bottom: 6%;
    }

    .in2-list span {
        font-size: 25px;
    }

    .in2-list p {
        font-size: 14px;
    }

        .in2-list p.p2 {
            height: 38px;
        }

    .in2-desc-top {
        margin-bottom: 15px;
    }

    .in2-desc-bot:after {
        left: -27px;
    }

    .in2-list li:after {
        height: 100%;
    }

    /* part3 */
    .in-three {
        padding: 40px 0;
    }

    .in3-tl {
        width: 100%;
    }

    .in3-tr {
        width: 100%;
        position: static;
        padding: 20px 15px;
    }

    .in3-top {
        margin-bottom: 20px;
    }

    .in3-bot li {
        width: 100%;
    }

    /* part4 */
    .in-four {
        padding: 40px 0;
        border-top: 5px solid #113b62;
    }

    .in4-left, .in4-right {
        width: 100%;
        float: none;
    }

        .in4-right li {
            border: none;
            border-bottom: 1px solid rgba(255,255,25,0.2);
            margin-bottom: 0;
            padding: 15px 10px;
        }

        .in4-left .in4-desc {
            padding: 15px 10px;
        }

    .in4-desc-lf span {
        font-size: 26px;
    }

    .in4-desc-lf p {
        font-size: 12px;
    }

    .in4-desc-rt h3 {
        font-size: 16px;
    }

    .in4-desc-rt p {
        font-size: 14px;
    }

    /* 产品中心 */
    .ny-tlf h3 {
        font-size: 18px;
        padding: 18px 54px;
        display: none;
    }

    .ny-trt a {
        line-height: 54px;
        font-size: 14px;
        margin-left: 20px;
    }

    .ny-tlf, .ny-trt {
        float: none;
        display: block;
    }

    .crumb a {
        font-size: 14px;
    }

    .pro-nav a {
        font-size: 14px;
        line-height: 46px;
        margin-right: 10px;
    }

    .pro-list {
        padding: 30px 0 40px;
    }

        .pro-list li {
            width: 48.5%;
            margin-right: 3%;
            height: auto;
            margin-bottom: 3%;
        }

            .pro-list li:nth-child(3n) {
                margin-right: 3%;
            }

            .pro-list li:nth-child(2n) {
                margin-right: 0;
            }

            .pro-list li .in1-desc {
                padding: 15px 10px;
            }

    .page a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    /* 产品详情 */
    .proxq-one {
        padding: 30px 0;
    }

    .proxq-left, .proxq-right {
        width: 100%;
        float: none;
    }

    .proxq-right {
        position: static;
    }

    .pro-swiper .swiper-button-next, .pro-swiper .swiper-button-prev {
        display: none;
    }

    .pro-swiper .swiper-pagination {
        display: block;
        bottom: 30px !important;
    }

    .pro-swiper .gallery-thumbs {
        display: none;
    }

    .proxq-rdesc h3 {
        font-size: 24px;
    }

    .proxq-pbox p, .proxq-pbox p span {
        font-size: 14px;
    }

    .proxq-pbox {
        line-height: 30px !important;
    }

    .proxq-rdesc a {
        font-size: 14px;
    }

    .proxq-right {
        padding: 30px 20px;
    }

    .proxq-two {
        padding: 30px 0;
    }

    .proxq2-nav {
        margin-bottom: 20px;
    }

        .proxq2-nav li {
            font-size: 14px;
            line-height: 45px;
            padding: 0 20px;
        }

    .proxq2-item li {
        padding: 10px 15px;
        font-size: 14px;
    }

        .proxq2-item li span {
            font-size: 14px;
            padding-left: 12px;
            margin-right: 15px;
        }

    .xq-menu a {
        line-height: 40px;
    }

    .xq-menu {
        margin-bottom: 40px;
    }

    .promote {
        padding: 30px 0 40px;
    }

        .promote .in1-list .in1-desc {
            padding: 15px 10px;
        }

    .promote-tit {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .ser2-list {
        display: block;
    }

        .ser2-list dl {
            width: 49%;
            margin-bottom: 20px;
        }

            .ser2-list dl dd.tel {
                font-size: 24px;
            }

    /* 常见问题 */
    .faq-box {
        padding: 30px 15px 40px;
    }

    .faq_tit {
        padding: 0 15px;
    }

    .faq_tit-con {
        padding: 20px 25px;
    }

    .faq_tit h3 {
        font-size: 14px;
    }

    .faq_tit .icon-down {
        font-size: 14px;
    }

    .faq-box .page {
        margin-top: 25px;
    }

    /* 下载中心 */
    .down-box {
        padding-bottom: 40px;
    }

    .down_list table tr td.td1 {
        width: auto;
    }

    .down_list table tr td, .down_list table tr {
        height: 45px;
        line-height: 45px;
        font-size: 14px;
    }

    .down-box .pro-nav {
        margin-bottom: 30px;
    }

    .down_list .page {
        margin-top: 25px;
    }

    .down-table {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
    }

    /* 关于我们 */
    .abo-one {
        padding: 30px 0 40px;
    }

    .abo1-con .ser-tit {
        margin-bottom: 20px;
    }

    .abo1-con h5 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .abo1-con p {
        font-size: 14px;
        line-height: 30px;
    }

    .abo1-swiper {
        margin-top: 30px;
    }

    .abo1-descIn p span {
        font-size: 24px;
    }

    .abo-two {
        padding: 30px 0 40px;
    }

    .abo2-list {
        margin-top: 30px;
        margin-bottom: 35px;
    }

        .abo2-list .abo2-pic {
            margin-bottom: 15px;
        }

        .abo2-list h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .abo2-list p {
            font-size: 14px;
            line-height: 20px;
        }

        .abo2-list li {
            padding: 0 1%;
        }

    .abo2-lf {
        width: 100%;
        position: static;
    }

    .abo2-rt {
        width: 100%;
    }

    .abo2-lf:after {
        display: none;
    }

    .abo2-lf h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .abo2-lf p {
        font-size: 14px;
        line-height: 20px;
    }

    .abo-three {
        padding-bottom: 60px;
    }

    .abt-top .swiper-slide {
        padding: 60px 100px 30px;
        text-align: center;
    }

    .abt-year {
        padding-right: 30px;
    }

    .abt-pic {
        display: none;
    }

    .abt-dec {
        margin-left: 15px;
    }

    .abo-four {
        padding: 30px 0 50px;
    }

    .abo4-nav {
        margin-bottom: 35px;
        margin-top: 30px;
    }

    .add-item-lf, .add-item-rt {
        width: 100%;
    }

        .add-item-lf .add-block1 p {
            width: 50%;
        }

    .add-box {
        padding: 30px 15px 0;
    }

    .add-item-lf h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .add-item-lf p span {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }

        .add-item-lf p span.blue {
            font-size: 24px;
        }

    .add-item-lf .add-block {
        margin-bottom: 15px;
    }

    .add-item {
        padding-bottom: 35px;
        margin-bottom: 30px;
    }

    .add-item-rt {
        margin-top: 20px;
    }

    .cont-tit {
        font-size: 18px;
    }

    .cont-form {
        padding: 0 0 40px;
    }

    .nei_anchor {
        display: none !important;
    }

    /* 人才招聘 */
    .join-one {
        padding: 30px 0 40px;
    }

    .join1-con p {
        font-size: 14px;
        line-height: 24px;
    }

    .join1-con .join-block {
        margin-top: 20px;
    }

    .join1-con .in-more {
        font-size: 14px;
        /* width: 90%; */
        margin-bottom: 10px;
    }

    .join1-list {
        margin-top: 40px;
    }

        .join1-list li p {
            font-size: 16px;
            margin-top: 15px;
        }

        .join1-list li .join1-pic {
            width: 65px;
            height: 65px;
        }

            .join1-list li .join1-pic img {
                width: 100%;
            }

    .join_tit-con h3 span {
        font-size: 16px;
    }

    .join_tit {
        padding: 12px 20px;
    }

    .join_tit-con h3 span.span1 {
        width: 300px;
    }

    .join_tit-con h3 span.span3 {
        width: 150px;
    }

    .join_font {
        padding: 20px;
    }

    .join_det-item span {
        font-size: 14px;
    }

    .join_det-item p {
        font-size: 12px;
    }

    .join_det-item span {
        margin-bottom: 15px;
    }

    .join_det-item {
        margin-bottom: 20px;
    }

    .join-two .page {
        margin-top: 30px;
    }

    .join-two {
        padding-bottom: 40px;
    }

    /* 新闻列表 */
    .news-box {
        padding: 30px 0 40px;
    }

    .news-pic {
        width: 100%;
    }

    .news-desc {
        width: 100%;
        position: static;
    }

    .news-descIn {
        position: static;
        overflow: hidden;
        top: auto;
        transform: none;
    }

    .news-descIn-lf span.span1 {
        font-size: 40px;
    }

    .news-descIn-lf span {
        font-size: 16px;
    }

    .news-descIn-lf {
        width: 80px;
        height: 80px;
        padding-top: 9px;
        float: none;
        display: block;
    }

    .news-descIn {
        padding: 20px 15px;
    }

    .news-descIn-rt h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .news-descIn-rt p {
        font-size: 14px;
        line-height: 20px;
        height: 40px;
    }

    .news-descIn-rt span {
        width: 20px;
        height: 20px;
        background-size: cover;
        margin-top: 12px;
    }

    .news-descIn-rt {
        width: auto;
        padding-left: 0;
        margin-top: 15px;
        float: none;
        display: block;
    }

    .news-list li {
        margin-bottom: 25px;
    }

    .news-box .page {
        margin-top: 30px;
    }

    /* 新闻详情 */
    .newsxq-box {
        padding: 30px 0 50px;
    }

    .newsxq-tit h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .share span {
        font-size: 14px;
    }

    .newsxq-tit {
        padding-bottom: 20px;
    }

    .newsxq-inner {
        padding: 20px 0 30px;
    }

        .newsxq-inner p {
            font-size: 14px;
        }

    /* 研发制造 */
    .rd-thumbs {
        display: none;
    }

    .rd-top {
        width: 100%;
        height: auto;
    }

        .rd-top .swiper-pagination {
            display: block;
            bottom: -30px !important;
        }

    .rd-one {
        padding: 30px 0 60px;
    }

    .rd-three {
        padding: 30px 0 60px;
    }

    .rd1-con .ser-tit p {
        margin-top: 15px;
        font-size: 14px;
    }

    .rd1-con .ser-tit {
        margin-bottom: 25px;
    }

    .rd1-con .abt-top .rd1-desc p, .rd3-con .abt-top1 .rd1-desc p {
        font-size: 14px;
        padding: 13px 0;
    }
}

@media (max-width: 767px) {
    .in1-descIn {
        background-size: 18px 18px;
    }

    .ser-box {
        padding: 30px 10px 40px;
    }

    .ser-tit h3 {
        font-size: 26px;
    }

    .ser-tit h4 {
        font-size: 22px;
    }

    .ser-tit p {
        font-size: 14px;
        margin-top: 10px;
        line-height: 20px;
    }

    .ser-block input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2.5%;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
        padding: 0 20px;
    }

    .ser-block {
        margin-bottom: 0;
    }

        .ser-block textarea {
            padding: 10px 20px;
            font-size: 14px;
            height: 130px;
        }

    .ser-form {
        margin-top: 24px;
    }

    .ny-btn {
        line-height: 44px;
        height: 44px;
        width: 138px;
        font-size: 14px;
    }

    .ser2-con {
        padding-top: 40px;
    }

    .ser2-list {
        margin-top: 30px;
    }

        .ser2-list dl dt {
            margin-bottom: 6px;
            font-size: 16px;
        }

        .ser2-list dl dd.tel {
            font-size: 22px;
        }

    .abt-top .abt-prev, .abt-top .abt-next {
        display: none;
    }

    .abt-top .swiper-slide {
        padding: 25px 15px;
    }

    .abt-year {
        font-size: 30px;
        padding: 0;
        line-height: 40px;
        float: none;
        text-align: center;
        border: none;
        display: block;
    }

    .abt-dec {
        margin-left: 0;
        margin-top: 10px;
    }

        .abt-dec p {
            font-size: 14px;
            line-height: 22px;
            text-align: center;
        }

    .abo4-swiper {
        padding: 0;
    }

        .abo4-swiper .swiper-button-next, .abo4-swiper .swiper-button-prev {
            display: none;
        }

        .abo4-swiper .swiper-pagination {
            display: block;
        }

        .abo4-swiper .swiper-container {
            padding-bottom: 20px;
        }

    .honor-pic {
        height: 314px;
    }

    .join2-list li.on span.span2, .join2-list li.on span.span3 {
        display: block;
    }

    .join_tit-con h3 span.span3 {
        float: none;
    }

    .join_tit-con h3 span {
        line-height: 26px;
    }
}

@media (max-width: 580px) {
    .in1-desc h3{
        font-size: 12px;
    }
    .in1-desc p {
        font-size: 12px;
    }
    .pro-list li .in1-desc {
        padding: 5px 5px;
    }
    .honor-pic {
        max-height: 254px;
    }

    .abo4-nav li a {
        font-size: 14px;
        padding: 3px 30px;
    }

    .abo4-nav li {
        margin: 0 5px;
    }
}
/*测试*/
.rel {
    position: relative;
}

.sec-partner {
    background: url(../images/partner_bg.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: .65rem;
}

.section {
    width: 100%;
    overflow: hidden;
}

.abs {
    position: absolute;
    height: 1px;
    top: -.6rem;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1260px) {
    .container {
        width: 1230px;
    }
}
.section-title {
    text-align: center;
    padding: .7rem 0 .45rem;
}
    .section-title h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: .18rem;
        line-height: 1.2;
        color: inherit;
        font-family: inherit;
    }
@media (min-width: 768px) {
    .section-title h3 {
        font-size: .36rem;
    }
}
.section-title .m-hr {
    width: .4rem;
    height: 2px;
    background: #af261c;
    margin: 0 auto;
}
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.partner-slide .swiper-slide {
    width: auto;
}
.partner-item {
    background: #fff;
    border: 1px solid #dadada;
    transition: all .3s;
}
    .partner-item img {
        display: block;
        width: 100%;
        opacity: 0.5;
        transition: all .3s;
    }
img {
    vertical-align: middle;
    outline: none;
    border: 0;
}
.partner-pagination {
    font-size: 0;
    text-align: center;
    width: 100%;
    margin-top: .58rem;
}
 .partner-pagination .swiper-pagination-bullet-active {
        background: #af261c;
    }
    .partner-pagination .swiper-pagination-bullet {
        width: .3rem;
        height: 3px;
        background: #717171;
        border-radius: 0;
        margin: 0 .04rem;
        cursor: pointer;
        opacity: 1;
        transition: all .3s;
    }


/*
    测试2*/
.bg_quality_control {
    background-image: url(../images/advantage_img5.jpg);
}
.wrapper {
    position: relative;
    padding: 60px 0;
    font-size: 16px;
    color: #666666;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.container-middle {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 1459px) {
    .container-middle {
        width: 1200px;
    }
}
@media (max-width: 1259px) {
    .container-middle {
        width: 1170px;
    }
}
@media (max-width: 1200px) {
    .container-middle {
        width: 1100px;
    }
}
@media (max-width: 1160px) {
    .container-middle {
        width: 992px;
    }
}
@media (max-width: 1040px) {
    .container-middle {
        width: 860px;
    }
}
@media (max-width: 992px) {
    .container-middle {
        width: 100%;
        padding: 0 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}
@media (max-width: 991px) {
    .container-middle {
        width: 100%;
        padding: 0 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}
@media (max-width: 767px) {
    .container-middle {
        width: 100%;
        padding: 0 15px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}
.advantage-art {
    position: relative;
    margin: 0 auto 40px;
}
@media (max-width: 767px) {
    .advantage-art {
        margin: 0 auto 10px;
    }
}
.contact-title {
    position: relative;
    color: #444444;
    font-size: 30px;
    text-align: left;
}
.advantage-art .contact-title {
    text-align: center;
}
.contact-title.title-white {
    color: #ffffff;
}
@media (max-width: 991px) {
     .contact-title {
        font-size: 26px;
        margin: 0 auto 30px;
    }
}
@media (max-width: 767px) {
    .contact-title {
        margin: 0 auto 20px;
    }
}
.advantage-sub-title {
    position: relative;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #333333;
}
.c-fff {
    color: #ffffff;
}
@media (max-width: 991px) {
    .advantage-sub-title {
        font-size: 18px;
    }
}
div {
    color: inherit;
}
.advantage-art-detail p {
    line-height: 24px;
    padding: 0 50px;
    margin-bottom: 8px;
}
.c-999 {
    color: #999999;
}
@media (max-width: 991px) {
    .advantage-art-detail p {
        padding: 0 0;
    }
}
.case-art-img {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}
.case-art-img {
    margin: 0 auto 20px;
    padding: 20px 0 0;
    font-size: 0;
}
.advantage-art .case-art-img {
    margin: 40px auto 0;
}
@media (max-width: 991px) {
    .advantage-art .case-art-img {
        margin: 20px auto 0;
    }
}

.case-art-img img + img {
    margin-left: 25px;
}
.advantage-art .case-art-img img + img {
    margin-left: 20px;
}
img {
    max-width: 100%;
}
.advantage-slide {
    position: relative;
    margin: 40px auto 0;
}
@media (max-width: 991px) {
    .advantage-btn {
        display: none;
    }
    .proxq2-item.on1 img {
        height: auto !important;
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.advantage-slide .swiper-container {
    overflow-x: hidden;
}
.swiper-container {
    overflow-x: hidden;
}
.advantage-slide .swiper-slide {
    width: -webkit-calc(25.2666% - 12px);
    width: calc(25.2666% - 12px);
}
@media (max-width: 767px) {
  .advantage-slide .swiper-slide {
        width: -webkit-calc(58% - 25px);
        width: calc(58% - 25px);
    }
}
.advantage-slide-item {
    position: relative;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.advantage-slide-img {
    font-size: 0;
    overflow: hidden;
}
.advantage-slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #ffffff;
    text-align: left;
    padding: 20px 30px;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 3;
}
@media (max-width: 991px) {
    .advantage-slide-text {
        padding: 10px 15px;
    }
}
span {
    color: inherit;
}
@media (max-width: 991px) {
    .advantage-art .case-art-img img + img, .case-art-img img + img {
        margin-left: 0;
        margin-top: 20px;
    }
}
@media (max-width: 1160px) {
    .advantage-art .case-art-img img + img, .case-art-img img + img {
        margin-left: 0;
        margin-top: 20px;
    }

}
@media (max-width: 1259px) {
    .advantage-art .case-art-img img + img, .case-art-img img + img {
        margin-left: 0;
        margin-top: 20px;
    }
}



.fbt span {
    color: #333;
    font-family: "medium";
    font-size:40px;
}
@media (max-width: 1024px) {
    .fbt span {
        font-size: 36px;
    }
}
@media (max-width: 820px) {
    .fbt span {
        font-size: 31px;
    }
}
@media (max-width: 768px) {
    .fbt span {
        font-size: 28px;
    }
}
.join-gsfb {
    background: #f4f4f4;
    padding: 65px 0;
}
@media (max-width: 768px) {
    .join-gsfb {
        padding: 29px 0;
    }
}
.container1 {
    padding-right: 0px;
    padding-left: 0px;
    margin: 0 auto;
}
@media (min-width: 768px) {
     .container1 {
        width: 750px;
    }
}
@media (min-width: 992px) {
   .container1 {
        width: 970px;
    }
}
.bt {
    font-size: 60px;
    font-family: "std";
    color: #c6c6c6;
    margin-bottom: 10px;
    opacity: 0.36;
}
@media (max-width: 1024px) {
    .bt {
        font-size: 50px;
    }
}
@media (max-width: 820px) {
    .bt {
        font-size: 41px;
    }
}
@media (max-width: 768px) {
    .bt {
        font-size: 38px;
    }
}
.container .bt, .container .fbt {
    text-align: center;
}
.fbt {
    font-size: 40px;
    color: #d40000;
    font-family: "medium";
}
@media (max-width: 1024px) {
    .fbt {
        font-size: 36px;
    }
}
@media (max-width: 820px) {
    .fbt {
        font-size: 31px;
    }
}
@media (max-width: 768px) {
    .fbt {
        font-size: 28px;
    }
}
.gsfb-box {
    padding: 0 10px;
    position: relative;
}
.gsfb-map {
    margin: 0 auto;
    width: 830px;
    height: 695px;
    position: relative;
}
@media (max-width: 1024px) {
    .gsfb-map {
        width: 100%;
        height: 100%;
    }
}
img {
    vertical-align: middle;
}
.gsfb-map-img {
    display: block;
    width: 100%;
    height: 100%;
}
.serveus {
    width: 100%;
    background: rgb(247,247,247);
}
.serveusjz {
    width: 1200px;
    margin: 0 auto;
    padding: 70px 0;
}
@media (max-width: 1230px) {
    .serveusjz {
        width: 95%;
    }
}
@media (max-width: 768px) {
    .serveusjz {
        padding: 40px 0;
    }
}
.bt {
    font-size: 60px;
    font-family: "std";
    color: #c6c6c6;
    margin-bottom: 10px;
    opacity: 0.36;
}
.serveus .bt, .serveus .fbt {
    text-align: center;
}
@media (max-width: 1024px) {
    .bt {
        font-size: 50px;
    }
}
@media (max-width: 820px) {
    .bt {
        font-size: 41px;
    }
}
.fbt {
    font-size: 40px;
    color: #d40000;
    font-family: "medium";
}
@media (max-width: 1024px) {
    .fbt {
        font-size: 36px;
    }
}
@media (max-width: 820px) {
    .fbt {
        font-size: 31px;
    }
}
@media (max-width: 768px) {
    .fbt {
        font-size: 28px;
    }
}
.serveus .p1 {
    font-size: 16px;
    color: #666;
    font-family: "regular";
    text-align: center;
    margin-top: 25px;
}
.fd {
    zoom: 1;
}
.serveus .xltb {
    width: 100%;
    margin: 70px 0;
}
@media (max-width: 768px) {
    .serveus .xltb {
        margin: 30px 0;
    }
}
.serveus .xltb .setb_1 {
    width: 300px;
    padding: 20px 0;
    padding-left: 83px;
    background-image: url(../images/us_b1.png);
    background-repeat: no-repeat;
    background-size: 83px 83px;
    float: left;
    margin-right: 115px;
}
@media (max-width: 1230px) {
    .serveus .xltb .setb_1 {
        width: 30%;
        margin-right: 0;
    }
}
@media (max-width: 1024px) {
    .serveus .xltb .setb_1 {
        width: 50%;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .serveus .xltb .setb_1 {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .serveus .xltb .setb_1 {
        padding-left: 40%;
        background-position-x: 31%;
        background-size: 53px 53px;
        background-position-y: center;
    }
}
.setb_1 .se_p1 {
    font-size: 18px;
    color: #333;
    font-family: "regular";
    margin-bottom: 10px;
    padding-left: 25px;
}
@media (max-width: 1230px) {
    .setb_1 .se_p1 {
        font-size: 16px;
        padding-left: 8px;
    }
}
@media (max-width: 768px) {
    .setb_1 .se_p1 {
        font-size: 14px;
        padding-left: 0px;
    }
}
.setb_1 .se_p2 {
    font-size: 24px;
    color: #333;
    font-family: "regular";
    padding-left: 25px;
}
@media (max-width: 1230px) {
    .setb_1 .se_p2 {
        font-size: 20px;
        padding-left: 8px;
    }
}
@media (max-width: 768px) {
    .setb_1 .se_p2 {
        font-size: 17px;
        padding-left: 0px;
    }
}
.serveus .xltb .setb_1:nth-child(2) {
    width: 405px;
    background-image: url(../images/us_b2.png);
}
@media (max-width: 1230px) {
    .serveus .xltb .setb_1:nth-child(2) {
        width: 40%;
    }
}
@media (max-width: 768px) {
    .serveus .xltb .setb_1:nth-child(2) {
        width: 100%;
    }
}
.serveus .xltb .setb_1:nth-child(3) {
    width: 265px;
    margin-right: 0;
    background-image: url(../images/us_b3.png);
}
@media (max-width: 1230px) {
    .serveus .xltb .setb_1:nth-child(3) {
        margin-right: 0;
        width: 100%;
    }
}
.serveusjz .sp1 {
    font-size: 20px;
    color: #666;
    font-family: "regular";
    margin-right: 90px;
}
@media (max-width: 1230px) {
    .serveusjz .sp1 {
        margin-right: 35px;
    }
}
@media (max-width: 1024px) {
    .serveusjz .sp1 {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media (max-width: 768px) {
    .serveusjz .sp1 {
        font-size: 16px;
        text-align: center;
    }
}
.serveusjz .dt {
    margin-top: 50px;
}
    .serveusjz .dt, .serveusjz .dt img {
        width: 100%;
        height: 100%;
    }


.fd {
    zoom: 1;
}
    .fd::after {
        content: " ";
        display: block;
        clear: both;
    }
.pro_par {
    width: 1200px;
    margin: 0 auto;
    padding: 110px 0;
}
@media (max-width: 1230px) {
    .pro_par {
        width: 95%;
    }
}
.bt {
    font-size: 60px;
    font-family: "std";
    color: #c6c6c6;
    margin-bottom: 10px;
    opacity: 0.36;
}
@media (max-width: 1024px) {
    .bt {
        font-size: 50px;
    }
}
@media (max-width: 820px) {
    .bt {
        font-size: 41px;
    }
}
.pro_par .bt {
    text-align: center;
}
.fbt {
    font-size: 40px;
    color: #e0641d;
    font-family: "medium";
}
@media (max-width: 1024px) {
    .fbt {
        font-size: 36px;
    }
}
@media (max-width: 820px) {
    .fbt {
        font-size: 31px;
    }
}
 .pro_par .fbt {
    text-align: center;
}
.pro_par .fbt {
    margin-bottom: 70px;
}
.pro_par .rq div {
    width: 230px;
    height: 115px;
    margin-right: 11px;
    float: left;
    position: relative;
    border: 1px solid rgb(222,222,222);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all ease-in-out 0.4s;
}
@media (max-width: 1230px) {
    .pro_par .rq div {
        width: 19.2%;
        margin-right: 1%;
    }
}
@media (max-width: 1190px) {
    .pro_par .rq div {
        width: 24.2%;
        margin-right: 1%;
    }
        .pro_par .rq div:nth-child(4n) {
            margin-right: 0%;
        }
}

@media (max-width: 1024px) {
    .pro_par .rq div {
        width: 32%;
        margin-right: 1%;
    }
        .pro_par .rq div:nth-child(3n) {
            margin-right: 0%;
        }
        .pro_par .rq div:nth-child(4n) {
            margin-right: 1%;
        }
}
img {
    vertical-align: middle;
}
.pro_par .rq div img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.pro_par .rq div:nth-child(5n) {
    margin-right: 0;
}
.pro_par .rq div:hover {
    box-shadow: 0px 16px 22px 0px rgba(90, 91, 95, 0.3);
    transform: translate3d(0,-5px,0);
}
