.row:after {
    clear: both;
    display: table;
    content: ''
}

.block {
    display: block
}

.inline {
    display: inline-block
}

.hide {
    display: none
}

.fn {
    font-weight: 400
}

.fb {
    font-weight: 700
}

.rel {
    position: relative
}

.abs {
    position: absolute
}

.col-6 {
    width: 25%;
    float: left
}

.col-12 {
    width: 25%;
    float: left
}

.song {
    font-family: SimSun
}

.reset.ivu-btn-info {
    background: 0 0;
    color: #1890ff
}

.table-list {
    display: table;
    width: 100%
}

.table-list .table-cell {
    display: table-cell;
    width: auto;
    vertical-align: middle
}

body {
    font-family: "Segoe UI", "Lucida Grande", Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    margin: 0 auto
}

body::-webkit-scrollbar {
    width: 9px;
    height: 8px
}

body::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, .2);
    background: #c7c5c8
}

body::-webkit-scrollbar-track {
    border-radius: 0;
    background: #ddd
}

a {
    transition: all .4s;
    color: #333;
    text-decoration: none
}

a:active, a:hover {
    outline: 0;
    color: #1890ff;
    opacity: .8;
    text-decoration: none
}

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

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
    outline: 0
}

button[disabled], html input[disabled] {
    cursor: default
}

button {
    cursor: pointer
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:before, :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

i, em {
    font-weight: 400;
    font-style: normal
}

ul, li, ol, dl, dt, dd, p {
    margin: 0;
    padding: 0;
    list-style: none
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #fff
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0
}

[class*=am-animation-] {
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: both
}

@media screen {
    .cssanimations [data-am-scrollspy*=animation] {
        opacity: 0
    }
}

.am-animation-fade {
    animation-name: am-fade;
    animation-duration: .8s;
    animation-timing-function: linear
}

.am-animation-scale-up {
    animation-name: am-scale-up
}

.am-animation-scale-down {
    animation-name: am-scale-down
}

.am-animation-slide-top {
    animation-name: am-slide-top
}

.am-animation-slide-bottom {
    animation-name: am-slide-bottom
}

.am-animation-slide-left {
    animation-name: am-slide-left
}

.am-animation-slide-right {
    animation-name: am-slide-right
}

.am-animation-slide-top-fixed {
    animation-name: am-slide-top-fixed
}

.am-animation-shake {
    animation-name: am-shake
}

.am-animation-spin {
    animation: am-spin 2s infinite linear
}

.am-animation-left-spring {
    animation: am-left-spring .3s ease-in-out
}

.am-animation-right-spring {
    animation: am-right-spring .3s ease-in-out
}

.am-animation-reverse {
    animation-direction: reverse
}

.am-animation-paused {
    animation-play-state: paused !important
}

.am-animation-delay-1 {
    animation-delay: 1s
}

.am-animation-delay-2 {
    animation-delay: 2s
}

.am-animation-delay-3 {
    animation-delay: 3s
}

.am-animation-delay-4 {
    animation-delay: 4s
}

.am-animation-delay-5 {
    animation-delay: 5s
}

.am-animation-delay-6 {
    animation-delay: 6s
}

@keyframes am-fade {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes am-scale-up {
    0% {
        opacity: 0;
        transform: scale(0.2)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes am-scale-down {
    0% {
        opacity: 0;
        transform: scale(1.8)
    }
    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes am-slide-top {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes am-slide-bottom {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes am-slide-left {
    0% {
        opacity: 0;
        transform: translateX(-100%)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes am-slide-right {
    0% {
        opacity: 0;
        transform: translateX(100%)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes am-shake {
    0%, 100% {
        transform: translateX(0)
    }
    10% {
        transform: translateX(-9px)
    }
    20% {
        transform: translateX(8px)
    }
    30% {
        transform: translateX(-7px)
    }
    40% {
        transform: translateX(6px)
    }
    50% {
        transform: translateX(-5px)
    }
    60% {
        transform: translateX(4px)
    }
    70% {
        transform: translateX(-3px)
    }
    80% {
        transform: translateX(2px)
    }
    90% {
        transform: translateX(-1px)
    }
}

@keyframes am-slide-top-fixed {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes am-slide-bottom-fixed {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes am-spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(359deg)
    }
}

@keyframes am-right-spring {
    0% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(-20%)
    }
    100% {
        transform: translateX(0)
    }
}

@keyframes am-left-spring {
    0% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(20%)
    }
    100% {
        transform: translateX(0)
    }
}

.isHome {
}

.isHome .header .navBg {
    background: #fff;
}

.isHome .footer {
    padding-top: 170px
}

.isNewsInfo .header .navBg {
    position: fixed;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    position: relative
}

.isNewsInfo .header .navBg .logoWhite {
    display: none
}

.isNewsInfo .header .navBg .logoBlack {
    display: inline-block
}

.isNewsInfo .header .navBg .logoImg:after {
    background: #333 !important
}

.isNewsInfo .header .navBg .container .menu li a {
    color: #333;
    opacity: 1
}

.isNewsInfo .header .navBg .container .menu li a .iconArrow {
    border-color: #333
}

.isNewsInfo .header .navBg .container .menu li.active a, .isNewsInfo .header .navBg .container .menu li:hover a {
    font-weight: 700;
    color: #1890ff
}

.isNewsInfo .header .navBg .container .menu li.active a .iconArrow, .isNewsInfo .header .navBg .container .menu li:hover a .iconArrow {
    border-color: #1890ff
}

.isNewsInfo .header .navBg .container .menu li.active .mask, .isNewsInfo .header .navBg .container .menu li:hover .mask {
    padding-top: 20px
}

.isNewsInfo .header .navBg .container .menu li.active .mask a, .isNewsInfo .header .navBg .container .menu li:hover .mask a {
    color: #999;
    opacity: .8;
    font-weight: 400
}

.isNewsInfo .header .navBg .container .menu li.active .mask a:hover, .isNewsInfo .header .navBg .container .menu li:hover .mask a:hover {
    text-shadow: 0 0 1px #fff;
    opacity: 1;
    color: #1890ff
}

.isNewsInfo .header .navBg .container .menu li:after {
    background: #1890ff;
    bottom: 0
}

.isNewsInfo .header .navBg .container .menu li.download a {
    border: 1px solid #1890ff;
    border-radius: 4px;
    width: 134px;
    height: 42px;
    color: #1890ff
}

.isNewsInfo .header .navBg .container .menu li.download .mask {
    background: #1890ff;
    color: #fff;
    padding-top: 15px
}

.isNewsInfo .header .navBg .container .menu li.download .mask .maskCon:after {
    border-bottom-color: #1890ff
}

.isNewsInfo .header .navBg .container .logo .logoBlack {
    display: block
}

.isNewsInfo .header .navBg .container .logo .logoWhite {
    display: none
}

.bgGray {
    background: #f8f8f8
}

.header {
    position: relative
}

.header .navBg {
    width: 100%;
    z-index: 9;
    transition: all .4s
}

.header .navBg .container {
    height: 73px;
    display: flex;
    align-items: center
}

.header .navBg .container .logoBlack {
    display: none
}

.header .navBg .container .logo {
    width: 20%;
    display: flex;
    align-items: center;
}

.header .navBg .container .logo img {
    height: 41px
}

.header .navBg .container .logo .logoImg {
    display: inline-block;
    position: relative;
    margin-right: 54px
}

.header .navBg .container .logo .logoImg:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #fff;
    top: 0;
    right: -30px
}

.header .navBg .container .menu {
    display: flex;
    align-items: center;
    flex: 1
}

.header .navBg .container .menu li {
    flex: 1;
    position: relative;
    text-align: center;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center
}

.header .navBg .container .menu li.help {
    display: none
}

.header .navBg .container .menu li a {
    color: #242424;
    font-size: 16px;
    opacity: .6;
    display: flex;
    align-items: center;
    justify-content: center
}

.header .navBg .container .menu li a .icon {
    margin-right: 10px
}

.header .navBg .container .menu li a .iconArrow {
    width: 10px;
    height: 10px;
    border: 2px #fff solid;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg);
    margin-left: 10px;
    margin-top: -3px
}

.header .navBg .container .menu li:after {
    transition: all .4s;
    content: '';
    width: 106px;
    height: 0;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -53px;
    bottom: 13px
}

.header .navBg .container .menu li.homeMenu:after {
    width: 60px;
    margin-left: -30px
}

.header .navBg .container .menu li.active a, .header .navBg .container .menu li:hover a {
    opacity: 1;
    text-shadow: 0 0 1px #fff
}

.header .navBg .container .menu li.active:after, .header .navBg .container .menu li:hover:after {
    height: 3px
}

.header .navBg .container .menu li.active {
    display: flex;
    align-items: center
}

.header .navBg .container .menu li.active.help {
    display: none
}

.download:hover {
    display: block
}
.header .navBg .container .menu li:hover .mask {
    display: block
}

.header .navBg .container .menu li.download:after {
    display: none
}

.header .navBg .container .menu li.download a {
    opacity: 1
}

.header .navBg .container .menu li.download .mask {
    z-index: 100;
    background: rgba(255, 255, 255, .8);
    padding: 15px 0;
    border-radius: 8px;
    width: 600px;
    right: 0;
    box-shadow: 0 0 12px rgba(0, 0, 0, .1)
}

.header .navBg .container .menu li.download .mask .maskCon {
    display: flex;
    align-items: center;
    justify-content: center
}

.header .navBg .container .menu li.download .mask .maskCon:after {
    content: '';
    position: absolute;
    border: 12px transparent solid;
    border-bottom-color: rgba(255, 255, 255, .8);
    top: -24px;
    right: 50px
}

.header .navBg .container .menu li.download .mask .maskCon span {
    flex: 1
}

.header .navBg .container .menu li.download .mask .maskCon span img {
    display: block;
    margin: 0 auto 6px;
    width: 106px;
    height: 106px
}

.header .navBg .container .menu li.download .mask:before {
    display: none
}

.header .navBg .container .menu li.download:hover .mask {
    display: none
}

.header .navBg .container .menu li.smallMenu {
    display: none;
    z-index: 2;
}

.header .navBg .container .menu li .mask {
    position: absolute;
    top: 73px;
    display: none;
    padding-top: 10px;
    width: 100%
}

.header .navBg .container .menu li .mask .box {
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 12px rgba(0, 0, 0, .1);
    padding: 15px 0;
    border-radius: 10px;
    position: relative
}

.header .navBg .container .menu li .mask .box:before {
    content: '';
    position: absolute;
    border: 12px transparent solid;
    border-bottom-color: rgba(255, 255, 255, .8);
    top: -24px;
    left: 50%;
    margin-left: -12px
}

.header .navBg .container .menu li .mask a {
    display: block;
    line-height: 32px;
    opacity: 1;
    text-shadow: none;
    font-size: 14px;
    color: #999
}

.header .navBg .container .menu li .mask a:hover {
    text-shadow: 0 0 1px #fff;
    opacity: 1;
    background: #fff;
    color: #1890ff
}

.header .navBg.navFixed {
    position: fixed;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1)
}

.header .navBg.navFixed .logoWhite {
    display: none
}

.header .navBg.navFixed .logoBlack {
    display: inline-block
}

.header .navBg.navFixed .logoImg:after {
    background: #333 !important
}

.header .navBg.navFixed .container .menu li a {
    color: #333;
    opacity: 1
}

.header .navBg.navFixed .container .menu li a .iconArrow {
    border-color: #333
}

.header .navBg.navFixed .container .menu li.active a, .header .navBg.navFixed .container .menu li:hover a {
    font-weight: 700;
    color: #1890ff
}

.header .navBg.navFixed .container .menu li.active a .iconArrow, .header .navBg.navFixed .container .menu li:hover a .iconArrow {
    border-color: #1890ff
}

.header .navBg.navFixed .container .menu li.active .mask, .header .navBg.navFixed .container .menu li:hover .mask {
    padding-top: 20px
}

.header .navBg.navFixed .container .menu li.active .mask a, .header .navBg.navFixed .container .menu li:hover .mask a {
    color: #999;
    opacity: .8;
    font-weight: 400
}

.header .navBg.navFixed .container .menu li.active .mask a:hover, .header .navBg.navFixed .container .menu li:hover .mask a:hover {
    text-shadow: 0 0 1px #fff;
    opacity: 1;
    color: #1890ff
}

.header .navBg.navFixed .container .menu li:after {
    background: #1890ff;
    bottom: 0
}

.header .navBg.navFixed .container .menu li.download a {
    border: 1px solid #1890ff;
    border-radius: 4px;
    width: 134px;
    height: 42px;
    color: #1890ff
}

.header .navBg.navFixed .container .menu li.download .mask {
    background: #1890ff;
    color: #fff;
    padding-top: 15px
}

.header .navBg.navFixed .container .menu li.download .mask .maskCon:after {
    border-bottom-color: #1890ff
}

@keyframes light1Action {
    0% {
        opacity: 0
    }
    5% {
        opacity: .2;
        margin: -4px 8px 0 0
    }
    10% {
        opacity: .5;
        margin: -8px 16px 0 0
    }
    15% {
        opacity: .7;
        margin: -12px 24px 0 0
    }
    20% {
        opacity: 1;
        margin: -16px 32px 0 0
    }
    25% {
        opacity: 1;
        margin: -20px 40px 0 0
    }
    30% {
        opacity: 1;
        margin: -24px 46px 0 0
    }
    35% {
        opacity: 1;
        margin: -28px 54px 0 0
    }
    40% {
        opacity: 1;
        margin: -32px 62px 0 0
    }
    45% {
        opacity: 1;
        margin: -36px 70px 0 0
    }
    50% {
        opacity: 1;
        margin: -40px 78px 0 0
    }
    55% {
        opacity: 1;
        margin: -44px 85px 0 0
    }
    60% {
        opacity: 1;
        margin: -48px 93px 0 0
    }
    65% {
        opacity: 1;
        margin: -52px 100px 0 0
    }
    70% {
        opacity: .8;
        margin: -56px 108px 0 0
    }
    75% {
        opacity: .7;
        margin: -60px 115px 0 0
    }
    80% {
        opacity: .6;
        margin: -64px 122px 0 0
    }
    85% {
        opacity: .5;
        margin: -68px 129px 0 0
    }
    90% {
        opacity: .4;
        margin: -72px 136px 0 0
    }
    95% {
        opacity: .3;
        margin: -76px 143px 0 0
    }
    100% {
        opacity: 0;
        margin: -80px 150px 0 0
    }
}

@keyframes light2Action {
    0% {
        opacity: 0
    }
    5% {
        opacity: .2;
        margin: -3px -4px 0 0
    }
    10% {
        opacity: .5;
        margin: -5px -8px 0 0
    }
    15% {
        opacity: .7;
        margin: -7px -12px 0 0
    }
    20% {
        opacity: 1;
        margin: -9px -16px 0 0
    }
    25% {
        opacity: 1;
        margin: -11px -20px 0 0
    }
    30% {
        opacity: 1;
        margin: -13px -24px 0 0
    }
    35% {
        opacity: 1;
        margin: -15px -28px 0 0
    }
    40% {
        opacity: 1;
        margin: -17px -32px 0 0
    }
    45% {
        opacity: 1;
        margin: -19px -36px 0 0
    }
    50% {
        opacity: 1;
        margin: -21px -40px 0 0
    }
    55% {
        opacity: 1;
        margin: -23px -44px 0 0
    }
    60% {
        opacity: 1;
        margin: -25px -48px 0 0
    }
    65% {
        opacity: 1;
        margin: -27px -52px 0 0
    }
    70% {
        opacity: .8;
        margin: -30px -56px 0 0
    }
    75% {
        opacity: .7;
        margin: -32px -60px 0 0
    }
    80% {
        opacity: .6;
        margin: -34px -64px 0 0
    }
    85% {
        opacity: .5;
        margin: -36px -68px 0 0
    }
    90% {
        opacity: .4;
        margin: -38px -72px 0 0
    }
    95% {
        opacity: .3;
        margin: -40px -76px 0 0
    }
    100% {
        opacity: 0;
        margin: -42px -80px 0 0
    }
}

@keyframes light3Action {
    0% {
        opacity: 0
    }
    5% {
        opacity: .2;
        margin: 4px -8px 0 0
    }
    10% {
        opacity: .5;
        margin: 8px -16px 0 0
    }
    15% {
        opacity: .7;
        margin: 12px -24px 0 0
    }
    20% {
        opacity: 1;
        margin: 16px -32px 0 0
    }
    25% {
        opacity: 1;
        margin: 20px -40px 0 0
    }
    30% {
        opacity: 1;
        margin: 24px -48px 0 0
    }
    35% {
        opacity: 1;
        margin: 28px -56px 0 0
    }
    40% {
        opacity: 1;
        margin: 32px -63px 0 0
    }
    45% {
        opacity: 1;
        margin: 36px -71px 0 0
    }
    50% {
        opacity: 1;
        margin: 40px -79px 0 0
    }
    55% {
        opacity: 1;
        margin: 44px -87px 0 0
    }
    60% {
        opacity: 1;
        margin: 48px -95px 0 0
    }
    65% {
        opacity: 1;
        margin: 52px -103px 0 0
    }
    70% {
        opacity: .8;
        margin: 56px -112px 0 0
    }
    75% {
        opacity: .7;
        margin: 60px -120px 0 0
    }
    80% {
        opacity: .6;
        margin: 64px -128px 0 0
    }
    85% {
        opacity: .5;
        margin: 68px -136px 0 0
    }
    90% {
        opacity: .4;
        margin: 72px -144px 0 0
    }
    95% {
        opacity: .3;
        margin: 76px -153px 0 0
    }
    100% {
        opacity: 0;
        margin: 80px -162px 0 0
    }
}

@keyframes peopleAction {
    0% {
        margin-bottom: 0
    }
    100% {
        margin-bottom: -20px
    }
}

@keyframes screenAction {
    0% {
        margin-top: 0
    }
    100% {
        margin-top: -20px
    }
}

.banner {
    background-position: center
}

.banner.homeBanner {
    margin: 0;
    background: url(../images/banner.jpg) repeat-x #1890ff
}

.banner.homeBanner .bannerItem {
    height: 611px;
    border: 0;
    box-shadow: none
}

.banner.homeBanner .bannerItem .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-top: 73px
}

.banner.homeBanner .bannerItem .container img {
    width: auto;
    border: 0
}

.banner.homeBanner .bannerItem .container .tit, .banner.homeBanner .bannerItem .container .subTit {
    color: #fff;
    font-size: 16px
}

.banner.homeBanner .bannerItem .container .tit {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px
}

.banner.homeBanner .bannerItem .container .foundation {
    position: absolute;
    top: 127px;
    right: 0
}

.banner.homeBanner .bannerItem .container .foundation.foundation2 {
    top: inherit;
    bottom: 0
}

.banner.homeBanner .bannerItem .container .light {
    position: absolute;
    animation-timing-function: cubic-bezier(0.42, 0, .58, 1);
    opacity: 0
}

.banner.homeBanner .bannerItem .container .light.light1 {
    top: 398px;
    right: 428px;
    animation: light1Action 1.5s infinite
}

.banner.homeBanner .bannerItem .container .light.light2 {
    top: 286px;
    right: 580px;
    animation: light2Action 1.5s infinite
}

.banner.homeBanner .bannerItem .container .light.light3 {
    top: 220px;
    right: 316px;
    animation: light3Action 1.5s infinite
}

.banner.homeBanner .bannerItem .container .people {
    position: absolute;
    bottom: 30px;
    left: 39%;
    animation: peopleAction 1.5s infinite alternate
}

.banner.homeBanner .bannerItem .container .people.people3 {
    bottom: 295px;
    right: 95px;
    left: inherit
}

.banner.homeBanner .bannerItem .container .screen {
    position: absolute;
    top: 95px;
    right: 220px;
    animation: screenAction 1.5s infinite alternate
}

.banner.homeBanner .bannerItem .container .screen.screen2 {
    top: 80px;
    right: 360px
}

.banner .slick-arrow {
    display: none !important
}

.banner .slick-slide {
    background-position: center
}

.banner .slick-dots {
    bottom: 22px
}

.banner .slick-dots li {
    background: #fff;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    transition: all .4s
}

.banner .slick-dots li.slick-active {
    width: 30px
}

.banner .slick-dots li button {
    display: none
}

.banner.sjBanner .slick-arrow {
    display: block !important;
    z-index: 2;
    border: 5px #1890ff solid;
    border-radius: 5px;
    transform: rotate(45deg);
    width: 30px;
    height: 30px;
    margin-top: -15px;
    opacity: .2;
    transition: all .4s
}

.banner.sjBanner .slick-arrow:hover {
    opacity: 1
}

.banner.sjBanner .slick-arrow.slick-prev:before, .banner.sjBanner .slick-arrow.slick-next:before {
    display: none
}

.banner.sjBanner .slick-prev {
    left: 0;
    border-top: 0;
    border-right: 0
}

.banner.sjBanner .slick-next {
    right: 0;
    border-left: 0;
    border-bottom: 0
}

.banner.wapBanner {
    background-size: cover
}

.banner.wapBanner .wapBannerCon {
    color: #fff;
    text-align: left;
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 30px;
    height: 220px
}

.banner.wapBanner .wapBannerCon h2 {
    font-size: 18px;
    text-align: left;
    padding: 0;
    margin: 0
}

.banner.wapBanner .wapBannerCon h3 {
    font-size: 12px;
    font-weight: 400
}

.banner .wapSlider {
    margin: 0
}

.banner .wapSlider .bannerSm {
    border: 0
}

.homeMap {
    background: url(../images/home/map.png) right no-repeat;
    height: 420px
}

.homeMap .tit {
    font-size: 15px;
    margin-top: 30px;
    font-weight: 700
}

.homeMap .tit b {
    font-size: 30px;
    display: inline-block;
    color: #1890ff;
    margin: 0 10px
}

.homeMap .content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    height: 130px
}

.homeMap .content .textScroll {
    flex: 1;
    text-align: center;
    font-size: 14px;
    border-right: 2px #EAEAEA solid;
    height: 93px;
    overflow: hidden;
    position: relative
}

.homeMap .content .textScroll ul {
    width: 100%
}

.homeMap .content .textScroll ul b {
    font-size: 48px;
    margin-right: 10px
}

.homeMap .content .textScroll ul span {
    color: #999
}

.homeMap .content .textScroll:last-child {
    border: 0
}

.services {
    margin: 0 -7.5px
}

.services:after {
    clear: both;
    display: table;
    content: ''
}

.services li {
    width: 20%;
    float: left;
    padding: 0 7.5px;
    position: relative;
    z-index: 1
}

.services li img {
    width: 100%
}

.services li .content {
    position: absolute;
    height: 100%;
    color: #fff;
    z-index: 2;
    padding: 30px 20px
}

.services li .content .mask {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
    background: #333;
    opacity: 0.6;
    transition: all .4s
}

.services li .content .tit {
    font-size: 24px
}

.services li .content .line {
    width: 12px;
    height: 2px;
    background: #fff;
    display: block;
    margin: 20px 0
}

.services li .content .desc {
    font-size: 14px;
    transition: all .4s;
    margin-top: 0px
}

.services li a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%
}

.services li a:hover {
    opacity: 1
}

.newsList .hotImg {
    width: 100%;
    height: 280px;
    display: block;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.newsList .hotImg img {
    width: 100%;
    height: 100%
}

.newsList .content {
    display: flex;
    align-items: center;
    align-items: flex-start
}

.newsList .content .date {
    width: 18%;
    position: relative
}

.newsList .content .date .year {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    margin-left: 10px
}

.newsList .content .date .time {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin-left: 0
}

.newsList .content .date:after {
    content: '';
    background: #e8e8e8;
    position: absolute;
    width: 1px;
    height: 30px;
    top: 50%;
    right: 30%;
    margin-top: -15px
}

.newsList .content .rightContent {
    width: 82%;
    padding-bottom: 25px
}

.newsList .content .rightContent .tit {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.newsList .content .rightContent .tit:hover {
    opacity: 1
}

.newsList .content .rightContent .desc {
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 36px;
    line-height: 18px
}

.newsList .textList li {
    border-bottom: 1px #e8e8e8 solid;
    padding-top: 54px
}

.newsList .textList li:first-child {
    padding-top: 0
}

.newsList .textList li:last-child {
    border: 0
}

.newsList.newsListHome .content .date {
    width: 15%;
    text-align: left
}

.newsList.newsListHome .content .date .year {
    font-size: 16px;
    color: #333;
    margin-left: 0
}

.newsList.newsListHome .content .date .time {
    color: #999;
    font-size: 12px;
    font-weight: 400;
    margin-left: 2px;
    font-weight: 700
}

.newsList.newsListHome .content .rightContent {
    width: 85%;
    padding-bottom: 53px
}

.newsList.newsListHome .content .rightContent .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    height: 18px
}

.vehicle {
    min-height: 455px;
    margin-top: 27px
}

.vehicle .vehicleCon {
    display: flex;
    align-items: center;
    align-items: flex-start
}

.vehicle .vehicleCon li {
    flex: 1;
    position: relative
}

.vehicle .vehicleCon li:after {
    content: '';
    position: absolute;
    top: 9px;
    right: 20%;
    background: #e8e8e8;
    width: 1px;
    height: 30px
}

.vehicle .vehicleCon li:last-child::after {
    display: none
}

.vehicle .vehicleCon li h3 {
    font-size: 16px;
    margin: 0 0 10px
}

.vehicle .vehicleCon li p {
    font-size: 14px;
    color: #999
}

.vehicle .vehicleCon li .vehicleJoin {
    display: inline-block;
    margin-top: 30px;
    position: relative
}

.vehicle .vehicleCon li .vehicleJoin a {
    display: flex;
    align-items: center;
    height: 38px;
    background: rgba(16, 149, 121, .1);
    padding-right: 13px
}

.vehicle .vehicleCon li .vehicleJoin a p {
    background: #1890ff;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    margin-right: 13px
}

.vehicle .vehicleCon li .vehicleJoin .mask {
    background: rgba(255, 255, 255, .9);
    border: 1px solid #e5e9ef;
    box-shadow: 0 0 20px 3px rgba(153, 153, 153, .14);
    border-radius: 8px;
    text-align: center;
    margin-top: 28px;
    padding: 14px 0;
    position: relative;
    display: none
}

.vehicle .vehicleCon li .vehicleJoin .mask img {
    width: 104px;
    height: 104px;
    display: inline-block
}

.vehicle .vehicleCon li .vehicleJoin .mask:before, .vehicle .vehicleCon li .vehicleJoin .mask:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: -24px;
    left: 32px;
    border: 12px transparent solid;
    border-bottom-color: #fff
}

.vehicle .vehicleCon li .vehicleJoin .mask:after {
    z-index: 1;
    border-bottom-color: #e5e9ef;
    top: -25px
}

.vehicle .vehicleCon li .vehicleJoin:hover .mask {
    display: block
}

.footer {
    color: rgba(255, 255, 255, .7)
}

.footer .footerBg {
    background: #000;
    padding: 65px 0 34px
}

.footer a {
    color: #fff;
    opacity: .7
}

.footer a:hover {
    opacity: 1;
    text-shadow: 0 0 1px #fff
}

.footer .tit {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff
}

.footer .footerCon {
    display: flex;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
}

.footer .footerCon .linkCon {
    display: flex;
    align-items: center;
    align-items: flex-start;
}

.footer .footerCon .linkCon li {
    margin-right: 90px;
    display: flex;
    justify-content: space-between;
}

.footer .footerCon .linkCon a {
    display: block;
    margin-bottom: 14px
}

.footer .footerCon .linkCon .tel {
    font-weight: 700;
    font-size: 24px;
    margin: -15px 0 10px;
    color: #fff
}

.footer .footerCon .ewmCon {
    display: flex;
    align-items: center;
    align-items: flex-start
}

.footer .footerCon .ewmCon .ewm {
    margin-left: 30px;
    position: relative
}

.footer .footerCon .ewmCon .ewm .ewmApp {
    display: flex;
    align-items: center;
    text-align: center
}

.footer .footerCon .ewmCon .ewm .ewmApp p {
    margin-right: 30px
}

.footer .footerCon .ewmCon .ewm .ewmApp p img {
    display: block;
    margin-bottom: 8px;
    width: 106px;
    height: 106px
}

.footer .footerCon .ewmCon .ewm.ewmAbout:after {
    content: '';
    width: 1px;
    height: 80px;
    position: absolute;
    left: -30px;
    top: 50%;
    margin-top: -40px;
    background: #6D6F7E
}

.footer .footerCon .ewmCon .ewm.ewmAbout .ewmApp p {
    margin-right: 0
}

.footer .footerCopy {
    text-align: center;
    font-size: 14px;
    color: #6D6F7E;
    margin-top: 10px
}

.footer .footerCopy a {
    color: #6D6F7E;
    opacity: 1;
    margin-left: 10px
}

.footer .footerCopy a:hover {
    color: #fff
}

.about .info {
    font-size: 14px;
    line-height: 2.5;
    color: #999
}

.about ul {
    margin: 24px -10px 30px
}

.about ul li {
    padding: 0 10px
}

.about ul li img {
    width: 100%
}

.contactBg {
    background: #f8f8f8
}

.contact {
    font-size: 14px;
    color: #666;
    line-height: 2;
    background: url(../images/about/map.png) right no-repeat;
    padding: 60px 0
}

.contact .title1 {
    margin-top: 0
}

.contact h3 {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin: 0 0 10px
}

.contact .working {
    color: #999;
    font-size: 12px;
    margin-bottom: 20px
}

.bannerAbout {
    position: relative
}

.bannerAbout .box {
    background: #fff;
    height: 300px;
    padding-left: 30px;
}

.bannerAbout .box h3 {
    font-weight: 700;
    font-size: 18px;
    margin: 40px 0;
    position: relative
}

.bannerAbout .box p {
    color: #999
}

.middelNav {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(0, 0, 0, .06);
    padding: 17px 25px;
    min-height: 74px;
    margin-top: -36px;
    position: relative;
    z-index: 3;
    /*display: flex;*/
    /*align-items: center*/
}

.middelNav .icon {
    font-size: 25px
}

.middelNav .tit {
    margin: 0 44px 0 22px;
    position: relative
}

.middelNav .tit b {
    font-size: 16px;
    display: block;
    font-weight: 700
}

.middelNav .tit span {
    color: #999
}

.middelNav .tit:after {
    content: '';
    width: 2px;
    height: 26px;
    background: #EAEAEA;
    position: absolute;
    right: -22px;
    top: 50%;
    margin-top: -13px
}

.middelNav .content {
    font-size: 14px;
    flex: 1
}

.middelNav .content .authScroll {
    height: 22px;
    line-height: 22px;
    width: 100%;
    display: block;
    overflow: hidden;
    position: relative
}

.middelNav .productNav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.middelNav .productNav .icon {
    font-size: 50px
}

.middelNav .productNav .tit {
    margin: 15px 0 0;
    text-align: center
}

.middelNav .productNav .tit:after {
    display: none
}

.middelNav .productNav .mask {
    display: none
}

.middelNav .productNav:hover .subTit {
    display: none
}

.middelNav .productNav:hover .mask {
    display: block
}

.middelNav.productNavRight {
    position: absolute;
    width: 339px;
    margin-right: -339px;
    top: 0;
    right: 0
}

.middelNav.productNavRight .icon {
    font-size: 30px
}

.crumbs {
    display: flex;
    align-items: center;
    color: #999;
    margin: 10px 0 20px
}

.crumbs a {
    color: #999
}

.crumbs a:hover {
    color: #1890ff;
    text-shadow: 0 0 1px #fff
}

.crumbs .song {
    margin: 0 5px;
    color: #ccc
}

.page {
    text-align: right;
    margin: 20px 0 60px
}

.page ul {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.page ul li a {
    display: inline-block;
    padding: 8px 13px;
    border: 1px #e8e8e8 solid;
    color: #999;
    border-radius: 4px;
    margin: 0 2px;
    cursor: pointer
}

.page ul li a.disabled {
    cursor: not-allowed;
    border: 1px #e8e8e8 solid;
    color: #999;
    background: 0 0;
    color: #ccc
}

.page ul li a.disabled:hover {
    text-shadow: 0 0 0 #fff
}

.page ul li.active a, .page ul li:hover a {
    background: #1890ff;
    color: #fff;
    border-color: #1890ff
}

.display {
    display: flex;
}
.leftNav {
    margin-bottom: 15px;
}

.leftNav li {
    font-size: 14px
}

.leftNav li > a {
    display: block;
    line-height: 42px;
    margin-right: 20px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    align-items: flex-start;
    position: relative;
    border-radius: 50px;
    text-align: center;

}

.leftNav li.active > a, .leftNav li:hover > a {
    background: #1890ff;
    color: #fff
}

.leftNav.helpNav li > a {
    background: #fff;
    color: #333
}

.leftNav.helpNav li > a:before {
    background: #333
}

.leftNav.helpNav li > a:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 12px;
    border: 1px #333 solid;
    border-top: 0;
    border-right: 0;
    transform: rotate(-45deg)
}

.leftNav.helpNav li > a:hover {
    color: #1890ff
}

.leftNav.helpNav li > a:hover:before {
    background: #1890ff
}

.leftNav.helpNav li > a:hover:after {
    border-color: #1890ff
}

.leftNav.helpNav li .line {
    height: 1px;
    background: #e8e8e8;
    margin: 20px 0
}

.leftNav.helpNav li:last-child .line {
    display: none
}

.leftNav.helpNav li ul {
    padding: 10px 0 0 10px;
    display: none
}

.leftNav.helpNav li ul li > a {
    background: 0 0;
    color: #999;
    line-height: 20px;
    padding: 8px 0
}

.leftNav.helpNav li ul li > a:before {
    background: #999;
    margin-top: 8px
}

.leftNav.helpNav li ul li > a:after {
    display: none
}

.leftNav.helpNav li ul li > a.active, .leftNav.helpNav li ul li > a:hover {
    color: #1890ff
}

.leftNav.helpNav li ul li > a.active:before, .leftNav.helpNav li ul li > a:hover:before {
    background: #1890ff
}

.leftNav.helpNav li.active > a {
    background: #1890ff;
    color: #fff
}

.leftNav.helpNav li.active > a:before {
    background: #fff
}

.leftNav.helpNav li.active > a:after {
    border-color: #fff;
    transform: rotate(135deg);
    top: 18px
}

.leftNav.helpNav li.active ul {
    display: block
}

.showInfo {
    font-size: 14px
}

.showInfo img {
    max-width: 100%
}

.newsInfo {
    margin-bottom: 60px
}

.newsInfo .title {
    display: flex;
    align-items: center;
    align-items: flex-start;
    border-bottom: 1px #e8e8e8 solid;
    margin-bottom: 20px
}

.newsInfo .title .date {
    width: 15%;
    position: relative
}

.newsInfo .title .date .year {
    font-weight: 700;
    font-size: 16px
}

.newsInfo .title .date .time {
    color: #999
}

.newsInfo .title .date:after {
    content: '';
    background: #e8e8e8;
    position: absolute;
    width: 1px;
    height: 30px;
    top: 50%;
    right: 30%;
    margin-top: -15px
}

.newsInfo .title .rightContent {
    width: 85%;
    padding-bottom: 25px
}

.newsInfo .title .rightContent .tit {
    font-size: 24px;
    font-weight: 700;
    line-height: 45px
}

.newsInfo .title .rightContent .tit:hover {
    opacity: 1
}

.newsInfo .showInfoCon {
    display: flex;
    align-items: center;
    align-items: flex-start
}

.newsInfo .showInfoCon .shareCon {
    color: #999;
    text-align: center;
    margin-right: 30px
}

.newsInfo .showInfoCon .shareCon .shareTitle {
    margin: 60px 0 27px
}

.newsInfo .showInfoCon .shareCon .shareLink {
    position: relative
}

.newsInfo .showInfoCon .shareCon .shareLink a {
    display: block;
    font-size: 30px;
    color: #ddd
}

.newsInfo .showInfoCon .shareCon .shareLink a:hover {
    opacity: 1;
    text-shadow: 0 0 0 #fff;
    color: #1890ff
}

.newsInfo .showInfoCon .shareCon .shareLink a:hover .icon.icon-shareWeixin {
    color: #16c3a2
}

.newsInfo .showInfoCon .shareCon .shareLink a:hover .icon.icon-shareWeibo {
    color: #ff3939
}

.newsInfo .showInfoCon .shareCon .shareLink .mask {
    position: absolute;
    top: 0;
    left: 64px;
    background: #fff;
    flex-direction: column;
    width: 130px;
    padding: 15px 0 10px;
    color: #333;
    border-radius: 8px;
    border: 1px solid #e5e9ef;
    box-shadow: 0 0 20px 3px rgba(153, 153, 153, .14);
    display: none
}

.newsInfo .showInfoCon .shareCon .shareLink .mask.active {
    display: flex;
    align-items: center
}

.newsInfo .showInfoCon .shareCon .shareLink .mask .weixinCode {
    width: 94px;
    height: 94px;
    margin-bottom: 4px
}

.newsInfo .showInfoCon .shareCon .shareLink .mask:before {
    content: '';
    background: #fff;
    width: 15px;
    height: 15px;
    border: 1px #e5e9ef solid;
    border-top: 0;
    border-right: 0;
    position: absolute;
    top: 13px;
    left: -7.5px;
    transform: rotate(45deg)
}

.newsInfo .showInfoCon .newsInfoContent {
    font-size: 14px;
    flex: 1
}

.newsInfo .showInfoCon .newsInfoContent img {
    max-width: 100%
}

.newsInfo .showInfoCon .newsInfoContent .bigImg {
    width: 100%;
    display: block;
    margin-bottom: 20px
}

.newsInfo .showInfoCon .newsInfoContent .buttons {
    margin-top: 30px
}

.newsInfo .showInfoCon .newsInfoContent .buttons a {
    background: #fff;
    display: block;
    padding: 20px;
    font-size: 16px;
    position: relative
}

.newsInfo .showInfoCon .newsInfoContent .buttons a:before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #1890ff;
    transition: all .4s
}

.newsInfo .showInfoCon .newsInfoContent .buttons a:hover:before {
    width: 4px
}

.newsInfo .showInfoCon .newsInfoContent .buttons a .tit {
    font-size: 16px;
    color: #999;
    text-shadow: 0 0 0 #fff;
    margin-bottom: 10px
}

.infoList {
    background: #fff;
    padding: 30px 20px 10px;
    margin: 71px 0 60px
}

.infoList .tit {
    font-size: 18px;
    font-weight: 700
}

.infoList ul li {
    font-size: 14px;
    padding: 20px 0;
    border-bottom: 1px #e8e8e8 solid
}

.infoList ul li:last-child {
    border: 0
}

.infoList ul li .time {
    color: #999;
    margin-bottom: 10px
}

.infoList ul li .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block
}

.productBg {
    background: url(../images/product/bg1.png) top no-repeat
}

.productBg.productBg2 {
    background-image: url(../images/product/bg2.png)
}

.productBg .tit {
    font-size: 46px;
    margin: 10px 0 15px
}

.productBg .desc {
    font-size: 18px;
    line-height: 1.8
}

.productBg .tit2 {
    display: flex;
    align-items: center;
    margin: 50px 0 20px
}

.productBg .tit2 .icon {
    margin-right: 5px
}

.productBg img {
    max-width: 100%
}

.productBg ul {
    position: relative;
    margin: 0 -15px
}

.productBg ul:after {
    clear: both;
    display: table;
    content: ''
}

.productBg ul li {
    float: left;
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px
}

.productBg ul li .box {
    background: #fff;
    box-shadow: 0 10px 12px 6px rgba(0, 0, 0, .04);
    height: 120px;
    display: flex;
    align-items: center;
    border: 1px #fff solid;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all .4s
}

.productBg ul li .box .icon {
    font-size: 40px;
    margin-bottom: 15px;
    transition: all .4s
}

.productBg ul li .box .menuTit {
    transition: all .4s
}

.productBg ul li .box .mask {
    position: absolute;
    font-size: 14px;
    background: #fff2ea;
    border-radius: 8px;
    color: #1890ff;
    padding: 20px;
    margin-top: 120px;
    left: 2%;
    width: 96%;
    display: none
}

.productBg ul li .box .mask .arrow {
    border: 13px transparent solid;
    border-bottom-color: #fff2ea;
    position: absolute;
    top: -26px;
    left: 9%
}

.productBg ul li .box .mask.mask2 .arrow {
    left: 35%
}

.productBg ul li .box .mask.mask3 .arrow {
    left: 61%
}

.productBg ul li .box .mask.mask4 .arrow {
    left: 87%
}

.productBg ul li .box:hover {
    border-color: #1890ff
}

.productBg ul li .box:hover .icon, .productBg ul li .box:hover .menuTit {
    color: #1890ff
}

.productBg ul li .box:hover .mask {
    display: block
}

.title1, .title2, .title3, .title4, .title5 {
    display: flex;
    align-items: center;
    margin: 20px 0;
    position: relative
}

.title1 b, .title2 b, .title3 b, .title4 b, .title5 b {
    font-size: 24px;
    position: relative;
    display: inline-flex;
    align-items: center
}

.title1 b:after, .title2 b:after, .title3 b:after, .title4 b:after, .title5 b:after {
    content: '';
    width: 4px;
    height: 26px;
    background: #1890ff;
    margin: 0 15px
}

.title1 .sub, .title2 .sub, .title3 .sub, .title4 .sub, .title5 .sub {
    font-size: 16px;
    color: #999;
    flex: 1
}

.title1 .more, .title2 .more, .title3 .more, .title4 .more, .title5 .more {
    color: #1890ff
}

.title2 {
    margin-bottom: 60px
}

.title2 b:after {
    display: none
}

.title3 {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 35px
}

.title3:after {
    content: '';
    width: 26px;
    height: 4px;
    background: #1890ff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -13px
}

.title3 b:after {
    display: none
}

.title4 {
    justify-content: center;
    flex-direction: column;
    margin-bottom: 85px
}

.title4:after {
    content: '';
    width: 26px;
    height: 4px;
    background: #1890ff;
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -13px
}

.title4 b:after {
    display: none
}

.title4 .sub {
    position: absolute;
    bottom: -40px
}

.title5 {
    margin: 0 0 30px;
    align-items: flex-start;
    line-height: 1;
    height: 42px
}

.title5 b {
    font-size: 18px
}

.title5 b:after {
    display: none
}

.title5 .sub {
    position: absolute;
    bottom: -40px
}

.listRow {
    margin-left: -10px;
    margin-right: -10px
}

.listRow [class^=col-] {
    padding-left: 10px;
    padding-right: 10px
}

.styleError {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center
}

.styleError .btnSuccess, .styleError .btnLink {
    background: #1890ff;
    color: #fff;
    width: 104px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px
}

.styleError .btnLink {
    color: #1890ff;
    background: 0 0
}

@media (min-width: 1200px) {
    .container {
        width: 1200px
    }
}

@media (max-width: 768px) {
    .services li {
        width: 33.333333%;
        margin-bottom: 15px
    }

    .newsList .textList {
        padding-top: 54px;
        border-top: 1px #e8e8e8 solid
    }
}

@media (max-width: 766px) {
    .header .navBg .container {
        height: 60px
    }

    .header .navBg .container .logo {
        width: auto
    }

    .header .navBg .container .logo img {
        height: 22px
    }

    .header .navBg .container .logo .logoImg {
        margin-right: 27px
    }

    .header .navBg .container .logo .logoImg:after {
        right: -15px
    }

    .header .navBg .container .menu {
        justify-content: flex-end
    }

    .header .navBg .container .menu li {
        height: 60px;
        flex: initial;
        margin-left: 15px;
        display: none
    }

    .header .navBg .container .menu li a {
        font-size: 14px
    }

    .header .navBg .container .menu li.active:after, .header .navBg .container .menu li:hover:after {
        height: 1px;
        bottom: 13px
    }

    .header .navBg .container .menu li.active.help, .header .navBg .container .menu li:hover.help {
        display: flex;
        align-items: center
    }

    .header .navBg .container .menu li:after {
        width: 60px;
        margin-left: -30px
    }

    .header .navBg .container .menu li.homeMenu {
        display: flex;
        align-items: center
    }

    .header .navBg .container .menu li.homeMenu:after {
        width: 30px;
        margin-left: -15px
    }

    .header .navBg .container .menu li.smallMenu {
        display: flex;
        align-items: center;
        position: initial
    }

    .header .navBg .container .menu li.smallMenu:after {
        display: none
    }

    .header .navBg .container .menu li.smallMenu .icon {
        font-size: 35px;
        margin-right: 0
    }

    .header .navBg .container .menu li.smallMenu .level:hover, .header .navBg .container .menu li.smallMenu .level:active, .header .navBg .container .menu li.smallMenu .level:focus {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-tap-highlight-color: transparent
    }

    .header .navBg .container .menu li.smallMenu .level .icon {
        display: none
    }

    .header .navBg .container .menu li.smallMenu .level .icon.icon-menu2 {
        display: block
    }

    .header .navBg .container .menu li.smallMenu .mask {
        left: 0;
        top: 60px;
        padding-top: 0 !important
    }

    .header .navBg .container .menu li.smallMenu .mask .close {
        content: '';
        background: rgba(0, 0, 0, .7);
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 60px;
        z-index: -1
    }

    .header .navBg .container .menu li.smallMenu .mask .box {
        border-radius: 0;
        background: #fff;
        text-align: left
    }

    .header .navBg .container .menu li.smallMenu .mask .box a {
        color: #333;
        padding-left: 30px
    }

    .header .navBg .container .menu li.smallMenu .mask .box a span {
        position: relative
    }

    .header .navBg .container .menu li.smallMenu .mask .box a span:before {
        content: '';
        height: 1px;
        position: absolute;
        width: 100%;
        bottom: -3px;
        background: #fff;
        transition: all .4s
    }

    .header .navBg .container .menu li.smallMenu .mask .box a.active {
        color: #1890ff
    }

    .header .navBg .container .menu li.smallMenu .mask .box a.active span:before {
        background: #1890ff
    }

    .header .navBg .container .menu li.smallMenu .mask .box:before {
        display: none
    }

    .header .navBg .container .menu li.smallMenu .mask .footerBtns {
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        padding: 10px
    }

    .header .navBg .container .menu li.smallMenu .mask .footerBtns a {
        flex: 1;
        border: 1px #1890ff solid;
        color: #1890ff;
        font-size: 16px;
        border-radius: 4px;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 10px;
        padding: 0
    }

    .header .navBg .container .menu li.smallMenu .mask .footerBtns a.reg {
        background: #1890ff;
        color: #fff
    }

    .header .navBg .container .menu.open li {
        display: none
    }

    .header .navBg .container .menu.open li.smallMenu {
        display: flex;
        align-items: center
    }

    .header .navBg .container .menu.open li.smallMenu .level .icon.icon-menu2 {
        display: none
    }

    .header .navBg .container .menu.open li.smallMenu .level .icon.icon-close {
        display: block;
        font-size: 25px
    }

    .banner .slick-dots {
        bottom: 5px
    }

    .banner.homeBanner .bannerItem {
        height: 260px
    }

    .banner.homeBanner .bannerItem .container {
        justify-content: flex-start
    }

    .banner.homeBanner .bannerItem .container .tit {
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 0
    }

    .banner.homeBanner .bannerItem .container .subTit {
        font-size: 12px
    }

    .banner.homeBanner .bannerItem .container .foundation {
        width: 80%;
        top: 45%
    }

    .banner.homeBanner .bannerItem .container .foundation.foundation2 {
        width: 40%
    }

    .banner.homeBanner .bannerItem .container .screen {
        width: 30%;
        right: 25%;
        top: 40%
    }

    .banner.homeBanner .bannerItem .container .screen.screen2 {
        width: 8%;
        right: 26%;
        top: 48%
    }

    .banner.homeBanner .bannerItem .container .light {
        transform: scale(0);
        display: none
    }

    .banner.homeBanner .bannerItem .container .people {
        width: 15%;
        left: 5%
    }

    .banner.homeBanner .bannerItem .container .people.people3 {
        width: 10%;
        right: 3%;
        bottom: 26%
    }

    .homeMap {
        background-size: contain;
        height: 260px
    }

    .homeMap .tit {
        font-size: 12px;
        margin-top: 20px;
        font-weight: 400
    }

    .homeMap .tit b {
        font-size: 16px;
        margin: 0 5px
    }

    .homeMap .content {
        width: 100%;
        height: 130px
    }

    .homeMap .content .textScroll {
        border: 0
    }

    .homeMap .content .textScroll ul li {
        height: 93px;
        padding-top: 18px
    }

    .homeMap .content .textScroll ul b {
        font-size: 24px
    }

    .services li {
        width: 50%;
        margin-bottom: 15px
    }

    .footer .footerBg {
        padding: 0;
        position: relative
    }

    .footer .footerBg .container {
        display: none
    }

    .footer .footerBg .footerBtns {
        position: fixed;
        z-index: 9;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 60px;
        padding: 10px;
        transition: all .4s
    }

    .footer .footerBg .footerBtns.close {
        bottom: -60px
    }

    .footer .footerBg .footerBtns a {
        flex: 1;
        border: 1px #1890ff solid;
        color: #1890ff;
        font-size: 16px;
        border-radius: 4px;
        text-align: center;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 10px
    }

    .footer .footerBg .footerBtns a.reg {
        background: #1890ff;
        color: #fff
    }

    .footer .footerCon .linkCon li {
        margin-right: 0
    }

    .footer .footerCon .linkCon li .tit {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 15px
    }

    .footer .footerCon .linkCon li .tel, .footer .footerCon .linkCon li .working {
        display: inline-block;
        font-weight: 400
    }

    .footer .footerCon .linkCon li .tel {
        font-size: 16px
    }

    .footer .footerCopy {
        margin-top: 15px;
        font-size: 10px;
        text-align: left;
        margin-top: 0
    }

    .vehicle {
        margin-top: 0;
        min-height: 260px
    }

    .vehicle .vehicleCon {
        display: block
    }

    .vehicle .vehicleCon:after {
        clear: both;
        display: table;
        content: ''
    }

    .vehicle .vehicleCon li {
        width: 50%;
        float: left;
        margin-bottom: 20px
    }

    .vehicle .vehicleCon li:after {
        display: none
    }

    .isHome {
        /*background: url(../images/footer_sm.png) bottom no-repeat*/
    }

    .isHome .header .navBg {
        background: 0 0
    }

    .isHome .header .navBg.navFixed {
        background: #fff
    }

    .isHome .footer {
        padding-top: 50px
    }

    .isHome .footer .footerBg {
        background: 0 0;
        padding-bottom: 90px;
        background-color: rgba(0, 0, 0, .7);
    }

    .isHome .footer .footerBg .container {
        display: block
    }

    .title1 {
        margin: 20px 0 15px
    }

    .title1 b {
        padding-left: 10px;
        font-size: 16px;
        font-weight: 400
    }

    .title1 b:after {
        position: absolute;
        left: 0;
        margin: 0;
        height: 20px;
        width: 3px
    }

    .title1 .sub {
        font-size: 0;
        opacity: 0
    }

    .title1 .more {
        font-size: 14px
    }

    .title2 {
        margin: 20px 0
    }

    .title3 {
        margin: 20px 0 10px;
        flex-direction: row;
        justify-content: flex-start
    }

    .title3 b {
        font-size: 16px;
        font-weight: 400
    }

    .title3:before {
        content: '';
        width: 3px;
        height: 20px;
        background: #1890ff;
        margin-right: 10px
    }

    .title3:after {
        display: none
    }

    .title4 {
        margin: 0 0 20px;
        display: block
    }

    .title4 b {
        font-size: 16px;
        font-weight: 400
    }

    .title4 .sub {
        position: relative;
        bottom: 0;
        display: block;
        font-size: 14px
    }

    .title4:after {
        display: none
    }

    .title5 {
        height: auto;
        margin: 30px 0 20px
    }

    .title5 b {
        font-size: 16px;
        font-weight: 400
    }

    .title5:after {
        display: none
    }

    .bannerSm {
        width: 100%
    }

    .newsList .textList {
        padding-top: 20px;
        border-top: 1px #e8e8e8 solid
    }

    .newsList .textList li {
        padding-top: 20px
    }

    .news-list-box {
        background-color: #f3f4f5;
        margin-top: 10px;
    }

    .newsList.newsListHome {
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
    }
    .newsList.newsListHome .content .rightContent {
        padding-bottom: 20px
    }

    .newsList .listRow li, .newsList.newsListHome li {
        display: flex;
        align-items: center;
        align-items: flex-start
    }

    .newsList .listRow li .hotImg, .newsList.newsListHome li .hotImg {
        width: 40%;
        height: 92px
    }

    .newsList .listRow li .content, .newsList.newsListHome li .content {
        display: block;
        width: 60%;
        padding-left: 10px
    }

    .newsList .listRow li .content .rightContent, .newsList.newsListHome li .content .rightContent {
        width: 100%;
        padding: 0
    }

    .newsList .listRow li .content .rightContent .tit, .newsList.newsListHome li .content .rightContent .tit {
        display: block;
        white-space: inherit;
        font-size: 15px;
        height: 44px;
        line-height: 22px
    }

    .newsList .listRow li .content .rightContent .desc, .newsList.newsListHome li .content .rightContent .desc {
        height: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        margin: 6px 0
    }

    .newsList .listRow li .content .rightContent .time, .newsList.newsListHome li .content .rightContent .time {
        color: #999;
        text-align: right
    }

    .middelNav {
        position: absolute;
        margin: 0 -15px;
        margin-top: -40px;
        min-height: 40px;
        width: 100%;
        background: rgba(0, 0, 0, .5);
        padding: 0
    }

    .middelNav ul li a {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #fff;
        height: 22px;
        line-height: 22px;
        padding: 0 15px;
        box-sizing: border-box
    }

    .middelNav.productNavs {
        background: #fff;
        margin: 0;
        position: relative;
        margin-top: -30px;
        border-radius: 6px;
        padding: 10px 0
    }

    .middelNav.productNavs .subTit, .middelNav.productNavs .mask {
        display: none !important
    }

    .middelNav.productNavs .icon {
        font-size: 40px
    }

    .middelNav.productNavs .tit b {
        font-weight: 400;
        font-size: 14px
    }

    .leftNav {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 -15px 20px;
        box-shadow: 0 4px 8px 0 rgba(13, 134, 115, .12)
    }

    .leftNav li {
        flex: 1
    }

    .leftNav li a {
        padding: 0;
        display: block;
        text-align: center
    }

    .leftNav li a:before {
        display: none
    }

    .leftNav li.active a {
        background: 0 0;
        color: #1890ff
    }

    .leftNav.helpNav {
        flex-direction: column;
        position: relative;
        width: 100%;
        z-index: 3;
        box-shadow: none;
        margin: 0;
        align-items: flex-start;
        margin-bottom: 20px;
        display: none
    }

    .leftNav.helpNav li {
        width: 100%
    }

    .leftNav.helpNav li a {
        text-align: left
    }

    .leftNav.helpNav li a:after {
        right: 5px
    }

    .leftNav.helpNav li .line {
        display: none
    }

    .leftNav.helpNav li.active .level {
        background: 0 0;
        color: #1890ff
    }

    .leftNav.helpNav li.active .level:after {
        border-color: #1890ff
    }

    .leftNavWap {
        box-shadow: 0 4px 8px 0 rgba(13, 134, 115, .12);
        margin: 0 -15px 20px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        height: 50px
    }

    .leftNavWap b {
        flex: 1;
        font-size: 18px;
        font-weight: 400
    }

    .leftNavWap .icon {
        font-size: 18px
    }

    .page {
        margin: 20px 0
    }

    .page ul {
        justify-content: center
    }

    .page ul li a {
        font-size: 10px;
        padding: 4px 7px
    }

    .bgGray {
        background: #fff
    }

    .bgGrayWap {
        background: #f8f8f8
    }

    .newsInfo {
        margin-bottom: 20px
    }

    .newsInfo .title {
        border: 0;
        margin: 0
    }

    .newsInfo .title .rightContent {
        margin-top: 15px;
        width: 100%
    }

    .newsInfo .title .rightContent .tit {
        font-size: 18px;
        line-height: 24px;
        margin: 15px 0;
        display: block
    }

    .newsInfo .title .rightContent .desc {
        color: #999
    }

    .newsInfo .showInfoCon .newsInfoContent .buttons {
        font-size: 14px
    }

    .newsInfo .showInfoCon .newsInfoContent .buttons a {
        box-shadow: 0 4px 8px 0 rgba(13, 134, 115, .06);
        font-size: 14px;
        padding: 15px
    }

    .newsInfo .showInfoCon .newsInfoContent .buttons a .tit {
        font-size: 14px;
        margin: 0
    }

    .newsInfo .showInfoCon .newsInfoContent .buttons a .desc {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .productBg .tit {
        font-size: 20px;
        margin-top: 25px
    }

    .productBg .desc {
        font-size: 14px
    }

    .productBg ul {
        z-index: 4
    }

    .productBg ul li {
        width: 33.333333%
    }

    .productBg ul li .box {
        font-size: 14px;
        height: 90px;
        box-shadow: 0 4px 8px 0 rgba(13, 134, 115, .12)
    }

    .productBg ul li .box .icon {
        font-size: 30px;
        margin-bottom: 5px
    }

    .productBg ul li .box .mask {
        left: 4%;
        width: 92%;
        margin-top: 110px;
        padding: 15px;
        top: 0
    }

    .productBg ul li .box .mask .arrow {
        left: 10%
    }

    .productBg ul li .box .mask.mask2 .arrow {
        left: 46%
    }

    .productBg ul li .box .mask.mask3 .arrow {
        left: 83%
    }

    .productBg ul li .box .mask.mask4 {
        top: 120px
    }

    .productBg ul li .box .mask.mask4 .arrow {
        left: 10%
    }

    .productBg ul li:nth-child(5) .box .mask {
        top: 120px
    }

    .productBg ul li:nth-child(5) .box .mask .arrow {
        left: 46%
    }

    .productBg ul li:nth-child(6) .box .mask {
        top: 120px
    }

    .productBg ul li:nth-child(6) .box .mask .arrow {
        left: 83%
    }

    .productBg ul li:nth-child(7) .box .mask {
        top: initial;
        bottom: 147px
    }

    .productBg ul li:nth-child(7) .box .mask .arrow {
        left: 10%;
        bottom: -26px;
        top: initial;
        border-bottom-color: #fff;
        border-top-color: #fff2ea
    }

    .productBg .productRow {
        margin: 0 -15px 15px
    }

    .bannerM img {
        width: 100%
    }

    .about .info {
        line-height: 2;
        color: #333;
        padding-bottom: 20px
    }

    .bannerAbout {
        height: 200px !important;
        background-size: cover;
        background-position: center
    }

    .bannerAbout .box {
        background: rgba(0, 0, 0, .4);
        color: #fff;
        padding-left: 15px;
        width: 80%;
        height: 170px;
        margin-top: -85px
    }

    .bannerAbout .box h3 {
        font-size: 16px;
        font-weight: 400;
        margin: 5px 0 20px
    }

    .bannerAbout .box p {
        color: #fff;
        font-size: 12px;
        margin-bottom: 15px
    }
}

.footerTools {
    position: fixed;
    z-index: 999;
    bottom: 50px;
    right: 0px;
    display: flex;
    align-items: center;
    flex-direction: column
}

.footerTools #goTop {
    display: none
}

.footerTools .icon {
    display: flex;
    align-items: center;
    font-size: 50px;
    margin-top: 30px
}

.mb10 {
    margin-bottom: 10px;
}

.company-info {
    margin-top: 40px;
}

.company-info b {
    font-size: 20px;
}

.company-info p {
    line-height: 26px;
}