﻿@charset "utf-8";

/* 设置字库 */
@font-face {
    font-family: 'SHSregular';
    src: url('../fonts/sourcehansanscn-regular.woff2') format('woff2'),
        url('../fonts/sourcehansanscn-regular.woff') format('woff'),
        url('../fonts/sourcehansanscn-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'SHSlight';
    src: url('../fonts/SourceHanSansCN-Light.otf');
}

@font-face {
    font-family: 'Hvbo';
    src: url('../fonts/Hvbo__.ttf');
}

@font-face {
    font-family: 'DINmedi';
    src: url('../fonts/din medium.ttf');
}

/* Legacy iOS */
font-weight: normal;
font-style: normal;

/*全局初始化样式*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    padding: 0;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.42857143;
    font-family: 'SHSregular';
    color: #333;
    min-width: 320px;
    width: 100%;
    zoom: 1;
    background: #fff;
    /*禁用Webkit内核浏览器的文字大小调整功能*/
    -webkit-text-size-adjust: none;

    /*取出点击出现半透明的灰色背景*/
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight: rgba(0, 0, 0, 0);

    /*控制文本可选性*/
    /*
-webkit-user-select: none;
    -ms-user-select: none;
   -moz-user-select: none;
 -khtml-user-select: none;
        user-select: none;
*/

    /*设置字体的抗锯齿或者说光滑度*/
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

* {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /*word-break: break-all;*/
    word-wrap: break-word;
}

/*默认去除ul、li的默认样式*/
.p,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin: 0;
    padding: 0;
}

.ul,
.ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,
input,
textarea {
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    color: #333;
}

/*表单元素获得焦点时不显示虚线框*/
input:focus {
    outline: none;
}

input,
button,
select,
textarea {
    outline: none;
    /*-webkit-appearance:none;*/
    /*强制去除表单自带的样式*/
}

/*不允许多行输入文本框有滚动条*/
textarea {
    resize: none;
    /*-webkit-appearance:none;*/
    /*强制去除textarea自带的样式*/
}

/*初始化表单元素样式*/
textarea,
input,
select {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}

/*初始化HTML5标签样式*/
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

article,
aside,
footer,
header,
hgroup,
nav,
section,
figure,
figcaption {
    display: block;
}

/*去除figure边距*/
figure,
figcaption {
    margin: 0px;
    padding: 0px;
}

/*初始化图片样式*/
img {
    border: none;
    border: 0;
    max-width: 100%;
    vertical-align: middle;
}

/*初始化a的样式和字体样式*/
a {
    color: #888888;
    text-decoration: none !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
    color: #014da3;
}

.Ispic {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

/*清除浮动*/
.clear {
    clear: both;
    height: 0px;
    overflow: hidden;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
    font-size: 0px;
}

.clearfix {
    zoom: 1;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.w1400 {
    max-width: 1400px;
    margin: 0 auto;
}


/*fullpage nav*/
#fp-nav ul li,
.fp-slidesNav ul li {
    width: auto;
    height: auto;
    line-height: inherit;
    margin: 0;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, .4);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    margin: 40px 0;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    font-size: 0;
}

#fp-nav ul li a.active,
.fp-slidesNav ul li a.active {
    height: 47px;
    background: #e8340c;
}

#fp-nav ul li a span.fp-sr-only::before,
.fp-slidesNav ul li a span.fp-sr-only::before {
    display: none;
}

/*fullpage nav*/

/*top*/
.top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.top .w1400 {
    position: relative;
}

.top .logo {
    float: left;
    line-height: 100px;
}

.top .logo .haCLogo {
    display: block;
}

.top .logo .noCLogo {
    display: none;
}

.top .nav {
    float: left;
    width: 79.8%;
    margin-left: 2%;
}

.top .nav li {
    line-height: 100px;
    float: left;
    margin-left: 2%;
}

.top .nav li>a {
    color: #fff;
    font-size: 18px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    display: block;
    position: relative;
}

.top .nav li:hover>a:before,
.top .nav li.on>a:before {
    width: 11px;
    height: 7px;
    content: '';
    background-image: url(../images/icon1.png);
    position: absolute;
    left: 50%;
    margin-left: -5.5px;
    bottom: 20px;
}

.top .nav li:nth-child(2):hover>a:before,
.top .nav li:nth-child(3):hover>a:before {
    display: none;
}

@media(min-width:1024px) {

    .top .nav li:nth-child(2):hover>a:after,
    .top .nav li:nth-child(3):hover>a:after {
        width: 17px;
        height: 6px;
        content: '';
        background-image: url(../images/icon2.png);
        position: absolute;
        left: 50%;
        margin-left: -8.5px;
        bottom: -1px;
    }
}

.top .nav li .subnav {
    position: absolute;
    top: 99%;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, .94);
    overflow: hidden;
    display: none;
}

.top .nav li .subnav dl {
    width: 25%;
    float: left;
    margin: 0;
    padding: 2.5%;
    position: relative;
}

.top .nav li .subnav.prosubnav dl {
    width: 20%;
}

.top .nav li .subnav.slosubnav dl {
    width: 33.33%;
}

.top .nav li .subnav dl:before {
    width: 1px;
    height: 300%;
    content: '';
    background: #e0dfdf;
    top: 0;
    left: 0;
    position: absolute;
}

.top .nav li .subnav dl dt img {
    display: block;
}

.top .nav li .subnav dl dt h5 a {
    font-size: 18px;
    color: #00377a;
    line-height: 72px;
    display: block;
}

.top .nav li .subnav dl dt h5 .Mhide {
    font-size: 14px;
    color: #00a0d9;
    margin-left: 5%;
}

.top .nav li .subnav dl dd {
    margin: 0;
    line-height: 1;
}

.top .nav li .subnav dl dd a {
    font-size: 16px;
    line-height: 32px;
}

.top .nav #nav7 .subnav dl {
    padding: 1.5% 2.5%;
}

.top .nav #nav7 .subnav dl:nth-child(1n+4) {
    padding-top: 0;
}

.top .nav #nav8 .subnav dl {
    padding: 1.5% 2.5%;
}

.top .nav #nav8 .subnav dl:nth-child(1n+4) {
    padding-top: 0;
}

@media(min-width:1025px) {
    .top .nav li .prosubnav dl dd {
        display: block !important;
    }
}

@media(max-width:1024px) {
    .top .nav li .prosubnav dl dd {
        display: none;
    }
}

.top .otherBox {
    float: right;
    width: 28%;
}

.top .otherBox .shares {
    float: left;
    color: rgba(255, 255, 255, .66);
    line-height: 100px;
}

.top .otherBox .searchBox {
    float: left;
    margin: 0 5px;
}

.top .otherBox .searchBox dd {
    margin: 0;
}

.top .open-search {
    position: relative;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/search.png) no-repeat center center;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    margin: 40px 10px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.top .open-search::before,
.top .open-search::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100%;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1px;
}

.top .open-search::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.top .open-search-show {
    background: none !important;
}

.top .open-search-show::before,
.top .open-search-show::after {
    background: #fff;
}

.top .top-search {
    z-index: 100;
    display: none;
    position: absolute;
    border: 1px solid #ccc;
    background: #fff;
    top: 65%;
}

.top .top-search .text {
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0 40px 0 10px;
    border: none;
}

.top .top-search .btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 40px;
    width: 40px;
    background: url(../images/search2.png) no-repeat center center;
    -webkit-background-size: auto 50%;
    -moz-background-size: auto 50%;
    -o-background-size: auto 50%;
    background-size: auto 50%;
}

.top .otherBox .onlinemes {
    float: left;
    width: 27%;
}

.top .otherBox .onlinemes a {
    display: block;
    line-height: 35px;
    background: #00a0d9;
    color: #fff;
    margin: 32px 0px;
    width: 100%;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.top .otherBox .langBox {
    float: right;
    position: relative;
    cursor: pointer;
}

.top .otherBox .langBox i {
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../images/lang.png);
    vertical-align: middle;
}

.top .otherBox .langBox span {
    line-height: 100px;
    display: inline-block;
    color: rgba(255, 255, 255, .5);
    margin: 0 2px;
}

.top .otherBox .langBox em {
    font-style: normal;
    font-family: '宋体';
    color: rgba(255, 255, 255, .7);
    line-height: 100px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.top .otherBox .langBox dl {
    position: absolute;
    /*bottom: -10px;*/
    top: 70%;
    left: 0;
    margin: 0;
    background: #fff;
    padding: 5% 10px;
    display: none;
    width: 100%;
}

.top .otherBox .langBox dl dd {
    margin: 0;
    line-height: 30px;
}

.top .otherBox .langBox.onclck em {
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.top.onslide {
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
}

.top.onslide .logo .haCLogo {
    display: none;
}

.top.onslide .logo .noCLogo {
    display: block;
}

.top.onslide .nav li>a {
    color: #333;
}

.top.onslide .nav li:hover>a:before,
.top.onslide .nav li.on>a:before {
    background-image: url(../images/icon1_1.png);
}

.top.onslide .open-search {
    background: url(../images/search2.png) no-repeat center center;
}

.top.onslide .otherBox .shares {
    color: rgba(51, 51, 51, .66);
}

.top.onslide .open-search-show::before,
.top.onslide .open-search-show::after {
    background: #333;
}

.top.onslide .otherBox .langBox i {
    background-image: url(../images/lang2.png);
}

.top.onslide .otherBox .langBox span {
    color: #333;
}

.top.onslide .otherBox .langBox em {
    color: #333;
}

@media(min-width:1025px) {

    .top.onslide .nav li,
    .top.onslide .otherBox .shares,
    .top.onslide .otherBox .langBox span,
    .top.onslide .logo {
        line-height: 80px;
    }

    .top.onslide .otherBox .langBox em {
        line-height: 77px;
    }

    .top.onslide.onslide .open-search {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .top.onslide .otherBox .onlinemes a {
        margin: 22px 0;
    }
}

/**/

.home_ban {
    position: relative;
}

.home_ban .bx-wrapper {
    position: relative;
    z-index: 11;
    padding-bottom: 0%;
}

.home_ban li {
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    text-align: center;
    position: relative;
}

.home_ban .BanbBox {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 999;
    color: #fff;
}

.home_ban .BanbBox .itemB {
    float: left;
    width: 16.66%;
    border-left: 1px solid rgba(255, 255, 255, .6);
    padding: 1.5% 3% 2% 1.5%;
    text-align: center;
}

.home_ban .BanbBox .itemB:nth-child(1) {
    border-left: none;
}

.home_ban .BanbBox .itemB h5 {
    font-family: 'Hvbo';
    font-size: 50px;
}

.home_ban .BanbBox .itemB h5 span {
    font-family: '黑体';
    font-size: 16px;
    margin-left: 2%;
}

.home_ban .BanbBox .itemB p {
    font-size: 16px;
    line-height: 20px;
}

.home_ban .BanbBox .itemB .imgBox {
    display: none;
}

.home_ban li.Banvid .video {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: block;
    top: 0;
    left: 0;
    z-index: 12;
}

.home_ban li .BantxtBox {
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 15;
    top: 30%;
}

.home_ban li .BantxtBox h5 {
    font-size: 60px;
    color: #fff;
    line-height: 72px;
    letter-spacing: 5px;
}

.home_ban li .BantxtBox p {
    font-size: 30px;
    color: #fff;
    line-height: 45px;
    letter-spacing: 2px;
}

@media screen and (min-width: 1024px) {
    .home_ban li img {
        display: none;
    }
}

@media(max-width:1024px) {
    .home_ban {
        height: auto !important;
        /*margin-bottom:3%;*/
    }

    .home_ban .fp-tableCell {
        height: auto !important;
    }

    .home_ban li {
        width: 100%;
        background-image: none !important;
    }

    .home_ban li .BantxtBox {
        padding: 0 8%;
        top: 20%;
    }

    .home_ban li .BantxtBox h5 {
        font-size: 28px;
        line-height: 40px;
    }

    .home_ban li .BantxtBox p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 2%
    }
}

/**/
.home_page2 {
    background-repeat: no-repeat;
    background-position: right;
}

.home_page2 .txtBox {
    background-image: url(../images/page2bg.jpg);
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    display: table;
    width: 100%;
}

.home_page2 .txtBox .distabcel {
    display: table-cell;
    vertical-align: middle;
    padding-left: 15%;
}

.home_page2 .txtBox .distabcel h5 {
    font-family: 'Hvbo';
    font-size: 40px;
    font-weight: normal;
    color: #033470;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5%;
}

.home_page2 .txtBox .distabcel h1 {
    font-size: 50px;
    line-height: 75px;
    color: #033470;
    font-weight: normal;
}

.home_page2 .txtBox .distabcel h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    color: #033470;
    position: relative;
    padding-bottom: 3%;
}

.home_page2 .txtBox .distabcel h4:before {
    width: 50px;
    height: 3px;
    content: '';
    background: #00a0d9;
    left: 0;
    bottom: 0;
    position: absolute;
}

.home_page2 .txtBox .distabcel .listBox {
    height: 300px;
    margin-top: 3%;
}

.home_page2 .txtBox .distabcel .listBox li {
    width: 14.7%;
    float: left;
    background: #00a0d9;
    padding: 35px 0;
    line-height: 150px;
    text-align: center;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    position: relative;
    bottom: 0;
}

.home_page2 .txtBox .distabcel .listBox li a {
    color: #fff;
    font-size: 24px;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, .2);
    padding: 0 8%;
}

.home_page2 .txtBox .distabcel .listBox li a img {
    margin-right: 5%;
}

.home_page2 .txtBox .distabcel .listBox li a p {
    display: none;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
}

@media(min-width:1024px) {
    .prodlBox .item {
        padding-top: 95px !important;
    }

    #proLiBox16 .item {
        padding-top: 160px !important;
    }

    .home_page2 .txtBox,
    .home_page4 .txtBox {
        height: 100% !important;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover {
        transform: scale(1.1);
        -ms-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -o-transform: scale(1.1);
    }

    .home_page2 .txtBox .distabcel .listBox li:hover {
        line-height: 1;
        text-align: left;
        bottom: 25px;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover p {
        display: block;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover img {
        display: block;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover span {
        display: block;
        line-height: 80px;
    }
}

.more {
    display: block;
    width: 190px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: #033470;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #033470;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.more:hover {
    color: #fff;
    background: #033470;
}

.view_now {
    display: block;
    width: 190px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: #033470;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #033470;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.view_now:hover {
    color: #fff;
    background: #033470;
}

/**/
.home_page3 {}

.home_page3 .titBox {
    text-align: center;
    color: #fff;
}

.home_page3 .titBox h1 {
    font-size: 50px;
    font-weight: normal;
}

.home_page3 .titBox h5 {
    font-size: 40px;
    font-weight: normal;
    font-family: 'Hvbo';
    text-transform: uppercase;
    padding-bottom: 2%;
    position: relative;
    margin-bottom: 2%;
}

.home_page3 .titBox h5:before {
    width: 50px;
    height: 4px;
    content: '';
    background: #00a0d9;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 0;
}

.home_page3 .titBox p {
    font-size: 16px;
    line-height: 24px;
}

.home_page3 .listBox {
    margin-top: 5%;
}

.home_page3 .listBox .leftBox {
    width: 49.89%;
    float: left;
}

.home_page3 .listBox li {
    float: left;
    width: 32.933%;
    margin-right: .6%;
    height: 420px;
    display: table;
    text-align: center;
    padding: 0 3%;
    background: rgba(255, 255, 255, .85);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

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

.home_page3 .listBox li .conBox {
    display: table-cell;
    vertical-align: middle;
}

.home_page3 .listBox li .conBox h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    color: #033470;
    margin: 5% 0;
}

.home_page3 .listBox li .conBox p {
    color: #fff;
    line-height: 23px;
    text-align: left;
    display: none;
}

.home_page3 .listBox li:hover {
    background: #00a0d9;
}

.home_page3 .listBox li:hover .conBox h5 {
    color: #fff;
}

.home_page3 .listBox li:hover .conBox p {
    display: block;
}

.home_page3 .listBox li:hover .imgBox img {
    -webkit-filter: brightness(100);
    filter: brightness(100);
}

.home_page3 .listBox .righBox {
    width: 49.89%;
    float: right;
}

.home_page3 .listBox .righBox li {
    height: 208px;
    margin-bottom: 4px;
}

.home_page3 .listBox .righBox li:nth-child(4),
.home_page3 .listBox .righBox li:nth-child(5),
.home_page3 .listBox .righBox li:nth-child(6) {
    margin-bottom: 0;
}

/**/
.home_page4 {
    background-position: left;
    background-repeat: no-repeat;
}

.home_page4 .txtBox {
    background-image: url(../images/page4bg.jpg);
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    display: table;
    width: 50%;
    float: right;
}

.home_page4 .txtBox .distabcel {
    display: table-cell;
    vertical-align: middle;
    padding-left: 5%;
}

.home_page4 .txtBox .distabcel h5 {
    font-family: 'Hvbo';
    font-size: 40px;
    font-weight: normal;
    color: #033470;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 1.5%;
}

.home_page4 .txtBox .distabcel h1 {
    font-size: 50px;
    line-height: 75px;
    color: #033470;
    font-weight: normal;
}

.home_page4 .txtBox .distabcel h4 {
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    color: #033470;
    position: relative;
    padding-bottom: 3%;
}

.home_page4 .txtBox .distabcel h4:before {
    width: 50px;
    height: 3px;
    content: '';
    background: #00a0d9;
    left: 0;
    bottom: 0;
    position: absolute;
}

.home_page4 .txtBox .distabcel .listBox {
    height: 300px;
    margin-top: 3%;
    position: relative;
    right: 30%;
}

.home_page4 .txtBox .distabcel .listBox li {
    width: 25%;
    float: left;
    background: #00a0d9;
    padding: 40px 0px 66px;
    ;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.home_page4 .txtBox .distabcel .listBox li a {
    color: #fff;
    font-size: 24px;
    display: block;
    border-left: 1px solid rgba(255, 255, 255, .2);
    padding: 0 8%;
}

.home_page4 .txtBox .distabcel .listBox li a img {
    display: block;
    margin: 0 auto;
    width:50px;
}

.home_page4 .txtBox .distabcel .listBox li a p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    padding: 5% 0;
}

/**/
.home_page5 {}

.home_page5 .titBox {
    text-align: center;
    color: #fff;
}

@media(min-width: 1280px) {
    .home_page5 .titBox {
        padding-top: 8%;
    }
}

.home_page5 .titBox h1 {
    font-size: 50px;
    font-weight: normal;
    line-height: 75px;
}

.home_page5 .titBox h5 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: normal;
    font-family: 'Hvbo';
    padding-bottom: 3%;
    position: relative;
    margin-bottom: 3%;
}

.home_page5 .titBox h5:before {
    width: 50px;
    height: 4px;
    background: #00a0d9;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 0;
}

.home_page5 .idxproBox {
    margin-bottom: 2%;
}

.home_page5 .idxproBox .hd {
    text-align: center;
    margin-bottom: 3%;
}

.home_page5 .idxproBox .hd li {
    display: inline-block;
    line-height: 50px;
    padding: 0 5%;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .2);
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    margin: 0 15px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.home_page5 .idxproBox .hd li:hover,
.home_page5 .idxproBox .hd li.on {
    background: #00a0d9;
    border: 2px solid #00a0d9;
    color: #fff;
}

.home_page5 .idxproBox .bd {}

.home_page5 .idxproBox .bd .idxproList {
    position: relative;
    display: none;
}

.home_page5 .idxproBox .bd .idxproList.active {
    display: block;
}

.home_page5 .idxproBox .bd .idxproList .owl-stage-outer {
    overflow: hidden;
    padding-top: 10px;
}

.home_page5 .idxproBox .bd .idxproList .owl-item {
    float: left;
}

.home_page5 .idxproBox .bd .idxproList li {
    background: #fff;
    text-align: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 6%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.home_page5 .idxproBox .bd .idxproList li .imgBox {
    min-height: 205px;
    overflow: hidden;
}

// .home_page5 .idxproBox .bd .idxproList li .imgBox img{-webkit-transition: all .3s;-o-transition: all .3s;-moz-transition: all .3s;transition: all .3s;}
.home_page5 .idxproBox .bd .idxproList li h5 {
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    margin: 5% 0;
}

.home_page5 .idxproBox .bd .idxproList li p {
    font-size: 16px;
    line-height: 24px;
    color: #999;
    min-height: 48px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.home_page5 .idxproBox .bd .idxproList li:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    margin-top: -10px;
}

// .home_page5 .idxproBox .bd .idxproList li:hover .imgBox img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);-o-transform:scale(1.1);transform:scale(1.1);}

.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev span,
.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next span {
    display: none;
}

.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev,
.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
    width: 15px;
    height: 18px;
    background: url(../images/qh1.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-left: -9px;
    border: none;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -5%;
}

.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
    right: -5%;
}

.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev:hover,
.home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next:hover {
    opacity: 1;
}

.view {
    display: block;
    margin: 0 auto;
    width: 190px;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .5);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.view:hover {
    border: 2px solid #fff;
    color: #fff;
}

/**/
.home_page6 {}

.home_page6 .idxnewBox {}

.home_page6 .idxnewBox .idxnTop {
    height: 590px;
    position: relative;
    padding-left: 13%;
}

.home_page6 .idxnewBox .idxnTop .leftBox {
    float: left;
    width: 25%;
}

.home_page6 .idxnewBox .idxnTop .leftBox .titBox {
    padding-top: 25%;
    color: #033470;
}

.home_page6 .idxnewBox .idxnTop .leftBox .titBox h1 {
    font-size: 50px;
    font-weight: normal;
    line-height: 75px;
}

.home_page6 .idxnewBox .idxnTop .leftBox .titBox h5 {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: normal;
    font-family: 'Hvbo';
    padding-bottom: 3%;
    position: relative;
    margin-bottom: 3%;
}

.home_page6 .idxnewBox .idxnTop .leftBox .titBox h5:before {
    width: 50px;
    height: 4px;
    background: #00a0d9;
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
}

.home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide {
    background: #00a0d9;
    position: absolute;
    left: 10.5%;
    bottom: 0;
    width: 26%;
    padding: 2.5%;
    z-index: 10;
}

/*.home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li a{display: block; max-width: 86%;}*/
.home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li time {
    line-height: 20px;
    color: #fff;
    margin-bottom: 2%;
    display: block;
}

.home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li h5 {
    font-size: 24px;
    line-height: 28px;
    font-weight: normal;
    color: #fff;
    margin-bottom: 5%;
}

.home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li p {
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 2%;
}

.home_page6 .idxnewslide .slick-dots {
    padding-top: 15px;
}

.home_page6 .idxnewslide .slick-dots li {
    float: left;
}

.home_page6 .idxnewslide .slick-dots li button {
    display: block;
    width: 11px;
    height: 7px;
    background: rgba(255, 255, 255, .3);
    margin: 0 5px;
    font-size: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border: 0;
    padding: 0;
}

.home_page6 .idxnewslide .slick-dots li.slick-active button {
    width: 30px;
    background: #fff;
}

.home_page6 .idxnewBox .idxnTop .righBox {
    float: right;
    width: 75%;
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home_page6 .idxnewBox .idxnBom {
    position: relative;
    background: #e2ebf0;
}

.home_page6 .idxnewBox .idxnBom .idxnewList {
    padding: 5% 0;
    padding-left: 13%;
    background-image: url(../images/page6bg.jpg);
    background-position: left bottom;
    -webkit-background-size: auto auto;
    -moz-background-size: auto;
    -o-background-size: auto;
    background-size: auto;
    background-repeat: no-repeat;
    width: 78%;
    float: left;
}

.home_page6 .idxnewBox .idxnBom .idxnewList li {
    float: left;
    width: 33.33%;
    padding-right: 7%;
}

.home_page6 .idxnewBox .idxnBom .idxnewList li time {
    line-height: 20px;
}

.home_page6 .idxnewBox .idxnBom .idxnewList li h5 {
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    margin-bottom: 10%;
    min-height: 40px;
    margin-top: 3%;
}

.home_page6 .idxnewBox .idxnBom .idxnewList li p {
    font-size: 16px;
    line-height: 24px;
    color: #999;
}

.home_page6 .idxnewBox .idxnBom .morenews {
    width: 22%;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    line-height: 28px;
    font-size: 20px;
    margin-top: -14px;
    color: #00377a;
}

.home_page6 .idxnewBox .idxnBom .morenews:before {
    width: 15px;
    height: 17px;
    content: '';
    background: url(../images/icon3.png) no-repeat;
    position: absolute;
    top: 50%;
    right: 35%;
    margin-top: -8.5px;
}

@media(min-width:1025px) {
    .home_page6 .righBox img {
        display: none;
    }

    .home_page6 .righBox * {
        height: 100%;
    }

    .home_page6 .righBox .slick-list li a {
        display: block;
        background-color: #f5f5f5;
        background-position: center center;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }
}

@media(max-width:1024px) {
    .home_page6 .righBox img {
        display: block;
        width: 100%;
    }

    .home_page6 .idxnewBox .idxnTop {
        height: auto;
        min-height: 300px;
    }
}


/**/
.home_page7 {
    background: #014da3;
    padding: 3%;
}

@media(min-width:1441px) {
    .home_page7 {
        padding: 5.5% 3% 5%;
    }
}

.home_page7 h1 {
    text-align: center;
    font-size: 40px;
    font-weight: normal;
    color: #fff;
}

.home_page7 .idxpneList {
    margin-top: 3%;
    position: relative;
}

/*.home_page7 .idxpneList .owl-stage-outer{overflow:hidden;}
.home_page7 .idxpneList .owl-item{float: left;}*/
.home_page7 .idxpneList li {
    margin: 0 6px;
}

.home_page7 .idxpneList li:nth-child(2) {
    margin-top: 6px;
}

.home_page7 .idxpneList li:nth-child(5n) {
    margin-right: 0;
}

.home_page7 .idxpneList li a {
    display: block;
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.home_page7 .idxpneList li a img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.home_page7 .idxpneList li:hover a img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.home_page7 .idxpneList .hd a {
    width: 15px;
    height: 18px;
    background: url(../images/qh1.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-left: -9px;
    border: none;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    font-size: 0;
}

.home_page7 .idxpneList .owl-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -5%;
}

.home_page7 .idxpneList .owl-next {
    right: -5%;
}

.home_page7 .idxpneList .owl-prev:hover,
.home_page7 .idxpneList .owl-next:hover {
    opacity: 1;
}

/*bottom*/
.bottom {}

.bottom .bottomTop {
    background: #081730;
    padding: 5% 0 0% 0;
}

.bottom .bottomTop .leftBox {
    float: left;
    width: 30%;
}

.bottom .bottomTop .leftBox h5 {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 10%;
}

.bottom .bottomTop .leftBox h1 {
    font-size: 28px;
    color: #00a0d9;
    line-height: 36px;
    font-weight: normal;
    margin-bottom: 10%;
}

.bottom .bottomTop .leftBox p {
    line-height: 26px;
    color: rgba(255, 255, 255, .6);
    padding-left: 25px;
    position: relative;
}

.bottom .bottomTop .leftBox p.cos:before {
    background: url(../images/icon4.png);
    width: 17px;
    height: 17px;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -8.5px;
    left: 0;
}

.bottom .bottomTop .leftBox p.mel:before {
    background: url(../images/icon5.png);
    width: 17px;
    height: 13px;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -6.5px;
    left: 0;
}

.bottom .bottomTop .leftBox p.add:before {
    background: url(../images/icon6.png);
    width: 14px;
    height: 18px;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: 0;
}

.bottom .bottomTop .leftBox .onlBtn {
    display: block;
    width: 100%;
    line-height: 45px;
    text-align: center;
    background: #00a0d9;
    color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin-top: 3%;
}

.bottom .bottomTop .righBox {
    float: right;
    width: 65%;
}

.bottom .bottomTop .righBox .bomnav {
    float: left;
    width: 84%;
}

.bottom .bottomTop .righBox .bomnav dl {
    float: left;
    margin: 0;
    width: 25%;
}

.bottom .bottomTop .righBox .bomnav dl:first-child {
    width: 35%;
}

.bottom .bottomTop .righBox .bomnav dt {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 10%;
}

.bottom .bottomTop .righBox .bomnav dd {
    margin: 0;
    line-height: 28px;
}

.bottom .bottomTop .righBox .bomnav dd a {
    color: rgba(255, 255, 255, .4);
}

.bottom .bottomTop .righBox .bomnav dd a:hover {
    color: #fff;
}

.bottom .bottomTop .righBox .bomewm {
    float: right;
    width: 14%;
}

.bottom .bottomTop .righBox .bomewm h5 {
    font-size: 18px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 15%;
}

.bottom .bottomTop .righBox .bomewm p {
    color: rgba(255, 255, 255, .4);
    line-height: 28px;
    text-align: center;
    margin-top: 10%;
}

.bottom .bottomTop .bomfrilink {
    margin-top: 1%;
    line-height: 50px;
    border-top: 1px solid rgba(255, 255, 255, .4);
    border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.bottom .bottomTop .bomfrilink p {
    color: rgba(255, 255, 255, .4);
}

.bottom .bottomTop .bomfrilink p a {
    display: inline-block;
    padding: 0 12px;
    border-right: 1px solid rgba(255, 255, 255, .4);
    line-height: 1;
    color: rgba(255, 255, 255, .4);
}

.bottom .bottomTop .bomfrilink p a:hover {
    color: #fff;
}

.bottom .bottomTop .bomfrilink p a:last-child {
    border-right: none;
}

.bottom .bottomBom {
    line-height: 50px;
    background: #081730;
}

.bottom .bottomBom .copy {
    float: left;
    color: #888888;
}

.bottom .bottomBom ul {
    float: right;
}

.bottom .bottomBom ul li {
    display: inline-block;
}

.bottom .bottomBom ul li a {
    padding: 0 12px;
    border-right: 1px solid #888;
    color: #888;
}

.bottom .bottomBom ul li a:hover {
    color: #014da3;
}

.bottom .bottomBom ul li:last-child a {
    border-right: none;
}

/*bottom*/

/*fixBox */
.fixBox {
    position: fixed;
    z-index: 20000;
    right: 1.5%;
    bottom: 32%;
}

.fixBox ul li {
    position: relative;
    margin-bottom: 1px;
}

.fixBox ul li figure {
    position: absolute;
    top: 0;
    right: 70px;
    background: #fff;
    color: #333;
    display: none;
}

.fixBox .li_wx figure {
    width: 121px;
}

.fixBox .li_wx:hover:before {
    width: 10px;
    height: 6px;
    content: '';
    background: url(../images/icon2.png) no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    left: -18px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fixBox .li_wx figure img {
    display: block;
    width: 100%;
}

.fixBox .li_tel figure {
    padding: 0 20px;
    font-size: 18px;
    line-height: 50px;
    white-space: nowrap;
}

.fixBox .li_tel:hover:before {
    width: 10px;
    height: 6px;
    content: '';
    background: url(../images/icon2.png) no-repeat;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    left: -18px;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fixBox .li_tel figure a {
    color: #333;
}

.fixBox .icon {
    display: block;
    width: 68px;
    height: 68px;
    background: url(../images/fixbg_new.png) no-repeat left top #00a0d9;
    border-bottom: 1px solid #00a0d9;
}

.fixBox .li_tel .icon {
    background-position: 0 -73px;
}

.fixBox .li_mes .icon {
    background-position: 0 -142px;
}

.fixBox .li_talk .icon {
    background-position: 0 -290px;
}

.fixBox .icon.gettop {
    background-position: 0 75%;
}

.fixBox .icon.open {
    background-image: none;
    position: relative;
    margin-bottom: 1px;
}

.fixBox .open span {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: url(../images/qh1.png) no-repeat;
    width: 15px;
    height: 18px;
}

@media(min-width:1025px) {
    .fixBox ul {
        display: block !important;
    }

    .fixBox .icon.open {
        display: none;
    }

    .fixBox .li_tel figure::before {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background-color: transparent;
    }
}

@media(max-width:1024px) {
    .fixBox {
        bottom: 5%;
        display: none;
    }

    .fixBox ul {
        display: none;
    }

    .fixBox #open_2539 {
        background-color: #00a0d9;
    }
}

/*innerBan*/
.innerBan {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
}

@media(min-width:1024px) {
    .innerBan a img {
        display: none;
    }
}

@media(max-width:1023px) {
    .innerBan {
        background-image: none !important;
        height: auto;
        text-align: center;
    }
}

/*menu&locat*/
.menuLocat {
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .3);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .3);
    box-shadow: 0 0 20px rgba(51, 51, 51, .3);
    width: 100%;
    z-index: 999;
}

.menuLocat .menu {
    float: left;
    width: 84.5%;
}

.menuLocat .menu li {
    line-height: 75px;
    display: inline-block;
    margin-right: 2%;
    border-bottom: 1px solid transparent;
}

.menuLocat .menu li a {
    font-size: 18px;
}

.menuLocat .menu li:hover,
.menuLocat .menu li.on {
    border-bottom: 1px solid #00a0d9;
}

.menuLocat .location {
    float: right;
    width: 15.5%;
    text-align: right;
    line-height: 78px;
}

.menuLocat .location2 {
    float: left;
    width: 15.5%;
    text-align: left;
    line-height: 78px;
}

.menuLocat .location a {
    display: inline-block;
    position: relative;
    padding-right: 15px;
    padding-left: 8px;
    color: #999;
}

.menuLocat .location a:after {
    content: '>';
    font-size: 14px;
    color: #999;
    position: absolute;
    right: 0;
    top: 0;
}

.menuLocat .location a:first-child {
    padding-left: 20px;
}

.menuLocat .location a:first-child:before {
    width: 14px;
    height: 14px;
    content: '';
    background: url(../images/home.png) no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -7px;
}

.menuLocat .location span {
    padding-left: 8px;
    color: #999;
}

.menuLocat .location span a {
    padding-right: 0;
}

.menuLocat .location span a:first-child {
    padding-left: 0;
}

.menuLocat .location span a:first-child:before {
    display: none;
}

.menuLocat .location span a:after {
    display: none;
}

.spanLocation {
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.menuLocat .location a:hover {
    color: #00a0d9;
}



@media(min-width:1024px) {
    .menuLocat.menuLocatonbg {
        background-color: #19458C;
        color: #fff;
    }

    .menuLocat.menuLocatonbg .menu li a {
        color: #fff
    }

}


/*产品列表*/
.prodlBox {
    background: #f8f8f8;
    padding-bottom: 2%;
}

.prodlBox .item {
    padding-top: 2%;
}

.prodlBox .item h1 {
    line-height: 70px;
    font-size: 24px;
    font-weight: normal;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
}

.prodlBox .item h1 span {
    border-bottom: 2px solid #00a0d9;
    display: inline-block;
}

.prodlBox .item .itemList {}

.prodlBox .item .itemList h3 {
    font-size: 20px;
    font-weight: normal;
    line-height: 85px;
}

.prodlBox .item .itemList li {
    background: #fff;
    text-align: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 2%;
    float: left;
    width: 23.875%;
    margin-right: 1.5%;
    margin-bottom: 3%;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -ms-transition: 0.3s;
}

.prodlBox .item .itemList li:hover {
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
}

.prodlBox .item .itemList li:nth-child(4n) {
    margin-right: 0;
}

.prodlBox .item .itemList li .imgBox {
    height: 278px;
    overflow: hidden;
    line-height: 278px;
}

.prodlBox .item .itemList li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.prodlBox .item .itemList li h5 {
    font-size: 20px;
    line-height: 1;
    font-weight: normal;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-top: 8px;
    white-space: nowrap;
}

.prodlBox .item .itemList li p {
    font-size: 16px;
    line-height: 24px;
    color: #999;
}

.prodlBox .item .itemList li:hover .imgBox img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.moreproD {
    padding: 3% 0;
}

.moreproD h1 {
    line-height: 70px;
    font-size: 24px;
    font-weight: normal;
    border-bottom: 1px solid #dfdfdf;
    position: relative;
    margin-bottom: 3%;
}

.moreproD h1 span {
    border-bottom: 2px solid #00a0d9;
    display: inline-block;
}

.moreproD li {
    float: left;
    width: 31.5%;
    margin-right: 2.75%;
    height: 120px;
    position: relative;
    display: table;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
}

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

.moreproD li .BGimg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.moreproD li a {
    display: table-cell;
    vertical-align: middle;
}

.moreproD li a .conBox {
    position: relative;
    text-align: center;
}

.moreproD li a .conBox span {
    font-size: 18px;
    font-weight: bold;
    color: #00377a;
    margin-left: 3%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.moreproD li:hover .BGimg {
    opacity: 1;
}

.moreproD li:hover a .conBox span {
    color: #fff;
}

.moreproD li:hover a .conBox img {
    -webkit-filter: brightness(100);
    filter: brightness(100);
}

/**/
.proinfoTop {
    background: url(../images/proinfobg.jpg) no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 4% 0;
}

.proinfoTop .proTabs {
    position: relative;
    z-index: 1;
}





/*.proinfoTop .proTabs .bd{margin-bottom:1.5%;padding-left:3%;}
.proinfoTop .proTabs .bd .item{}
.proinfoTop .proTabs .hd{}
.proinfoTop .proTabs .hd li{float: left;margin-right:10px;cursor: pointer;box-shadow:0 0 20px rgba(51,51,51,.2);width: 10%;overflow: hidden;}
.proinfoTop .proTabs .hd li img{-webkit-transition: all .3s;-o-transition: all .3s;transition: all .3s;}
.proinfoTop .proTabs .hd li:hover img,
.proinfoTop .proTabs .hd li.on img{transform:scale(1.1);}*/
.proinfoTop .proTabs .left .Ispic {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

/*.proinfoTop .proTabs .left .big li .Ispic{ padding-bottom: 68.393%;}*/
/*.proinfoTop .proTabs .left .big li .Ispic img{display: none;}*/
.proinfoTop .proTabs .left .small li .Ispic {
    background-color: #fff;
    border: 1px solid transparent;
    padding-bottom: 42.858%;
    margin-right: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.proinfoTop .proTabs .left .small {
    max-width: 700px;
    margin: -10px auto 0;
    position: relative;
}

.proinfoTop .proTabs .left .small .slick-list {
    margin: 0 25px;
}

.proinfoTop .proTabs .left .small .slick-arrow {
    width: 15px;
    height: 18px;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    border: none;
    font-size: 0;
}

.proinfoTop .proTabs .left .small .slick-arrow.slick-prev {
    background: url(../images/btn01on.png) no-repeat;
    left: 0;
}

.proinfoTop .proTabs .left .small .slick-arrow.slick-next {
    background: url(../images/btn02on.png) no-repeat;
    right: 0;
}

.proinfoTop .proTabs .left .small li {
    padding-top: 10px;
}

.proinfoTop .proTabs .left .small li.slick-current .Ispic {
    border: 1px solid rgba(14, 193, 226, 0.8);
    /* transform: translateY(-10px);-webkit-transform: translateY(-10px);-ms-transform: translateY(-10px);  */
    /* box-shadow: 0 0 5px rgba(14,193,226,0.8) */
}

@media(min-width:1025px) {
    .proinfoTop {
        margin-top: 80px;
    }

    .proinfoTop .proTabs:before {
        background: rgba(255, 255, 255, .8);
        width: 33.785%;
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        content: '';
    }

    .proinfoTop .proTabs>* {
        position: relative;
        z-index: 10;
    }

    .proinfoTop .proTabs .left {
        float: left;
        width: 66.215%;
    }

    .proinfoTop .proTabs .prodesBox {
        float: right;
        width: 33.785%;
    }

    .prodlBox .item .itemList li h5 {
        margin-top: 20px;
    }
}

@media(min-width:1400px) {
    .prodlBox .item .itemList li h5 {
        margin-top: 25px;
    }
}



@media(max-width:1024px) {
    .proinfoTop .proTabs .left .small {
        margin-left: auto;
        margin-right: auto;
    }

    .proinfoTop .proTabs .prodesBox {
        background: rgba(255, 255, 255, .8);
    }

    .proinBan {
        display: none;
    }

    .proinBanWap {
        height: 55px;
    }

}

.proinfoTop .proTabs .prodesBox {
    padding: 4% 3%;
}

.proinfoTop .proTabs .prodesBox h1 {
    font-size: 40px;
    font-weight: normal;
    line-height: 47px;
}

.proinfoTop .proTabs .prodesBox h1:nth-child(2) {
    font-size: 22px;
    color: #999;
}

.proinfoTop .proTabs .prodesBox h5 {
    font-size: 20px;
    font-weight: normal;
    margin: 3% 0;
}

.proinfoTop .proTabs .prodesBox .prolab {
    padding-bottom: 12%;
    border-bottom: 1px solid #929292;
}

.proinfoTop .proTabs .prodesBox .prolab span {
    padding: 0 2%;
    border: 1px solid #929292;
    color: #929292;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
}

.proinfoTop .proTabs .prodesBox .prodes {
    margin-top: 12%;
    padding-bottom: 12%;
}

.proinfoTop .proTabs .prodesBox .prodes p {
    font-size: 16px;
    line-height: 30px;
    color: #999;
}

.proinfoBom .ItemNavBOX .NavItemBox {
    display: none;
}

.proinfoBom .ItemNavBOX .NavItemBox02 {
    background-color: #f8f8f8;
    padding: 20px;
}

.proinfoBom .ItemNavBOX .NavItemBox02 table {
    margin: 0 auto;
}

.proinfoBom .ItemNavBOX .NavItemBox02 table td {
    border: 1px solid #e5e5e5;
    padding-left: 5px;
}



.proinfoBom .itemul .itemli {
    position: relative;
    color: #202020;
}

.proinfoBom .itemli .pc {
    display: none;
}

.proinfoBom .itemli .pc img,
.proinfoBom .itemli .wap img {
    width: 100%;
}

.proinfoBom .itemli .txtBox {
    display: none;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    padding-top: 30px;
    height: 100%;
    font-size: 16px;
}

.proinfoBom .itemli.libottom .txtBox,
.proinfoBom .itemli.litop .txtBox {
    display: block;
}

.proinfoBom .itemli .txtBox .h3 {
    font-size: 20px;
}

.proinfoBom .itemli .txtBox .txt {
    padding-top: 10px;
}

.proinfoBom .itemli .txtBox .txt p {
    margin-top: 5px;
}

.proinfoBom .itemul .itemli.provideoBox {
    cursor: pointer;
}

.proinfoBom .itemul .itemli.provideoBox .txtBox {
    width: 200px;
    text-align: center;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -100px;
    margin-top: -50px;
    display: block !important;
    padding-top: 0 !important;
}

.proinfoBom .itemul .itemli.provideoBox .txtBox .h5 {
    font-weight: 600;
    font-size: 24px;
    margin-top: 24px;
    color: #fff;
}

.proinmenu .location span {
    color: #f6550d;
}

.proinmenu .menu #menu2 {
    display: none;
}

.proinfoBom .itemli.litop .txtWap {
    text-align: center;
    padding-top: 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.proinfoBom .itemli.libottom .txtWap {
    text-align: center;
    padding-top: 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.proinfoBom .libottom .txtBox {
    top: auto;
    bottom: 0;
    height: auto;
}

.proinfoBom .libottom .txtBox .txtWap {
    height: 100%;
    top: 0;
    width: 100%;
    padding-bottom: 3%;
    position: static;
}

.proinfoBom .libottom .txtBox .tb {
    display: table;
    height: 100%;
    width: 100%;
}

.proinfoBom .libottom .txtBox .tbc {
    display: table-cell;
    height: 100%;
    vertical-align: bottom;
}

@media screen and (min-width:768px) {
    .proinfoBom .itemli .txtBox {
        display: block;
    }

    .proinfoBom .itemli .pc {
        display: block;
    }

    .proinfoBom .itemli .wap {
        display: none;
    }

    .proinfoBom .itemli .txtWap {
        max-width: 40%;
    }

    .proinfoBom .liright .txtWap {
        padding-top: 0;
        position: absolute;
        height: 100%;
        left: 60%;
        top: 0;
    }

    .proinfoBom .liright .tb {
        display: table;
        height: 100%;
        width: 100%;
    }

    .proinfoBom .liright .tbc {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
    }

    .proinfoBom .lileft .txtWap {
        padding-top: 0;
        position: absolute;
        height: 100%;
        left: auto;
        top: 0;
    }

    .proinfoBom .lileft .tb {
        display: table;
        height: 100%;
        width: 100%;
    }

    .proinfoBom .lileft .tbc {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
    }
}

@media screen and (min-width:1024px) {
    .proinmenu .location {
        width: 50% !important;
    }

    .proinmenu .menu {
        width: 40% !important;
    }

    .proinfoBom .itemli .txtBox .h3 {
        font-size: 62px;
    }

    .proinfoBom .itemli .txtBox {
        font-size: 24px;
    }

    .proinfoBom .itemli .txtWap {
        max-width: 515px;
    }
}

.proinfoBom .mobimgBox {
    display: none;
}

@media(max-width:768px) {
    .menuLocat .loca a {
        display: none;
    }

    .moblongImg .mobimgBox {
        display: block;
    }

    .moblongImg .itemul {
        display: block;
    }

    .proinfoBom .itemli .txtWap {
        display: block;
        padding-top: 0 !important;
    }

    .proinfoBom .itemli .txtWap.phonTxt {
        display: none;
    }
}

/*案例中心*/
.casePage {
    background: #f8f8f8;
    padding: 4% 0;
}

.casePage .caseList {}

.casePage .caseList li {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 3%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    position: relative;
    top: 0px;
}

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

.casePage .caseList li .imgBox {
    overflow: hidden;
}

.casePage .caseList li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.casePage .caseList li .txtBox {
    padding: 6% 5%;
}

.casePage .caseList li .txtBox h5 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 3%;
}

.casePage .caseList li .txtBox p {
    font-size: 16px;
    line-height: 24px;
    color: #999;
}

.casePage .caseList li .txtBox .cmore {
    display: block;
    width: 145px;
    line-height: 40px;
    border: 1px solid #777;
    color: #777;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-top: 8%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.casePage .caseList li:hover {
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    top: -10px;
}

.casePage .caseList li:hover .imgBox img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.casePage .caseList li:hover .txtBox .cmore {
    border: 1px solid #00a0d9;
    background: #00a0d9;
    color: #fff;
}

.PageBox {
    padding: 20px 0;
}

.PageBox .Pages {
    text-align: center;
}

.PageBox .Pages a {
    padding: 8px 10px;
    color: #333;
    font-size: 14px;
    margin: 0 3px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    -webkit-box-shadow: 0 0 5px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 5px rgba(51, 51, 51, .1);
    box-shadow: 0 0 5px rgba(51, 51, 51, .1);
}

.PageBox .Pages a:hover,
.PageBox .Pages a.page-num-current {
    background: #00a0d9 !important;
    color: #fff;
}

.PageBox .Pages .num {
    font-style: normal;
}

.PageBox .Pages .num a {
    display: none;
}

@media screen and (min-width:768px) {
    .PageBox .Pages a {
        padding: 10px 15px;
    }

    .PageBox .Pages .num a {
        display: inline-block;
        padding: 8px 15px;
    }
}

/*案例详情*/
.caseinfo {
    padding-top: 100px;
}

.caseinfo .menuLocat {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.caseinfo .menuLocat .location {
    line-height: 90px;
}

.caseinfo .caseCon {}

.caseinfo .caseCon .caseImg {
    position: relative;
}

.caseinfo .caseCon .caseImg .bx-wrapper .bx-prev,
.caseinfo .caseCon .caseImg .bx-wrapper .bx-next {
    width: 15px;
    height: 18px;
    background: url(../images/qh1.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-left: -9px;
    border: none;
    cursor: pointer;
    opacity: .5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    font-size: 0;
}

.caseinfo .caseCon .caseImg .bx-wrapper .bx-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 5%;
}

.caseinfo .caseCon .caseImg .bx-wrapper .bx-next {
    right: 5%;
}

.caseinfo .caseCon .caseImg .bx-wrapper .bx-prev:hover,
.caseinfo .caseCon .caseImg .bx-wrapper .bx-next:hover {
    opacity: 1;
}

.caseinfo .caseCon .caseDes {
    padding: 3% 0;
}

.caseinfo .caseCon .caseDes h1 {
    font-size: 40px;
    font-weight: normal;
}

.caseinfo .caseCon .caseDes .item {
    padding-top: 2%;
    font-size: 18px;
    line-height: 30px;
    color: #555;
    margin-bottom: 1.5%;
}

.caseinfo .caseCon .caseDes .item h5 {
    width: 160px;
    line-height: 50px;
    font-weight: normal;
    font-size: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    background: #00a0d9;
    margin-bottom: 2%;
}

.caseinfo .caseCon .caseDes .item h5:before {
    width: 15px;
    height: 2px;
    content: '';
    background: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
}

.caseinfo .caseCon .caseDes .item p {
    font-size: 18px;
    line-height: 30px;
    color: #555;
    margin-bottom: 1.5%;
}

.caseinfo .caseCon .caseDes .item .imgBox {
    background: #f6f6f6;
    padding: 4%;
}

.caseinfo .caseCon .caseDes .item .imgBox li {
    float: left;
    text-align: center;
    margin-right: 3%;
}

.caseinfo .caseCon .caseDes .item .imgBox li p {
    font-size: 18px;
    line-height: 47px;
}

/*新闻中心*/
.newsBox {
    background: #f8f8f8;
    padding: 4% 0;
}

.newsBox .newsTop {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    position: relative;
    margin-bottom: 3%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

.newsBox .newsTop:hover {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}

.newsBox .newsTop .bx-wrapper {
    padding-bottom: 0;
}

.newsBox .newsTop li {
    background: #fff;
}

.newsBox .newsTop li .imgBox {
    float: left;
    width: 50%;
    overflow: hidden;
}

.newsBox .newsTop li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.newsBox .newsTop li .txtBox {
    float: right;
    width: 47%;
    padding: 3% 6% 0 0;
}

.newsBox .newsTop li .txtBox time {
    color: #777;
    line-height: 30px;
}

.newsBox .newsTop li .txtBox time span {
    font-size: 36px;
    color: #00a0d9;
}

.newsBox .newsTop li .txtBox h1 {
    font-size: 28px;
    font-weight: normal;
    line-height: 37px;
    margin: 1% 0 8% 0;
}

.newsBox .newsTop li .txtBox p {
    font-size: 16px;
    line-height: 30px;
    color: #777;
    position: relative;
    padding-left: 5%;
}

.newsBox .newsTop li .txtBox p:before,
.newsBox .newsTop li .txtBox p:after {
    width: 22px;
    height: 16px;
    content: '';
    background: url(../images/icon7.png) no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.newsBox .newsTop li .txtBox p:after {
    top: auto;
    left: auto;
    bottom: 0;
    right: -25px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.newsBox .newsTop .bx-pager {
    bottom: 5%;
    left: 53%;
    position: absolute;
}

.newsBox .newsTop .bx-pager .bx-pager-item {
    display: inline-block;
}

.newsBox .newsTop .bx-pager .bx-pager-item a {
    display: block;
    width: 11px;
    height: 7px;
    background: rgba(150, 150, 150, .3);
    margin: 0 5px;
    font-size: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.newsBox .newsTop .bx-pager .bx-pager-item a.active {
    width: 30px;
    background: #00a0d9;
}

/*.newsBox .newsTop li:hover .imgBox img{transform:scale(1.1);}*/
.newsBox .newsList {}

.newsBox .newsList li {
    float: left;
    width: 23.858%;
    margin-right: 1.52266%;
    margin-bottom: 3%;
    background: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    padding: 0.5%;
    position: relative;
    top: 0;
}

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

.newsBox .newsList li .imgBox {
    text-align: center;
    /*overflow: hidden;*/
}

.newsBox .newsList li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.newsBox .newsList li .txtBox {
    padding: 8% 7%;
}

.newsBox .newsList li .txtBox time {
    line-height: 20px;
}

.newsBox .newsList li .txtBox h5 {
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    margin: 2% 0 8% 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.newsBox .newsList li .txtBox p {
    font-size: 16px;
    line-height: 24px;
    color: #777;
    margin-bottom: 5%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.newsBox .newsList li:hover {
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    box-shadow: 0 0 20px rgba(51, 51, 51, .5);
    top: -10px;
}

.newsBox .newsList li:hover .imgBox img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

@media(min-width: 1280px) {
    .newsBox .newsList li {
        min-height: 445px;
    }
}

@media(max-width:768px) {

    .newsBox .newsTop li .txtBox p:before,
    .newsBox .newsTop li .txtBox p:after {
        width: 14px;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        height: 8px;
    }

    .newsBox .newsTop li .txtBox p:after {
        right: 0;
    }
}

/**/
.newsinfo {
    padding-top: 100px;
}

.newsinfo .menuLocat {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.newsinfo .menuLocat .location {
    line-height: 90px;
}

.newsinfo .newsCon {}

.newsinfo .newsCon .newsDes {
    float: left;
    width: 71.5%;
    padding-bottom: 5%;
}

.newsinfo .newsCon .newsDes .newsItop {
    padding-bottom: 2%;
    border-bottom: 1px solid #e5e5e5;
}

.newsinfo .newsCon .newsDes .newsItop h5 {
    font-size: 34px;
}

.newsinfo .newsCon .newsDes .newsItop p {
    line-height: 30px;
}

.newsinfo .newsCon .newsDes .newsItop p span {
    margin-right: 20px;
}

.newsinfo .newsCon .newsDes .newsIbom {
    margin-top: 4%;
    padding-bottom: 3%;
    border-bottom: 1px solid #e5e5e5;
}

.newsinfo .newsCon .newsDes .newsIbom p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 3%;
}

.newsinfo .newsCon .newsDes .newsIbom h5 {
    font-size: 22px;
    color: #00a0d9;
    font-weight: normal;
    line-height: 30px;
    margin-bottom: 3%;
}

.newsinfo .newsCon .newsDes .newsIbom .imgBox {
    text-align: center;
    margin-bottom: 3%;
}

.caseinfo .info_pn {
    border-top: 1px solid #e5e5e5;
}

.info_pn {
    padding-top: 2%;
}

.info_pn span a {
    font-size: 16px;
    line-height: 30px;
    display: block;
    color: #999;
}

.info_pn span a:hover {
    color: #00a0d9;
}

.info_pn span:nth-child(1) {
    float: left;
}

.info_pn span:nth-child(2) {
    float: right;
}

.caseinfo .info_back {
    padding-bottom: 5%;
}

.info_back {
    margin-top: 3%;
}

.info_back a {
    display: block;
    width: 135px;
    text-align: center;
    line-height: 40px;
    background: #00a0d9;
    color: #fff;
    margin: 0 auto;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.newsinfo .newsCon .popularNew {
    float: right;
    width: 22%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    padding: 2%;
}

.newsinfo .newsCon .popularNew h1 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 8%;
}

.newsinfo .newsCon .popularNew li {
    padding-bottom: 10%;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10%;
}

.newsinfo .newsCon .popularNew li:last-child {
    border-bottom: none;
}

.newsinfo .newsCon .popularNew li .imgBox {
    overflow: hidden;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-bottom: 5%;
}

.newsinfo .newsCon .popularNew li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.newsinfo .newsCon .popularNew li h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
}

.newsinfo .newsCon .popularNew li:hover .imgBox img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*集团简介*/
.groupIntro {
    padding: 3.5% 0 2% 0;
    background: url(../images/infobg.png) no-repeat center center;
}

.groupIntro h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.5%;
}

.groupIntro p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 1.5%;
}

.groupIntro .introBox {
    color: #fff;
    margin: 3% 0 5% 0;
}

.groupIntro .introBox .itemB {
    float: left;
    width: 15.5%;
    padding: 2% 0 3% 1.5%;
    margin-right: 1.4%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.groupIntro .introBox .itemB:nth-child(1) {
    background: #00a0d9;
}

.groupIntro .introBox .itemB:nth-child(2) {
    background: #008cd9;
}

.groupIntro .introBox .itemB:nth-child(3) {
    background: #0078d9;
}

.groupIntro .introBox .itemB:nth-child(4) {
    background: #006ed9;
}

.groupIntro .introBox .itemB:nth-child(5) {
    background: #005ad9;
}

.groupIntro .introBox .itemB:nth-child(6n) {
    margin-right: 0;
    background: #0046d9;
}

.groupIntro .introBox .itemB h5 {
    font-family: 'Hvbo';
    font-size: 50px;
}

.groupIntro .introBox .itemB h5 span {
    font-family: '黑体';
    font-size: 16px;
    margin-left: 2%;
}

.groupIntro .introBox .itemB p {
    font-size: 16px;
    line-height: 20px;
}

.historyBox {
    background: url(../images/hisbg.jpg) no-repeat center center;
    padding: 4% 0 6.5% 0;
}

.historyBox h1 {
    font-size: 34px;
    color: #fff;
    font-weight: normal;
    text-align: center;
}

.historyBox .hiscon {}

.historyBox .hiscon .hisYear {
    display: inline-block;
    width: 38%;
    vertical-align: middle;
    position: relative;
    margin-right: 8%;
}

.historyBox .hiscon .hisYear .slick-prev {
    position: absolute;
    right: 5%;
    top: 37%;
    width: 25px;
    height: 10px;
    background: url(../images/tt.jpg) no-repeat;
    font-size: 0;
    z-index: 9;
    border: none;
    cursor: pointer;
}

.historyBox .hiscon .hisYear .slick-next {
    position: absolute;
    right: 5%;
    bottom: 37%;
    width: 25px;
    height: 10px;
    background: url(../images/tb.jpg) no-repeat;
    font-size: 0;
    z-index: 9;
    border: none;
    cursor: pointer;
}

.historyBox .hiscon .hisYear .item {
    line-height: 73px;
    font-size: 34px;
    color: #5883b7;
    padding-left: 62%;
}

.historyBox .hiscon .hisYear .item.slick-current {
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 38px;
    color: #fff;
    position: relative;
}

.historyBox .hiscon .hisYear .item.slick-current:before {
    width: 30px;
    height: 1px;
    content: '';
    background: rgba(255, 255, 255, .1);
    position: absolute;
    top: 50%;
    right: 5%;
    margin-right: -4px;
}

.historyBox .hiscon .hisInfo {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}

.historyBox .hiscon .hisInfo .item.slick-active {
    left: 0px !important;
    top: 0px !important;
    position: absolute !important;
}

.historyBox .hiscon .hisInfo .item h5 {
    font-size: 48px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 2%;
}

.historyBox .hiscon .hisInfo .item p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
}

.honerBox {
    padding: 4% 0;
    background: #f8f8f8;
}

.honerBox h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 1.5%;
}

.honerBox .hd {
    text-align: center;
    margin-bottom: 2%;
}

.honerBox .hd li {
    display: inline-block;
    vertical-align: middle;
    line-height: 45px;
    cursor: pointer;
    padding: 0 5%;
    color: #aaaaaa;
    margin: 0 5px;
    background: #eaeaea;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.honerBox .hd li.on,
.honerBox .hd li:hover {
    background: #00a0d9;
    color: #fff;
}

.honerBox .honerList {
    position: relative;
}

.honerBox .honerList .owl-stage-outer {
    overflow: hidden;
    padding: 1% 0;
}

.honerBox .honerList .owl-item {
    float: left;
}

.honerBox .honerList .owl-carousel .owl-prev span,
.honerBox .honerList .owl-carousel .owl-next span {
    display: none;
}

.honerBox .honerList .owl-carousel .owl-prev,
.honerBox .honerList .owl-carousel .owl-next {
    width: 15px;
    height: 18px;
    background: url(../images/qh2.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-left: -9px;
    border: none;
    cursor: pointer;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-filter: gray;
    filter: gray;
}

.honerBox .honerList .owl-carousel .owl-prev {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    left: -5%;
}

.honerBox .honerList .owl-carousel .owl-next {
    right: -5%;
}

.honerBox .honerList .owl-carousel .owl-prev:hover,
.honerBox .honerList .owl-carousel .owl-next:hover {
    -webkit-filter: inherit;
    -moz-filter: inherit;
    -ms-filter: inherit;
    -o-filter: inherit;
    filter: inherit;
    filter: inherit;
}

.honerBox .honerList li {
    text-align: center;
    background: #fff;
    padding: 12%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.honerBox .honerList li .imgBox {
    min-height: 195px;
    line-height: 195px;
    margin-bottom: 12%;
}

.honerBox .honerList li p {
    font-size: 16px;
    line-height: 28px;
}

.honerBox .honerList li:hover {
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
}

.cultureBox {
    padding: 4% 0 6% 0;
}

.cultureBox h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.cultureBox .culList {
    height: 540px;
    position: relative;
    width: 100%;
}

.cultureBox .culList li {
    position: absolute;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.cultureBox .culList li figure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
}

.cultureBox .culList li .txtBox {
    padding-bottom: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 20px;
    line-height: 28px;
}

.cultureBox .culList li .txtBox:before {
    width: 30px;
    height: 5px;
    content: '';
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -15px;
    bottom: 0;
}

.cultureBox .culList li:nth-child(1) {
    width: 49.28571429%;
    top: 0;
    left: 0;
    height: 100%;
}

.cultureBox .culList li:nth-child(2) {
    width: 49.28571429%;
    top: 0;
    right: 0;
    height: 48.14814815%;
}

.cultureBox .culList li:nth-child(3) {
    width: 23.92857143%;
    bottom: 0;
    right: 25.35714286%;
    height: 48.14814815%;
}

.cultureBox .culList li:nth-child(4) {
    width: 23.92857143%;
    bottom: 0;
    right: 0;
    height: 48.14814815%;
}

@media screen and (max-width: 768px) {
    .cultureBox .culList {
        height: 600px;
    }

    .cultureBox .culList li:nth-child(1) {
        width: 100%;
        top: 0;
        left: 0;
        height: 28%;
    }

    .cultureBox .culList li:nth-child(2) {
        width: 100%;
        top: 29%;
        right: 0;
        height: 24%;
    }

    .cultureBox .culList li:nth-child(3) {
        width: 49.28571429%;
        bottom: 0;
        left: 0;
        height: 48.14814815%;
    }

    .cultureBox .culList li:nth-child(4) {
        width: 49.28571429%;
        bottom: 0;
        right: 0;
        height: 48.14814815%;
    }
}

/*集团成员*/
.Gmembers {
    padding: 3.5% 0 5% 0;
    background: #f8f8f8;
}

.Gmembers h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.Gmembers .membList {}

.Gmembers .membList .item {
    background: #fff;
    padding: 4% 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    margin-bottom: 3%;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.Gmembers .membList .item .txtBox {
    display: inline-block;
    width: 82%;
    vertical-align: middle;
    padding: 0 6% 0 4%;
    border-right: 1px solid #e7e7e7;
}

.Gmembers .membList .item .txtBox h5 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: .5%;
}

.Gmembers .membList .item .txtBox span {
    font-size: 16px;
    display: block;
    color: #999999;
    padding-bottom: 3%;
    margin-bottom: 3%;
    position: relative;
}

.Gmembers .membList .item .txtBox span:before {
    width: 40px;
    height: 5px;
    content: '';
    background: #19a1d8;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}

.Gmembers .membList .item .txtBox p {
    font-size: 16px;
    color: #777;
    line-height: 24px;
}

.Gmembers .membList .item .timeBox {
    display: inline-block;
    width: 17.5%;
    vertical-align: middle;
    text-align: center;
    padding-top: 3.5%;
    position: relative;
}

.Gmembers .membList .item .timeBox:before {
    width: 19px;
    height: 19px;
    content: '';
    background: url(../images/icon8.png) no-repeat;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -9.5px;
}

.Gmembers .membList .item .timeBox p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: .5%;
}

.Gmembers .membList .item .timeBox h5 {
    font-size: 16px;
    color: #777;
    font-weight: normal;
}

.Gmembers .membList .item:hover {
    top: -10px;
}

/*社会责任*/
.socialBox {
    background: #f8f8f8;
    padding: 4% 0;
}

.socialBox .sociTop {
    padding-bottom: 2%;
}

.socialBox .sociTop h5 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 2%;
}

.socialBox .sociTop p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 1.5%;
}

.socialBox .sociMid {
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5.5% 0;
}

.socialBox .sociMid h5 {
    text-align: center;
    color: #fff;
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 3%;
}

.socialBox .sociMid li {
    float: left;
    width: 32.5%;
    margin-right: 1.25%;
    background: #fff;
    text-align: center;
    padding: 4% 0 3%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px rgba(51, 51, 51, .1);
}

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

.socialBox .sociMid li .iconB {
    min-height: 56px;
    line-height: 56px;
    margin-bottom: 9%;
}

.socialBox .sociMid li p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.socialBox .sociBom {
    padding-top: 5.5%;
}

.socialBox .sociBom li {
    float: left;
    width: 32.5%;
    margin-right: 1.25%;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

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

.socialBox .sociBom li .imgBox {
    overflow: hidden;
}

.socialBox .sociBom li .imgBox img {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.socialBox .sociBom li .txtBox {
    padding: 9% 6%;
    min-height: 278px;
}

.socialBox .sociBom li .txtBox h5 {
    font-size: 20px;
    font-weight: normal;
    line-height: 72px;
}

.socialBox .sociBom li .txtBox time {
    font-style: italic;
    font-size: 20px;
    display: block;
    margin-bottom: 6%;
    font-weight: bold;
}

.socialBox .sociBom li .txtBox p {
    font-size: 16px;
    color: #999;
    line-height: 24px;
}

.socialBox .sociBom li:hover {
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
}

.socialBox .sociBom li:hover .imgBox img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/*联系我们*/
.contactBox {
    background: #f8f8f8;
}

.contactBox .tactTxt {
    padding: 4% 0 5%;
}

.contactBox .tactTxt h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%;
}

.contactBox .tactTxt .tactTop {}

.contactBox .tactTxt .tactTop .item {
    float: left;
    width: 49.28571429%;
    background: #eaeaea;
    padding: 3% 3.5%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.contactBox .tactTxt .tactTop .item:nth-child(2n) {
    float: right;
}

.contactBox .tactTxt .tactTop .item h5 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 8%;
}

.contactBox .tactTxt .tactTop .item li {
    width: 50%;
    float: left;
    position: relative;
    padding-left: 4%;
    margin-bottom: 6.5%;
}

.contactBox .tactTxt .tactTop .item li:before {
    width: 5px;
    height: 100%;
    content: '';
    background: #19a1d8;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    top: 0;
    left: 0;
    position: absolute;
}

.contactBox .tactTxt .tactBom {
    margin-top: 1.25%;
    margin-bottom: 4%;
}

.contactBox .tactTxt .tactBom li {
    float: left;
    width: 32.5%;
    margin-right: 1.25%;
    background: #eaeaea;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 2% 3.5%;
}

.contactBox .tactTxt .tactBom li:nth-child(3n) {
    margin-right: 0;
}

.contactBox .tactTxt .tactBom li h5 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 2%;
}

.contactBox .tactTxt .tactBom li p {
    font-size: 16px;
    line-height: :28px;
}

.contactBox .tactTxt .mesBtn {
    display: block;
    width: 175px;
    line-height: 50px;
    background: #19a1d8;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.contactBox #dituContent {
    width: 100%;
    height: 500px;
}

/*投资者关系*/
.quotation {
    background: #f8f8f8;
    padding: 3% 0;
}

.quotation h1 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 1.5%;
}

.quotation .shares {
    background: #fff;
    padding: 3%;
}

.quotation .shares .mainstay {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    border-right: 1px solid #ebebeb;
}

.quotation .shares .mainstay p {
    font-size: 16px;
    color: #e60012;
    font-weight: bold;
    line-height: 30px;
}

.quotation .shares .mainstay .gain {}

.quotation .shares .mainstay .gain h5 {
    font-size: 60px;
    font-family: 'DINmedi';
    color: #ff0000;
    display: inline-block;
}

.quotation .shares .mainstay .gain .txtB {
    display: inline-block;
    padding-left: 8%;
    position: relative;
    margin-left: 2%;
}

.quotation .shares .mainstay .gain .txtB:before {
    width: 16px;
    height: 14px;
    content: '';
    background: url(../images/icon10.png) no-repeat;
    position: absolute;
    left: 0;
    bottom: 5px;
}

.quotation .shares .mainstay .gain .txtB span {
    display: block;
    font-size: 24px;
    color: #ff0000;
    line-height: 24px;
    font-family: 'DINmedi';
    font-weight: bold;
}

.quotation .shares .othestay {
    display: inline-block;
    vertical-align: middle;
    width: 79.5%;
    padding-left: 3%;
}

.quotation .shares .othestay .item {
    margin-bottom: 2%;
}

.quotation .shares .othestay .item .lattice {
    float: left;
    width: 14.28%;
}

.quotation .shares .othestay .item .lattice p {
    font-size: 16px;
    color: #999;
    line-height: 30px;
}

.quotation .shares .othestay .item .lattice span {
    font-family: 'DINmedi';
    font-size: 24px;
    color: #555;
    line-height: 30px;
}

.quotation .shares .colff0 {
    color: #ff0000 !important;
}

.quotation .shares .col009 {
    color: #009900 !important;
}

.quotation h3 {
    font-size: 16px;
    line-height: 30px;
    color: #888;
    font-weight: normal;
    margin-top: 1%;
}

.baseData {
    padding-top: 3%;
    background: url(../images/datbg.jpg) no-repeat center center;
}

.baseData h1 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 1.5%;
    color: #fff;
}

.baseData .dataBox {
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.baseData .dataBox .conBox {
    float: left;
    width: 50%;
}

.baseData .dataBox .conBox .item {
    line-height: 60px;
}

.baseData .dataBox .conBox .item h5 {
    width: 23%;
    float: left;
    background: #eaeff4;
    font-size: 16px;
    color: #999;
    font-weight: normal;
    padding-left: 5%;
}

.baseData .dataBox .conBox .item p {
    width: 77%;
    float: left;
    background: #f8f8f8;
    font-size: 16px;
    color: #666;
    padding-left: 5%;
}

.baseData .dataBox .conBox .item:nth-child(even) h5 {
    background: #f0f4f9;
}

.baseData .dataBox .conBox .item:nth-child(even) p {
    background: #fff;
}

.baseData .dataBox .conBox:nth-child(2) .item h5 {
    background: #f0f4f9;
}

.baseData .dataBox .conBox:nth-child(2) .item p {
    background: #fff;
}

.baseData .dataBox .conBox:nth-child(2) .item:nth-child(even) h5 {
    background: #eaeff4;
}

.baseData .dataBox .conBox:nth-child(2) .item:nth-child(even) p {
    background: #f8f8f8;
}

.disclosure {
    padding: 3% 0;
    background: #f8f8f8;
}

.disclosure h1 {
    font-size: 34px;
    font-weight: normal;
    margin-bottom: 2%;
}

.disclosure li {
    line-height: 60px;
    padding: 0 2.5% 0 1.5%;
    background: #f8f8f8;
}

.disclosure li p {
    float: left;
    font-size: 16px;
    color: #555;
}

.disclosure li time {
    float: right;
    font-size: 16px;
    color: #888;
}

.disclosure li:nth-child(odd) {
    background: #fff;
}

.disclosure li:hover p {
    color: #19a1d8;
}

.disclosure .PageBox {
    margin-top: 2%;
}

.disclosure .PageBox .Pages a {
    background: #fff;
}

.propagate {
    background-image: url(../images/pagbg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    padding-top: 4%;
}

.propagate h1 {
    color: #fff;
}

.propagate ul {
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    border-top-right-radius: 8px;
    overflow: hidden;
}

.platform {
    background: url(../images/plabg.jpg) no-repeat center center;
    padding: 2% 0;
}

.platform .platBth {
    display: block;
    width: 300px;
    line-height: 50px;
    text-align: center;
    color: #3fcdff;
    border: 2px solid #3fcdff;
    font-size: 24px;
    margin: 0 auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

/**/
.sersupmenu .menu {
    width: 83.5%;
}

.sersupmenu .location {
    width: 16.5%;
}

/*服务体系*/
.serIdea {
    padding: 4% 0;
}

.serIdea h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.standard {
    padding: 3% 0;
    background: #f8f8f8;
}

.standard h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.standard .standTop {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.standard .standTop .imgBox {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.standard .standTop .txtBox {
    width: 49.5%;
    display: inline-block;
    vertical-align: middle;
    padding: 0 4%;
}

.standard .standTop .txtBox h5 {
    font-size: 20px;
    position: relative;
    padding-left: 20px;
    line-height: 1;
    margin-bottom: 3%;
}

.standard .standTop .txtBox h5:before {
    width: 4px;
    height: 100%;
    content: '';
    background: #03346f;
    position: absolute;
    top: 0;
    left: 0;
}

.standard .standTop .txtBox p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.standard .standBom {
    margin-top: 3%;
}

.standard .standBom .standTab {
    float: left;
    width: 49.28571429%;
    background: #fff;
    padding: 5px;
    border: 1px solid #efefef;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

.standard .standBom .standTab h5 {
    line-height: 50px;
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    background: #fafafa;
    -webkit-border-top-left-radius: 8px;
    -moz-border-radius-topleft: 8px;
    border-top-left-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    -moz-border-radius-topright: 8px;
    border-top-right-radius: 8px;
    position: relative;
    font-size: 18px;
    color: #000;
    font-weight: normal;
}

.standard .standBom .standTab h5:before {
    width: 3px;
    height: 16px;
    content: '';
    background: #00a0d9;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}

.standard .standBom .standTab p {
    line-height: 50px;
    border-bottom: 1px dashed #ebebeb;
    font-size: 16px;
    color: #666666;
    padding-left: 2%;
}

.standard .standBom .standTab p:nth-child(even) {
    color: #000;
}

.standard .standBom .standTab p.lasep {
    border-bottom: none;
}

.standard .standBom .standTab p.lastp {
    border-bottom: none;
    text-align: center;
}

.standard .standBom .standTab table {
    width: 100%;
}

.standard .standBom .standTab table th {
    height: 50px;
    color: #000;
    font-weight: normal;
    border: 1px solid #ebebeb;
}

#lineTd {
    background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxsaW5lIHgxPSIwIiB5MT0iMCIgeDI9IjEwMCUiIHkyPSIxMDAlIiBzdHJva2U9IiNlYmViZWIiIHN0cm9rZS13aWR0aD0iMSIvPjwvc3ZnPg==) no-repeat 100% center;
}

#lineTd span {
    font-size: 16px;
}

.standard .standBom .standTab table td {
    border: 1px solid #ebebeb;
    height: 50px;
    font-size: 16px;
    color: #666;
    text-align: center;
}

.standard .standBom .standTab:nth-child(2n) {
    float: right;
}

.serprocess {
    padding: 4% 0;
}

.serprocess h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: .5%;
}

.serprocess h2 {
    font-size: 16px;
    color: #666;
    font-weight: normal;
    text-align: center;
    margin-bottom: 5%;
}

.serprocess .item {
    background: url(../images/ocesbg.png) no-repeat center center;
    padding: 2%;
    margin-bottom: 2%;
}

.serprocess .item .imgBox {
    display: inline-block;
    vertical-align: middle;
    width: 29.5%;
}

.serprocess .item .txtBox {
    display: inline-block;
    vertical-align: middle;
    padding: 0 4%;
    width: 70%;
}

.serprocess .item .txtBox h5 {
    font-size: 20px;
    color: #02377a;
    margin-bottom: 8%;
}

.serprocess .item .txtBox li {
    float: left;
    text-align: center;
    margin-right: 10%;
}

.serprocess .item .txtBox li .iconB {
    position: relative;
    line-height: 55px;
}

.serprocess .item .txtBox li .iconB:before {
    background: url(../images/icon11.png) no-repeat;
    width: 16px;
    height: 12px;
    position: absolute;
    right: -35px;
    bottom: -10%;
    content: '';
}

.serprocess .item .txtBox li p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
    margin-top: 20px;
}

.serprocess .item .txtBox li:last-child {
    margin-right: 0;
}

.serprocess .item .txtBox li:last-child .iconB:before {
    display: none;
}

@keyframes mydh {
    100% {
        -webkit-transform: scale(4);
        -ms-transform: scale(4);
        -o-transform: scale(4);
        -moz-transform: scale(4);
        transform: scale(4);
        opacity: 0;
    }
}

@-moz-keyframes mydh {
    100% {
        -webkit-transform: scale(4);
        -ms-transform: scale(4);
        -o-transform: scale(4);
        -moz-transform: scale(4);
        transform: scale(4);
        opacity: 0;
    }
}

@-webkit-keyframes mydh {
    100% {
        -webkit-transform: scale(4);
        -ms-transform: scale(4);
        -o-transform: scale(4);
        transform: scale(4);
        opacity: 0;
    }
}

@-o-keyframes mydh {
    100% {
        -webkit-transform: scale(4);
        -ms-transform: scale(4);
        -o-transform: scale(4);
        transform: scale(4);
        opacity: 0;
    }
}

.serDot {
    padding: 4% 0;
    background: #f8f8f8;
}

.serDot .w1400>h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%;
}

.serDot .dotBox {}

.serDot .dotBox .dotLeft {
    float: left;
    width: 63.5%;
    position: relative;
}

.serDot .dotBox .dotLeft li {
    position: absolute;
    cursor: pointer;
}

.serDot .dotBox .dotLeft li .point {
    width: 5px;
    height: 5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all .3s;
    transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    background: #fff;
    position: relative;
}

.serDot .dotBox .dotLeft li i {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    display: block;
    position: absolute;
    animation: mydh 2s infinite;
    -moz-animation: mydh 2s infinite;
    -webkit-animation: mydh 2s infinite;
    -o-animation: mydh 2s infinite;
    background: rgba(255, 255, 255, .3);
}

.serDot .dotBox .dotLeft li i:nth-child(2) {
    -moz-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.serDot .dotBox .dotLeft li .point:after {
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
    background: #fff;
    position: absolute;
}

.serDot .dotBox .dotLeft li span {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    position: absolute;
    top: 10px;
    right: -22px;
    width: 50px;
    text-align: center;
}

.serDot .dotBox .dotLeft li.on i {
    background: rgba(216, 22, 21, .3);
}

.serDot .dotBox .dotLeft li.guangdong {
    right: 40.5%;
    bottom: 16%;
}

.serDot .dotBox .dotLeft li.guangxi {
    right: 49%;
    bottom: 16%;
}

.serDot .dotBox .dotLeft li.hainan {
    right: 46%;
    bottom: 2%;
}

.serDot .dotBox .dotLeft li.hainan span {
    color: #00a0d9;
}

.serDot .dotBox .dotLeft li.yunnan {
    right: 62%;
    bottom: 18%;
}

.serDot .dotBox .dotLeft li.guizhou {
    right: 52.5%;
    bottom: 23%;
}

.serDot .dotBox .dotLeft li.sichuan {
    right: 59%;
    bottom: 35%;
}

.serDot .dotBox .dotLeft li.chongqing {
    right: 50%;
    bottom: 32%;
}

.serDot .dotBox .dotLeft li.hunan {
    right: 42.5%;
    bottom: 28%;
}

.serDot .dotBox .dotLeft li.hubei {
    right: 42.5%;
    bottom: 37%;
}

.serDot .dotBox .dotLeft li.jiangxi {
    right: 36.5%;
    bottom: 28%;
}

.serDot .dotBox .dotLeft li.fujian {
    right: 31.5%;
    bottom: 24%;
}

.serDot .dotBox .dotLeft li.shanghai {
    right: 26.5%;
    bottom: 37.5%;
}

.serDot .dotBox .dotLeft li.shanghai span {
    color: #00a0d9;
    top: -10px;
    right: -50px;
}

.serDot .dotBox .dotLeft li.zhejiang {
    right: 28.5%;
    bottom: 32.5%;
}

.serDot .dotBox .dotLeft li.anhui {
    right: 34.5%;
    bottom: 40%;
}

.serDot .dotBox .dotLeft li.jiangsu {
    right: 29.5%;
    bottom: 42%;
}

.serDot .dotBox .dotLeft li.henan {
    right: 41.5%;
    bottom: 45%;
}

.serDot .dotBox .dotLeft li.shanxi1 {
    right: 47%;
    bottom: 46%;
}

.serDot .dotBox .dotLeft li.shanxi2 {
    right: 42.5%;
    bottom: 54%;
}

.serDot .dotBox .dotLeft li.hebei {
    right: 37.5%;
    bottom: 56.5%;
}

.serDot .dotBox .dotLeft li.shandong {
    right: 33%;
    bottom: 52%;
}

.serDot .dotBox .dotLeft li.beijing {
    right: 36%;
    bottom: 62%;
}

.serDot .dotBox .dotLeft li.tianjin {
    right: 35%;
    bottom: 65%;
}

.serDot .dotBox .dotLeft li.tianjin span {
    top: -10px;
    right: -50px;
}

.serDot .dotBox .dotLeft li.liaoning {
    right: 26%;
    bottom: 67%;
}

.serDot .dotBox .dotLeft li.jilin {
    right: 22%;
    bottom: 74%;
}

.serDot .dotBox .dotLeft li.heilongjiang {
    right: 23%;
    bottom: 85%;
}

.serDot .dotBox .dotLeft li.neimenggu {
    right: 37%;
    bottom: 74%;
}

.serDot .dotBox .dotLeft li.ningxia {
    right: 52%;
    bottom: 53%;
}

.serDot .dotBox .dotLeft li.gansu {
    right: 55%;
    bottom: 48%;
}

.serDot .dotBox .dotLeft li.qinghai {
    right: 69%;
    bottom: 52%;
}

.serDot .dotBox .dotLeft li.xizang {
    right: 78%;
    bottom: 36%;
}

.serDot .dotBox .dotLeft li.xinjiang {
    right: 85%;
    bottom: 68%;
}

.serDot .dotBox .dotRigh {
    float: right;
    width: 30.5%;
}

.serDot .dotBox .dotRigh .slideSele {
    position: relative;
    margin-bottom: 4%;
}

.serDot .dotBox .dotRigh .slideSele .slideTit {
    line-height: 60px;
    background: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 0 5%;
    font-size: 18px;
    color: #666666;
    position: relative;
}

.serDot .dotBox .dotRigh .slideSele .slideTit:before {
    background: url(../images/icon1_1.png) no-repeat;
    width: 11px;
    height: 7px;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -5.5px;
    right: 5%;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    trasnition: .3s;
}

.serDot .dotBox .dotRigh .slideSele .slideTit.seleon:before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.serDot .dotBox .dotRigh .slideSele .slideCon {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    line-height: 50px;
    background: #fff;
    padding: 0 5%;
    display: none;
    height: 153px;
    overflow-y: auto;
    -webkit-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
}

.serDot .dotBox .dotRigh .slideSele .slideCon::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    scrollbar-arrow-color: #00a0d9;
}

.serDot .dotBox .dotRigh .slideSele .slideCon::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #d8d8d8;
    scrollbar-arrow-color: #00a0d9;
}

.serDot .dotBox .dotRigh .slideSele .slideCon::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0);
}

.serDot .dotBox .dotRigh .slideSele .slideCon li {
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
}

.serDot .dotBox .dotRigh .slideSele .slideCon li:hover {
    color: #00a0d9;
}

.serDot .dotBox .dotRigh .bd {}

.serDot .dotBox .dotRigh .bd .item {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.serDot .dotBox .dotRigh .bd .item h1 {
    line-height: 70px;
    background: #e6e6e6;
    font-size: 22px;
    color: #666666;
    padding: 0 8%;
    font-weight: normal;
}

.serDot .dotBox .dotRigh .bd .item ul {
    padding: 0 8%;
    height: 550px;
    overflow-y: auto;
}

.serDot .dotBox .dotRigh .bd .item ul::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    scrollbar-arrow-color: #00a0d9;
}

.serDot .dotBox .dotRigh .bd .item ul::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #d8d8d8;
    scrollbar-arrow-color: #00a0d9;
}

.serDot .dotBox .dotRigh .bd .item ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
    -webkit-border-radius: 0;
    border-radius: 0;
    background: rgba(0, 0, 0, 0);
}

.serDot .dotBox .dotRigh .bd .item li {
    border-bottom: 1px solid #ebebeb;
    padding: 7% 0;
}

.serDot .dotBox .dotRigh .bd .item li h5 {
    font-size: 20px;
    color: #666;
    font-weight: normal;
    margin-bottom: 4%;
}

.serDot .dotBox .dotRigh .bd .item li p {
    font-size: 16px;
    line-height: 24px;
    color: #333;
}

/*服务加盟*/
.alliance {
    padding: 4% 0;
}

.alliance h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.alliance .anceBox .anceTop {
    margin-bottom: 2%;
}

.alliance .anceBox .anceTop h5 {
    font-size: 20px;
    color: #00a0d9;
    font-weight: normal;
    padding-left: 25px;
    position: relative;
    margin-bottom: 1%;
}

.alliance .anceBox .anceTop h5:before {
    width: 18px;
    height: 3px;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1.5px;
}

.alliance .anceBox .anceTop p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.alliance .anceBox .anceMid {
    margin-bottom: 8%;
}

.alliance .anceBox .anceMid .contBox {
    float: left;
    width: 47.5%;
}

.alliance .anceBox .anceMid .contBox.righBox {
    float: right;
}

.alliance .anceBox .anceMid .contBox .imgBox {
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 4%;
}

.alliance .anceBox .anceMid .contBox .txtBox .iconB {
    display: inline-block;
    vertical-align: middle;
}

.alliance .anceBox .anceMid .contBox .txtBox .textB {
    display: inline-block;
    vertical-align: middle;
    margin-left: 2%;
}

.alliance .anceBox .anceMid .contBox .txtBox .textB h5 {
    position: relative;
    font-size: 20px;
    padding-left: 20px;
    line-height: 1;
    margin-bottom: 2%;
}

.alliance .anceBox .anceMid .contBox .txtBox .textB h5:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #03346f;
    position: absolute;
    top: 0;
    left: 0;
}

.alliance .anceBox .anceMid .contBox .txtBox .textB p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.alliance .anceBox .applyBtn {
    display: block;
    width: 175px;
    line-height: 50px;
    background: #19a1d8;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

/*投诉维修*/
.complaint {
    background: #f9f9f9;
    padding: 4% 10%;
    margin: 4% auto;
}

.complaint .hd {
    margin-bottom: 5%;
}

.complaint .hd li {
    line-height: 50px;
    padding: 0 5%;
    border: 1px solid #02377a;
    color: #02377a;
    cursor: pointer;
    float: left;
    font-size: 16px;
}

.complaint .hd li.on,
.complaint .hd li:hover {
    background: #02377a;
    color: #fff;
}

.complaint .bd .itemForm {}

.complaint .bd .itemForm li {
    float: left;
    width: 43.5%;
    margin-bottom: 3%;
}

.complaint .bd .itemForm li:nth-child(even) {
    float: right;
}

.complaint .bd .itemForm li p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 2%;
}

.complaint .bd .itemForm li p span {
    color: #f20000;
}

.complaint .bd .itemForm li input {
    width: 100%;
    line-height: 50px;
    height: 50px;
    padding-left: 5px;
    border: 1px solid #d1d1d1;
}

.complaint .bd .itemForm li #18337 {
    line-height: 0;
    padding-top: 12px;
}

.complaint .bd .itemForm li.mesipt {
    width: 100%;
}

.complaint .bd .itemForm .btnBox {
    text-align: center;
}

.complaint .bd .itemForm .btnBox a,.complaint .bd .itemForm .btnBox button {
    display: inline-block;
    width: 175px;
    line-height: 50px;
    background: #19a1d8;
    color: #fff;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin: 0 2%;
    border:none;
}

/*常见问题*/
.qusfile {
    padding: 4% 0;
}

.qusfile h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.qusfile .topSearch {
    padding: 0 3%;
}

.qusfile .topSearch .seleBox {
    float: left;
}

.qusfile .topSearch .seleBox h3 {
    float: left;
    font-size: 18px;
    font-weight: normal;
    line-height: 48px;
}

.qusfile .topSearch .seleBox .selecon {
    position: relative;
    float: left;
    margin-left: 20px;
}

.qusfile .topSearch .seleBox .selecon p {
    width: 240px;
    line-height: 48px;
    border: 1px solid #eeeeee;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding-left: 25px;
    font-size: 16px;
    color: #aaa;
    padding-right: 42px;
}

.qusfile .topSearch .seleBox .selecon p:before {
    height: 32px;
    width: 1px;
    content: '';
    background-color: #eee;
    position: absolute;
    top: 50%;
    margin-top: -16px;
    right: 42px;
}

.qusfile .topSearch .seleBox .selecon p:after {
    width: 12px;
    height: 6px;
    content: '';
    background: url(../images/icon2_2.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 15px;
}

.qusfile .topSearch .seleBox .selecon p.selpon {
    color: #333;
}

.qusfile .topSearch .seleBox .selecon p.selon:after {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.qusfile .topSearch .seleBox .selecon ul {
    position: absolute;
    top: 50px;
    left: 0;
    background: #fff;
    width: 100%;
    padding: 0 5%;
    display: none;
    -webkit-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
}

.qusfile .topSearch .seleBox .selecon li {
    line-height: 35px;
    padding: 0 2%;
    border-bottom: 1px solid #ebebeb;
}

.qusfile .topSearch .seleBox .selecon li:hover {
    color: #00a0d9;
    cursor: pointer;
}

.qusfile .topSearch .inptBox {
    width: 32%;
    float: left;
    margin-left: 1%;
}

.qusfile .topSearch .inptBox input {
    line-height: 48px;
    height: 48px;
    border: 1px solid #eeeeee;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding-left: 10px;
    font-size: 16px;
    width: 100%;
}

.qusfile .topSearch .searBtn {
    width: 10%;
    text-align: center;
    line-height: 48px;
    background-color: #00a0d9;
    color: #fff;
    float: left;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    margin-left: 1%;
}

.qusfile .qfList {
    margin-top: 5%;
}

.qusfile .qfList ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.qusfile .qfList li {
    /* float: left; */
    width: 48.5%;
    line-height: 30px;
    border: 1px solid #eee;
    margin-bottom: 1.5%;
    padding: 15px 2%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.qusfile .qfList li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.qusfile .qfList li:nth-child(even) {
    float: right;
}

.qusfile .qfList li p {
    float: left;
    font-size: 16px;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    width: -webkit-calc(100% - 220px);
    width: -moz-calc(100% - 220px);
    width: calc(100% - 220px);
    display: inherit;
}

.qusfile .qfList li span {
    float: right;
    font-size: 16px;
    color: #888;
    position: relative;
    padding-right: 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.qusfile .qfList li span:before {
    width: 20px;
    height: 12px;
    content: '';
    background: url(../images/icon12.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.qusfile .qfList li time {
    float: right;
    font-size: 16px;
    color: #888;
    position: relative;
    padding-left: 42px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.qusfile .qfList li time:before {
    width: 18px;
    height: 18px;
    content: '';
    background: url(../images/icon13.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    left: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.qusfile .qfList li:hover {
    background-color: #00a0d9;
}

.qusfile .qfList li:hover p,
.qusfile .qfList li:hover span,
.qusfile .qfList li:hover time {
    color: #fff;
}

.qusfile .qfList li:hover span:before {
    background: url(../images/icon12_a.png) no-repeat;
}

.qusfile .qfList li:hover time:before {
    background: url(../images/icon13_a.png) no-repeat;
}

/*维保服务*/
.maintenance {
    padding: 4% 0;
}

.maintenance h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.maintenance h2 {
    font-size: 16px;
    color: #666;
    line-height: 28px;
    font-weight: normal;
    margin-bottom: 2%;
}

.maintenance h3 {
    width: 160px;
    height: 50px;
    text-align: center;
    color: #fff;
    background-color: #00a0d9;
    font-size: 20px;
    font-weight: normal;
    position: relative;
    line-height: 50px;
    margin-bottom: 3%;
}

.maintenance h3:before {
    width: 18px;
    height: 3px;
    background-color: #fff;
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    left: 0;
}

.maintenance .guarantee {
    margin-bottom: 5%;
}

.maintenance .guarantee .imgBox {
    float: left;
    width: 48.5%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.maintenance .guarantee .txtBox {
    float: right;
    width: 48.5%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    padding: 4%;
    background-color: #fff;
}

.maintenance .guarantee .txtBox li {
    margin-bottom: 6%;
}

.maintenance .guarantee .txtBox li .iconB {
    float: left;
    width: 12%;
}

.maintenance .guarantee .txtBox li .textB {
    float: right;
    width: 85%;
}

.maintenance .guarantee .txtBox li .textB h5 {
    font-size: 20px;
    margin-bottom: 1%;
}

.maintenance .guarantee .txtBox li .textB p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.maintenance .valueadd .imgBox {
    float: right;
}

.maintenance .valueadd .txtBox {
    float: left;
}

.maintenance .tc {
    display: block;
    width: 200px;
    height: 60px;
    position: relative;
    z-index: 8;
    line-height: 60px;
    border: 2px solid #00a0d9;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 24px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #00a0d9;
    text-align: center;
}

/*捷停车*/
.Banner_Wrap .bx-wrapper {
    position: relative;
    padding-bottom: 0;
}

.Banner_Wrap .bx-wrapper .bx-pager {
    position: absolute;
    width: 100%;
    bottom: 8%;
    left: 0;
    text-align: center;
}

.Banner_Wrap .bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
}

.Banner_Wrap .bx-wrapper .bx-pager .bx-pager-item a {
    display: block;
    width: 17px;
    height: 17px;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 0 9px;
}

.Banner_Wrap .bx-wrapper .bx-pager .bx-pager-item a.active {
    width: 49px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}

.mainTit {
    color: #5b5b5b;
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.parkingF1 {
    padding: 3% 0;
}

.parkingF1Box .conBox {
    float: left;
    width: 48.5%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    min-height: 580px;
    padding: 3% 0 3% 3%;
}

.parkingF1Box .conBox.righBox {
    float: right;
}

.parkingF1Box .conBox h5 {
    font-size: 36px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 8%;
}

.parkingF1Box .conBox ul {
    padding-left: 22%;
    padding-right: 10%;
}

.parkingF1Box .conBox li {
    margin-bottom: 5%;
}

.parkingF1Box .conBox li span {
    display: block;
    float: left;
    width: 20%;
    line-height: 28px;
    background-color: #fff;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    font-size: 16px;
    color: #44b0fd;
    text-align: center;
}

.parkingF1Box .conBox li p {
    float: right;
    width: 75%;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
}

.parkingF1Box .conBox.righBox ul {
    padding-left: 0;
}

.parkingF2 {
    padding: 4% 0;
    background-repeat: no-repeat;
    background-position: center center;
}

.parkingF2 .mainTit {
    color: #fff;
    margin-bottom: 3%;
}

.parkingF2Box .leftBox {
    float: left;
    width: 52%;
    padding-left: 2%;
}

.parkingF2Box .leftBox h5 {
    font-size: 36px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 1%;
    line-height: 60px;
}

.parkingF2Box .leftBox p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin-bottom: 5%;
}

.parkingF2Box .righBox {
    float: right;
    width: 40%;
    padding-right: 10%;
}

.parkingF2Box .righBox .item {
    padding: 3% 0;
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.parkingF2Box .righBox .item:first-child {
    border-top: none;
}

.parkingF2Box .righBox .item .iconB {
    float: left;
    width: 10%;
    text-align: center;
}

.parkingF2Box .righBox .item .textB {
    float: right;
    width: 85%;
    color: #fff;
}

.parkingF2Box .righBox .item .textB h5 {
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;
}

.parkingF2Box .righBox .item .textB p {
    line-height: 24px;
}

.parkingF3 {}

.parkingF3 .parkingF3f1 {
    padding: 3% 0;
    background-repeat: no-repeat;
    background-position: center center;
}

.parkingF3 .parkingF3f1 .imgBox {
    text-align: center;
}

.parkingF3 .pf3tit {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4%;
}

.parkingF3 .pf3tit h5 {
    background: url(../images/h5bg.png) no-repeat center center;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 2%;
    display: inline-block;
    padding: 0 5%;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}

.parkingF3 .pf3tit p {
    font-size: 16px;
    color: #666666;
    line-height: 28px;
}

.parkingF3 .parkingF3f2 {
    padding: 3% 0;
    background-repeat: no-repeat;
    background-position: center center;
}

.parkingF3 .parkingF3f2 .pf3tit {
    margin-bottom: 0;
}

.parkingF3 .parkingF3f2 .pf3tit h5 {
    background-image: none;
    background-color: #fff;
    color: #0085eb;
}

.parkingF3 .parkingF3f2 .pf3tit p {
    color: #fff;
}

.parkingF3 .parkingF3f2 .imgBox {
    text-align: center;
}

.parkingF3 .parkingF3f3 {
    padding: 3% 0;
    background-repeat: no-repeat;
    background-position: center center;
}

.parkingF3 .parkingF3f3 .imgBox {
    text-align: center;
}

.parkingF3 .parkingF3f4 {
    padding: 3% 0;
    background: #f8f8f8;
}

.parkingF3 .parkingF3f4 .ListBox {}

.parkingF3 .parkingF3f4 .ListBox li {
    float: left;
    width: 20%;
    margin-right: 6.66%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    position: relative;
    top: 0;
    margin-bottom: 2%;
}

.parkingF3 .parkingF3f4 .ListBox li:nth-child(4n) {
    margin-right: 0;
}

.parkingF3 .parkingF3f4 .ListBox li:hover {
    top: -10px;
}

.parkingF3 .parkingF3f4 .ListBox li .txtBox {
    background: #fff;
    padding: 8% 0 15% 8%;
}

.parkingF3 .parkingF3f4 .ListBox li .txtBox h5 {
    font-size: 18px;
    color: #0490ff;
    font-weight: normal;
    margin-bottom: 3%;
}

.parkingF3 .parkingF3f4 .ListBox li .txtBox a {
    display: block;
    color: #666;
    line-height: 28px;
    padding-left: 15px;
    position: relative;
}

.parkingF3 .parkingF3f4 .ListBox li .txtBox a:before {
    width: 6px;
    height: 2px;
    content: '';
    background: #67c6f9;
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
}

.parkingF3 .parkingF3f4 .ListBox li .txtBox a:hover {
    color: #00a0d9;
}

/*经销商查询*/
.BannerBox .queryBox {
    width: 50%;
    margin: 0 auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.BannerBox .queryBox input {
    line-height: 60px;
    height: 60px;
    background: #fff;
    float: left;
    width: 91%;
    padding: 0 10px;
    font-size: 16px;
}

.BannerBox .queryBox .queBth {
    width: 9%;
    float: right;
    background: #00a0d9;
    line-height: 60px;
    height: 60px;
    position: relative;
}

.BannerBox .queryBox .queBth:before {
    width: 20px;
    height: 20px;
    background: url(../images/search.png) no-repeat;
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

.queryF1 {
    padding: 3% 0;
    background: #f8f8f8;
}

.queryF1 h1 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 2%;
}

.queryF1Box {}

.queryF1Box .hd {
    width: 65%;
    float: left;
}

.queryF1Box .hd li {
    line-height: 60px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 0 70px 0 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    box-shadow: 0 0 20px rgba(51, 51, 51, .1);
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    cursor: pointer;
    margin-bottom: 2%;
    position: relative;
}

.queryF1Box .hd li div>* {
    overflow: hidden;
    font-size: 16px;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.queryF1Box .hd li h5 {
    font-weight: normal;
}

.queryF1Box .hd li p {
    color: #777;
    padding-left: 20px;
    position: relative;
}

@media(min-width:769px) {
    .queryF1Box .hd li h5 {
        float: left;
        width: 55%;
    }

    .queryF1Box .hd li p {
        float: right;
        width: 42%;
    }
}

@media(max-width:768px) {
    .queryF1Box .hd li div {
        padding: 10px 0;
    }

    .queryF1Box .hd li div>* {
        line-height: 30px;
    }
}

.queryF1Box .hd li p:before {
    width: 12px;
    height: 16px;
    content: '';
    background: url(../images/add_2.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.queryF1Box .hd li span {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -30px;
    font-size: 16px;
    color: #777;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.queryF1Box .hd li:hover,
.queryF1Box .hd li.on {
    background: #014da3;
}

.queryF1Box .hd li:hover *,
.queryF1Box .hd li.on * {
    color: #fff;
}

.queryF1Box .hd li:hover p:before {
    background: url(../images/add.png) no-repeat;
}

.queryF1Box .hd li.on p:before {
    background: url(../images/add.png) no-repeat;
}

.queryF1Box .bd {
    width: 31%;
    float: right;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 3%;
}

.queryF1Box .bd span {
    display: none;
}

.queryF1Box .bd .item .ili {
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 5%;
    padding-bottom: 5%;
}

.queryF1Box .bd .item .ili:last-child {
    border-bottom: none;
}

.queryF1Box .bd .item .ili h5 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 3%;
}

.queryF1Box .bd .item .ili p {
    font-size: 16px;
    color: #777;
}

.queryF1Box .bd .item .ili table {
    width: 100%;
}

.queryF1Box .bd .item .ili table td {
    border: 1px solid #cdcdcd;
    text-align: center;
    line-height: 48px;
    font-size: 16px;
    color: #777;
}

/*人力资源*/
.recruitF1 {
    padding: 3% 0;
    background: #f8f8f8;
}

.recruitF1 .welfareI {
    margin-bottom: 3%;
}

.recruitF1 .welfareI .item {
    float: left;
    width: 24%;
    margin-right: 1.33%;
    background: #fff;
    padding: 2% 1.5%;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px rgba(51, 51, 51, .1);
    -moz-box-shadow: 0 0 10px rgba(51, 51, 51, .1);
    box-shadow: 0 0 10px rgba(51, 51, 51, .1);
}

.recruitF1 .welfareI .item:nth-child(4n) {
    margin-right: 0;
}

.recruitF1 .welfareI .item .iconB {
    display: inline-block;
    vertical-align: middle;
}

.recruitF1 .welfareI .item p {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5%;
    font-size: 20px;
    line-height: 28px;
}

.recruitF1 .recruitBox li {
    float: left;
    width: 18.5%;
    background: #fff;
    margin-right: 1.875%;
    margin-bottom: 2%;
    padding: 3% 2%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    border-top: 1px solid #fff;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recruitF1 .recruitBox li:nth-child(5n) {
    margin-right: 0;
}

.recruitF1 .recruitBox li .popupCon {
    display: none;
}

.recruitF1 .recruitBox li h5 {
    font-size: 24px;
    color: #535353;
    font-weight: normal;
    margin-bottom: 5%;
}

.recruitF1 .recruitBox li p {
    font-size: 16px;
    color: #999999;
    line-height: 32px;
}

.recruitF1 .recruitBox li span {
    color: #535353;
}

.recruitF1 .recruitBox li .viewBtn {
    width: 130px;
    line-height: 40px;
    border: 1px solid #00a0d9;
    font-size: 16px;
    color: #00a0d9;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    display: block;
    margin-top: 70px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recruitF1 .recruitBox li:hover {
    top: -10px;
    border-top: 1px solid #00a0d9;
}

.recruitF1 .recruitBox li:hover .viewBtn {
    background: #00a0d9;
    color: #fff;
}

.recrupop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
}

.recrupop .BG {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}

.recrupop .recrupopCon {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3%;
    padding-right: 15%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.recrupop .recrupopCon .closBtn {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    background: url(../images/col.png) no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recrupop .recrupopCon .closBtn:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.recrupop .recrupopCon h5 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 5%;
}

.recrupop .recrupopCon .popupCon {
    font-size: 16px;
    line-height: 26px;
}

.recrupop .recrupopCon .popupCon span {
    display: block;
    color: #999999;
}

.recrupop .recrupopCon .popupCon .recrBtn {
    display: block;
    line-height: 50px;
    width: 170px;
    background: #00a0d9;
    color: #fff;
    text-align: center;
    color: #fff;
    font-size: 20px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    margin-top: 5%;
}

.recruitF2 {
    padding: 3% 0;
}

.recruitF2 .schreci {}

.recruitF2 .schreci li {
    background: #f8f8f8;
}

.recruitF2 .schreci li .imgBox {
    display: inline-block;
    vertical-align: middle;
    width: 64.5%;
}

.recruitF2 .schreci li .txtBox {
    display: inline-block;
    vertical-align: middle;
    width: 35%;
    padding: 3%;
}

.recruitF2 .schreci li .txtBox span {
    display: block;
    font-size: 16px;
    line-height: 28px;
    color: #535353;
    margin-bottom: 2%;
}

.recruitF2 .schreci li .txtBox h5 {
    font-size: 23px;
    font-weight: normal;
    color: #535353;
    padding-bottom: 6%;
    position: relative;
    margin-bottom: 6%;
}

.recruitF2 .schreci li .txtBox h5:before {
    width: 50px;
    height: 4px;
    content: '';
    background: #00a0d9;
    position: absolute;
    bottom: 0;
    left: 0;
}

.recruitF2 .schreci li .txtBox p {
    font-size: 16px;
    color: #999;
    line-height: 28px;
}

.recruitF2 .schreci li .txtBox .viewBtn {
    width: 130px;
    line-height: 40px;
    font-size: 16px;
    background: #00a0d9;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    display: block;
    margin-top: 10%;
}

.recruitF2 .schreci .bx-wrapper {
    padding-bottom: 5%;
    position: relative;
}

.recruitF2 .schreci .bx-wrapper .bx-pager {
    position: absolute;
    width: 100%;
    bottom: 2%;
    left: 0;
    text-align: center;
}

.recruitF2 .schreci .bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
}

.recruitF2 .schreci .bx-wrapper .bx-pager .bx-pager-item a {
    display: block;
    width: 14px;
    height: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 0 7px;
    border: 1px solid #a0a0a0;
}

.recruitF2 .schreci .bx-wrapper .bx-pager .bx-pager-item a.active {
    background-color: #00a0d9;
    border: 1px solid #00a0d9;
}

.recruitF3 {
    padding: 3% 0;
    background: #f8f8f8;
}

.recruitF3 .demeanorList {
    position: relative;
}

.recruitF3 .demeanorList .white-panel {
    position: absolute;
}

.recruitF3 .demeanorList .white-panel .thumbA {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.recruitF3 .demeanorList .white-panel .thumbA .imgBox {
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recruitF3 .demeanorList .white-panel .thumbA .txtBox {
    padding: 5%;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recruitF3 .demeanorList .white-panel .thumbA .txtBox h5 {
    font-size: 24px;
    color: #535353;
    font-weight: normal;
}

.recruitF3 .demeanorList .white-panel .thumbA .txtBox time {
    font-size: 16px;
    line-height: 24px;
    color: #999;
    display: block;
}

.recruitF3 .demeanorList .white-panel .thumbA:hover .imgBox,
.recruitF3 .demeanorList .white-panel .thumbA:hover .txtBox {
    top: -10px;
}

.scanBox {
    position: fixed;
    top: 50%;
    left: 20px;
    width: 130px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    text-align: center;
    background: #fff;
}

.scanBox .codeBox {
    padding: 8px 0;
    border-bottom: 1px solid #e1e1e1;
}

.scanBox p {
    font-size: 16px;
    line-height: 20px;
    background: #00a0d9;
    color: #fff;
    padding: 8px 0;
}

@media(max-width:768px) {
    .recruitF3 .demeanorList {
        overflow-y: auto;
    }

    .recruitF3 .demeanorList .white-panel .thumbA .imgBox {
        text-align: center;
    }
}

/*城市停车*/
.cicyparkF1 {
    padding: 3% 0 5% 0;
}

.cicyparkF1 .titDes {
    font-size: 16px;
    color: #999;
    line-height: 28px;
    margin-bottom: 5%;
    text-indent: 2em;
}

.cicyparkF1 li {
    float: left;
    width: 30%;
    background-color: #f6f6f6;
    margin-right: 5%;
    text-align: center;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    border-top-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    background-image: url(../images/yf1bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    padding: 2% 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.cicyparkF1 li:hover {
    -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
    -moz-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
}

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

.cicyparkF1 li .iconB {}

.cicyparkF1 li h5 {
    font-size: 24px;
    font-weight: normal;
    color: #666;
    margin: 2% 0;
}

.cicyparkF1 li h5 i {
    color: #3a9bd9;
}

.cicyparkF1 li span {
    display: block;
    width: 50%;
    float: left;
    font-size: 16px;
    line-height: 30px;
    color: #666;
    position: relative;
}

.cicyparkF1 li span:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 50%;
    left: 20%;
    margin-top: -2.5px;
}

.cicyparkF2 {
    padding: 4% 0;
    background: #f8f8f8;
}

.cicyparkF2 .mainTit {
    margin-bottom: 3%;
}

.cicyparkF2 .cpF2Box .item {
    position: relative;
}

.cicyparkF2 .cpF2Box .item p {
    font-size: 16px;
    color: #666;
    line-height: 22px;
    max-height: 88px;
    min-height: 88px;
    overflow: hidden;
}

.cicyparkF2 .cpF2Box .item .inner {
    background: #fff;
    -webkit-border-radius: 30px 0;
    -moz-border-radius: 30px 0;
    border-radius: 30px 0;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    box-shadow: 0 5px 10px rgba(51, 51, 51, .2);
    padding: 28px;
    position: relative;
    z-index: 3;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.cicyparkF2 .cpF2Box .item:nth-child(2n) .inner {
    -webkit-border-radius: 0 30px;
    -moz-border-radius: 0 30px;
    border-radius: 0 30px;
}

@media(min-width:1025px) {
    .cicyparkF2 .cpF2Box {
        position: relative;
    }

    .cicyparkF2 .cpF2Box:before {
        position: absolute;
        content: '';
        width: 80.5%;
        height: 4px;
        background: #e7ecf2;
        top: 50%;
        margin-top: -2px;
    }

    .cicyparkF2 .cpF2Box .item {
        float: left;
        width: 12.5%;
    }

    .cicyparkF2 .cpF2Box .item:before {
        position: absolute;
        content: '';
        width: 20px;
        height: 81px;
        background: url(../images/cpf2bg.png) no-repeat left top;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n-1):before {
        left: 0;
        bottom: -10px;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n):before {
        left: -56%;
        top: -10px;
        background-position: -146px bottom;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n) {
        margin-top: 186px;
        padding-top: 40px;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n-1) {
        padding-bottom: 40px;
    }

    .cicyparkF2 .cpF2Box .item .inner {
        width: 156%;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n) .inner {
        margin-left: -56%;
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n-1):hover .inner {
        -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
    }

    .cicyparkF2 .cpF2Box .item:nth-child(2n):hover .inner {
        -moz-transform: translateY(10px);
        -o-transform: translateY(10px);
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
    }
}

@media(max-width:1024px) {
    .cicyparkF2 .cpF2Box .item {
        padding: 10px 0;
    }
}

.cicyparkF2 .cpF2Box .item .inner:before,
.cicyparkF2 .cpF2Box .item .inner:after {
    position: absolute;
    content: '';
}

.cicyparkF2 .cpF2Box .item .inner:before {
    width: 18px;
    height: 18px;
    left: 4px;
}

.cicyparkF2 .cpF2Box .item .inner:after {
    width: 37px;
    height: 22px;
    right: 4px;
    border: 2px solid #3a9bd9;
    border-left: 0;
}

.cicyparkF2 .cpF2Box .item:nth-child(2n-1) .inner:before {
    bottom: 4px;
    background: url(../images/cpf2t.png) no-repeat left bottom -4px;
}

.cicyparkF2 .cpF2Box .item:nth-child(2n) .inner:before {
    top: 4px;
    background: url(../images/cpf2b.png) no-repeat left -4px;
}

.cicyparkF2 .cpF2Box .item:nth-child(2n-1) .inner:after {
    top: 4px;
    border-bottom: 0;
}

.cicyparkF2 .cpF2Box .item:nth-child(2n) .inner:after {
    bottom: 4px;
    border-top: 0;
}

/*.cicyparkF2 .cpF2Box .cpF2BoxTop{padding-bottom:2.8%;}
.cicyparkF2 .cpF2Box .cpF2BoxTop .item{float: left;width: 19.5%;margin-right:4.286%;background-color:#fff;background-image:url(../images/cpf2t.png);background-repeat:no-repeat;background-position:center;padding: 2%;border-top-left-radius:30px;border-bottom-right-radius: 30px;overflow: hidden;box-shadow:0 5px 10px rgba(51,51,51,.2);}
.cicyparkF2 .cpF2Box .cpF2BoxTop .item p,
.cicyparkF2 .cpF2Box .cpF2BoxBom .item p{font-size:16px;color: #666;line-height:22px;}
.cicyparkF2 .cpF2Box .cpF2BoxBom{padding-top:2.8%;}
.cicyparkF2 .cpF2Box .cpF2BoxBom .item{float: right;width: 19.5%;margin-left:4.286%;background-color:#fff;background-image:url(../images/cpf2b.png);background-repeat:no-repeat;background-position:center;padding: 2%;border-top-right-radius:30px;border-bottom-left-radius: 30px;overflow: hidden;box-shadow:0 5px 10px rgba(51,51,51,.2);}*/
.cicyparkF3 {
    padding: 3% 0 5% 0;
}

.cicyparkF3 .mainTit {
    margin-bottom: 3%;
}

.cicyparkF3 .titDes {
    font-size: 16px;
    color: #999;
    line-height: 28px;
    margin-bottom: 4%;
    text-indent: 2em;
}

.cicyparkF4 {
    padding: 3% 0;
    background-image: url(../images/cpf4bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
}

.cicyparkF4 .mainTit {
    color: #fff;
}

.cicyparkF4 li {
    float: left;
    width: 24%;
    background-color: #fff;
    margin-right: 1.33%;
    margin-bottom: 1.33%;
    position: relative;
    cursor: pointer;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.cicyparkF4 li:nth-child(4),
.cicyparkF4 li:nth-child(7) {
    margin-right: 0;
}

.cicyparkF4 li .beBox {
    text-align: center;
    padding: 10% 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.cicyparkF4 li .beBox .iconB {
    line-height: 67px;
    height: 67px;
    margin-bottom: 5%;
}

.cicyparkF4 li .beBox h5 {
    font-size: 18px;
    color: #3a9bd9;
    font-weight: normal;
}

.cicyparkF4 li .afBox {
    position: absolute;
    width: 80%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    opacity: 0;
}

.cicyparkF4 li .afBox h5 {
    font-size: 20px;
    color: #3a9bd9;
    margin-bottom: 3%;
}

.cicyparkF4 li .afBox p {
    color: #999;
    line-height: 24px;
}

.cicyparkF4 li:nth-child(7) {
    width: 49.33%;
}

.cicyparkF4 li:nth-child(7) .beBox {
    padding: 7.89% 0;
}

.cicyparkF4 li:nth-child(7) .beBox .iconB {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
}

.cicyparkF4 li:nth-child(7) .beBox h5 {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5%;
}

.cicyparkF4 li:hover {
    top: -10px;
}

.cicyparkF4 li:hover .beBox {
    opacity: 0;
}

.cicyparkF4 li:hover .afBox {
    opacity: 1;
}

.cicyparkF5 {
    padding-top: 3%;
}

.cicyparkF5 .hd .w1400 {
    padding-bottom: 28px;
    border-bottom: 1px solid #ebebeb;
}

.cicyparkF5 .hd li {
    float: left;
    width: 23%;
    background-color: #f6f6f6;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    border-top-right-radius: 30px;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 30px;
    line-height: 68px;
    margin-right: 2.66%;
    cursor: pointer;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

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

.cicyparkF5 .hd li .iconB {
    float: left;
    width: 23%;
    background: #00a0d9;
    text-align: center;
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 30px;
}

.cicyparkF5 .hd li p {
    text-align: center;
    width: 77%;
    float: left;
    font-size: 22px;
}

.cicyparkF5 .hd li:hover {
    top: -10px;
}

.cicyparkF5 .hd li:hover p,
.cicyparkF5 .hd li.on p {
    color: #00a0d9;
}

.cicyparkF5 .hd li.on:before {
    width: 100%;
    height: 9px;
    content: '';
    background: url(../images/icon14.png) no-repeat left center;
    position: absolute;
    bottom: -34px;
    left: 0;
}

.cicyparkF5 .bd {
    padding-top: 3%;
}

.cicyparkF5 .bd .insideroad {
    padding-bottom: 3%;
}

.cicyparkF5 .bd .insideroad .leftBox {
    float: left;
    width: 55%;
}

.cicyparkF5 .bd .insideroad .leftBox .titBox {
    padding-bottom: 4%;
    border-bottom: 1px solid #ebebeb;
}

.cicyparkF5 .bd .insideroad .leftBox .titBox h1 {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .insideroad .leftBox .titBox h1:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 0;
    left: 0;
}

.cicyparkF5 .bd .insideroad .leftBox .titBox p {
    font-size: 16px;
    color: #666;
    line-height: 28px;
}

.cicyparkF5 .bd .insideroad .leftBox .makBox {
    padding-top: 3%;
}

.cicyparkF5 .bd .insideroad .leftBox .makBox h5 {
    font-size: 20px;
    color: #3a9bd9;
    font-weight: normal;
    margin-bottom: 2%;
}

.cicyparkF5 .bd .insideroad .leftBox .makBox .spanBox {
    padding-bottom: 3%;
    border-bottom: 1px solid #ebebeb;
}

.cicyparkF5 .bd .insideroad .leftBox .makBox .spanBox span {
    display: block;
    float: left;
    width: 50%;
    line-height: 34px;
    position: relative;
    padding-left: 24px;
}

.cicyparkF5 .bd .insideroad .leftBox .makBox .spanBox span:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #3a9bd9;
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -2.5px;
}

.cicyparkF5 .bd .insideroad .leftBox .payBox {
    padding-top: 3%;
}

.cicyparkF5 .bd .insideroad .leftBox .payBox p {
    color: #999;
    line-height: 22px;
}

.cicyparkF5 .bd .insideroad .leftBox .payBox p span {
    color: #3a9bd9;
}

.cicyparkF5 .bd .insideroad .righBox {
    float: right;
    width: 39%;
}

.cicyparkF5 .bd .outsideroad {}

.cicyparkF5 .bd .outsideroad .TopBox {
    padding-bottom: 3%;
}

.cicyparkF5 .bd .outsideroad .TopBox .leftBox {
    float: left;
    width: 49.5%;
}

.cicyparkF5 .bd .outsideroad .TopBox .leftBox h1 {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .outsideroad .TopBox .leftBox h1:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 0;
    left: 0;
}

.cicyparkF5 .bd .outsideroad .TopBox .leftBox p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .outsideroad .TopBox .righBox {
    float: right;
    width: 40%;
}

.cicyparkF5 .bd .outsideroad .BomBox {
    background: #f6f6f6;
    padding: 3% 0;
}

.cicyparkF5 .bd .outsideroad .BomBox h1 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .outsideroad .BomBox .leftBox {
    width: 24.5%;
    text-align: right;
    display: inline-block;
    vertical-align: middle;
}

.cicyparkF5 .bd .outsideroad .BomBox .leftBox p {
    line-height: 60px;
    position: relative;
    padding-right: 20px;
}

.cicyparkF5 .bd .outsideroad .BomBox .leftBox p:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    right: 0;
}

.cicyparkF5 .bd .outsideroad .BomBox .midBox {
    text-align: center;
    width: 50%;
    display: inline-block;
    vertical-align: middle;
}

.cicyparkF5 .bd .outsideroad .BomBox .righBox {
    width: 24.5%;
    display: inline-block;
    vertical-align: middle;
}

.cicyparkF5 .bd .outsideroad .BomBox .righBox p {
    line-height: 60px;
    position: relative;
    padding-left: 20px;
}

.cicyparkF5 .bd .outsideroad .BomBox .righBox p:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    left: 0;
}

.cicyparkF5 .bd .cityroad {}

.cicyparkF5 .bd .cityroad .TopBox {
    padding-bottom: 3%;
}

.cicyparkF5 .bd .cityroad .TopBox .txtBox {
    margin-bottom: 5%;
}

.cicyparkF5 .bd .cityroad .TopBox .txtBox h1 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .cityroad .TopBox .txtBox p {
    font-size: 16px;
    line-height: 28px;
    color: #999;
}

.cicyparkF5 .bd .cityroad .TopBox .imgBox {
    text-align: center;
}

.cicyparkF5 .bd .cityroad .BomBox {
    background: #f6f6f6;
    padding: 3% 0;
}

.cicyparkF5 .bd .cityroad .BomBox h1 {
    font-size: 30px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 3%;
}

.cicyparkF5 .bd .cityroad .BomBox li {
    float: left;
    width: 31%;
    margin-right: 3.5%;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.cicyparkF5 .bd .cityroad .BomBox li:nth-child(3n) {
    margin-right: 0;
}

.cicyparkF5 .bd .cityroad .BomBox li .imgBox {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5%;
}

.cicyparkF5 .bd .cityroad .BomBox li h5 {
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    color: #666;
}

.cicyparkF5 .bd .cityroad .BomBox li:hover {
    top: -10px;
}

.cicyparkF5 .bd .newenergy {}

.cicyparkF5 .bd .newenergy .TopBox {
    padding-bottom: 3%;
}

.cicyparkF5 .bd .newenergy .TopBox .leftBox {
    float: left;
    width: 48%;
}

.cicyparkF5 .bd .newenergy .TopBox .leftBox h1 {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 5%;
}

.cicyparkF5 .bd .newenergy .TopBox .leftBox h1:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 0;
    left: 0;
}

.cicyparkF5 .bd .newenergy .TopBox .leftBox p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 5%;
}

.cicyparkF5 .bd .newenergy .TopBox .righBox {
    float: right;
    width: 41.5%;
}

.cicyparkF5 .bd .newenergy .BomBox {
    background: #f6f6f6;
    padding: 3% 0;
}

.cicyparkF5 .bd .newenergy .BomBox .imgBox {
    display: inline-block;
    vertical-align: middle;
    width: 45%;
}

.cicyparkF5 .bd .newenergy .BomBox .txtBox {
    display: inline-block;
    vertical-align: middle;
    width: 54.5%;
}

.cicyparkF5 .bd .newenergy .BomBox .txtBox h5 {
    font-size: 30px;
    font-weight: normal;
    position: relative;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 5%;
}

.cicyparkF5 .bd .newenergy .BomBox .txtBox h5:before {
    width: 3px;
    height: 100%;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 0;
    left: 0;
}

.cicyparkF5 .bd .newenergy .BomBox .txtBox p {
    line-height: 44px;
    position: relative;
    padding-left: 20px;
    color: #999999;
}

.cicyparkF5 .bd .newenergy .BomBox .txtBox p:before {
    width: 5px;
    height: 5px;
    content: '';
    background: #00a0d9;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
    left: 0;
}

.cicyparkF7 .txtBox {
    display: inline-block;
    vertical-align: middle;
    width: 48%;
    padding-left: 5%;
}

.cicyparkF7 .txtBox h1 {
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 5%;
}

.cicyparkF7 .txtBox p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
}

.cicyparkF7 .imgBox {
    display: inline-block;
    vertical-align: middle;
    width: 51.5%;
}

.cicyparkF8 {
    background: #f6f6f6;
    padding: 3% 0;
}

.cicyparkF8 .txtBox {
    padding-left: 0;
    width: 51.5%;
}

.cicyparkF8 .imgBox {
    padding-left: 5%;
    width: 48%;
}

.cicyparkF9 {
    padding: 3% 0;
}

.cicyparkF9 h1 {
    font-size: 30px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 3%;
}

.cicyparkF9 p {
    font-size: 16px;
    color: #999;
    line-height: 28px;
    margin-bottom: 5%;
}

.cicyparkF9 .imgBox {
    text-align: center;
}

.cicyparkF10 {
    padding: 3% 0;
    background: #f6f6f6;
}

.cicyparkF10 h1 {
    font-size: 30px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 3%;
}

.cicyparkF10 li {
    width: 17.8%;
    float: left;
    background: #fff;
    margin-right: 2.666%;
    padding: 3% 2.5%;
    min-height: 360px;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.cicyparkF10 li:nth-child(5n) {
    margin-right: 0;
}

.cicyparkF10 li .iconB {
    line-height: 53px;
    margin-bottom: 8%;
    text-align: center;
}

.cicyparkF10 li h5 {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 6%;
}

.cicyparkF10 li p {
    font-size: 16px;
    color: #999;
    line-height: 24px;
}

.cicyparkF10 li:hover {
    top: -10px;
}

.cicyparkF11 {
    padding: 3% 0;
}

.cicyparkF11 h1 {
    font-size: 30px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 3%;
}

.cicyparkF11 .typical {}

.cicyparkF11 .typical li {
    background: #f6f6f6;
}

.cicyparkF11 .typical li h5 {
    font-size: 18px;
    color: #3a9bd9;
    text-align: center;
    margin-bottom: 3%;
}

.cicyparkF11 .typical li .imgBox {
    float: left;
    width: 43%;
    position: relative;
    z-index: 1;
}

.cicyparkF11 .typical li .imgBox:before {
    width: 95px;
    height: 54px;
    content: '';
    background: rgba(58, 155, 217, .1);
    position: absolute;
    bottom: -15px;
    left: -20px;
    z-index: -1;
}

.cicyparkF11 .typical li .imgBox:after {
    width: 98px;
    height: 94px;
    content: '';
    background: rgba(58, 155, 217, .1);
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: -1;
}

.cicyparkF11 .typical li .txtBox {
    float: right;
    width: 53.5%;
    padding: 6% 3% 3% 0;
}

.cicyparkF11 .typical li .txtBox .topB {
    margin-bottom: 5%;
}

.cicyparkF11 .typical li .txtBox .topB h5 {
    text-align: left;
    margin-bottom: 2%;
}

.cicyparkF11 .typical li .txtBox .topB p {
    font-size: 16px;
    line-height：24px;
    color: #666;
}

.cicyparkF11 .typical li .txtBox .bomB {}

.cicyparkF11 .typical li .txtBox .bomB .leftB {
    float: left;
    width: 55%;
}

.cicyparkF11 .typical li .txtBox .bomB .leftB dl {
    margin: 0;
}

.cicyparkF11 .typical li .txtBox .bomB .leftB dd {
    margin: 0;
    float: left;
    width: 12%;
    text-align: center;
    margin-right: 10%;
    margin-bottom: 2%;
}

.cicyparkF11 .typical li .txtBox .bomB .leftB dd:nth-child(5n) {
    margin-right: 0;
}

.cicyparkF11 .typical li .txtBox .bomB .righB {
    float: right;
    width: 38.5%;
}

.cicyparkF11 .typical li .txtBox .bomB .righB span {
    display: block;
    width: 48%;
    float: left;
    margin-right: 4%;
    margin-bottom: 3%;
    line-height: 35px;
    border: 1px solid #999;
    color: #999;
    text-align: center;
}

.cicyparkF11 .typical li .txtBox .bomB .righB span:nth-child(2n) {
    margin-right: 0;
}

.bx-wrapper {
    padding-bottom: 5%;
    position: relative;
}

.cicyparkF11 .typical .bx-wrapper .bx-pager {
    position: absolute;
    width: 100%;
    bottom: 2%;
    left: 0;
    text-align: center;
}

.cicyparkF11 .typical .bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    vertical-align: middle;
}

.cicyparkF11 .typical .bx-wrapper .bx-pager .bx-pager-item a {
    display: block;
    width: 14px;
    height: 14px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    margin: 0 7px;
    border: 1px solid #a0a0a0;
}

.cicyparkF11 .typical .bx-wrapper .bx-pager .bx-pager-item a.active {
    background-color: #00a0d9;
    border: 1px solid #00a0d9;
}


/*响应式*/
// body.open { overflow: hidden; position: fixed; left: 0; top: 0; height: 100%; width: 100%; }
.nav_btn {
    float: right;
    width: 34px;
    height: 34px;
    margin: 32px 15px 0;
    position: relative;
    cursor: pointer;
    display: none;
    -webkit-transition: margin 0.3s ease 0s;
    -o-transition: margin 0.3s ease 0s;
    -moz-transition: margin 0.3s ease 0s;
    transition: margin 0.3s ease 0s;
    z-index: 12;
}

.nav_btn span,
.nav_btn span:before,
.nav_btn span:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #033470;
    position: absolute;
    left: 0;
}

.nav_btn span {
    top: 50%;
    margin-top: -1px;
}

.nav_btn span:before {
    top: -10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.nav_btn span:after {
    bottom: -10px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.nav_btn.open span {
    height: 0;
}

.nav_btn.open span:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    background-color: #999;
    height: 2px;
}

.nav_btn.open span:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: -2px;
    background-color: #999;
    height: 2px;
}

@media(max-width:1440px) {
    .top .nav li:first-child {
        margin-left: 0;
    }

    .home_page2 .txtBox .distabcel .listBox li {
        width: 17.7%;
    }

    .home_page4 .txtBox .distabcel .listBox li a p {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        max-height: 48px;
    }

    .home_page6 .idxnewBox .idxnBom .morenews:before {
        right: 28%;
    }

    .bottom .bottomTop .leftBox {
        width: 15%;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev,
    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
        top: auto;
        bottom: -8%;
        margin-left: 0;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev {
        left: 48%;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
        right: 48%;
    }

    .home_page7 .idxpneList .hd a {
        top: auto;
        bottom: -8%;
        margin-left: 0;
    }

    .home_page7 .idxpneList .owl-prev {
        left: 48%;
    }

    .home_page7 .idxpneList .owl-next {
        right: 48%;
    }

    .honerBox .honerList .owl-carousel .owl-prev,
    .honerBox .honerList .owl-carousel .owl-next {
        top: auto;
        bottom: 2%;
        margin-left: 0;
    }

    .honerBox .honerList .owl-carousel .owl-prev {
        left: 48%;
    }

    .honerBox .honerList .owl-carousel .owl-next {
        right: 48%;
    }

    .newsinfo .newsCon .newsDes {
        padding-left: 2%;
    }

    .home_page2 .txtBox .distabcel .listBox li a {
        font-size: 22px;
    }

    .menuLocat .menu {
        width: 83%;
    }

    .menuLocat .location {
        width: 17%;
    }

    .w1400 {
        padding-left: 3%;
        padding-right: 3%;
    }
}

@media(max-width:1300px) {
    .home_page2 .txtBox .distabcel .listBox li a img {
        max-width: 30px;
    }

    .home_page2 .txtBox .distabcel .listBox li a {
        font-size: 20px;
    }
}

@media(max-width:1280px) {
    .w1400 {
        padding: 0 2%;
    }

    .nav_btn {
        display: block;
    }

    .top {
        background: #fff;
        -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        border-bottom: 1px solid #e5e5e5;
        position: static;
    }

    .top {
        background: #fff;
        -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    }

    .top .logo .haCLogo {
        display: none;
    }

    .top .logo .noCLogo {
        display: block;
    }

    .top .nav li>a {
        color: #333;
    }

    .top .nav li:hover>a:before,
    .top .nav li.on>a:before {
        background-image: url(../images/icon1_1.png);
    }

    .top .open-search {
        background: url(../images/search2.png) no-repeat center center;
    }

    .top .otherBox .shares {
        color: rgba(51, 51, 51, .66);
    }

    .top .open-search-show::before,
    .top .open-search-show::after {
        background: #333;
    }

    .top .otherBox .langBox i {
        background-image: url(../images/lang2.png);
    }

    .top .otherBox .langBox span {
        color: #333;
    }

    .top .otherBox .langBox em {
        color: #333;
    }

    .top .logo {
        /*width: 33.3%;*/
        margin-left: 15px;
    }

    .top .navothBox {
        position: fixed;
        top: 101px;
        width: 100%;
        background: #fff;
        padding: 0;
        z-index: 9999;
        padding-bottom: 5%;
        display: none;
        left: 0;
        bottom: 0;
        overflow: auto;
    }

    .top .otherBox {
        float: none;
        width: 100%;
        padding: 0 5px;
    }

    .top .otherBox .searchBox {
        display: none;
    }

    .top .otherBox .onlinemes {
        display: none;
    }

    .top .otherBox .langBox {
        float: left;
        margin-left: 2%;
    }

    .top .nav {
        float: none;
        min-width: 100%;
        margin-top: 2%;
        margin-left: 0;
        padding: 0 5px;
    }

    .top .nav li {
        float: none;
        min-width: 100%;
        margin-left: 0;
        border-bottom: 1px solid #e5e5e5;
        position: relative;
    }

    .top .nav li:hover>a:before,
    .top .nav li.on>a:before {
        display: none;
    }

    .top .nav li>a:after {
        width: 11px;
        height: 7px;
        content: '';
        background-image: url(../images/icon1_1.png);
        top: 50%;
        margin-top: -3.5px;
        right: 5%;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .top .nav li.openSlide>a:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .top .nav li .subnav {
        position: static;
    }

    .bottom .bottomTop {
        padding-top: 0;
    }

    .bottom .bottomTop .righBox {
        float: none;
        width: 100%;
    }

    .bottom .bottomTop .righBox .bomewm {
        display: none;
    }

    .bottom .bottomTop .righBox .bomnav {
        float: none;
        width: 100%;
    }

    .bottom .bottomTop .righBox .bomnav dl {
        float: none;
        width: 100%;
    }

    .bottom .bottomTop .righBox .bomnav dt {
        margin-bottom: 0;
        line-height: 100px;
        border-bottom: 1px solid rgba(255, 255, 255, .4);
        position: relative;
        padding-left: 2%;
    }

    .bottom .bottomTop .righBox .bomnav dt:after {
        width: 11px;
        height: 7px;
        content: '';
        background-image: url(../images/icon1.png);
        top: 50%;
        margin-top: -3.5px;
        right: 5%;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .bottom .bottomTop .righBox .bomnav dt.openSlide:after {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .bottom .bottomTop .righBox .bomnav dd {
        padding-left: 2%;
        display: none;
    }

    .bottom .bottomTop .leftBox {
        float: none;
        width: 100%;
        text-align: center;
        padding-top: 5%;
    }

    .bottom .bottomTop .bomfrilink {
        padding: 0 2%;
    }

    .bottom .bottomTop .leftBox .onlBtn {
        display: none;
    }

    .bottom .bottomTop .leftBox h5 {
        font-size: 30px;
        margin-bottom: 1%;
    }

    .bottom .bottomTop .leftBox p {
        display: inline-block;
        margin-left: 1%;
    }

    .bottom .bottomTop .leftBox h1 {
        font-size: 32px;
        color: #eb422c;
        line-height: 36px;
        margin-bottom: 2%;
    }

    .bottom .bottomBom {
        line-height: 30px;
        padding: 2%;
    }

    .bottom .bottomBom ul {
        float: none;
    }

    .bottom .bottomBom .copy {
        float: none;
    }

    .home_page6 .idxnewBox .idxnBom .morenews:before {
        display: none;
    }

    .home_ban .BanbBox .itemB {
        width: 33.33%;
    }

    .home_ban .BanbBox .itemB:nth-child(4) {
        border-left: none;
    }

    .home_page2 {
        padding-bottom: 49%;
        background-position: right bottom;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        background-repeat: no-repeat;
        position: relative;
    }

    .home_page2 .txtBox {
        display: block;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        padding: 10% 0;
    }

    .home_page2 .txtBox .distabcel {
        padding: 0 2%;
        display: block;
    }

    .home_page2 .txtBox .distabcel h4 {
        margin-bottom: 3%;
    }

    .home_page2 .txtBox .distabcel .listBox {
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 96%;
    }

    .home_page2 .txtBox .distabcel .listBox li {
        width: 50%;
        padding: 0;
        line-height: 100px;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover {
        /*line-height:100px;*/
        position: static;
        text-align: center;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover img {
        display: initial;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover span {
        display: initial;
    }

    .home_page2 .txtBox .distabcel .listBox li:hover p {
        display: none;
    }

    .home_page3 {
        padding: 7% 0;
    }

    .home_page3 .listBox .leftBox {
        width: 100%;
        float: none;
    }

    .home_page3 .listBox .righBox {
        width: 100%;
        float: none;
    }

    .home_page3 .listBox li {
        width: 33.33%;
        margin-right: 0;
        height: 380px;
        -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
        box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    }

    .home_page3 .listBox .righBox li {
        margin-bottom: 0;
        height: 380px;
    }

    .home_page4 {
        padding-bottom: 55%;
        background-position: center bottom;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain;
        background-repeat: no-repeat;
        position: relative;
    }

    .home_page4 .txtBox {
        display: block;
        width: 100%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        padding: 10% 0 35% 0;
    }

    .home_page4 .txtBox .distabcel {
        display: block;
        padding: 0 2%;
    }

    .home_page4 .txtBox .distabcel .listBox {
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 96%;
        right: auto;
    }

    .home_page4 .txtBox .distabcel h4 {
        margin-bottom: 3%;
    }

    .home_page4 .txtBox .distabcel .listBox li {
        width: 50%;
        padding: 30px 0;
    }

    .home_page4 .txtBox .distabcel .listBox li a p {
        max-height: none;
    }

    .home_page5 {
        padding: 7% 0;
    }

    .home_page5 .view {
        width: 120px;
        line-height: 40px;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev,
    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
        bottom: -10%;
    }

    .home_page6 .idxnewBox .idxnTop {
        padding-left: 0;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox {
        padding-left: 2%;
        width: 50%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide {
        left: 0;
        width: 60%;
    }

    .home_page6 .idxnewBox .idxnTop .righBox {
        width: 50%;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList {
        padding-left: 2%;
    }

    .home_page7 {
        padding: 7% 0;
    }

    .home_page7 .idxpneList .hd a {
        bottom: -40px;
    }

    .menuLocat .menu {
        float: none;
        width: 100%;
    }

    .menuLocat .location {
        float: none;
        width: 100%;
        text-align: left;
    }

    /*  .proinfoTop{padding: 0 2%;}*/
    .proinfoTop .proTabs .bd {
        padding-left: 0;
    }

    .proinfoTop .proTabs .prodesBox {
        position: static;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        width: 100%;
        margin-top: 2%;
    }

    .proinfoTop .proTabs .prodesBox .prolab {
        padding-bottom: 5%;
    }

    .proinfoTop .proTabs .prodesBox .prodes {
        margin-top: 5%;
    }

    .caseinfo,
    .newsinfo {
        padding-top: 70px;
    }

    .newsBox .newsTop {
        padding: 5% 0;
        background: #fff;
    }

    .newsBox .newsTop .bx-pager {
        bottom: 3%;
        left: 45%;
    }

    .newsBox .newsTop li .imgBox {
        float: none;
        width: 100%;
        text-align: center;
    }

    .newsBox .newsTop li .txtBox {
        float: none;
        width: 100%;
        padding: 3% 6% 3% 2%;
    }

    .newsBox .newsTop li .txtBox h1 {
        margin-bottom: 2%;
    }

    .newsBox .newsList li .txtBox p {
        margin-bottom: 0;
    }

    .groupIntro {
        padding: 3.5% 2% 2% 2%;
    }

    .groupIntro .introBox .itemB {
        width: 33.33%;
        margin-right: 0;
    }

    .cultureBox {
        padding: 4% 2% 6% 2%;
    }

    .serprocess,
    .serIdea,
    .alliance,
    .complaint,
    .qusfile,
    .maintenance {
        padding: 4% 2%;
    }

    .home_page5 .idxproBox .bd .idxproList li {
        width: 49%;
        margin-right: 2%;
        padding: 5%;
        float: left;
        margin-bottom: 2%;
    }

    .home_page5 .idxproBox .bd .idxproList li .imgBox {
        min-height: 155px;
        line-height: 155px;
    }

    .home_page5 .idxproBox .bd .idxproList li h5 {
        min-height: 32px;
    }

    .home_page5 .idxproBox .bd .idxproList li p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        min-height: 48px;
    }

    .home_page5 .idxproBox .bd .idxproList li:nth-child(2n) {
        margin-right: 0;
    }

    .home_page5 .idxproBox .bd .idxproList li:hover {
        margin-top: 0;
    }

}

@media(min-width:1024px) {
    .top.onslide .nav li.on>a {
        color: #00a0d9;
    }

}

@media(max-width:768px) {
    .top {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    .top .logo {
        line-height: 55px;
    }

    .top .logo img {
        width: 150px;
    }

    .nav_btn {
        margin: 10px 15px 0;
    }

    .top .navothBox {
        top: 56px;
    }

    /*  .top .otherBox .langBox dl{bottom: -35px;}*/
    .home_page2 {
        padding-bottom: 67%;
    }

    .home_page2 .txtBox {
        padding-bottom: 25%;
    }

    .home_page4 {
        padding-bottom: 70%;
    }

    .home_page6 .idxnewBox .idxnBom {
        background: url(../images/page6bg.jpg);
        background-position: left bottom;
        padding: 5% 0;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList {
        float: none;
        width: 100%;
        background-image: none;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList li {
        width: 100%;
        float: none;
        margin-bottom: 5%;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList li h5 {
        margin-bottom: 0;
        font-weight: bold;
    }

    .home_page6 .idxnewBox .idxnBom .morenews {
        position: static;
        margin-top: 0;
        text-align: left;
        padding-left: 2%;
    }

    .top .nav li,
    .top .otherBox .shares,
    .top .otherBox .langBox span,
    .top .otherBox .langBox em,
    .bottom .bottomTop .righBox .bomnav dt {
        line-height: 50px;
    }

    .home_page2 .txtBox .distabcel h5,
    .home_page3 .titBox h5,
    .home_page4 .txtBox .distabcel h5,
    .home_page5 .titBox h5,
    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h5,
    .bottom .bottomTop .leftBox h5 {
        font-size: 26px
    }

    .home_page2 .txtBox .distabcel h1,
    .home_ban .BanbBox .itemB h5,
    .home_page3 .titBox h1,
    .home_page4 .txtBox .distabcel h1,
    .home_page5 .titBox h1,
    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h1,
    .home_page7 h1,
    .groupIntro .introBox .itemB h5 {
        font-size: 30px;
    }

    .home_page2 .txtBox .distabcel h4,
    .home_page3 .listBox li .conBox h5,
    .home_page4 .txtBox .distabcel h4,
    .home_page5 .idxproBox .hd li,
    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li h5,
    .home_page6 .idxnewBox .idxnBom .idxnewList li h5 {
        font-size: 18px;
    }

    .home_ban .BanbBox .itemB p,
    .home_page5 .idxproBox .bd .idxproList li p,
    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li p,
    .home_page6 .idxnewBox .idxnBom .idxnewList li p,
    .groupIntro .introBox .itemB p {
        font-size: 14px;
    }

    .home_page5 .idxproBox .bd .idxproList li h5 {
        font-size: 16px;
    }

    .more {
        width: 140px
    }

    .view_now {
        width: 140px
    }

    .home_page2 .txtBox .distabcel .listBox li a {
        font-size: 18px;
    }

    .home_page3 .listBox .righBox li,
    .home_page3 .listBox li {
        height: 300px;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev,
    .home_page7 .idxpneList .owl-prev,
    .honerBox .honerList .owl-carousel .owl-prev {
        left: 42%;
    }

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next,
    .home_page7 .idxpneList .owl-next,
    .honerBox .honerList .owl-carousel .owl-next {
        right: 42%;
    }

    .prodlBox .item .itemList li {
        width: 49%;
        margin-right: 2%;
    }

    .prodlBox .item .itemList li:nth-child(4n) {
        margin-right: 2%;
    }

    .prodlBox .item .itemList li:nth-child(2n) {
        margin-right: 0;
    }

    .moreproD li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    .proinfoTop .proTabs .prodesBox h1 {
        font-size: 28px;
    }

    .casePage .caseList li {
        width: 49%;
        margin-right: 2%;
    }

    .casePage .caseList li:nth-child(3n) {
        margin-right: 2%;
    }

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

    .caseinfo .caseCon .caseDes h1 {
        font-size: 24px;
    }

    .caseinfo .caseCon .caseDes .item h5 {
        font-size: 18px;
        line-height: 35px;
        width: 140px;
    }

    .caseinfo .caseCon .caseDes .item p,
    .caseinfo .caseCon .caseDes .item {
        font-size: 16px;
        line-height: 24px;
    }

    .newsBox .newsList li {
        width: 49%;
        margin-right: 2%;
    }

    .newsBox .newsList li:nth-child(4n) {
        margin-right: 2%;
    }

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

    .newsinfo .newsCon .newsDes {
        float: none;
        width: 100%;
        padding: 0 2%;
    }

    .newsinfo .newsCon .popularNew {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 5%;
    }

    .newsinfo .newsCon .popularNew li {
        padding-bottom: 3%;
        margin-bottom: 2%;
    }

    .newsinfo .newsCon .popularNew li .imgBox {
        margin-bottom: 2%;
    }

    .info_pn span:nth-child(1),
    .info_pn span:nth-child(2) {
        float: none;
        display: block;
    }

    .newsinfo .newsCon .newsDes .newsItop h5 {
        font-size: 24px;
    }

    .newsinfo .newsCon .newsDes .newsIbom p {
        font-size: 16px;
        line-height: 24px;
    }

    .home_page6 .idxnewBox .idxnTop {
        height: auto;
            margin-top: 30px;
    }

    .home_page6 .idxnewBox .idxnTop .righBox {
        background-image: none !important;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .titBox {
        padding-top: 2%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h1 {
        line-height: 35px;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li h5,
    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .groupIntro h1,
    .historyBox h1,
    .historyBox .hiscon .hisYear .item,
    .cultureBox h1,
    .Gmembers h1,
    .socialBox .sociTop h5,
    .socialBox .sociMid h5,
    .contactBox .tactTxt h1,
    .standard h1,
    .serprocess h1,
    .serDot .w1400>h1,
    .serIdea h1,
    .alliance h1,
    .qusfile h1,
    .maintenance h1,
    .quotation h1,
    .disclosure h1,
    .mainTit,
    .parkingF1Box .conBox h5 {
        font-size: 26px;
    }

    .historyBox .hiscon .hisYear .item.slick-current,
        {
        font-size: 28px;
    }

    .historyBox .hiscon .hisInfo .item h5 {
        font-size: 32px;
    }

    .Gmembers .membList .item .txtBox h5 {
        font-size: 18px;
    }

    .Gmembers .membList .item .txtBox {
        display: block;
        width: 100%;
        border-right: none;
        margin-bottom: 2%;
        border-bottom: 1px solid #e7e7e7;
        padding-bottom: 2%;
    }

    .Gmembers .membList .item .timeBox {
        display: block;
        width: 100%;
    }

    .socialBox .sociMid li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    .socialBox .sociMid li .iconB {
        margin-bottom: 1.5%;
    }

    .socialBox .sociBom li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    .socialBox .sociBom li .imgBox {
        text-align: center;
    }

    .socialBox .sociBom li .txtBox {
        min-height: auto;
        padding: 2%;
    }

    .socialBox .sociBom li .txtBox h5 {
        line-height: 28px;
    }

    .socialBox .sociBom li .txtBox time {
        margin-bottom: 1.5%;
    }

    .contactBox .tactTxt .tactTop .item {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .contactBox .tactTxt .tactTop .item:nth-child(2n) {
        float: none;
    }

    .contactBox .tactTxt .tactTop .item li {
        margin-bottom: 2%;
    }

    .contactBox .tactTxt .tactTop .item h5 {
        font-size: 20px;
        margin-bottom: 2%;
    }

    .contactBox .tactTxt .tactBom li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1.5%;
    }

    .contactBox .tactTxt .tactBom li h5 {
        font-size: 20px;
        margin-bottom: 1%;
    }

    .standard .standTop .imgBox {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-bottom: 2%;
    }

    .standard .standTop .txtBox {
        display: block;
        width: 100%;
        padding: 0 2%;
        padding-bottom: 2%;
    }

    .standard .standBom .standTab {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .standard .standBom .standTab:nth-child(2n) {
        float: none;
    }

    .serprocess .item {
        background: url(../images/ocesbg.png) center center;
    }

    .serprocess .item .imgBox {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 2%;
    }

    .serprocess .item .txtBox {
        display: block;
        width: 100%;
        padding: 0 2%;
    }

    .serprocess .item .txtBox h5 {
        margin-bottom: 2%;
    }

    .serDot .dotBox .dotLeft {
        float: none;
        width: 100%;
    }

    .serDot .dotBox .dotLeft .pcimg {
        display: none;
    }

    .serDot .dotBox .dotLeft .hd {
        display: none;
    }

    /* position: absolute;{font-size:12px;color: #fff!important;} */

    .serDot .dotBox .dotRigh {
        float: none;
        width: 100%;
        margin-top: 4%;
    }

    .serDot .dotBox .dotRigh .bd .item h1 {
        padding: 0 2%;
        line-height: 50px;
        font-size: 20px;
    }

    .serDot .dotBox .dotRigh .bd .item ul {
        padding: 0 2%;
    }

    .serDot .dotBox .dotRigh .bd .item li {
        padding: 2% 0;
    }

    .serDot .dotBox .dotRigh .bd .item li h5 {
        margin-bottom: 2%;
        font-size: 18px;
    }

    .serDot .dotBox .dotRigh .bd .item li p {
        font-size: 14px;
    }

    .alliance .anceBox .anceMid .contBox {
        float: none;
        width: 100%;
    }

    .alliance .anceBox .anceMid .contBox .imgBox {
        text-align: center;
        margin-bottom: 15px;
    }

    .alliance .anceBox .anceMid .contBox.righBox {
        float: none;
        margin-top: 20px;
    }

    .complaint .bd .itemForm li {
        float: none;
        width: 100%;
    }

    .complaint .bd .itemForm li:nth-child(even) {
        float: none;
    }

    .qusfile .topSearch .seleBox {
        float: none;
    }

    .qusfile .topSearch .inptBox {
        float: none;
        width: 100%;
        margin-left: 0;
        margin: 2% 0;
    }

    .qusfile .topSearch .searBtn {
        width: 120px;
        float: none;
        display: block;
    }

    .qusfile .qfList li p,
    .qusfile .qfList li span,
    .qusfile .qfList li time {
        font-size: 14px;
    }

    .qusfile .qfList li p {
        width: -webkit-calc(100% - 150px);
        width: -moz-calc(100% - 150px);
        width: calc(100% - 150px);
        /* overflow: hidden; */
        /* text-overflow: ellipsis; */
        /* white-space: nowrap; */
    }

    .qusfile .qfList li time {
        padding-left: 25px;
    }

    .maintenance .guarantee .imgBox {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 2%;
    }

    .maintenance .guarantee .txtBox {
        float: none;
        width: 100%;
    }

    .maintenance .guarantee .txtBox li {
        margin-bottom: 4%;
    }

    .baseData {
        background: url(../images/datbg.jpg) center center;
    }

    .baseData .dataBox .conBox {
        float: none;
        width: 100%;
    }

    .quotation .shares .mainstay {
        display: block;
        width: 100%;
        border-right: none;
    }

    .quotation .shares .othestay {
        display: block;
        width: 100%;
        padding-left: 0;
    }

    .disclosure li p {
        width: 72%;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }

    .disclosure li time {
        font-size: 14px;
    }

    .baseData .dataBox .conBox .item h5 {
        /*overflow: hidden;text-overflow: ellipsis;white-space: nowrap;*/
        font-size: 14px;
        float: none;
        width: 100%;
    }

    .baseData .dataBox .conBox .item p {
        font-size: 14px;
        float: none;
        width: 100%;
    }

    .baseData .dataBox .conBox .item {
        line-height: 40px;
    }

    .propagate {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        margin-bottom: 2%;
    }

    .parkingF1Box .conBox {
        float: none;
        width: 100%;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        margin-bottom: 2%;
    }

    .parkingF1Box .conBox.righBox {
        float: none;
    }

    .parkingF2 {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .parkingF2Box .leftBox {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .parkingF2Box .leftBox h5 {
        font-size: 24px;
        line-height: 30px;
    }

    .parkingF2Box .righBox {
        float: none;
        width: 100%;
        padding-right: 0;
    }

    .parkingF3 .pf3tit {
        width: 100%;
    }

    .parkingF3 .pf3tit h5 {
        font-size: 18px;
    }

    .parkingF3 .parkingF3f4 .ListBox li {
        width: 49%;
        margin-right: 2%;
        background: #fff;
    }

    .parkingF3 .parkingF3f4 .ListBox li:nth-child(2n) {
        margin-right: 0;
    }

    .parkingF3 .parkingF3f4 .ListBox li .imgBox {
        text-align: center;
    }

    .BannerBox .queryBox {
        width: 90%;
    }

    .queryF1Box .hd {
        float: none;
        width: 100%;
        position: relative;
    }

    .queryF1Box .bd {
        float: none;
        width: 100%;
        position: fixed;
        left: 0;
        bottom: -100%;
        z-index: 99;
        -webkit-transition: 1s;
        -o-transition: 1s;
        -moz-transition: 1s;
        transition: 1s;
    }

    .queryF1Box .bd span {
        display: block;
        font-size: 20px;
        float: right;
        margin-right: 30px;
    }

    /*  .queryF1Box .hd li{display: flex;align-items: center}
  .queryF1Box .hd li h5,
  .queryF1Box .hd li p,
  .queryF1Box .hd li span{width: 100%;font-size: 14px;line-height: 25px;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;}
  .queryF1Box .hd li p{padding-left:15px;}
  .queryF1Box .hd li span{width: 15%;position: absolute;right: 0;}*/
    .recruitF1 .welfareI .item {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
    }

    .recruitF1 .welfareI .item:nth-child(2n) {
        margin-right: 0;
    }

    .recruitF1 .recruitBox li {
        width: 49%;
        margin-right: 2%;
    }

    .recruitF1 .recruitBox li:nth-child(5n) {
        margin-right: 2%;
    }

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

    .recrupop .recrupopCon {
        width: 80%;
    }

    .recruitF2 .schreci li .imgBox {
        display: block;
        width: 100%;
        margin-bottom: 2%;
    }

    .recruitF2 .schreci li .txtBox {
        display: block;
        width: 100%;
    }

    .scanBox {
        left: 5px;
    }

    .recruitF2 .schreci li .txtBox h5 {
        font-size: 18px;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }

    .cicyparkF1 li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        background-image: none;
    }

    .cicyparkF2 .cpF2Box {
        background-image: none;
    }

    .cicyparkF2 .cpF2Box .cpF2BoxTop {
        padding-bottom: 0;
    }

    .cicyparkF2 .cpF2Box .cpF2BoxBom {
        padding-top: 0;
    }

    .cicyparkF2 .cpF2Box .cpF2BoxTop .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        background-image: none;
    }

    .cicyparkF2 .cpF2Box .cpF2BoxBom .item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        background-image: none;
    }

    .cicyparkF4 {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .cicyparkF4 li {
        float: none;
        width: 100%;
        margin-right: 0 !important;
    }

    .cicyparkF4 li:hover {
        top: 0;
    }

    .cicyparkF4 li .beBox {
        padding: 42px 0;
    }

    .cicyparkF4 li .beBox .iconB {
        margin-bottom: 2%;
    }

    .cicyparkF4 li:nth-child(7) {
        width: 100%;
    }

    .cicyparkF4 li:nth-child(7) .beBox {
        padding: 42px 0;
    }

    .cicyparkF4 li:nth-child(7) .beBox .iconB {
        display: block;
        margin-bottom: 2%;
    }

    .cicyparkF4 li:nth-child(7) .beBox h5 {
        margin-left: 0;
        display: block;
    }

    .cicyparkF5 .hd li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }

    .cicyparkF5 .hd li p {
        font-size: 18px;
    }

    .cicyparkF5 .bd .insideroad .leftBox .titBox h1,
    .cicyparkF5 .bd .outsideroad .TopBox .leftBox h1,
    .cicyparkF5 .bd .outsideroad .BomBox h1,
    .cicyparkF5 .bd .cityroad .TopBox .txtBox h1,
    .cicyparkF5 .bd .cityroad .BomBox h1,
    .cicyparkF5 .bd .newenergy .TopBox .leftBox h1,
    .cicyparkF5 .bd .newenergy .BomBox .txtBox h5,
    .cicyparkF7 .txtBox h1,
    .cicyparkF9 h1,
    .cicyparkF10 h1,
    .cicyparkF11 h1 {
        font-size: 22px;
    }

    .cicyparkF5 .bd .insideroad .leftBox {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .cicyparkF5 .bd .insideroad .righBox {
        float: none;
        width: 100%;
        text-align: center;
    }

    .cicyparkF5 .bd .outsideroad .TopBox .leftBox {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .cicyparkF5 .bd .outsideroad .TopBox .righBox {
        float: none;
        width: 100%;
        text-align: center;
    }

    .cicyparkF5 .bd .outsideroad .BomBox .leftBox {
        display: block;
        width: 100%;
        text-align: left;
    }

    .cicyparkF5 .bd .outsideroad .BomBox .midBox {
        display: block;
        width: 100%;
        margin: 2% 0
    }

    .cicyparkF5 .bd .outsideroad .BomBox .righBox {
        display: block;
        width: 100%;
    }

    .cicyparkF5 .bd .outsideroad .BomBox .leftBox p,
    .cicyparkF5 .bd .outsideroad .BomBox .righBox p {
        line-height: 30px;
    }

    .cicyparkF5 .bd .cityroad .BomBox li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        text-align: center;
    }

    .cicyparkF5 .bd .newenergy .TopBox .leftBox {
        float: none;
        width: 100%;
        margin-bottom: 2%;
    }

    .cicyparkF5 .bd .newenergy .TopBox .righBox {
        float: none;
        width: 100%;
    }

    .cicyparkF5 .bd .newenergy .BomBox .imgBox {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 2%;
    }

    .cicyparkF5 .bd .newenergy .BomBox .txtBox {
        display: block;
        width: 100%;
    }

    .cicyparkF5 .bd .newenergy .BomBox .txtBox p {
        line-height: 30px;
    }

    .cicyparkF7 .txtBox {
        display: block;
        width: 100%;
        padding-top: 3%;
    }

    .cicyparkF7 .imgBox {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 2%;
    }

    .cicyparkF10 li {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
        min-height: auto;
    }

    .cicyparkF10 li .iconB {
        margin-bottom: 2%;
    }

    .cicyparkF10 li h5 {
        margin-bottom: 1.5%;
    }

    .cicyparkF11 .typical .bx-wrapper {
        padding-bottom: 30px;
    }

    .cicyparkF11 .typical li .imgBox {
        float: none;
        width: 100%;
        margin-bottom: 2%;
        text-align: center;
    }

    .cicyparkF11 .typical li .txtBox {
        float: none;
        width: 100%;
        padding: 6% 3% 3% 3%;
    }

    .mesBoxpup .mesform {
        width: 80%;
    }

    .complaint .bd .itemForm .btnBox a {
        margin-bottom: 15px;
    }

    .top .nav li .subnav.prosubnav dl {
        float: none;
        width: auto;
        overflow: hidden;
    }

    .top .nav li .subnav.prosubnav dl dt>img {
        float: left;
        margin-right: 10px;
    }

    .top .nav li .subnav.prosubnav dl dt h5 a {
        line-height: 53px;
    }

    .top .nav li .subnav.prosubnav dl dd {
        padding: 5px 0 5px 15px;
    }

    /*  .top .nav li .subnav.prosubnav dl:nth-child(2n+1){clear: left;}*/
    .home_page7 .idxpneList li a {
        text-align: center;
    }

    .newsBox .newsTop .bx-pager {
        bottom: -1%;
    }

    .serprocess .item .txtBox li {
        min-height: 123px;
    }

    .caseinfo .caseCon {
        padding-top: 60px;
    }

    .SolutionF3 .List {
        padding: 0 !important;
    }

    .SolutionF3 .List .owl-carousel {
        display: block;
    }

    .SolutionF3 .List .btns {
        display: none;
    }

    .SolutionF3 .List li {
        display: inline-block;
        font-size: 14px;
        padding: 5px;
        width: 49.49%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide {
        width: 100%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li h5 {
        margin-bottom: 2%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide li p {
        line-height: 20px;
    }

    .cicyparkF3 .titImg {
        width: 100%;
        overflow-x: auto;
    }

    .cicyparkF3 .titImg img {
        width: 1400px;
        max-width: none;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox {
        width: 40%;
    }

    .home_page6 .idxnewBox .idxnTop .righBox {
        width: 60%;
    }
}

@media(max-width:640px) {

    .more,
    .view_now,
    .home_page5 .idxproBox .hd li {
        line-height: 40px;
    }

    .home_page2 .txtBox .distabcel .listBox li {
        line-height: 50px;
    }

    .home_page4 .txtBox .distabcel .listBox li {
        padding: 15px 0;
    }

    .home_page5,
    .home_page7 {
        padding-bottom: 15%;
    }

    .proinfoTop .proTabs .hd li {
        margin-bottom: 2%;
    }

    .newsBox .newsTop li .txtBox h1 {
        font-size: 20px;
    }

    .newsBox .newsTop li .txtBox p {
        line-height: 24px;
    }

    .historyBox .hiscon .hisYear .item {
        padding-left: 10%;
    }

    .qusfile .qfList li {
        float: none;
        width: 100%;
    }

    .qusfile .qfList li:nth-child(even) {
        float: none;
    }

    .quotation .shares .othestay .item .lattice {
        width: 25%;
    }
}

@media(max-width:480px) {

    .home_page3 .listBox .righBox li,
    .home_page3 .listBox li {
        height: 250px;
    }

    .home_page3 .listBox li p {
        max-height: 160px;
        overflow: hidden;
    }

    .home_ban .BanbBox .itemB p {
        /*display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;*/
        min-height: 60px;
    }

    .home_page4 .txtBox .distabcel .listBox li a p {
        font-size: 12px;
        line-height: 1.6;
    }

    .home_page2 .txtBox .distabcel .listBox li a {
        font-size: 14px;
    }

    .home_page2 .txtBox .distabcel h1,
    .home_ban .BanbBox .itemB h5,
    .home_page3 .titBox h1,
    .home_page4 .txtBox .distabcel h1,
    .home_page5 .titBox h1,
    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h1,
    .home_page7 h1 {
        font-size: 26px;
    }

    .home_page6 .idxnewBox .idxnBom .morenews {
        width: 50%;
    }

    .home_page4 .txtBox {
        padding-bottom: 85%;
    }

    .menuLocat .menu li a {
        font-size: 16px;
    }

    .prodlBox .item h1 {
        font-size: 18px;
    }

    .prodlBox .item .itemList h3,
    .prodlBox .item .itemList li h5 {
        font-size: 16px
    }

    .prodlBox .item .itemList li p {
        font-size: 14px;
    }
.prodlBox .item .itemList li .imgBox{
        height: 215px;
    overflow: hidden;
    line-height: 215px;
}
    .casePage .caseList li {
        width: 100%;
        margin-right: 0;
    }

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

    .newsBox .newsList li {
        width: 100%;
        margin-right: 0;
    }

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

    .newsBox .newsList li .txtBox h5 {
        margin-bottom: 3%;
        font-size: 18px;
    }

    .groupIntro .introBox .itemB p {
        min-height: 60px;
    }

    .parkingF1Box .conBox ul {
        padding: 0;
    }

    .recruitF1 .recruitBox li h5 {
        font-size: 20px;
    }

    .cicyparkF11 .typical li .txtBox .bomB .leftB {
        width: 100%;
        float: none;
    }

    .cicyparkF11 .typical li .txtBox .bomB .righB {
        width: 100%;
        float: none;
    }
}

@media(max-width:380px) {
    .home_page2 .txtBox .distabcel .listBox {
        margin-top: 18%;
    }

    .prodlBox .item .itemList li {
        width: 100%;
        margin-right: 0;
    }

    .prodlBox .item .itemList li:nth-child(4n) {
        margin-right: 0;
    }
}


.dl,
.dl dd {
    margin: 0;
    padding: 0;
}

/* banner */
.Banner_Wrap {
    position: relative;
}

.Banner_Wrap .pc {
    display: none;
    height: 700px;
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.Banner_Wrap .wap img {
    width: 100%;
}

.Banner_Wrap .BannerBox {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.Banner_Wrap .BannerBox .tb {
    display: table;
    width: 100%;
    height: 100%;
    color: #fff;
}

.Banner_Wrap .BannerBox .tbc {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
}

.Banner_Wrap .BannerBox .h3 {
    font-size: 18px;
    font-weight: normal;
}

.Banner_Wrap .BannerBox .txt {
    padding: 10px 0;
    font-size: 14px;
}

.innerBan.Banner_Wrap .BannerBox .txtBox {
    text-align: center;
}

.innerBan.Banner_Wrap .BannerBox .h3 {
    font-size: 38px;
    letter-spacing: 10px;
}

.innerBan.Banner_Wrap .BannerBox .txt {
    max-width: none;
    display: inline-block;
    padding: 0 35px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #fff;
    line-height: 30px;
    font-size: 22px;
    letter-spacing: 3px;
}

.cityparkBan.Banner_Wrap .BannerBox .txtBox {
    text-align: left;
}

.cityparkBan.Banner_Wrap .BannerBox .h3 {
    font-size: 24px;
}

.cityparkBan.Banner_Wrap .BannerBox .txt {
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    border: none;
    padding: 0 !important;
    font-size: 16px;
}

.Banner_Wrap .BannerBox .h1 {
    font-size: 18px;
    font-weight: normal;
}

.Banner_Wrap .BannerBox .txt {
    padding: 10px 0;
    font-size: 14px;
}

.innerBan.Banner_Wrap .BannerBox .txtBox1 {
    text-align: left;
    padding-bottom: 5%
}

.innerBan.Banner_Wrap .BannerBox .h1 {
    font-size: 38px;
    letter-spacing: 10px;
    font-weight: bold
}

.innerBan.Banner_Wrap .BannerBox .dl1 {
    max-width: none;
    display: inline-block;
    line-height: 30px;
    font-size: 22px;
    letter-spacing: 3px;
}

.innerBan.Banner_Wrap .BannerBox .dl1 dd {
    font-size: 24px;
    display: inline-block;
    margin-right: 20px;
    border-bottom: 4px solid transparent;
    padding-bottom: 10px;
    margin-left: 0;
}

.innerBan.Banner_Wrap .BannerBox .dl1 dd.on,
.innerBan.Banner_Wrap .BannerBox .dl1 dd:hover {
    border-color: #fff
}

.innerBan.Banner_Wrap .BannerBox .dl1 dd:last-child {
    margin-right: 0
}

.innerBan.Banner_Wrap .BannerBox .dl1 dd a {
    color: #fff
}

.Banner_Wrap .BannerBoxTFonst .txt {
    padding: 10px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.Banner_Wrap .BannerBox .more {
    border-color: #fff;
    color: #fff;
    width: 120px;
    line-height: 35px;
}

.Banner_Wrap .BannerBox .more:hover {
    border-color: #033470;
}

.Banner_Wrap .BannerBox .view_now {
    border-color: #fff;
    color: #fff;
    width: 120px;
    line-height: 35px;
}

.Banner_Wrap .BannerBox .view_now:hover {
    border-color: #033470;
}

@media(min-width:768px) {
    .serDot .dotBox .dotLeft .wapimg {
        display: none;
    }

    .Banner_Wrap .BannerBox .h3 {
        font-size: 40px;
    }

    .innerBan.Banner_Wrap .BannerBox .h3 {
        font-size: 80px;
        font-weight: bold;
    }

    .cityparkBan.Banner_Wrap .BannerBox .h3 {
        font-size: 68px;
    }

    .innerBan.Banner_Wrap .BannerBox .txt {
        font-size: 28px;
        line-height: 70px;
    }

    .cityparkBan.Banner_Wrap .BannerBox .txt {
        font-size: 26px;
    }

    .Banner_Wrap .BannerBox .txt {
        font-size: 16px;
        max-width: 740px;
        padding: 38px 0;
    }

    .Banner_Wrap .BannerBoxTFonst .txt {
        padding: 15px 0;
        font-size: 20px;
    }

    .Banner_Wrap .BannerBox .h4 {
        font-size: 20px;
    }

}

@media(min-width:1024px) {
    .Banner_Wrap .BannerBox .more {
        width: 150px;
        line-height: 40px;
    }

    .Banner_Wrap .BannerBox .view_now {
        width: 150px;
        line-height: 40px;
    }

    .Banner_Wrap .wap {
        display: none;
    }

    .Banner_Wrap .pc {
        display: block;
    }

    .Banner_Wrap .BannerBox .h3 {
        font-size: 60px;
    }

    .Banner_Wrap .BannerBox .txt {
        font-size: 18px;
        padding: 38px 0 50px;
    }

    .Banner_Wrap .BannerBoxTFonst .txt {
        padding: 10px 0 0;
        font-size: 26px;
    }

    .innerBan.Banner_Wrap .BannerBox .h1 {
        font-size: 58px;
    }

    .Banner_Wrap .BannerBox .txt {
        font-size: 18px;
        padding: 38px 0 50px;
    }

    .Banner_Wrap .BannerBox .h4 {
        font-size: 30px;
    }

}

@media (max-width: 768px) {
    .innerBan.Banner_Wrap .BannerBox .h1 {
        font-size: 30px;
    }

    .Banner_Wrap .BannerBox .txt1 {
        font-size: 16px;
        max-width: 740px;
        padding: 38px 0;
    }

    .innerBan.Banner_Wrap .BannerBox .txt1 {
        font-size: 28px;
        line-height: 70px;
    }

    .innerBan.Banner_Wrap .BannerBox .dl1 dd {
        font-size: 18px;
        display: inline-block;
        margin-right: 10px;
        border-bottom: 2px solid transparent;
        padding-bottom: 5px;
        margin-left: 0;
    }
}

/* banner */

.Main_Title {}

.Main_Title .h3 {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    text-align: center;
}


@media(min-width:768px) {
    .Main_Title .h3 {
        font-size: 22px;
    }
}

@media(min-width:1024px) {
    .Main_Title .h3 {
        font-size: 34px;
    }
}

.MainCur .menuLocat .location {
    width: auto;
}

.MainCur .menuLocat {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* 解决方案.shtml */
.Solution {}

.SolutionF1T {
    position: relative;
    z-index: 4;
}

.SolutionF1 {
    padding: 30px 0;
}

.SolutionF1 .txtBox {
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.SolutionF1 .txtBox .h4 {
    font-weight: normal;
    font-size: 15px;
    color: #333;
}

.SolutionF1 .txtBox .txt {
    padding-top: 10px;
    max-width: 680px;
    margin: 0 auto;
}

.SolutionF1T {
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.SolutionF1 .ConBox {
    background: #fff;
    margin: 5% 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.SolutionF1 .ConBox .imgBox {
    width: 55%;
    display: inline-block;
    vertical-align: middle;
}

.SolutionF1 .ConBox .textB {
    width: 44.5%;
    display: inline-block;
    vertical-align: middle;
    padding: 0 5% 0 3%;
}

.SolutionF1 .ConBox .textB h5 {
    line-height: 36px;
    font-size: 24px;
    font-weight: normal;
    padding-bottom: 5%;
    position: relative;
    margin-bottom: 5%;
}

.SolutionF1 .ConBox .textB h5:before {
    width: 50px;
    height: 3px;
    content: '';
    background: #00a0da;
    position: absolute;
    bottom: 0;
    left: 0;
}

.SolutionF1 .ConBox .textB p {
    font-size: 16px;
    line-height: 28px;
    color: #999999;
}

@media(max-width:768px) {
    .SolutionF1 .ConBox .imgBox {
        width: 100%;
        display: block;
        margin-bottom: 2%;
    }

    .SolutionF1 .ConBox .textB {
        width: 100%;
        display: block;
    }
}

.SolutionF1 .BimgBox .wap {}

.SolutionF1 .BimgBox .pc {
    display: none;
    background: no-repeat center;
    position: relative;
    z-index: 2;
    height: 850px;
    margin-top: -100px;
}

.SolutionF1 .BimgBox .pc ul li {
    display: block;
    width: 1px;
    height: 1px;
    position: absolute;
}

.SolutionF1 .BimgBox .pc ul li .liwap {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    display: inline-block;
    cursor: pointer;
}

.SolutionF1 .BimgBox .pc ul li .liwap:hover {
    margin-top: -5px;
}

.SolutionF1 .BimgBox .pc ul li .liwap {
    position: relative;
}

.SolutionF1 .BimgBox .pc .icon {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #03a1d9;
    -webkit-box-shadow: 0 0 10px #bce5f5;
    -moz-box-shadow: 0 0 10px #bce5f5;
    box-shadow: 0 0 10px #bce5f5;
}

.SolutionF1 .BimgBox .pc .icon img {
    vertical-align: middle;
}

.SolutionF1 .BimgBox .pc .icontxt {
    white-space: nowrap;
    text-align: center;
    padding-top: 5px;
    font-size: 14px;
}

.SolutionF1 .BimgBox .pc .titleh3 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    color: #fff;
    margin-top: -30px;
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.SolutionF1 .BimgBox .pc .titleh3 .h3 {
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.SolutionF1 .BimgBox .pc .titleh3 .h3 .i {
    display: block;
    width: 4px;
    height: 25px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background: #fff;
    margin: 15px auto 0;
}

@media(min-width:1024px) {
    .SolutionF1 {
        padding: 60px 0;
    }

    .SolutionF1 .txtBox {
        font-size: 16px;
    }

    .SolutionF1 .txtBox .h4 {
        font-size: 24px;
    }

    .SolutionF1 .txtBox .txt {
        padding-top: 30px;
    }

    /*  .proinfoTop .proTabs .bd .item{width: 52%;}
  .proinfoTop .proTabs{padding-top:8%;}*/

}

@media(min-width:1366px) {
    .SolutionF1 .BimgBox .wap {
        display: none;
    }

    .SolutionF1 .BimgBox .pc {
        display: block;
    }

}


.SolutionF2 {
    position: relative;
    min-height: 100px;
    overflow: hidden;
    background: #f8f8f8;
}

.SolutionF2 .F2img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
}

.SolutionF2 .SolutionF2Box {
    position: relative;
    z-index: 3;
    padding: 30px 0;
}

.SolutionF2 .Main_Title .h3 {
    color: #fff;
}


.SolutionF2 .List {
    padding-top: 25px;
}

.SolutionF2 .List ul li {
    margin-bottom: 15px;
    position: relative;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SolutionF2 .List ul li .libox {
    min-height: 120px;
    padding: 30px;
    position: relative;
    padding-right: 40px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background: #fff url('../images/slibg01.jpg') no-repeat right top;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.SolutionF2 .List ul li .libox .imgbox {
    position: absolute;
    right: 40px;
    top: 60px;
}

.SolutionF2 .List ul li .libox .h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    padding-bottom: 10px;
}

.SolutionF2 .List ul li .libox dd {
    font-size: 14px;
    padding-bottom: 5px;
}

.SolutionF2 .List ul li:hover {
    top: -10px;
}

@media(min-width:640px) {
    .SolutionF2 .List ul {
        font-size: 0;
        margin: 0 -5px;
    }

    .SolutionF2 .List ul li {
        display: inline-block;
        width: 50%;
        font-size: 14px;
        padding: 0 5px;
    }
}


@media(min-width:768px) {
    .SolutionF2 .List ul li {
        width: 33.33%;
    }
}

@media(min-width:1024px) {
    .SolutionF2 .List {
        padding-top: 50px;
    }

    .SolutionF2 {
        min-height: 300px;
    }

    .SolutionF2 .SolutionF2Box {
        padding: 80px 0 55px;
    }

    .SolutionF2 .List ul {
        margin: 0 -11px;
    }

    .SolutionF2 .List ul li {
        width: 25%;
        padding: 0 11px;
        margin-bottom: 22px;
    }

    .SolutionF2 .List ul li .libox .h3 {
        font-size: 24px;
    }

    .SolutionF2 .List ul li .libox dd {
        font-size: 16px;
    }
}

@media(min-width:1920px) {
    .SolutionF2 {
        min-height: 380px;
    }
}

.SolutionF3 {
    padding: 30px 0;
}

.SolutionF3 .List {
    margin-top: 20px;
    position: relative;
    padding: 0 40px;
}

.SolutionF3 .List .txt {
    margin-top: 5px;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.SolutionF3 .List .item .lia {
    display: block;
}

.SolutionF3 .List .item .img {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.SolutionF3 .List .item .img img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SolutionF3 .List .item .lia:hover .img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.SolutionF3 .List .btns {}

.SolutionF3 .List .btns a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background: #fff no-repeat center center;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 9;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SolutionF3 .List .btns a:hover {
    background-color: #00a0d9;
}

.SolutionF3 .List .btns .btnleft {
    background-image: url('../images/btn01.png');
    left: 0;
}

.SolutionF3 .List .btns .btnleft:hover {
    background-image: url('../images/btn01on.png')
}

.SolutionF3 .List .btns .btnright {
    background-image: url('../images/btn02.png');
    right: 0;
}

.SolutionF3 .List .btns .btnright:hover {
    background-image: url('../images/btn02on.png')
}

@media(min-width:1024px) {
    .SolutionF3 {
        padding: 80px 0 65px;
    }

    .SolutionF3 .List {
        padding: 0 80px;
        margin-top: 50px;
    }

    .SolutionF3 .List .btns a {
        width: 50px;
        height: 50px;
        margin-top: -40px;
    }

    .SolutionF3 .List .txt {
        font-size: 20px;
        padding-top: 15px;
    }
}

@media(min-width:1600px) {
    .SolutionF3 .List {
        padding: 0;
    }

    .SolutionF3 .List .btns .btnleft {
        left: -80px;
    }

    .SolutionF3 .List .btns .btnright {
        right: -80px;
    }

}

.SolutionF4 {
    background: #f8f8f8;
    padding: 30px 0;
}

.SolutionF4 .List {
    padding-top: 15px
}

.SolutionF4 .List ul {
    margin: 0 -5px;
    font-size: 0;
}

.SolutionF4 .List ul li {
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding: 5px;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    vertical-align: top;
    width: 50%;
}

.SolutionF4 .List ul li:hover {
    top: -5px;
}

.SolutionF4 .List ul li .libox {
    display: block;
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 15px;
    padding: 9%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.SolutionF4 .List ul li .txt {
    overflow: hidden;
    padding: 0 10px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    text-align: center;
}

.SolutionF4 .List .btns {
    padding-top: 15px;
}

.SolutionF4 .List .btns .btn {
    display: block;
    margin: 0 auto;
    width: 120px;
    line-height: 35px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #00a0d9;
    color: #fff;
    text-align: center;
}

@media(min-width:768px) {
    .SolutionF4 .List ul li {
        width: 25%;
    }
}

@media(min-width:1024px) {
    .SolutionF4 .List {
        padding-top: 40px;
    }

    .SolutionF4 .List ul {
        margin: 0 -11px;
    }

    .SolutionF4 .List ul li {
        padding: 11px;
    }

    .SolutionF4 {
        padding: 80px 0;
    }

    .SolutionF4 .List .btns {
        padding-top: 45px;
    }

    .SolutionF4 .List .btns .btn {
        width: 136px;
        line-height: 45px;
        font-size: 16px;
    }

    .SolutionF4 .List ul li .libox {
        padding-bottom: 40px;
    }

    .SolutionF4 .List ul li .txt {
        font-size: 20px;
    }

}

/* 解决方案.shtml */

/* 云托管.shtml */
.CloudHosting {}

.CloudHostingF1 {
    padding: 30px 0;
}

.CloudHostingF1 .List ul {
    overflow: hidden;
    margin: 0 -5px;
    font-size: 0;
}

.CloudHostingF1 .List ul li {
    text-align: center;
    margin-bottom: 15px;
    font-size: 12px;
    vertical-align: top;
    padding: 0 5px;
    display: inline-block;
    width: 50%;
    .font-size: 14px;
}

.CloudHostingF1 .List ul .txtbox {
    padding-top: 10px;
}

.CloudHostingF1 .List ul .libox {
    color: #333;
}

.CloudHostingF1 .List ul li .img img {
    max-width: 50%;
}

@media(min-width:640px) {
    .CloudHostingF1 .List ul li {
        font-size: 14px;
    }
}

@media(min-width:768px) {
    .CloudHostingF1 .List ul li {
        width: 25%;
    }
}

@media(min-width:1024px) {
    .CloudHostingF1 {
        padding: 60px 0;
    }

    .CloudHostingF1 .List ul li {
        font-size: 16px;
    }

    .CloudHostingF1 .List ul .txtbox {
        padding-top: 20px;
    }
}

.CloudHostingF2 {
    padding: 30px 0;
    background: #ebf5f9;
}

.CloudHostingF2 .txt {
    font-size: 14px;
    padding: 15px 0 20px;
    text-align: center;
}

.CloudHostingF2 .imgbox .pc {
    display: none;
}


@media(min-width:768px) {
    .CloudHostingF2 .txt {
        font-size: 16px;
        padding: 15px 0 25px;
        max-width: 955px;
        margin: 0 auto;
    }

    .CloudHostingF2 .imgbox .pc {
        display: block;
    }

    .CloudHostingF2 .imgbox .wap {
        display: none;
    }
}



@media(min-width:1024px) {
    .CloudHostingF2 {
        padding: 80px 0;
    }

    .CloudHostingF2 .txt {
        padding: 30px 0 70px;
    }
}



.CloudHostingF3 {
    background: #f8f8f8;
    padding: 30px 0;
}


.CloudHostingF3 .List {
    padding-top: 25px;
}

.CloudHostingF3 .List ul li {
    margin-bottom: 15px;
    position: relative;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.CloudHostingF3 .List ul li .libox {
    min-height: 120px;
    padding: 30px;
    padding-bottom: 60px;
    position: relative;
    padding-right: 110px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    background: #fff url('../images/slibg01.jpg') no-repeat right top;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.CloudHostingF3 .List ul li .libox .imgbox {
    position: absolute;
    right: 40px;
    top: 60px;
}

.CloudHostingF3 .List ul li .libox .h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    padding-bottom: 10px;
}

.CloudHostingF3 .List ul li .libox dd {
    font-size: 14px;
    padding-bottom: 5px;
    text-align: left;
}

.CloudHostingF3 .List ul li:hover {
    top: -10px;
}

@media(min-width:640px) {
    .CloudHostingF3 .List ul {
        font-size: 0;
        margin: 0 -5px;
    }

    .CloudHostingF3 .List ul li {
        display: inline-block;
        width: 50%;
        font-size: 14px;
        padding: 0 5px;
    }
}


@media(min-width:768px) {
    .CloudHostingF3 .List ul li {
        width: 33.33%;
    }
}

@media(min-width:1024px) {
    .CloudHostingF3 {
        padding: 80px 0;
    }

    .CloudHostingF3 .List {
        padding-top: 50px;
    }

    .CloudHostingF3 .List ul {
        margin: 0 -11px;
    }

    .CloudHostingF3 .List ul li {
        width: 25%;
        padding: 0 11px;
        margin-bottom: 22px;
    }

    .CloudHostingF3 .List ul li .libox .h3 {
        font-size: 24px;
    }

    .CloudHostingF3 .List ul li .libox dd {
        font-size: 16px;
    }
}

.CloudHostingF4 {
    padding: 30px 0;
    background: no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.CloudHostingF4 .Main_Title .h3 {
    color: #fff;
}

.CloudHostingF4 .ul {
    position: relative;
    margin-top: 20px;
}

.CloudHostingF4 .ul li {
    color: #fff;
    margin-bottom: 15px;
}

.CloudHostingF4 .ul li .libox {
    position: relative;
    padding-left: 70px;
    min-height: 55px;
}

.CloudHostingF4 .ul li .img {
    width: 50px;
    position: absolute;
    left: 0;
    top: 0;
}

.CloudHostingF4 .ul li .h3 {
    font-size: 16px;
    font-weight: normal;
}

.CloudHostingF4 .ul li .txt {
    padding-top: 5px;
}

@media(min-width:1024px) {
    .CloudHostingF4 {
        padding: 80px 0;
    }
}

@media(min-width:1300px) {
    .CloudHostingF4 {
        padding: 80px 0 160px;
    }

    .CloudHostingF4 .ul {
        margin-top: 80px;
        background: url('../images/cbg01.png') no-repeat center;
        width: 518px;
        height: 514px;
        margin-left: auto;
        margin-right: auto;
    }

    .CloudHostingF4 .ul li .img {
        width: 130px;
    }

    .CloudHostingF4 .ul li.li1 .libox,
    .CloudHostingF4 .ul li.li2 .libox,
    .CloudHostingF4 .ul li.li3 .libox {
        text-align: right;
        padding-left: 0;
        padding-right: 150px;
    }

    .CloudHostingF4 .ul li.li1 .img,
    .CloudHostingF4 .ul li.li2 .img,
    .CloudHostingF4 .ul li.li3 .img {
        left: auto;
        right: 0;
    }

    .CloudHostingF4 .ul li.li4 .libox,
    .CloudHostingF4 .ul li.li5 .libox,
    .CloudHostingF4 .ul li.li6 .libox {
        padding-left: 150px;
    }

    .CloudHostingF4 .ul li {
        position: absolute;
    }

    .CloudHostingF4 .ul li {
        width: 430px;
    }

    .CloudHostingF4 .ul li.li1 {
        right: 100%;
        top: 0;
        margin-right: -150px;
    }

    .CloudHostingF4 .ul li.li2 {
        right: 100%;
        top: 0;
        margin-right: -60px;
        top: 38%;
    }

    .CloudHostingF4 .ul li.li3 {
        right: 100%;
        top: 0;
        margin-right: -160px;
        top: 80%;
    }

    .CloudHostingF4 .ul li.li4 {
        left: 100%;
        top: 0;
        margin-left: -150px;
    }

    .CloudHostingF4 .ul li.li5 {
        left: 100%;
        top: 0;
        margin-left: -60px;
        top: 38%;
    }

    .CloudHostingF4 .ul li.li6 {
        left: 100%;
        top: 0;
        margin-left: -160px;
        top: 80%;
    }

    .CloudHostingF4 .ul li {
        min-height: 140px;
    }

    .CloudHostingF4 .ul li .libox {
        padding-top: 20px;
    }

    .CloudHostingF4 .ul li .h3 {
        font-size: 20px;
    }

    .CloudHostingF4 .ul li .txt {
        padding-top: 5px;
        font-size: 16px;
        line-height: 28px;
    }

}


.CloudHostingF5 {
    padding: 30px 0;
    background: #f2f2f2;
}

.CloudHostingF5 .ti .img {
    width: 45px;
    height: 45px;
    margin: 0 auto;
}

.CloudHostingF5 .ti {
    text-align: center;
}

.CloudHostingF5 .ti .h3 {
    font-size: 16px;
    font-weight: normal;
    color: #033470;
    padding-top: 5px
}

.CloudHostingF5 .ti .i {
    display: block;
    margin: 15px auto;
    width: 25px;
    height: 3px;
    background: #033470;
}

.CloudHostingF5 .List {
    margin-top: 20px;
}

.CloudHostingF5 .List ul {
    margin: 0 -5px;
    font-size: 0;
}

.CloudHostingF5 .List ul li {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    display: inline-block;
    width: 50%;
    font-size: 12px;
    padding: 5px;
    vertical-align: top;
}

.CloudHostingF5 .List ul li .libox {
    background: #fff;
    padding: 20px 8px;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
    min-height: 245px;
}

.CloudHostingF5 .List ul li:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
}

.CloudHostingF5 .List ul li.li7 {
    width: 100%;
}

.CloudHostingF5 .List ul li.li7 .txtbox {
    text-align: left;
    display: inline-block;
}

.CloudHostingF5 .List ul li.li7 .h4 {
    font-size: 14px;
    color: #033470;
    font-weight: normal;
}

.CloudHostingF5 .List ul li.li7 .dl dd {
    margin-bottom: 5px;
}

@media(min-width:768px) {
    .CloudHostingF5 .List ul {
        margin: 0 -8px;
    }

    .CloudHostingF5 .List ul li {
        width: 33.33%;
        font-size: 14px;
        padding: 8px;
    }

}

@media(min-width:1024px) {
    .CloudHostingF5 {
        padding: 80px 0;
    }

    .CloudHostingF5 .List {
        margin-top: 60px;
    }

    .CloudHostingF5 .List ul {
        padding-right: 25%;
        position: relative;
    }

    .CloudHostingF5 .List ul li {
        width: 33.33%;
        font-size: 14px;
        padding: 8px;
    }

    .CloudHostingF5 .List ul li .libox {
        min-height: 375px;
    }

    .CloudHostingF5 .List ul li.li7 {
        position: absolute;
        right: 0;
        width: 25%;
        top: 0;
        height: 100%;
    }

    .CloudHostingF5 .List ul li.li7 .libox {
        height: 100%;
        position: relative;
        width: 100%;
    }

    .CloudHostingF5 .List ul li.li7 .tb {
        display: table;
        height: 100%;
        width: 100%;
    }

    .CloudHostingF5 .List ul li.li7 .tbc {
        display: table-cell;
        height: 100%;
        width: 100%;
        vertical-align: middle;
    }

    .CloudHostingF5 .ti .img {
        width: 60px;
        height: 60px;
    }

    .CloudHostingF5 .ti .h3 {
        font-size: 24px;
    }

    .CloudHostingF5 .List ul li {
        font-size: 16px;
        line-height: 28px;
    }

    .CloudHostingF5 .List ul li.li7 .h4 {
        font-size: 16px;
    }

    .CloudHostingF5 .List ul li.li7 .dl dd {
        margin-bottom: 8px;
    }

    .CloudHostingF5 .ti .i {
        margin: 20px auto;
    }
}


.CloudHostingF6 {
    padding: 30px 0;
    background: #ffffff;
}


.CloudHostingF6 .List {
    margin-top: 20px;
    position: relative;
}

.CloudHostingF6 .List ul {
    font-size: 0;
    margin: 0 -5px;
}

.CloudHostingF6 .List ul li {
    display: inline-block;
    font-size: 14px;
    padding: 5px;
    width: 50%;
}

.CloudHostingF6 .List .txt {
    margin-top: 5px;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.CloudHostingF6 .List .item .lia {
    display: block;
}

.CloudHostingF6 .List .item .img {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.CloudHostingF6 .List .item .img img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.CloudHostingF6 .List .item .lia:hover .img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

@media(min-width:768px) {
    .CloudHostingF6 .List ul li {
        width: 33.33%;
    }
}


@media(min-width:1024px) {
    .CloudHostingF6 .List ul {
        margin: 0 -11px;
    }

    .CloudHostingF6 .List ul li {
        width: 25%;
        padding: 11px;
    }

    .CloudHostingF6 .List {
        margin-top: 50px;
    }

    .CloudHostingF6 .List .txt {
        font-size: 20px;
        padding-top: 15px;
    }

    .CloudHostingF6 {
        padding: 75px 0;
    }

    .sermenuLocat .location {
        width: 17%;
    }

    .sermenuLocat .menu {
        width: 83%;
    }

    .home_page2,
    .home_page3,
    .home_page4,
    .home_page4 .txtBox,
    .home_page5 {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList {
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
        padding: 6% 0;
        padding-left: 13%;
    }
}

/* 云托管.shtml */
.mesBoxpup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
}

.mesBoxpup .BG {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}

.mesBoxpup .mesform {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    max-width: 540px;
    border: 1px solid #e5e5e5;
}

.mesBoxpup .mesform:before {
    width: 160px;
    height: 5px;
    content: '';
    background: #00a0d9;
    position: absolute;
    left: 50%;
    margin-left: -80px;
    top: 0;
}

.mesBoxpup .mesform .closBtn {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    background: url(../images/col.png) no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.mesBoxpup .mesform .closBtn:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mesBoxpup .mesform h1 {
    font-size: 28px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 5%;
}

.mesBoxpup .mesform input {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #f7f7f7;
    margin-bottom: 15px;
    padding-left: 5px;
    font-size: 16px;
}

.mesBoxpup .mesform textarea {
    width: 100%;
    padding-left: 5px;
    padding-top: 5px;
    background: #f7f7f7;
    height: 165px;
    margin-bottom: 30px;
    font-size: 16px;
}

.mesBoxpup .mesform .subBth {
    width: 100%;
    display: block;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: #00a0d9;
}

@media screen and (min-width:1440px)and (max-width:1680px) {
    .home_page3 .listBox li {
        height: 360px;
    }

    .home_page3 .listBox .righBox li {
        height: 178px;
    }

    .home_page5 .titBox h1 {
        font-size: 40px;
    }

    .home_page5 .titBox h5 {
        font-size: 32px;
        padding-bottom: 1.5%;
        margin-bottom: 1.5%;
    }

    .home_page5 .idxproBox .hd {
        margin-bottom: 1.5%;
    }

    .home_page5 .titBox {
        padding-top: 6%;
    }

    .home_page5 .idxproBox .bd .idxproList li {
        padding: 8%;
    }

    .home_page6 .idxnewBox .idxnTop {
        height: 480px;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList {
        padding: 4.5% 0;
        padding-left: 13%;
    }
}

@media screen and (min-width:1250px)and (max-width:1440px) {
    .home_page5 .titBox h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .home_page5 .titBox h5 {
        font-size: 32px;
        padding-bottom: 1%;
        margin-bottom: 1%;
    }

    .home_page5 .idxproBox .hd {
        margin-bottom: 1%;
    }

    .home_page5 .idxproBox .hd li {
        line-height: 40px;
        padding: 0 4%;
        font-size: 20px;
    }

    .view {
        line-height: 40px;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .titBox {
        padding-top: 35%;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .titBox h5 {
        font-size: 32px;
    }

    .home_page6 .idxnewBox .idxnTop {
        height: 455px;
    }

    .home_page6 .idxnewBox .idxnBom .idxnewList {
        padding: 3% 0;
        padding-left: 11%;
    }

    .home_page7 .idxpneList .owl-carousel .owl-prev,
    .home_page7 .idxpneList .owl-carousel .owl-next {
        bottom: -15%;
    }

    .home_page3 .listBox {
        margin-top: 2%;
    }

    .home_page3 .titBox h5 {
        font-size: 32px;
        padding-bottom: 1%;
        margin-bottom: 1%;
    }

    .home_page3 .titBox h1 {
        font-size: 35px;
        line-height: 40px;
        padding-top: 7%;
    }

    .home_page5 .idxproBox .bd .idxproList li {
        padding: 5% 12%;
    }

    .home_page2 .txtBox .distabcel h5,
    .home_page4 .txtBox .distabcel h5 {
        font-size: 32px;
        padding-top: 8%;
    }

    .home_page2 .txtBox .distabcel h1,
    .home_page4 .txtBox .distabcel h1 {
        font-size: 35px;
        line-height: 40px;
    }

    .home_page2 .txtBox .distabcel .listBox,
    .home_page4 .txtBox .distabcel .listBox {
        height: 275px;
    }

    .home_page3 .listBox li {
        height: 300px;
    }

    .home_page3 .listBox .righBox li {
        height: 148px;
    }

    .home_page6 .idxnewBox .idxnTop .leftBox .idxnewslide {
        width: 32%;
        padding: 1% 2.5%;
    }

    .top .otherBox {
        width: 30%;
    }

    .top .nav {
        width: 48.8%;
    }

    .top .nav li {
        margin-left: 2%;
    }

    .top .nav li>a {
        font-size: 16px;
    }

    .menuLocat .location {
        width: 25%;
    }

    .menuLocat .menu {
        width: 75%;
    }

    .home_page3 .listBox li:hover .conBox p {
        -o-text-overflow: -o-ellipsis-lastline;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .serprocess .item .txtBox {
        padding-right：0;
    }

    .serprocess .item .txtBox li {
        margin-right: 8.5%;
    }

    .honerBox .honerList .owl-carousel .owl-prev,
    .honerBox .honerList .owl-carousel .owl-next {
        bottom: -7%;
    }

    .Visitor_management ul.ul2 li {
        width: 201px !important;
    }
}


@media(min-width:1025px) {
    .menuLocat .wap-menu {
        display: none;
    }

    .menuLocat .menu {
        display: block !important;
    }
}

@media(max-width:1024px) {
    .menuLocat .wap-menu {
        position: relative;
        padding: 10px 40px 10px 2%;
        /*border-radius: 10px 0; */
        background: #f8f8f8;
        font-size: 18px;
        width: 104%;
        margin-left: -2%;
        border-bottom: 1px solid #fff;
        color: #033470;
    }

    .menuLocat .wap-menu span {
        position: absolute;
        right: 10px;
        top: 50%;
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }

    .menuLocat .wap-menu i,
    .menuLocat .wap-menu span:before,
    .menuLocat .wap-menu span:after {
        position: absolute;
        content: '';
        width: 6px;
        height: 6px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: #033470;
        top: 50%;
        margin-top: -3px;
    }

    .menuLocat .wap-menu i {
        left: 50%;
        margin-left: -3px;
    }

    .menuLocat .wap-menu span:before {
        left: 0;
    }

    .menuLocat .wap-menu span:after {
        right: 0;
    }

    .menuLocat .menu {
        display: none;
    }

    .menuLocat .menu li {
        display: block;
        line-height: 40px;
        padding: 0 15px;
    }

    .menuLocat .menu li:not(:last-child) {
        border-bottom: 1px solid #f5f5f5;
    }
}

@media(min-width:1025px) {
    .wap-type {
        display: none;
    }

    .footer .bottom .bottomTop {
        padding: 5% 0 0;
    }

    .footer {
        background: #f0f0f0;
    }

    /*  .footer:before{position: absolute; content: ''; left: 0; top: 0; width: 100%; height: 50%; background: #014da3;}
    .footer .bottom,
    .footer .home_page7{position: relative; z-index: 4;}*/
}

@media(min-width:1025px) and (max-width:1366px) {
    .home_page7 h1 {
        display: none;
    }
}

@media(min-width:1025px) and (max-width:1440px) {

    /*  .home_page7 .w1400{max-width: 1300px;}*/
    .home_page7 {
        padding-top: 90px;
    }

    .home_page7 .idxpneList .hd a {
        bottom: -30px;
    }

    .home_page7 .idxpneList {
        margin-top: 2%;
    }

    .bottom .bottomTop .righBox .bomnav dd {
        line-height: 22px;
    }

    .footer .bottom .bottomBom {
        line-height: 30px;
    }

    .footer .bottom .bottomTop .bomfrilink {
        line-height: 40px;
        margin-top: 15px;
    }
}

@media(max-width:1024px) {
    .prodinfo-body .menuLocat {
        position: relative;
    }

    .prodinfo-body .menuLocat .location {
        display: none;
    }

    .prodinfo-body .menuLocat .menu {
        display: block;
    }

    .prodinfo-body .menuLocat .menu ul {
        overflow: hidden;
    }

    .prodinfo-body .menuLocat .menu li {
        float: left;
        padding: 0;
        border-bottom: 1px solid transparent;
    }

    .prodinfo-body .menuLocat .menu li.on {
        border-bottom-color: #00a0d9;
    }

    .wap-type {
        position: absolute;
        right: 10px;
        top: 50%;
        line-height: 20px;
        font-size: 14px;
        color: #f6550d;
        margin-top: -10px;
    }
}


.SolveList {
    padding: 20px 0;
}

.SolveList ul {
    font-size: 0;
    margin: 0 -8px;
}

.SolveList ul li .lia {
    display: block;
}

.SolveList ul li {
    display: inline-block;
    font-size: 14px;
    width: 50%;
    padding: 8px;
}

.SolveList ul li .txt {
    text-align: center;
    font-size: 16px;
    padding-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.SolveList ul li .img {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.SolveList ul li .img img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SolveList ul li .img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}


@media(min-width:768px) {
    .SolveList ul li {
        width: 33.33%
    }
}

@media(min-width:1024px) {
    .SolveList {
        padding: 40px 0 50px;
    }

    .SolveList ul {
        margin: 0 -13px;
    }

    .SolveList ul li {
        padding: 13px;
    }

    .SolveList ul li .txt {
        font-size: 20px;
    }

}

.ErorrWrap {
    padding-top: 80px;
}

.BoxError {
    padding: 50px 0;
}

.BoxError .imgerror {
    text-align: center;
    padding-bottom: 15px;
}

.Sorrytxt {
    text-align: center;
    color: #333;
    font-size: 16px;
}

.Nav404 {
    text-align: center;
    padding-top: 15px;
}

.Nav404 ul {
    display: inline-block;
    font-size: 0;
    padding: 0 8px;
    border: 1px solid #dfdfdf;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.Nav404 ul li {
    display: inline-block;
    font-size: 14px;
}

.Nav404 ul li a {
    display: block;
    padding: 5px;
    color: #333;
    font-size: :14px;
    line-height: 35px;
}


@media(min-width:768px) {
    .Sorrytxt {
        font-size: 20px
    }

    .Nav404 ul li a {
        font-size: 16px;
    }
}

@media(min-width:1024px) {
    .BoxError .imgerror {
        padding-bottom: 25px;
    }

    .BoxError {
        padding: 120px 0;
    }

    .Sorrytxt {
        font-size: 25px
    }

    .Nav404 ul {
        padding: 0 20px;
    }

    .Nav404 {
        padding-top: 25px;
    }

    .Nav404 ul li a {
        text-align: center;
        padding: 0 18px;
        line-height: 50px;
    }
}




.caseSearch {
    padding-bottom: 30px;
}

.caseSearch .SearchWarp {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    max-width: 835px;
    margin: 0 auto;
    background: #fff;
    height: 40px;
    position: relative;
    padding-right: 40px;
}

.caseSearch .SearchWarp input {
    line-height: 40px;
    padding: 0 10px;
}

.caseSearch .SearchWarp .btn {
    display: block;
    width: 40px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #11bfe4 url('../images/search.png') no-repeat center;
}


.caseSearch .SelectWrap {
    max-width: 1100px;
    margin: 0px auto;
}

.caseSearch .SelectWrap .Sitem {
    margin-top: 10px;
}

.caseSearch .SelectWrap .Sitem .SitemBox {
    background: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}


.caseSearch .CategoryNav {
    background: #fff;
    padding: 10px 15px;
    line-height: 30px;
    margin-top: 10px;
}

.caseSearch .CategoryNav .CategoryNavBox {
    position: relative;
    padding-left: 80px;
}

.caseSearch .CategoryNav .ibg {
    width: 1px;
    height: 100%;
    background-color: #b7b7b7;
    position: absolute;
    left: 60px;
    top: 0;
}

.caseSearch .CategoryNav .ibg .ic {
    display: block;
    background: url('../images/cateibg.png') no-repeat center;
    width: 5px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 11px;
}

.caseSearch .CategoryNav .CateA {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 30px;
}

.caseSearch .CategoryNav .list a {
    display: inline-block;
    padding: 0 8px;
}

.caseSearch .CategoryNav .list a.on,
.caseSearch .CategoryNav .list a:hover {
    background-color: #26b6ed;
    color: #fff;
}

@media(min-width:768px) {
    .caseSearch {
        padding-bottom: 40px;
    }

    .caseSearch .SelectWrap {
        font-size: 0;
        margin: 15px auto 0;
    }

    .caseSearch .SelectWrap .Sitem {
        display: inline-block;
        width: 33.33%;
        padding: 0 5px;
        vertical-align: top;
        font-size: 14px;
    }

    .caseSearch .CategoryNav {
        margin-top: 15px;
    }
}




@media(min-width:1024px) {
    .caseSearch {
        padding-bottom: 80px;
    }

    .caseSearch .SearchWarp {
        height: 50px;
    }

    .caseSearch .SearchWarp input {
        line-height: 50px;
        font-size: 16px;
        padding: 0 15px;
    }

    .caseSearch .SearchWarp .btn {
        width: 50px;
    }

    .caseSearch .SelectWrap {
        font-size: 0;
        margin: 30px auto 0;
    }

    .caseSearch .SelectWrap .Sitem {
        padding: 0 10px;
        font-size: 16px;
    }

    .caseSearch .SelectWrap .ZJselectBox {
        height: 50px;
    }

    .caseSearch .SelectWrap .ZJselectTxt {
        line-height: 50px;
    }

    .caseSearch .SelectWrap .ZJselectTxt i.icon {
        line-height: 50px;
        height: 50px;
    }

    .caseSearch .CategoryNav {
        margin-top: 30px;
    }

    .caseSearch .CategoryNav .list a {
        display: inline-block;
        padding: 0 13px;
    }

    .caseSearch .CategoryNav {
        font-size: 16px;
    }

}


.disclosure .PageBox .Pages .num a {
    display: none;
}


.MenuServerTOP {
    margin-top: 80px;
}

.wapBox {
    display: none;
}

.pcBox {}

@media(max-width:1024px) {
    .location {
        display: none
    }

    .pcBox {
        display: none;
    }

    .wapBox {
        display: block;
    }

    .MenuServerTOP {
        margin-top: 55px;
    }

    .top .nav li>a {
        display: block;
        padding-left: 10px;
    }

    .top .nav li .subnav dl dt h5 .Mhide {
        display: none;
    }

    .top .nav li .subnav dl:before {
        display: none;
    }

    .top .nav li .subnav dl dt h5 a {
        position: relative;
        font-size: 16px;
    }

    .top .nav li .subnav dl.dlli dt h5 .btnspan {
        display: block;
        position: absolute;
        width: 11px;
        height: 7px;
        background-image: url(../images/icon1_1.png);
        top: 50%;
        margin-top: -3.5px;
        right: 5%;
        position: absolute;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        -moz-transition: all .3s;
        transition: all .3s;
    }

    .top .nav li .subnav.slosubnav {}

    .top .nav li .subnav.slosubnav dl {
        float: none;
        width: auto;
        overflow: hidden;
        border-top: 1px solid #ccc;
        padding: 0;
    }

    .top .nav li .subnav dl dd {
        border-top: 1px solid #ccc;
        padding: 0 2.5%;
    }

    .top .nav li .subnav dl dd:first-child {
        border-top: none;
    }

    .top .nav li .subnav dl dd a {
        line-height: 45px;
    }

    .top .nav ul {
        margin: 0 -5px;
    }

    .top .nav li .subnav dl.dlli.dlon dt h5 .btnspan {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .top .nav li .subnav {
        background-color: #f8f8f8;
    }

    .top .nav li .subnav.prosubnav dl dd,
    .top .nav li .subnav.prosubnav dl {
        border-top: 1px solid #ccc;
    }

    .top .nav li .subnav.prosubnav dl dt h5 a {
        line-height: 45px;
    }

}

@media(max-width:768px) {
    .top .nav li .subnav dl dt img {
        display: none;
    }

    .alliance .anceBox .anceMid .contBox .txtBox .iconB {
        width: 12%;
    }

    .alliance .anceBox .anceMid .contBox .txtBox .textB {
        width: 83%;
    }

    .alliance .anceBox .anceMid .contBox .txtBox .textB h5 {
        font-size: 18px;
    }

    .alliance .anceBox .anceMid .contBox .txtBox .textB p {
        font-size: 14px;
        line-height: 20px;
    }
}


@media(min-width:1400px) {
    .menuLocat .location {
        width: 25%;
    }

    .menuLocat .menu {
        width: 75%
    }
}



.MaskAlertBox {
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, .7);
}

.MaskAlertBox .Maskbox {
    width: 95%;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    position: relative;
}

.MaskAlertBox .Maskbox .title {
    line-height: 40px;
    padding: 0 15px;
    color: #333;
    text-align: center;
    font-size: 16px;
}

.MaskAlertBox .Maskbox .title .txt {
    display: inline-block;
    position: relative;
    padding-top: 20px;
}

.MaskAlertBox .Maskbox .title .txt .i {
    display: block;
    width: 100%;
    height: 5px;
    left: 0;
    top: 0;
    background: #29B6ED;
    position: absolute;
}

.MaskAlertBox .Maskbox .close {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0px;
    top: -40px;
    background: url('../images/close.png') no-repeat center;
}

.MaskAlertBox .Maskbox .txtBox {
    padding: 15px 15px 0;
}

.MaskAlertBox .Maskbox .txtBox li {
    background: #F6F6F6;
    margin-bottom: 10px;
    font-size: 16px;
}

.MaskAlertBox .Maskbox .txtBox li input {
    line-height: 45px;
    height: 45px;
    padding: 0 10px;
    display: block;
    font-size: 16px;
    font-family: 'SHSregular';
    width: 100%;
}

.MaskAlertBox .Maskbox .btns {
    padding: 10px 15px;
    overflow: hidden;
    text-align: right;
}

.MaskAlertBox .Maskbox .btns .btna {
    display: block;
    background: #29B6ED;
    text-align: center;
    line-height: 45px;
    color: #fff;
    font-size: 14px;
}

.MaskAlertBox.AlertJoin .Maskbox {
    max-width: 980px;
}

.MaskAlertBox.AlertJoin .Maskbox .txtBox li.libg {
    background: none;
    color: #9c9c9c;
    line-height: 45px;
}

.MaskAlertBox.AlertJoin .Maskbox .txtBox li label {
    display: inline-block;
    margin-left: 10px;
    line-height: 40px;
    vertical-align: middle;
}

.MaskAlertBox.AlertJoin .Maskbox .txtBox li label input {
    display: inline-block;
    height: 20px;
    height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

.MaskAlertBox .Maskbox .txtBox li textarea {
    display: block;
    padding: 10px;
    height: 100px;
    font-size: 14px;
    font-family: 'SHSregular';
}

@media (min-width:768px) {
    .MaskAlertBox .Maskbox .title {
        font-size: 18px;
        line-height: 50px;
    }

    .MaskAlertBox .Maskbox .txtBox {
        padding: 90px 60px 0;
    }

    .MaskAlertBox .Maskbox .title .txt {
        padding-top: 30px;
    }

    .MaskAlertBox .Maskbox .close {
        right: -40px;
        top: 0px;
    }

    .MaskAlertBox .Maskbox .btns {
        padding: 15px 60px 60px;
    }

    .MaskAlertBox .Maskbox .btns .btna {
        font-size: 16px;
        line-height: 36px;
    }

    .MaskAlertBox.AlertJoin .Maskbox .txtBox li {
        float: left;
        width: 48%;
        margin-right: 4%
    }

    .MaskAlertBox.AlertJoin .Maskbox .txtBox li.last {
        margin-right: 0
    }

    .MaskAlertBox.AlertJoin .Maskbox .txtBox li.row {
        width: 100%;
    }

}

@media (min-width:1024px) {
    .MaskAlertBox .Maskbox .title {
        font-size: 28px;
    }

    .MaskAlertBox .Maskbox .txtBox li {
        margin-bottom: 15px;
    }

    .MaskAlertBox .Maskbox .txtBox li input {
        line-height: 60px;
        height: 60px;
        font-size: 16px;
    }

    .MaskAlertBox.AlertJoin .Maskbox .txtBox li.libg {
        line-height: 60px;
    }

    .MaskAlertBox .Maskbox .txtBox li textarea {
        font-size: 16px;
        height: 123px;
    }

    .MaskAlertBox .Maskbox .btns .btna {
        line-height: 60px;
        font-size: 18px;
    }

    .casePage .caseList li .txtBox p {
        min-height: 72px;
    }
}

@media(max-width:640px) {
    .home_page5 .titBox h1 {
        line-height: 32px;
    }
}

/*常见问题详情*/
.commonBlem {}

.commonBlem .comBlemList {}

.commonBlem .comBlemList li {
    margin-bottom: 2%;
    border: 1px solid #dfdfdf;
}

.commonBlem .comBlemList li .Q {
    line-height: 48px;
    padding: 0 5%;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.commonBlem .comBlemList li .Q:before {
    width: 18px;
    height: 18px;
    content: '';
    background: url(../images/icon13.png) no-repeat;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 5%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.commonBlem .comBlemList li .Q:after {
    font-size: 22px;
    content: '>';
    color: #888;
    font-family: '宋体';
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    position: absolute;
    top: 0;
    right: 2%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.commonBlem .comBlemList li .Q h5 {
    font-size: 16px;
    position: relative;
    color: #666;
    font-weight: normal;
}

.commonBlem .comBlemList li .Q h5:before {
    width: 19px;
    height: 19px;
    background: #0096d0;
    content: 'Q';
    font-family: 'Archivo';
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 18px;
    position: absolute;
    top: 50%;
    margin-top: -9.5px;
    left: -3%;
    font-size: 14px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.commonBlem .comBlemList li .A {
    padding: 2% 5%;
    display: none;
}

.commonBlem .comBlemList li .A p {
    line-height: 34px;
    color: #666;
    position: relative;
}

.commonBlem .comBlemList li .A p:before {
    width: 19px;
    height: 19px;
    background: #0096d0;
    content: 'A';
    font-family: 'Archivo';
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 18px;
    position: absolute;
    top: 6px;
    left: -3%;
    font-size: 14px;
}

.commonBlem .comBlemList li:hover .Q,
.commonBlem .comBlemList li.on .Q {
    background: #0096d0;
}

.commonBlem .comBlemList li:hover .Q:before,
.commonBlem .comBlemList li.on .Q:before {
    background: url(../images/icon13_a.png) no-repeat;
}

.commonBlem .comBlemList li:hover .Q:after,
.commonBlem .comBlemList li.on .Q:after {
    color: #fff;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

.commonBlem .comBlemList li:hover h5,
.commonBlem .comBlemList li.on h5 {
    color: #fff;
}

.commonBlem .comBlemList li:hover h5:before,
.commonBlem .comBlemList li.on h5:before {
    background: #fff;
    color: #0096d0;
}

@media(max-width:1024px) {
    .commonBlem .comBlemList li .Q h5 {
        padding-left: 20px;
    }

    .commonBlem .comBlemList li .A p {
        padding-left: 20px;
        line-height: 24px;
    }
}

/*常见问题详情*/
/*#nb_icon_wrap{display: none!important;}*/
#nb_nodeboard {
    display: none !important;
}

@media(max-width:1280px) {

    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-prev,
    .home_page5 .idxproBox .bd .idxproList .owl-carousel .owl-next {
        display: none;
    }

    .home_page7 .idxpneList .hd a {
        display: none;
    }
}

.ul_sitemap {
    padding: 3% 0;
}


/* 登录弹窗样式 */
.zdslogintipscont {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9999;
}

.zdslogintipscont .Tc-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 650px;
    height: 420px;
    background-color: #fff;
    margin: auto;
}

.zdslogintipscont .Tc-content .gbbtnlink {
    position: absolute;
    right: -44px;
    top: -44px;
    font-size: 35px;
    color: #fff;
}

.zdslogintipscont .Tc-content h1.h1 {
    line-height: 1;
    font-size: 28px;
    color: #333;
    padding: 50px 0 38px;
    text-align: center;
    position: relative;
}

.zdslogintipscont .Tc-content h1.h1:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -80px;
    width: 160px;
    height: 6px;
    background-color: #00a0d9;
}

.zdslogintipscont .Tc-content ul.ul {
    padding: 0 105px;
}

.zdslogintipscont .Tc-content ul.ul li {
    background-color: #f7f7f7;
}

.zdslogintipscont .Tc-content ul.ul li+li {
    margin-top: 15px;
}

.zdslogintipscont .Tc-content ul.ul li input {
    width: 100%;
    height: 60px;
    color: #9c9c9c;
    font-size: 16px;
    padding: 0 10px;
}

.zdslogintipscont .Tc-content .zdsloginbtn {
    display: block;
    width: 160px;
    height: 60px;
    background-color: #27b6ed;
    margin: 40px auto 0;
    color: #fff;
    font-size: 16px;
}

@media screen and (max-width: 769px) {
    .zdslogintipscont .Tc-content h1.h1 {
        padding: 20px 0 25px;
        font-size: 24px;
    }

    .zdslogintipscont .Tc-content .zdsloginbtn {
        height: 45px;
        margin: 20px auto 0;
    }

    .zdslogintipscont .Tc-content ul.ul {
        padding: 0 5%;
    }

    .zdslogintipscont .Tc-content ul.ul li input {
        height: 45px;
    }

    .zdslogintipscont .Tc-content {
        height: 280px;
        width: 96%;
    }

    .zdslogintipscont .Tc-content .gbbtnlink {
        right: 0;
    }

}


/*移动应用*/
.phoTit {
    padding-top: 5%;
    padding-bottom: 3%;
    text-align: center;
}

.phoTit h5 {
    font-size: 34px;
    line-height: 1;
    padding-bottom: 25px;
    position: relative;
    margin-bottom: 2%;
    font-weight: normal;
}

.phoTit h5:before {
    width: 37px;
    height: 4px;
    content: '';
    background: #00a0d9;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    left: 50%;
    margin-left: -18.5px;
    bottom: 0;
}

.phoTit p {
    font-size: 20px;
    line-height: 28px;
}

.downAbox {
    text-align: center;
    margin-top: 4%;
    padding-top: 80px;
    position: relative;
    padding-bottom: 4%;
}

.downAbox:before {
    width: 19px;
    height: 43px;
    content: '';
    background: url(../images/phi1.png) no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -9.5px;
}

.downAbox .codeBox {
    width: 150px;
    height: 150px;
    border: 1px solid #00a0d9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 12px;
    margin: 0 5px;
    margin-bottom: 1%;
    display: inline-block;
}

.downAbox .dDes {
    text-align: center;
}

.downAbox p {
    font-size: 18px;
    line-height: 28px;
    display: inline-block;
    margin: 0 5px;
    width: 150px;
}

.PhoappBox {}

.PhoappBox .itemBox {
    background: #fff;
}

.PhoappBox .itemBox:nth-child(even) {
    background: #ecf5fa;
}

.jiePark {}

.jiePark ul {
    background: #fbfbfb;
}

.jiePark li {
    float: left;
    width: 32%;
    margin-right: 2%;
    position: relative;
    margin-bottom: 2%;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

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

.jiePark li .txtBox {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 9;
}

.jiePark li .txtBox .iconB {
    margin-bottom: 4%;
}

.jiePark li .txtBox h5 {
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    margin-bottom: 3%;
}

.jiePark li .txtBox p {
    font-size: 16px;
    line-height: 24px;
    color: #666;
}

.jiePark li .imgBox {
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    position: relative;
}

.jiePark li .imgBox:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jiePark li.bgBox .imgBox {
    opacity: .25;
}

.jiePark li.icBox .imgBox {
    opacity: 0;
}

.jiePark li:hover {
    top: -10px;
}

.jiePark li:hover .txtBox h5,
.jiePark li:hover .txtBox p {
    color: #fff;
}

.jiePark li:hover .txtBox .iconB {
    display: none;
}

.jiePark li:hover .imgBox {
    opacity: 1;
}

.jiePark li:hover .imgBox:before {
    opacity: 1;
}

.jieUser {}

.jieUser li {
    float: left;
    width: 19%;
    margin-right: 1.25%;
    position: relative;
    padding-top: 35px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    top: 0;
}

.jieUser li:nth-child(5n) {
    margin-right: 0;
}

.jieUser li em {
    display: block;
    font-style: normal;
    width: 90px;
    height: 90px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -45px;
    line-height: 70px;
    text-align: center;
    background: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 10px solid #ecf5fa;
    font-size: 28px;
    color: #00a0d9;
    font-weight: bold;
    z-index: 99;
}

.jieUser li .imgBox {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    position: relative;
}

.jieUser li .imgBox:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieUser li .imgBox img {
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieUser li .txtBox {
    width: 100%;
    left: 0;
    bottom: 20px;
    position: absolute;
    text-align: center;
    padding: 0 35px;
}

.jieUser li .txtBox .iconB {
    margin-bottom: 25px;
    line-height: 65px;
    position: relative;
}

.jieUser li .txtBox .iconB .iconA {
    position: absolute;
    text-align: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieUser li .txtBox p {
    font-size: 16px;
    line-height: 26px;
    color: #666;
}

.jieUser li:hover {
    top: -10px;
}

.jieUser li:hover .imgBox:before {
    opacity: 1;
}

.jieUser li:hover .imgBox img {
    opacity: .8;
}

.jieUser li:hover .txtBox .iconB>img {
    opacity: 0;
}

.jieUser li:hover .txtBox .iconB .iconA {
    opacity: 1;
}

.jieUser li:hover .txtBox p {
    color: #fff;
}

.jieBusn {}

.jieBusn ul {
    background: #fbfbfb;
}

.jieBusn li {
    float: left;
    width: 49%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    background-color: #fff;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
}

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

.jieBusn li .imgBox {
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    position: relative;
}

.jieBusn li .imgBox:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieBusn li .txtBox {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    left: 0;
    padding: 0 5% 0 8%;
}

.jieBusn li .txtBox .iconB {
    display: inline-block;
    vertical-align: middle;
    width: 20.5%;
}

.jieBusn li .txtBox .textB {
    display: inline-block;
    vertical-align: middle;
    width: 78%;
    padding-left: 5%;
}

.jieBusn li .txtBox .textB h5 {
    font-size: 24px;
    color: #033470;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 3%;
    font-weight: normal;
}

.jieBusn li .txtBox .textB h5:before {
    width: 34px;
    height: 3px;
    content: '';
    background: #00a0d9;
    position: absolute;
    left: 0;
    bottom: 0;
}

.jieBusn li .txtBox .textB p {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}

.jieBusn li:hover {
    top: -10px;
}

.jieBusn li:hover .imgBox {
    opacity: 1;
}

.jieBusn li:hover .imgBox:before {
    opacity: 1;
}

@media(min-width: 768px) {

    .jieBusn li:hover .txtBox .textB h5,
    .jieBusn li:hover .txtBox .textB p {
        color: #fff;
    }
}

.jieTian {}

.jieTian li {
    float: left;
    width: 33.33%;
    border-bottom: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    padding: 4% 6% 4% 8%;
    position: relative;
}

.jieTian li figure {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 1;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieTian li figure:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jieTian li h1 {
    font-family: Impact;
    font-size: 60px;
    color: #00a0d9;
    margin-bottom: 2%;
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.jieTian li h5 {
    font-size: 22px;
    font-weight: normal;
    color: #033470;
    margin-bottom: 2%;
    position: relative;
    z-index: 2;
}

.jieTian li p {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    min-height: 84px;
    position: relative;
    z-index: 2;
}

.jieTian li:nth-child(4),
.jieTian li:nth-child(5),
.jieTian li:nth-child(6) {
    border-bottom: none;
}

.jieTian li:nth-child(3),
.jieTian li:nth-child(6) {
    border-right: none;
}

.jieTian li:hover figure {
    opacity: .8;
}

.jieTian li:hover figure:before {
    opacity: 1;
}

.jieTian li:hover h1,
.jieTian li:hover h5,
.jieTian li:hover p {
    color: #fff;
}

@media(max-width:1440px) {
    .jieUser li .txtBox {
        padding: 0 20px;
    }
}

@media(max-width:960px) {
    .phoTit h5 {
        font-size: 24px;
    }

    .phoTit p {
        font-size: 16px;
        line-height: 22px;
    }

    .jiePark li {
        width: 49%;
    }

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

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

    .downAbox p {
        font-size: 16px;
    }

    .jiePark li .txtBox h5 {
        font-size: 18px;
        line-height: 24px;
    }

    .jiePark li .txtBox p {
        font-size: 14px;
        line-height: 20px;
    }

    .jieUser li {
        width: 48.75%;
    }

    .jieUser li:nth-child(5n) {
        margin-right: 1.25%;
    }

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

    .jieUser li .imgBox,
    .jieBusn li .imgBox {
        text-align: center;
    }

    .jieBusn li {
        width: 100%;
        margin-right: 0 !important;
    }

    .jieBusn li .txtBox .textB h5 {
        font-size: 18px;
        padding-bottom: 15px;
        margin-bottom: 2%;
    }

    .jieBusn li .txtBox .textB p {
        font-size: 14px;
        line-height: 20px;
    }

    .jieTian li {
        width: 50%;
        min-height: 271px;
        border-bottom: none;
        border-right: none;
    }
}

@media(max-width:768px) {
    .phoTit h5 {
        padding-bottom: 15px;
    }

    .phoTit p {
        font-size: 15px;
    }

    .jiePark li,
    .jieUser li {
        width: 100%;
        margin-right: 0 !important;
    }

    .jieBusn li {
        height: 210px;
    }

    .jieBusn li .txtBox .textB h5 {
        padding-bottom: 5px;
    }

    .jieBusn li .imgBox {
        display: none;
    }

    .jieTian li {
        width: 100%;
    }

    .jieTian li {
        border-bottom: 1px solid #e9e9e9 !important;
    }

    .jieTian li h5 {
        font-size: 18px;
    }

    .jieTian li p {
        font-size: 14px;
        line-height: 20px;
    }

    .jieTian li h1 {
        font-size: 42px;
    }

    .downAbox .codeBox {
        width: 140px;
        height: 140px;
    }

    .downAbox p {
        width: 140px;
    }
}


/*
 .Floor002248 为demo编号
 */
.Floor002248 {
    background: #f8f8f8;
    padding: 4.5% 0;
    position: relative
}

.Floor002248::before {
    background: url(../images/floor002248-bg.png)no-repeat left top;
    position: absolute;
    width: 39%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    content: '';
}

.Floor002248 .word {
    width: 100%;
    position: relative;
    z-index: 2;
    padding-top: 20px
}

.Floor002248 .word h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    color: #333;
    font-weight: normal;
}

.Floor002248 .word figure {
    margin: 0;
    padding: 25px 0 35px;
    line-height: 28px;
    font-size: 16px;
    color: #666;
    font-weight: lighter;
    width: 64%;
}

.Floor002248 .word ul {
    padding-top: 0px;
}

.Floor002248 .word ul li {
    float: left;
    text-align: center;
    padding: 0 10px;
    width: 25%;
    max-width: 200px;
    height: 150px;
    display: table;
}

.Floor002248 .word ul .txt {
    display: table-cell;
    vertical-align: middle;
}

.Floor002248 .word ul li:nth-child(1) {
    background: url(../images/floor002248-1.png) center
}

.Floor002248 .word ul li:nth-child(2) {
    background: url(../images/floor002248-2.png) center
}

.Floor002248 .word ul li:nth-child(3) {
    background: url(../images/floor002248-3.png) center
}

.Floor002248 .word ul li:nth-child(4) {
    padding: 0 0 0 36px;
    position: relative;
}

.Floor002248 .word ul li:nth-child(4) .remore {
    display: block;
    line-height: 40px;
    padding: 0 25px;
    border: 1px solid #ccc;
    color: #666;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    right: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.Floor002248 .word ul li:nth-child(4) .remore:hover {
    background: #00a0d9;
    border: 1px solid #00a0d9;
    color: #fff;
}

.Floor002248 .word ul li h4 {
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    width: 100%;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
}

.Floor002248 .word ul li p {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin: 0;
    padding-top: 5px;
    height: 0;
    opacity: 0;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    overflow: hidden
}

.Floor002248 .word ul li:nth-child(1):hover {
    background: #0070c0
}

.Floor002248 .word ul li:nth-child(2):hover {
    background: #70ad47
}

.Floor002248 .word ul li:nth-child(3):hover {
    background: #e7380d
}

.Floor002248 .word ul li:hover p {
    height: 77px;
    opacity: 1
}

.Floor002248 .word ul li a:hover .img_hover {}

.Floor002248 .word ul li .p1 {
    color: #333;
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    padding-top: 10px
}

.Floor002248 .right-img {
    position: relative;
    z-index: 2
}

.Floor002248 .right-img h5 {
    position: absolute;
    font-size: 30px;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-weight: normal;
}

@media only screen and (max-width: 1366px) {
    .Floor002248 .word figure {
        width: 74%;
    }

    .Floor002248 .word {
        padding-top: 0
    }

    .Floor002248 .word ul li .p1 {
        font-size: 14px;
    }

    .Floor002248 .word ul {
        padding-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .Floor002248 {
        padding: 50px 0
    }

    .Floor002248 .word h3 {
        text-align: center;
    }

    .Floor002248 .right-img {
        margin: 0 auto;
    }

    .Floor002248 .right-img .right-img_tit {
        left: 0;
    }

    .Floor002248 .word ul {
        margin: 0 auto 30px;
        max-width: 408px;
    }

    .Floor002248::before {
        width: 100%;
        height: 20%;
        bottom: 0;
        top: auto
    }

    .Floor002248 .word figure {
        width: 100%;
    }

    .Floor002248 .word ul li {
        width: 33.33%;
        height: 120px;
    }

    .Floor002248 .word ul li:nth-child(4) {
        width: 100%;
        padding: 0;
        max-width: 100%;
        margin-top: 10px;
    }

    .Floor002248 .word ul li h4 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 365px) {
    .Floor002248 .word ul li {
        padding: 0 10px;
    }
}

@media only screen and (min-width: 768px) {
    .Floor002248 .word h3 {
        font-size: 30px;
    }

    .Floor002248 .word {
        width: 57%;
        float: right;
    }

    .Floor002248 .right-img {
        float: left;
        width: 37%;
    }

}

@media only screen and (min-width: 1024px) {
    .Floor002248 .word h3 {
        font-size: 40px;
    }
}


/*
 .Floor001340 为demo编号
 */
.Floor001340 {
    padding: 4% 0;
    position: relative
}

.Floor001340::before {
    background: url(../images/floor002248-bg.png)no-repeat left top;
    position: absolute;
    width: 28%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    content: '';
}

.Floor001340 .pic {
    float: right;
    width: 37.9%;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 517px;
}

.Floor001340 .pic .play {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/play.png)no-repeat top 40% center
}

.Floor001340 .pic h3 {
    position: absolute;
    cursor: pointer;
    width: 100%;
    top: 50%;
    left: 0;
    text-align: center;
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: normal;
}

.Floor001340 .pic img {
    width: 100%;
}

.Floor001340 .con {
    float: left;
    width: 37.2%;
    padding-top: 3%;
    position: relative;
    z-index: 2
}

.Floor001340 .title {
    color: #333;
    font-size: 40px;
}

.Floor001340 .info {
    padding: 3% 0 10% 0;
    /*border-bottom: 1px solid #f0f0f0*/
}

.Floor001340 .info p {
    color: #666;
    line-height: 28px;
    font-size: 16px;
    margin: 0
}

.Floor001340 .link {
    /*color:#666;background:url(../images/floor001340-icon.png)no-repeat left center;padding-left: 40px;font-size: 16px;*/
    margin-top: 25px;
}

.Floor001340 .link .remore {
    line-height: 40px;
    padding: 0 25px;
    border: 1px solid #ccc;
    color: #666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    display: inline-block;
}

.Floor001340 .link .remore:hover {
    background: #00a0d9;
    border: 1px solid #00a0d9;
    color: #fff;
}

.Floor001340_video {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.Floor001340_video .close {
    cursor: pointer;
    position: absolute;
    right: 10%;
    top: 20%;
    width: 40px;
    height: 40px;
}

.Floor001340_video .close::before,
.Floor001340_video .close::after {
    position: absolute;
    content: '';
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 100%;
    height: 3px;
    background: #fff;
}

.Floor001340_video .close::after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.Floor001340_video .files {
    margin: 0 auto;
    width: 96%;
    max-width: 1000px;
    max-height: 70%;
}

.Floor001340_video .files video {
    background: #000;
}

.Floor001340 .bx-viewport {
    z-index: 1;
    background: #fff;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    overflow: hidden;
}

.Floor001340 .bx-pager {
    z-index: 10;
    position: absolute;
    width: 100%;
    bottom: 13%;
}

.Floor001340 .bx-pager div {
    display: inline-block;
    margin: 0 5px;
}

.Floor001340 .bx-pager a {
    display: block;
    height: 10px;
    overflow: hidden;
    line-height: 1000px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
    background: #fff;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    width: 10px
}

.Floor001340 .bx-pager a.active {
    width: 30px
}

@media(max-width:1024px) {
    .Floor001340 {
        padding: 50px 0;
        position: relative
    }

    .Floor001340 .pic,
    .Floor001340 .con {
        float: none;
        width: auto;
    }

    .Floor001340::before {
        background: url(../images/floor002248-bg.png)no-repeat right top;
        position: absolute;
        width: 100%;
        height: 20%;
        right: 0;
        top: auto;
        bottom: 0;
        z-index: 1;
        content: '';
    }

    .Floor001340 .title {
        text-align: center;
        font-size: 30px
    }

    .Floor001340 .con {
        margin-bottom: 20px
    }

    .Floor001340 .info {
        padding: 25px 0 35px 0;
        border-bottom: 1px solid #f0f0f0
    }

    .Floor001340 .pic h3 {
        font-size: 20px;
        top: 55%
    }
}

@media(max-width:640px) {

    .Floor001340 .pic,
    .Floor001340 .con {
        float: none;
        width: auto;
    }

    .Floor001340 .pic img {
        max-width: 417px;
    }
}

.ycenter {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

/*
 .Floor002232 为demo编号
 */
.Floor002232 {
    background: #f8f8f8
}

.Floor002232 .titl {
    text-align: center;
    font-size: 40px;
    color: #535353;
    padding: 2.5% 0
}

.Floor002232 .titl p {
    margin: 0;
    font-size: 16px;
    color: #666;
    padding-top: 10px;
}

.Floor002232 ul {
    position: relative;
    width: 50%;
    float: left;
}

.Floor002232 .ul1 {
    padding-left: 25%;
}

.Floor002232 .ul1 li {
    float: left;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    width: 100%;
    ;
    height: 320px;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden
}

.Floor002232 .ul2 li {
    float: left;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    width: 50%;
    ;
    height: 320px;
    overflow: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden
}

.Floor002232 .ul1 li:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%
}

.Floor002232 .ul2 li:nth-child(1) {
    width: 100%;
}

.Floor002232 .ul2 li:nth-child(1) .text .text-inner {
    padding: 5%
}

.Floor002232 li .text .text-inner {
    padding: 10%
}

.Floor002232 li:nth-child(4) .text .text-inner {
    padding: 5%
}

.Floor002232 li h3 {
    font-size: 24px;
    color: #fff;
    font-weight: normal;
    margin: 0;
    padding-bottom: 10%;
    position: relative;
    z-index: 10
}

.Floor002232 .ul2 li:nth-child(1) h3 {
    padding-bottom: 5%;
}

.Floor002232 li p {
    margin: 0;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    position: relative;
    opacity: 0;
    -webkit-transform: translate(0, 80px);
    -moz-transform: translate(0, 80px);
    -ms-transform: translate(0, 80px);
    -o-transform: translate(0, 80px);
    transform: translate(0, 80px);
    transform-origin: bottom;
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    -webkit-transition: opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1), -webkit-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    transition: opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1), -webkit-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -o-transition: opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1), -o-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -moz-transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1), -moz-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1);
    transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1), -webkit-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), -moz-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), -o-transform .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -webkit-transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1);
    -moz-transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1);
    -ms-transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1);
    -o-transition: transform .5s cubic-bezier(0.2, 0.0, 0.2, 1), opacity .3s cubic-bezier(0.2, 0.0, 0.2, 1);
}

.Floor002232 li h3 span {
    width: 27px;
    display: block;
    margin: 10px auto;
    height: 1px;
    background: #c49162
}

.Floor002232 li .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 320px);
    -moz-transform: translate(0, 320px);
    -ms-transform: translate(0, 320px);
    -o-transform: translate(0, 320px);
    transform: translate(0, 320px);
    -webkit-transform-origin: bottom;
    -moz-transform-origin: bottom;
    -ms-transform-origin: bottom;
    -o-transform-origin: bottom;
    transform-origin: bottom;
    transition: all .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -webkit-transition: all .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -moz-transition: all .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -ms-transition: all .5s cubic-bezier(0.2, 0.0, 0.2, 1);
    -o-transition: all .5s cubic-bezier(0.2, 0.0, 0.2, 1);
}

.Floor002232 .ul1 li:nth-child(1) .bg {
    background: #0070c0;
    -webkit-transform: translate(0, 640px);
    -moz-transform: translate(0, 640px);
    -ms-transform: translate(0, 640px);
    -o-transform: translate(0, 640px);
    transform: translate(0, 640px);
}

.Floor002232 .ul1 li:nth-child(2) .bg {
    background: #009fd9
}

.Floor002232 .ul1 li:nth-child(3) .bg {
    background: #70ad47
}

.Floor002232 .ul2 li:nth-child(1) .bg {
    background: #e7380d
}

.Floor002232 .ul2 li:nth-child(2) .bg {
    background: #c9e61a
}

.Floor002232 .ul2 li:nth-child(3) .bg {
    background: #ffc000
}

.Floor002232 .ul1 li:hover .bg {
    transform: translate(0, 0px);
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
}

.Floor002232 .ul2 li:hover .bg {
    transform: translate(0, 0px);
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
}

.Floor002232 li:hover p {
    opacity: 1;
    transform: translate(0, 0px);
    -webkit-transform: translate(0, 0px);
    -moz-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    -o-transform: translate(0, 0px);
}

@media (max-width: 1024px) {
    .Floor002232 ul {
        position: relative;
        width: 100%;
        float: none;
    }

    .Floor002232 .ul1 {
        padding-left: 50%;
    }
}

@media (max-width: 768px) {
    .Floor002232 {
        padding-top: 50px
    }

    .Floor002232 .titl {
        font-size: 30px;
    }

    .Floor002232 .titl p {
        font-size: 14px;
    }

    .Floor002232 .ul1 li {
        height: 125px
    }

    .Floor002232 .ul2 li {
        height: 125px
    }

    .Floor002232 li h3 {
        font-size: 18px;
        color: #fff;
        font-weight: normal;
        margin: 0;
        padding-bottom: 3%;
        position: relative;
        z-index: 10
    }

    .Floor002232 li p {
        margin: 0;
        font-size: 14px;
        color: #fff;
        line-height: 20px;
        position: relative;
        height: 60px;
        overflow: hidden
    }
}


/*Floor002718 */
.Floor002718 {
    position: relative;
    z-index: 1;
    margin-top: 60px
}

.Floor002718 .main {
    padding: 9.67% 0;
    background-position: center top;
    -webkit-background-size: 101% 101%;
    -moz-background-size: 101% 101%;
    -o-background-size: 101% 101%;
    background-size: 101% 101%;
    background-repeat: no-repeat;
    -webkit-transition: all 1.3s;
    -o-transition: all 1.3s;
    -moz-transition: all 1.3s;
    transition: all 1.3s;
}

.Floor002718 .main:hover {
    -webkit-background-size: 104% 104%;
    -moz-background-size: 104% 104%;
    -o-background-size: 104% 104%;
    background-size: 104% 104%;
}

.Floor002718 .main .ytable {
    height: 100%;
}

.edit-css-2718 {
    text-align: center;
}

.edit-css-2718 .tit {
    font-size: 40px;
    font-weight: normal;
    margin: 0 0 2% 0;
    color: #fff
}

.edit-css-2718 p {
    margin-top: 0;
    font-size: 18px;
    color: #fff
}

@media (max-width: 1024px) {
    .edit-css-2718 .tit {
        font-size: 30px;
        font-weight: normal;
        margin: 0 0 2% 0;
        color: #fff
    }

    .edit-css-2718 p {
        margin-top: 0;
        font-size: 14px;
        color: #fff
    }
}






/*Banner002729 */
.Banner002729 .slider li.slick-slide {
    height: auto;
    position: relative;
}

.Banner002729 .ytable {
    height: 100%;
}

.Banner002729 .txt-main {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 3;
    font-size: 50px;
}

.Banner002729 .txt-main a.more {
    display: block;
    color: #184477;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    width: 11.0625em;
    line-height: 2.875em;
    border: 2px solid #184477;
    text-align: center;
    letter-spacing: 0.625em;
    font-weight: bold;
    font-size: 0.32em;
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    opacity: 0;
    -webkit-opacity: 0;
    -webkit-transition: opacity 0.5s 1.5s, -webkit-transform 0.5s 1.5s;
    transition: opacity 0.5s 1.5s, -webkit-transform 0.5s 1.5s;
    -o-transition: opacity 0.5s 1.5s, -o-transform 0.5s 1.5s;
    -moz-transition: transform 0.5s 1.5s, opacity 0.5s 1.5s, -moz-transform 0.5s 1.5s;
    transition: transform 0.5s 1.5s, opacity 0.5s 1.5s;
    transition: transform 0.5s 1.5s, opacity 0.5s 1.5s, -webkit-transform 0.5s 1.5s, -moz-transform 0.5s 1.5s, -o-transform 0.5s 1.5s;
}

.Banner002729 .txt-main a.more:hover {
    background: #184477;
    color: #fff;
}

.Banner002729 .txt-main aside {
    color: #184477;
    max-width: 700px;
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    opacity: 0;
    -webkit-opacity: 0;
}

.Banner002729 .txt-main aside.tit {
    font-size: 1em;
    line-height: 1em;
    max-height: 2em;
    margin-bottom: 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.Banner002729 .txt-main aside.pre {
    font-size: 0.44em;
    line-height: 1.2em;
    max-height: 2.4em;
    margin-bottom: 4%;
    -webkit-transition: 0.5s 0.5s;
    -o-transition: 0.5s 0.5s;
    -moz-transition: 0.5s 0.5s;
    transition: 0.5s 0.5s;
}

.Banner002729 .an-show .txt-main a.more,
.Banner002729 .an-show .txt-main aside {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform: translateY(0);
    opacity: 1;
    -webkit-opacity: 1;
}

.Banner002729 .slider li img {
    display: block;
    width: 100%;
}

.Banner002729 .slick-dots {
    text-align: center;
    position: absolute;
    left: 0;
    z-index: 10;
    bottom: 40px;
    width: 100%;
}

.Banner002729 .slick-dots li {
    list-style: none;
    display: inline-block
}

.Banner002729 .slick-dots li button {
    background: rgba(256, 256, 256, 0.3);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 0;
    width: 15px;
    height: 15px;
    cursor: pointer;
    font-size: 0;
    border: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 7px
}

.Banner002729 .slick-dots li.slick-active button {
    opacity: 1;
    -webkit-opacity: 1;
    width: 35px;
    background: rgba(256, 256, 256, 0.3);
}

.Banner002729 .slick-dots li.slick-active {
    border-color: #fff;
}

@media(min-width:1201px) {
    .Banner002729 .slider li img.wap {
        display: none;
    }
}

@media(max-width:1200px) {
    .Banner002729 .slider li img.pc {
        display: none;
    }
}

@media(max-width:1024px) {
    .Banner002729 .txt-main {
        font-size: 40px;
    }
}

@media(max-width:640px) {
    .Banner002729 .txt-main {
        font-size: 28px;
    }
}

@media(max-width:480px) {
    .Banner002729 .txt-main {
        font-size: 20px;
    }
}



.num {
/*    background: #024ea4;*/
    padding: 3% 0 2.5%;
}

.num li {
    float: left;
    width: 25%;
    text-align: center;
    border-right: 1px solid #dedede
}

.num li:last-child {
    border-right: 0
}

.num li h3 {
    font-size: 30px;
    color: #00a0d9;
    font-family: 'Helvetica';
    margin: 0
}

.num li h3 {
    font-style: normal;
    display: inline-block
}

.num li h3 span {
    font-size: 55px;
    color: #fff;
    position: relative;
    padding-right: 20px
}

.num li h3 span::before {
    content: '+';
    font-size: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.num li p {
    margin: 0;
    font-weight: normal;
    font-size: 16px;
    color: #fff;
}

@media(max-width:1024px) {
    .num li {
        float: left;
        width: 50%;
        text-align: center;
        border-right: 1px solid #dedede;
        margin-bottom: 20px
    }

    .num li:nth-child(2n) {
        border-right: 0
    }

    .num li h3 {
        font-size: 20px;
        color: #00a0d9;
        font-family: 'Helvetica';
        margin: 0
    }

    .num li h3 span {
        font-size: 32px;
        color: #00a0d9;
        position: relative;
        padding-right: 20px
    }

    .num li p {
        font-size: 14px;
    }
}

.zhtc {
    background: url(../images/zhtc-bg.png)no-repeat left bottom
}


.content-box {
    background: url(../images/content-bg.jpg) repeat-y center top #013d95;
}

.content-box .title {
    text-align: center;
    color: #fff;
    padding: 80px 0 9%;
    background: url(../images/floor002438-border.png)no-repeat left bottom;
}

.content-box .title h3 {
    font-size: 42px;
    margin: 0;
    font-weight: normal;
    padding-bottom: 5px
}

.content-box .title h3 b {
    font-size: 52px;
    font-weight: normal
}

.content-box .title p {
    font-size: 20px;
    font-weight: lighter;
    letter-spacing: 10px;
    margin: 0
}

.content-box .title .p1 {
    font-weight: lighter;
    letter-spacing: 0px;
    margin: 0
}

@media(max-width:1366px) {
    .content-box .title {
        background: none;
        padding: 50px 0 20px
    }

    .content-box .title h3 {
        font-size: 28px;
    }

    .content-box .title h3 b {
        font-size: 32px;
    }

    .content-box .title p {
        font-size: 16px;
    }
}

/*
 .Floor002438 为demo编号
 */
.Floor002438 {
    padding-top: 2%;
    border-left: 10px solid rgba(256, 256, 256, 0.1)
}

.Floor002438 .headline {
    text-align: center;
    background: url(../images/01.png)no-repeat center top;
    padding: 2.5% 0 3%;
    ;
}

.Floor002438 .headline h3 {
    font-size: 34px;
    color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    font-weight: normal;
}

.Floor002438 .headline h3::before,
.Floor002438 .headline h3::after {
    content: '';
    width: 13px;
    height: 2px;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px
}

.Floor002438 .headline h3::after {
    right: -30px;
    left: auto
}

.Floor002438 .tabs {
    max-width: 868px;
    width: 70%;
    margin: 0 auto
}

.Floor002438 .tabs a {
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.Floor002438 .tabs a {
    float: left;
    width: 24%;
    display: block;
    font-size: 18px;
    color: #fff;
    border: 1px solid rgba(256, 256, 256, 0.3);
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    cursor: pointer;
    margin-right: 1.33%;
    line-height: 50px
}

.Floor002438 .tabs a:last-child {
    margin-right: 0
}

.Floor002438 .tabs a:hover,
.Floor002438 .tabs a.active {
    background: #00a0d9;
    border-color: #00a0d9
}

@media(max-width:1366px) {
    .Floor002438 {
        padding: 2% 2% 0
    }
}

@media only screen and (max-width:640px) {}

.Floor002438 .list {
    /*padding-top: 3.5%; */
}

.Floor002438 .list .p1 {
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    text-align: center;
    padding: 3.5% 0 30px
}

.Floor002438 .list .pic {
    text-align: center;
}

.Floor002438 .list ul li {
    position: relative;
    padding: 25px 10px 25px 0;
    background: rgba(236, 241, 243, 0) none repeat scroll 0 0 !important;
    filter: Alpha(opacity=0);
    background: #ecf1f3;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    cursor: pointer;
}

.Floor002438 .list .box {
    display: none;
}

.Floor002438 .list ul li+li {
    border-top: 1px solid #ededed;
}

.Floor002438 .list ul li time {
    position: absolute;
    left: 0;
    width: 80px;
    top: 25px;
    color: #999;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    border-right: 1px dotted #e0e0e0;
    font-family: arial;
}

.Floor002438 .list ul li time span {
    color: #98adb4;
    font-size: 48px;
    display: block;
}

.Floor002438 .list ul li .text {
    padding-left: 100px;
}

.Floor002438 .list ul li .text h3 {
    margin: 8px 0 12px;
    font-weight: normal;
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.Floor002438 .list ul li .text h3 a {
    color: #576970;
}

.Floor002438 .list ul li .text .con {
    color: #999;
    font-size: 14px;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.Floor002438 .list ul li:hover {
    background: rgba(236, 241, 243, 1) none repeat scroll 0 0 !important;
    filter: Alpha(opacity=1);
}

.Floor002438 .list ul li:hover .text h3 a,
.Floor002438 .list ul li .text h3 a:hover,
.Floor002438 .list ul li:hover time span {
    color: #004b64;
}

.Floor002438 .list .more {
    display: block;
    width: 204px;
    height: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 40px;
    margin: 30px auto 0;
    background-color: #004b64;
}

@media(max-width:1024px) {
    .Floor002438 {
        border-left: 0;
        padding: 2% 0
    }

    .Floor002438 .headline {
        text-align: center;
        background: url(../images/01.png)no-repeat center top;
        padding: 36px 0 3%;
    }

    .Floor002438 .headline h3 {
        font-size: 24px;
    }

    .Floor002438 .tabs {
        width: 100%;
        max-width: 100%
    }

    .Floor002438 .tabs a {
        width: 49%;
        font-size: 14px;
        margin-right: 2%;
        margin-bottom: 2%
    }

    .Floor002438 .tabs a:nth-child(2n) {
        margin-right: 0
    }

    .Floor002438 .list .p1 {
        width: 100%;
        font-size: 14px;
        color: #fff;
        line-height: 24px;
    }
}

.tdll {
    padding-top: 8%;
    background: url(../images/tdll-border.png)no-repeat left top;
    position: relative;
    overflow: hidden;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%
}

.tdll::after {
    content: '';
    width: 10px;
    height: 100%;
    background: rgba(256, 256, 256, 0.1);
    position: absolute;
    right: 0;
    top: 110px;
}

.tdll .headline {
    text-align: center;
    background: url(../images/02.png)no-repeat center top;
    padding: 2.5% 0 1%;
    ;
}

.tdll .headline h3 {
    font-size: 34px;
    color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    font-weight: normal;
}

.tdll .headline h3::before,
.tdll .headline h3::after {
    content: '';
    width: 13px;
    height: 2px;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px
}

.tdll .headline h3::after {
    right: -30px;
    left: auto
}

.tdll .p1 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 28px;
    margin: 0
}

.tdll .pic {
    text-align: center;
}

@media(max-width:1366px) {
    .tdll {
        padding: 8% 2% 0;
    }

    .tdll::after {
        top: 100px;
    }
}

@media(max-width:1024px) {
    .tdll {
        padding-top: 8%;
        background: none;
    }

    .tdll::after {
        display: none
    }

    .tdll .headline {
        text-align: center;
        background: url(../images/02.png)no-repeat center top;
        padding: 36px 0 3%;
    }

    .tdll .headline h3 {
        font-size: 24px;
    }

    .tdll .p1 {
        font-size: 14px;
        line-height: 24px;
    }
}

.ggyx {
    padding: 9% 0 7%;
    background: url(../images/ggyx-border.png)no-repeat left top;
    position: relative;
    overflow: hidden;
    -webkit-background-size: 100% 100%;
    -moz-background-size: 100%;
    -o-background-size: 100%;
    background-size: 100%
}

.ggyx::after {
    content: '';
    width: 10px;
    height: 100%;
    background: rgba(256, 256, 256, 0.1);
    position: absolute;
    left: 0;
    top: 110px;
}

.ggyx .headline {
    text-align: center;
    background: url(../images/03.png)no-repeat center top;
    padding: 2.5% 0 1%;
    ;
}

.ggyx .headline h3 {
    font-size: 34px;
    color: #fff;
    display: inline-block;
    margin: 0;
    position: relative;
    font-weight: normal;
}

.ggyx .headline h3::before,
.ggyx .headline h3::after {
    content: '';
    width: 13px;
    height: 2px;
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -30px
}

.ggyx .headline h3::after {
    right: -30px;
    left: auto
}

.ggyx .p1 {
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 28px;
    margin: 0;
    padding-bottom: 6%
}

.ggyx li {
    width: 33.33%;
    padding: 0 1%;
    float: left;
    text-align: center
}

.ggyx li p {
    font-size: 20px;
    font-weight: lighter;
    margin: 0;
    color: #fff;
    padding: 30px 0 1%
}

.ggyx li h3 {
    font-size: 22px;
    margin: 0;
    color: #fff;
}

.ggyx li .pic {
    text-align: center;
    min-height: 320px
}

@media(max-width:1366px) {
    .ggyx {
        padding: 9% 2% 7%;
    }

    .ggyx::after {
        top: 100px;
    }
}

@media(max-width:1024px) {
    .ggyx {
        padding: 9% 0 7%;
        background: none;
    }

    .ggyx::after {
        display: none
    }

    .ggyx .headline {
        text-align: center;
        background: url(../images/03.png)no-repeat center top;
        padding: 36px 0 3%;
    }

    .ggyx .headline h3 {
        font-size: 24px;
    }

    .ggyx .p1 {
        font-size: 14px;
        line-height: 24px;
    }

    .ggyx li {
        width: 100%;
        padding: 0;
        float: none;
        margin-bottom: 40px
    }

    .ggyx li .pic {
        text-align: center;
        min-height: 100%
    }

    .ggyx li p {
        font-size: 16px;
        padding: 15px 0 1%
    }

    .ggyx li h3 {
        font-size: 18px;
    }
}




.case {
    padding: 4% 0 3%
}

.case .title {
    text-align: center;
    font-size: 34px;
    color: #333;
    padding-bottom: 4%
}

.case li {
    float: left;
    width: 23.858%;
    margin-right: 1.5%;
    margin-bottom: 3%
}

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

.case li .pic {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.case li figure {
    padding-bottom: 74.86%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.case li:hover figure {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.case li h3 {
    margin: 0;
    padding: 4% 0 0;
    color: #000;
    font-weight: lighter;
    font-size: 18px;
    text-align: center
}

@media(max-width:1024px) {
    .case .title {
        font-size: 24px;
    }

    .case li {
        width: 49%;
        margin-right: 2%;
    }

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

    .case li h3 {
        font-size: 14px;
    }
}

/*new下载中心*/
.downBox {}

.downBox .downseleB {
    margin-bottom: 40px;
}

.downBox .downseleB .typeList {
    padding: 15px 1.5%;
    background: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.downBox .downseleB .typeList h5 {
    float: left;
    width: 100px;
    text-align: right;
    line-height: 30px;
    margin-right: 25px;
    font-size: 16px;
    color: #666666;
    font-weight: normal;
}

.downBox .downseleB .typeList .typeBox {
    float: left;
}

.downBox .downseleB .typeList .typeBox a {
    display: inline-block;
    padding: 0 20px;
    line-height: 30px;
    font-size: 16px;
    color: #666666;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.downBox .downseleB .typeList .typeBox a:hover,
.downBox .downseleB .typeList .typeBox a.on {
    background: #0096d0;
    color: #fff;
}

.downBox .downseleB .topSearch {
    padding: 2% 1.5%;
    background: #f9f9f9;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px 0;
}

.downBox .downseleB .topSearch .seleBox .selecon {
    background: #fff;
    margin-left: 0;
}

.downBox .downseleB .topSearch .inptBox input {
    background: #fff;
}

.downBox .downList {}

.downBox .downList li {
    line-height: 58px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 2%;
}

.downBox .downList li span {
    display: inline-block;
    float: left;
    font-size: 16px;
    color: #666666;
    text-align: center;
}

.downBox .downList li span:nth-child(1) {
    width: 45%;
    text-align: left;
}

.downBox .downList li span:nth-child(2),
.downBox .downList li span:nth-child(3),
.downBox .downList li span:nth-child(4),
.downBox .downList li span:nth-child(5) {
    width: 12.5%;
}

.downBox .downList li span:nth-child(6) {
    width: 5%;
}

.downBox .downList li.hasview span.view a {
    display: inline-block;
    width: 20px;
    height: 15px;
    background: url(../images/icon18.png) no-repeat;
}

.downBox .downList li span.down a {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/icon13.png) no-repeat;
}

.downBox .downList li span a {
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.downBox .downList li span a:hover {
    top: -5px;
}

.downBox .downList .titleBox li {
    border: none;
    line-height: 60px;
    background: #0096d0;
}

.downBox .downList .titleBox li span {
    color: #fff;
}

@media(max-width:768px) {
    .downBox .downList li span {
        font-size: 14px;
    }

    .downBox .downList li span:nth-child(1) {
        width: 50%;
    }

    .downBox .downList li span:nth-child(2),
    .downBox .downList li span:nth-child(3),
    .downBox .downList li span:nth-child(4) {
        display: none;
    }

    .downBox .downList li span:nth-child(5),
    .downBox .downList li span:nth-child(6) {
        width: 25%;
    }
}

/*new下载中心*/
/*招聘*/
.recruitFoor1 {
    background: #f8f8f8;
    padding: 4% 0;
}

.recruitFoor1 h1 {
    font-size: 34px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2%;
}

.recruitFoor1 .reasonList {}

.recruitFoor1 .reasonList li {
    float: left;
    background: #fff;
    width: 24%;
    margin-right: 1.33%;
    padding: 2% 2.5%;
    text-align: center;
    min-height: 285px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

.recruitFoor1 .reasonList li .iconB {
    line-height: 45px;
    margin-bottom: 20px;
}

.recruitFoor1 .reasonList li h5 {
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    margin-bottom: 15px;
}

.recruitFoor1 .reasonList li p {
    line-height: 24px;
    color: #999999;
}

.recruitFoor2 {
    padding: 3% 0;
}

.recruitFoor2 .searBox {
    text-align: center;
    padding: 25px 0;
    background: #f8f8f8;
    margin-bottom: 30px;
}

.recruitFoor2 .searBox input {
    display: inline-block;
    width: 40%;
    line-height: 48px;
    border: 1px solid #eee;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #fff;
    padding: 0 18px;
    vertical-align: middle;
    font-size: 16px;
    margin-right: 12px;
}

.recruitFoor2 .searBox .gosear {
    display: inline-block;
    line-height: 50px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 0 50px;
    font-size: 18px;
    color: #fff;
    background: #0096d0;
    vertical-align: middle;
}

.recruitFoor2 .jobList {}

.recruitFoor2 .jobList li {
    line-height: 58px;
    border: 1px solid #eee;
    margin-bottom: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 2%;
}

.recruitFoor2 .jobList li span {
    display: inline-block;
    float: left;
    font-size: 16px;
    color: #666666;
    text-align: center;
}

.recruitFoor2 .jobList li span:nth-child(1) {
    width: 32.5%;
    text-align: left;
}

.recruitFoor2 .jobList li span:nth-child(2),
.recruitFoor2 .jobList li span:nth-child(3),
.recruitFoor2 .jobList li span:nth-child(4),
.recruitFoor2 .jobList li span:nth-child(5),
.recruitFoor2 .jobList li span:nth-child(6),
.recruitFoor2 .jobList li span:nth-child(7) {
    width: 16.5%;
}

.recruitFoor2 .jobList li span:nth-child(8) {
    width: 5%;
}

.recruitFoor2 .jobList li span.view a {
    display: inline-block;
    width: 20px;
    height: 15px;
    background: url(../images/icon18.png) no-repeat;
}

.recruitFoor2 .jobList li span.deli a {
    display: inline-block;
    width: 24px;
    height: 15px;
    background: url(../images/icon19.png) no-repeat;
}

.recruitFoor2 .jobList li span a {
    position: relative;
    top: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.recruitFoor2 .jobList li span a:hover {
    top: -5px;
}

.recruitFoor2 .jobList .jobDesc {
    display: none;
}

.recruitFoor2 .jobList .titleBox li {
    border: none;
    line-height: 60px;
    background: #0096d0;
}

.recruitFoor2 .jobList .titleBox li span {
    color: #fff;
}

.recruitFoor2 .recruMenu {
    text-align: center;
    margin-bottom: 3%;
}

.recruitFoor2 .recruMenu a {
    display: inline-block;
    line-height: 50px;
    padding: 0 40px;
    font-size: 20px;
    color: #777;
    background: #f8f8f8;
    margin: 0 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
}

.recruitFoor2 .recruMenu a:hover,
.recruitFoor2 .recruMenu a.on {
    background: #00a0d9;
    color: #fff;
}

.jobDespup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
}

.jobDespup .BG {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}

.jobDespup .contBox {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    max-width: 540px;
}

.jobDespup .contBox .closBtn {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    background: url(../images/col.png) no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jobDespup .contBox .closBtn:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.jobDespup .contBox .topBox {}

.jobDespup .contBox .topBox .titB {
    margin-bottom: 25px;
}

.jobDespup .contBox .topBox .titB h5 {
    font-size: 30px;
    font-weight: normal;
    float: left;
    line-height: 28px;
}

.jobDespup .contBox .topBox .titB p {
    font-size: 24px;
    color: #00a0d9;
    line-height: 28px;
    float: right;
}

.jobDespup .contBox .topBox .conB {
    padding-bottom: 15px;
    border-bottom: 5px solid #f8f8f8;
}

.jobDespup .contBox .topBox .conB p {
    font-size: 16px;
    color: #00a0d9;
    position: relative;
    float: left;
    line-height: 15px;
}

/*.jobDespup .contBox .topBox .conB p:before{width: 1px;height: 100%;content: '';background:#00a0d9;position: absolute;top: 0;left: 50%;}*/
.jobDespup .contBox .topBox .conB p span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}

.jobDespup .contBox .topBox .conB p span:nth-child(2n) {
    margin-right: 0;
}

.jobDespup .contBox .topBox .conB time {
    font-size: 16px;
    color: #c4c4c4;
    float: right;
}

.jobDespup .contBox .jobDesc {
    max-height: 420px;
    overflow: auto;
}

.jobDespup .contBox .jobDesc .item {
    padding-top: 35px;
}

.jobDespup .contBox .jobDesc .item h5 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
}

.jobDespup .contBox .jobDesc .item p {
    color: #999;
    line-height: 28px;
}

.jobDespup .contBox .deliBtn {
    width: 175px;
    line-height: 45px;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    color: #fff;
    background: #00a0d9;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.jobSenpup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10001;
    display: none;
}

.jobSenpup .BG {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
}

.jobSenpup .senForm {
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 3% 5%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    max-width: 540px;
    width: 45%;
}

.jobSenpup .senForm .closBtn {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    background: url(../images/col.png) no-repeat;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.jobSenpup .senForm .closBtn:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}

.jobSenpup .senForm h5 {
    text-align: center;
    font-size: 30px;
    line-height: 1;
    padding-bottom: 18px;
    position: relative;
    font-weight: normal;
    margin-bottom: 30px;
}

.jobSenpup .senForm h5:before {
    width: 19px;
    height: 3px;
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -9.5px;
    bottom: 0;
    background: #00a0d9;
}

.jobSenpup .senForm input {
    display: block;
    line-height: 48px;
    border: 1px solid #eee;
    margin-bottom: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 15px;
    width: 100%;
    font-size: 16px;
}

.jobSenpup .senForm .upfBox {
    position: relative;
}

.jobSenpup .senForm .upfBox .a-upload {
    bottom: 2px;
    padding-left: 15px;
    width: 100%;
    height: 50px;
    line-height: 48px;
    position: relative;
    cursor: pointer;
    color: #888;
    border: 1px solid #eee;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    display: inline-block;
    *display: inline;
    *zoom: 1
}

.jobSenpup .senForm .upfBox .a-upload input {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    z-index: 9;
}

.jobSenpup .senForm .upfBox button {
    width: 120px;
    height: 50px;
    border: none;
    color: #fff;
    font-size: 16px;
    line-height: 48px;
    cursor: pointer;
    position: absolute;
    top: -1px;
    right: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 2;
}

.jobSenpup .senForm .upfBox button:hover {
    background: #00a0d9;
}

.jobSenpup .senForm .deliBtn {
    width: 175px;
    line-height: 45px;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    text-align: center;
    color: #fff;
    background: #00a0d9;
    font-size: 16px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

@media(max-width:768px) {
    .recruitFoor2 .jobList li span {
        font-size: 14px;
    }

    .recruitFoor2 .jobList li span:nth-child(1) {
        width: 50%;
    }

    .recruitFoor2 .jobList li span:nth-child(2),
    .recruitFoor2 .jobList li span:nth-child(3),
    .recruitFoor2 .jobList li span:nth-child(4),
    .recruitFoor2 .jobList li span:nth-child(5),
    .recruitFoor2 .jobList li span:nth-child(6) {
        display: none;
    }

    .recruitFoor2 .jobList li span:nth-child(7),
    .recruitFoor2 .jobList li span:nth-child(8) {
        width: 25%;
    }

    .jobDespup .contBox {
        width: 80%;
    }

    .jobDespup .contBox .jobDesc {
        max-height: 350px;
    }

    .jobDespup .contBox .topBox .titB h5 {
        font-size: 24px;
    }

    .jobDespup .contBox .topBox .titB p {
        font-size: 20px;
    }

    .jobSenpup .senForm {
        width: 80%;
    }

    .recruitFoor1 h1 {
        font-size: 24px;
    }

    .recruitFoor1 .reasonList li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
        min-height: 320px;
    }

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

    .recruitFoor2 .recruMenu a {
        line-height: 40px;
        padding: 0 20px;
        font-size: 16px;
    }
}

/*招聘*/



/*2020.6.30*/

@media(max-width:1600px) {

    .footer .bottom .bottomTop {
        padding: 5% 0 0
    }

    .home_page7 {
        padding-bottom: 1%
    }

    .bottom .bottomTop .righBox .bomnav dd {
        line-height: 24px
    }

    .home_page7 .idxpneList,
    .bottom .bottomTop .bomfrilink {
        margin-top: 1%
    }

    .bottom .bottomTop .bomfrilink,
    .bottom .bottomBom {
        line-height: 30px
    }


}

@media(max-width:1366px) {
    .bottom .bottomTop .righBox .bomnav dd {
        line-height: 22px
    }
}


/*软件产品页面*/
.SoftwareProduct {
    padding: 30px 0;
}

.SoftwareProduct .List {
    margin-top: 20px;
    position: relative;
    padding: 0 40px;
}

.SoftwareProduct .List .imgtext {
    border: 1px solid #f0f0f0;
}

.SoftwareProduct .List .txt {
    margin-top: 5px 0;
    text-align: center;
    padding: 0 10px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.SoftwareProduct .List .title {
    font-size: 14px;
    color: #333;
}

.SoftwareProduct .List .content {
    font-size: 12px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: center;
    min-height: 68px;
}

.SoftwareProduct .List .item .lia {
    display: block;
}

.SoftwareProduct .List .item .img {
    overflow: hidden;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.SoftwareProduct .List .item .img img {
    width: 100%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SoftwareProduct .List .item .lia:hover .img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -moz-transform: scale(1.1);
    transform: scale(1.1);
}

.SoftwareProduct .List .btns {}

.SoftwareProduct .List .btns a {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background: #fff no-repeat center center;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    z-index: 9;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SoftwareProduct .List .btns a:hover {
    background-color: #00a0d9;
}

.SoftwareProduct .List .btns .btnleft {
    background-image: url('../images/btn01.png');
    left: 0;
}

.SoftwareProduct .List .btns .btnleft:hover {
    background-image: url('../images/btn01on.png')
}

.SoftwareProduct .List .btns .btnright {
    background-image: url('../images/btn02.png');
    right: 0;
}

.SoftwareProduct .List .btns .btnright:hover {
    background-image: url('../images/btn02on.png')
}

@media(min-width:1024px) {
    .SoftwareProduct {
        padding: 80px 0 65px;
    }

    .SoftwareProduct .List {
        padding: 0 80px;
        margin-top: 50px;
    }

    .SoftwareProduct .List .btns a {
        width: 50px;
        height: 50px;
        margin-top: -40px;
    }

    .SoftwareProduct .List .txt {
        font-size: 20px;
    }

    .SoftwareProduct .List .title {
        font-size: 20px;
        color: #333;
    }

    .SoftwareProduct .List .content {
        font-size: 16px;
        color: #666;
    }
}

@media(min-width:1600px) {
    .SoftwareProduct .List {
        padding: 0;
    }

    .SoftwareProduct .List .btns .btnleft {
        left: -80px;
    }

    .SoftwareProduct .List .btns .btnright {
        right: -80px;
    }

}

.SolutionPictureSlider {
    background: #f8f8f8;
}

.SolutionPictureSlider {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    -moz-box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    box-shadow: 0 0 20px rgba(51, 51, 51, .2);
    position: relative;
    margin-bottom: 3%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
    z-index: 1;
}

.SolutionPictureSlider .bx-wrapper {
    padding-bottom: 0;
}

.SolutionPictureSlider .bx-has-pager {
    display: flex;
    align-items: center;
    justify-content: center;
}

.SolutionPictureSlider li {
    background: #fff;
}

.SolutionPictureSlider .bx-pager {
    position: absolute;
    bottom: 15px;
}

.SolutionPictureSlider .bx-pager .bx-pager-item {
    display: inline-block;
}

.SolutionPictureSlider .bx-pager .bx-pager-item a {
    display: block;
    width: 11px;
    height: 7px;
    background: rgba(150, 150, 150, .3);
    margin: 0 5px;
    font-size: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.SolutionPictureSlider .bx-pager .bx-pager-item a.active {
    width: 30px;
    background: #00a0d9;
}




/*地图*/
/*TextList003121 */
.TextList003121 {
    padding: 3% 0;
    font-family: 'SourceHanSansCN-Normal';
}

.TextList003121 .inside {
    border: 0px solid #f2f2f2;
    padding: 3% 0;
}

.TextList003121 .tit {
    margin: 0;
    font-size: 36px;
    font-family: 'SourceHanSansCN-Bold';
    color: #333333;
    padding-bottom: 1em;
    line-height: 1;
}

.TextList003121 .area dd {
    color: #333333;
    font-size: 18px;
    line-height: 2.5;
    border-radius: 2.5em;
    padding: 0 2.25em;
    /* padding-right: 0; */
    max-width: 170px;
    margin-bottom: 30px;
    cursor: pointer;
}

.TextList003121 .area dd.on {
    background-color: #f2f2f2;
}

.TextList003121 .list {
    display: none;
}

.TextList003121 .list li {
    border-bottom: 1px solid #f2f2f2;
    padding: 1.5em 2.5em;
    font-size: 16px;
    line-height: 1.875;
    max-width: 90%;
}

.TextList003121 .list li h4 {
    font-weight: normal;
    font-size: 1.25em;
    padding-left: 2em;
    background: url(../images/textlist003121-icon.png) no-repeat left center;
    margin: 0 0 0 -2em;
    color: #333333;
    line-height: 1.5;
}

.TextList003121 .list li aside {
    position: relative;
    padding-left: 5.125em;
    min-height: 1.875em;
}

.TextList003121 .list li aside span {
    position: absolute;
    left: 0;
    top: 0;
}

.TextList003121 .inside h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 500;
}

@media (min-width:769px) {

    .serDot {
        display: none;
    }


    .TextList003121 .ytable {
        table-layout: fixed;
        display: flex;
        vertical-align: middle;
        width: 100%;
    }

    .TextList003121 .ytable-cell {
        vertical-align: top;
        float: left;
    }

    .ytable-cell {
        /* display: flex; */
        /* vertical-align: middle; */
    }

    .TextList003121 .area {
        width: 20%;
        padding-top: 0;
        max-height: 530px;
        overflow: auto;
        position: relative;
    }

    .TextList003121 .area:before {
        content: '';
        width: 1px;
        right: 0;
        height: 100%;
        position: absolute;
        background: #f2f2f2;
    }

    .TextList003121 .list-group:before {
        content: '';
        width: 1px;
        height: 100%;
        position: absolute;
        right: 0;
        background: #f2f2f2;
    }

    .TextList003121 .area dl {
        /* margin-right: -22px; */
    }

    .TextList003121 .list-group {
        padding-left: 92px;
        width: 100%;
        max-height: 530px;
        overflow: auto;
        position: relative;
    }
}

@media (max-width:768px) {
    .TextList003121 {
        display: none;
    }

    .serDot .dotBox .dotLeft {
        display: none;
    }

    .TextList003121 .ytable,
    .TextList003121 .ytable-cell {
        display: block;
    }

    .TextList003121 .area {
        margin-bottom: 2vw;
    }

    .TextList003121 .area dl {
        display: flex;
        flex-wrap: wrap;
    }

    .TextList003121 .area dd {
        font-size: 2.5vw;
    }
}

@media (max-width:480px) {
    .TextList003121 .tit {
        font-size: 6vw;
    }

    .TextList003121 .list li {
        font-size: 3.5vw;
    }

    .TextList003121 .area dd {
        font-size: 3.5vw;
        padding: 0 1em;
        line-height: 2.2;
    }
}



.TextList003121 ::-webkit-scrollbar-thumb {
    background-color: rgb(144, 147, 153, 0.13);
    background-clip: padding-box;
    min-height: 10px;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
    transition: background-color .3s;
    cursor: pointer;
}


.TextList003121 ::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}


.TextList003121 ::-webkit-scrollbar-track {
    width: 6px;
    background: rgba(#101F1C, 0.1);
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    border-radius: 2em;
}


.TextList003121 ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(144, 147, 153, .3);
}

/*
    云展厅
*/
.cloudShowroomInfo {
    background-color: #E4F1FF;
}

.cloudShowroomInfo .proTabs {
    position: relative;
    z-index: 1;
}

.cloudShowroomInfo .proTabs .left .Ispic {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
}

.cloudShowroomInfo .proTabs .left .small li .Ispic {
    background-color: #fff;
    border: 1px solid transparent;
    padding-bottom: 42.858%;
    margin-right: 10px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.cloudShowroomInfo .proTabs .left .small {
    max-width: 700px;
    margin: 10px auto 0;
    position: relative;
}

.cloudShowroomInfo .proTabs .left .small .slick-list {
    margin: 0 25px;
}

.cloudShowroomInfo .proTabs .left .small .slick-arrow {
    width: 15px;
    height: 18px;
    position: absolute;
    top: 50%;
    margin-top: -9px;
    border: none;
    font-size: 0;
}

.cloudShowroomInfo .proTabs .left .small .slick-arrow.slick-prev {
    background: url(../images/btn01on.png) no-repeat;
    left: 0;
}

.cloudShowroomInfo .proTabs .left .small .slick-arrow.slick-next {
    background: url(../images/btn02on.png) no-repeat;
    right: 0;
}

.cloudShowroomInfo .proTabs .left .small li {
    padding-top: 10px;
}

.cloudShowroomInfo .proTabs .left .small li.slick-current .Ispic {
    border: 1px solid rgba(14, 193, 226, 0.8);
}

@media(max-width:1024px) {
    .cloudShowroomInfo .proTabs .left .small {
        margin-left: auto;
        margin-right: auto;
    }

    .cloudShowroomInfo .proTabs .prodesBox {
        background: rgba(255, 255, 255, .8);
    }

}

.cloudShowroomInfo .proTabs .prodesBox {
    padding: 4% 3%;
}

.cloudShowroomInfo .proTabs .prodesBox h1 {
    font-size: 40px;
    font-weight: normal;
    line-height: 47px;
}

.cloudShowroomInfo .proTabs .prodesBox h1:nth-child(2) {
    font-size: 22px;
    color: #999;
}

.cloudShowroomInfo .proTabs .prodesBox h5 {
    font-size: 20px;
    font-weight: normal;
    margin: 3% 0;
}

.cloudShowroomInfo .proTabs .prodesBox .prolab {
    padding-bottom: 12%;
    border-bottom: 1px solid #929292;
}

.cloudShowroomInfo .proTabs .prodesBox .prolab span {
    padding: 0 2%;
    border: 1px solid #929292;
    color: #929292;
    font-size: 16px;
    line-height: 30px;
    display: inline-block;
}

.cloudShowroomInfo .proTabs .prodesBox .prodes {
    margin-top: 12%;
    padding-bottom: 12%;
}

.cloudShowroomInfo .proTabs .prodesBox .prodes p {
    font-size: 16px;
    line-height: 30px;
    color: #999;
}
.proinfoBom .itemli .wap {
        display: none;
    }