* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(51, 51, 51, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(51, 51, 51, 1);
}

.mobile-inner-header img {
    height: 85%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #333;
    border-bottom: solid 1px rgba(51, 51, 51, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.banner img {
    width: 100%;
    height: auto;
    min-height: 100%;
    transition: 1s linear 2s;
    transform: scale(1.1, 1.1);
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
    transition: 6s linear;
    transform: scale(1, 1);
}

.swiper-container.banner,.inbanner{
	margin-top:160px;
}

.head {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background: #fff;
	position:fixed;
	z-index:999;
	left:0;
	top:0;
}

.heads {
    max-width: 1600px;
    margin: auto;
}

.logo {
    float: left;
    height: 100px;
    line-height: 100px;
    width: 31.875%;
}

.logo img {
    width: 100%;
}

.logotitle {
    float: left;
    height: 60px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 15px;
    padding-left: 15px;
    margin-top: 20px;
}

.logomaintitle {
    font-size: 20px;
    color: #333;
}

.logotitles {
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.right_head {
    float: right;
    margin-top: 15px;
}

.rhead {
    font-size: 17px;
    color: #666;
    margin-top: 5px;
}

.rhead img {
    margin-right: 10px;
}

.nav {
    width: 100%;
    height: 60px;
    background: #397EDB;
	box-shadow:0 0 10px #ddd;
	position:fixed;
	z-index:999;
	left:0;
	top:100px;
}

.navs {
    max-width: 1600px;
    margin: auto;
    position: relative;
    height: 60px;
}

.navs ul {
    margin-bottom: 0;
}

.navs ul li {
    width: 12.5%;
    float: left;
    text-align: center;
    height: 60px;
    line-height: 60px;
}

.navs ul li a {
    display: block;
    font-size: 20px;
    color: #fff;
    position: relative;
    transition: all 1.2s;
    z-index: 9;
}

.navs ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    height: 0;
    transition: all 0.8s;
    z-index: -1;
}

.navs ul li:hover a::before,
.navs ul li.active a::before {
    height: calc(100% - 3px);
}

.navs ul li:hover a,
.navs ul li.active a {
    color: #397EDB;
}

.navs ul li .detailnav {
    position: fixed;
    top: 160px;
    left: 0;
    width: 100%;
    background: #397EDB;
    z-index: 999;
    height: 0;
    display: flex;
    transition: all 1s;
    opacity: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
	box-shadow:0 0 10px #ddd;
}

.navs ul li .detailnav.on {
    height: 60px;
    opacity: 1;
}

.navs ul li .detailnav li {
    line-height: 60px;
    height: 60px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    flex: 1;
    position: relative;
}

.navs ul li .detailnav li:last-child {
    border-right: none;
}

.navs ul li .detailnav li a {
    font-weight: bold;
    color: #fff;
    position: relative;
    z-index: 9;
}

.navs ul li .detailnav li a img{
	margin-right:5px;
	margin-top:-3px;
	transition: all 0.8s;
}

.navs ul li .detailnav li a::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    height: 0;
    transition: all 0.8s;
    z-index: -1;
}

.navs ul li .detailnav li:hover a::before {
    height: 100%;
}

.navs ul li .detailnav li:hover a {
    color: #397EDB;
}

.index_a {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

.index_as {
    max-width: 1600px;
    margin: auto;
    border-bottom: 1px solid #F0F0F0;
    height: 96px;
}

.index_a_fl {
    float: left;
    height: 95px;
    line-height: 95px;
}

.index_a_fl span {
    float: left;
    font-size: 24px;
    color: #333;
    font-weight: bold;
}

.index_a_fl a {
    float: left;
    font-size: 24px;
    color: #333;
    margin-right: 10px;
}

.index_a_fr {
    float: right;
    margin-top: 23.5px;
}

.index_a_fr input[type=text] {
    float: left;
    height: 48px;
    width: 420px;
    border: 1px solid #397EDB;
    padding-left: 60px;
    outline: none;
    background: url(../images/search.png) left 20px center no-repeat;
    color: #999;
}

.index_a_fr input[type=text]::-webkit-input-placeholder {
    color: #999;
}

.index_a_fr input[type=text]:-moz-placeholder {
    color: #999;
}

.index_a_fr input[type=text]::-moz-placeholder {
    color: #999;
}

.index_a_fr input[type=text]:-ms-input-placeholder {
    color: #999;
}

.index_a_fr input[type=submit] {
    float: left;
    width: 84px;
    height: 48px;
    border: none;
    background: #397EDB;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.area {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.area_title {
    text-align: center;
    font-size: 36px;
    color: #333;
    font-weight: bold;
}

.area_titles {
    text-align: center;
    height: 33px;
    line-height: 33px;
    background: url(../images/areatitle.png) center no-repeat;
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
}

.areas {
    max-width: 1600px;
    margin: 40px auto 0;
}

.area_item {
    float: left;
    height: 325px;
    border-radius: 10px;
    border: 1px solid #397EDB;
    width: 18%;
    margin-right: 2.5%;
    position: relative;
    padding-top: 35px;
    overflow: hidden;
}

.area_item:last-child {
    margin-right: 0;
}

.area_pic {
    text-align: center;
    height: 180px;
    line-height: 180px;
}

.area_pic img {
    width: auto;
    max-width: 100%;
}

.areaitem_title {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-top: 10px;
}

.areaitem_titles {
    text-align: center;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    margin-top: 5px;
}

.areabefore {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    background: #397EDB;
    padding: 20px;
    transition: all 0.8s;
}

.areabefore_title {
    font-size: 24px;
    color: #fff;
    text-align: center;
}

.areabefore_titles {
    text-transform: uppercase;
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin-top: 5px;
}

.areabefore_con {
    text-align: justify;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    margin-top: 20px;
}

.areabefore_more {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.areabefore_more a {
    float: left;
    font-size: 14px;
    color: #fff;
}

.areabefore_more a:last-child {
    float: right;
}

.area_item:hover .areabefore {
    top: 0;
}

.about {
    width: 100%;
    overflow: hidden;
    background: url(../images/abbg.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.abouts {
    max-width: 1600px;
    margin: 40px auto 0;
}

.title {
    text-align: center;
}

.maintitle {
    text-transform: uppercase;
    font-weight: bold;
    color: #025EDA;
    opacity: 0.1;
    font-size: 64px;
}

.titles {
    font-size: 40px;
    color: #333;
    font-weight: bold;
    -webkit-text-stroke: 1px #fff;
    margin-top: -75px;
    position: relative;
}

.shuju {
    width: 100%;
    text-align: center;
}

.sj {
    font-size: 0;
    padding: 0 90px;
    border-right: 2px solid rgba(51, 51, 51, 0.2);
    display: inline-block;
}

.sj:last-child {
    border-right: none;
}

.sj_top .counter {
    font-size: 32px;
    color: #333;
    font-weight: bold;
}

.sj_top .unit {
    font-size: 20px;
    color: #333;
    position: relative;
    right: -5px;
    top: -20px;
}

.sj_bot {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

.sj_bot img {
    margin-right: 10px;
}

.ab {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.right_ab {
    float: right;
    width: 49.375%;
    overflow: hidden;
}

.right_ab img {
    width: 100%;
    transition: all 0.6s;
}

.right_ab:hover img {
    transform: scale(1.1);
}

.left_ab {
    float: left;
    width: 47.5%;
}

.abtitle {
    font-size: 36px;
    color: #333;
    margin-top: 10px;
}

.abline {
    width: 128px;
    height: 4px;
    background: #397EDB;
    margin-top: 10px;
    opacity: 0.3;
}

.abcon {
    font-size: 16px;
    color: #666;
    line-height: 2.2;
    text-indent: 2em;
    margin-top: 10px;
    text-align: justify;
}

.abmore {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    font-size: 0;
}

.abmore a {
    display: inline-block;
    width: 226px;
    height: 56px;
    line-height: 54px;
    border-radius: 10px;
    border: 1px solid #397EDB;
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-right: 45px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 1.2s;
}

.abmore a svg {
    margin-left: 15px;
}

.abmore a svg path {
    transition: all 1.2s;
}

.abmore a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    background: #397EDB;
    transition: all 0.8s;
}

.abmore a:hover::before {
    top: 0;
}

.abmore a:hover {
    color: #fff;
}

.abmore a:hover svg path {
    fill: #fff;
}

.case {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.cases {
    max-width: 1600px;
    margin: 40px auto 0;
}

.left_case {
    float: left;
    width: 11.5%;
}

.lcaseswiper.swiper-container {
    height: 590px;
}

.lcaseswiper .swiper-slide {
    overflow: hidden;
}

.lcaseswiper img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: all 0.6s;
}

.lcaseswiper p {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    color: #fff;
    background: rgba(57, 126, 219, 0.4);
    padding: 5px 10px;
    border-radius: 0 30px 30px 0;
}

.lcaseswiper .swiper-slide:hover img {
    transform: scale(1.1);
}

.right_case {
    float: right;
    width: 86.5%;
}

.rcase_fl {
    float: left;
    width: 57%;
    overflow: hidden;
    position: relative;
}

.rcase_fl img {
    width: 100%;
    transition: all 0.6s;
}

.rcase_fl:hover img {
    transform: scale(1.1);
}

.rcase_fl p {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(57, 126, 219, 0.4);
    padding: 10px 20px;
    border-radius: 0 30px 30px 0;
}

.rcase_fr {
    float: right;
    width: 33.5%;
    margin-top: 80px;
}

.rcasetitle {
    width: 100%;
    height: 60px;
    line-height: 60px;
    position: relative;
    padding-left: 40px;
}

.rcasenum {
    font-size: 48px;
    color: #397EDB;
    font-weight: bold;
    float: left;
}

.rcasetitles {
    font-weight: bold;
    float: left;
    font-size: 32px;
    color: #333;
    margin-left: 25px;
}

.rcasetitle::before {
    content: "";
    position: absolute;
    background: #397EDB;
    height: 2px;
    width: 180px;
    left: -180px;
    top: 30px;
}

.rcasecon {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-top: 60px;
    text-align: justify;
}

.rcasemore {
    font-size: 0;
    margin-top: 40px;
}

.rcasemore a {
    display: inline-block;
    width: 182px;
    height: 56px;
    line-height: 54px;
    border: 1px solid #397EDB;
    text-align: center;
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 9;
    margin-right: 30px;
    transition: all 1.2s;
    overflow: hidden;
}

@-webkit-keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

@keyframes Tmouse {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-8px);
        -moz-transform: translateY(-8px);
        -ms-transform: translateY(-8px);
        -o-transform: translateY(-8px);
        transform: translateY(-8px);
    }
}

.rcasemore a svg {
    margin-left: 10px;
    position: relative;
    top: 10px;
    -webkit-animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
    animation: Tmouse 0.5s cubic-bezier(0.56, 0.01, 0.46, 1) infinite alternate;
}

.rcasemore a svg path {
    transition: all 1.2s;
}

.rcasemore a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: #397EDB;
    transition: all 0.8s;
}

.rcasemore a:hover::before {
    top: 0;
}

.rcasemore a:hover {
    color: #fff;
}

.rcasemore a:hover svg path {
    fill: #fff;
}

.midcontact {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    font-size: 0;
    background: #397EDB;
}

.midcontact_fr {
    float: right;
    height: 286px;
    background: url(../images/midbg_fr.jpg) center no-repeat;
    width: 33.5%;
}

.midcontact_fl {
    float: left;
    height: 286px;
    background: url(../images/midbg_fl.jpg) center no-repeat;
    width: 66.5%;
    position: relative;
    padding-left: 8.8%;
}

.midtel {
    position: absolute;
    right: -1px;
    top: 10px;
    background: #8bb0e1;
    width: 190px;
    height: 60px;
    border-radius: 30px 0 0 30px;
    text-align: right;
    padding-right: 10px;
    padding-top: 8px;
}

.midtel_top {
    font-size: 14px;
    color: #fff;
}

.midtel_top img {
    margin-left: 5px;
    margin-top: -3px;
}

.midtel_bot {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.midtitle {
    font-size: 20px;
    color: #fff;
    margin-top: 50px;
}

.midtitle span {
    font-size: 16px;
    text-transform: uppercase;
    margin-left: 15px;
}

.midtitles {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-top: 30px;
}

.miditem {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.miditems {
    float: left;
    font-size: 24px;
    color: #fff;
    margin-right: 50px;
}

.miditems img {
    margin-right: 10px;
    margin-top: -5px;
}

.advantage {
    width: 100%;
    overflow: hidden;
    background: url(../images/advbg.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.advantages {
    max-width: 1600px;
    margin: 40px auto 0;
    position: relative;
}

.itemtitle {
    text-align: center;
    font-size: 20px;
    color: #999;
    margin-top: 10px;
}

.right_adv {
    float: right;
    width: 47%;
    overflow: hidden;
}

.right_adv img {
    width: 100%;
    transition: all 0.6s;
}

.right_adv:hover img {
    transform: scale(1.1);
}

.left_adv {
    margin-top: 160px;
    float: left;
    width: 46.25%;
}

.advtitle {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}

.advtitles {
    text-transform: uppercase;
    font-size: 16px;
    color: #666;
    margin-top: 5px;
}

.advline {
    width: 470px;
    height: 2px;
    background: #397EDB;
    margin-top: 10px;
}

.advcon {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-top: 10px;
    text-align: justify;
}

.advnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    z-index: 99;
}

.advnavs {
    float: left;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    height: 105px;
    width: 22.75%;
    text-align: center;
    margin-right: 3%;
    cursor: pointer;
    padding-top: 10px;
    position: relative;
    overflow: hidden;
}

.advnavs:last-child {
    margin-right: 0;
}

.advnav_pic {
    height: 65px;
    line-height: 65px;
    position: relative;
    z-index: 9;
}

.advnav_pic svg path {
    transition: all 1.2s;
}

.advnav_title {
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 9;
    transition: all 1.2s;
}

.advnavs::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #025EDA;
    transition: all 0.8s;
}

.advnavs.active::before {
    top: 0;
}

.advnavs.active .advnav_title {
    color: #fff;
}

.advnavs.active .advnav_pic svg path {
    fill: #fff;
}

.indexcontact {
    width: 100%;
    overflow: hidden;
    background: url(../images/contactbg.jpg) center no-repeat;
    padding: 40px 0;
    background-size: cover;
}

.indexcontacts {
    max-width: 1600px;
    margin: auto;
}

.indexcontact_fr {
    float: right;
    width: 50.625%;
}

.BMapLabel {
    display: none !important;
}

.indexcontact_fl {
    width: 33.75%;
    float: left;
    margin-top: 20px;
}

.indexcontact_fl_top {
    width: 100%;
    overflow: hidden;
}

.indexcontact_fl_top_logo {
    float: left;
    width: 52%;
}

.indexcontact_fl_top_logo img {
    width: 100%;
}

.indexcontact_fl_top_title {
    float: left;
    margin-left: 25px;
    margin-top: 30px;
}

.indexcontact_fl_top_maintitle {
    font-size: 32px;
    color: #fff;
    font-weight: bold;
}

.indexcontact_fl_top_titles {
    font-size: 24px;
    color: #fff;
}

.indexcontact_fl_bot {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.indexcontact_fl_bot div {
    overflow: hidden;
}

.indexcontact_fl_bot div input {
    float: left;
    width: 46.3%;
    margin-right: 7.4%;
    outline: none;
    border: 1px solid #fff;
    background: none;
    font-size: 18px;
    color: #fff;
    padding-left: 20px;
    height: 46px;
}

.indexcontact_fl_bot div input:last-child {
    margin-right: 0;
}

.indexcontact_fl_bot div input::-webkit-input-placeholder {
    color: #fff;
}

.indexcontact_fl_bot div input:-moz-placeholder {
    color: #fff;
}

.indexcontact_fl_bot div input::-moz-placeholder {
    color: #fff;
}

.indexcontact_fl_bot div input:-ms-input-placeholder {
    color: #fff;
}

.indexcontact_fl_bot textarea {
    width: 100%;
    outline: none;
    border: 1px solid #fff;
    background: none;
    font-size: 18px;
    color: #fff;
    padding-left: 20px;
    height: 120px;
    padding-top: 10px;
    margin-top: 20px;
}

.indexcontact_fl_bot textarea::-webkit-input-placeholder {
    color: #fff;
}

.indexcontact_fl_bot textarea:-moz-placeholder {
    color: #fff;
}

.indexcontact_fl_bot textarea::-moz-placeholder {
    color: #fff;
}

.indexcontact_fl_bot textarea:-ms-input-placeholder {
    color: #fff;
}

.indexcontact_fl_bot input[type=submit] {
    width: 100%;
    outline: none;
    border: none;
    background: #fff;
    font-size: 18px;
    color: #397EDB;
    height: 45px;
    margin-top: 20px;
}

.foot {
    width: 100%;
    overflow: hidden;
    background: #2E2C2C;
    padding: 40px 0;
}

.foots {
    max-width: 1600px;
    margin: auto;
}

.left_foot {
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    width: 32%;
}

.left_foot p {
    position: relative;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
}

.left_foot p span {
    display: inline-block;
    width: 40px;
    text-align: center;
}

.left_foot p::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 278px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.fnav {
    float: left;
    margin-left: 6.5%;
}

.ftitle {
    font-size: 17px;
    color: #fff;
    margin-bottom: 25px;
}

.flist a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.saoma {
    text-align: center;
}

.saoma img {
    width: 71px;
}

.saoma p {
    font-size: 12px;
    color: #fff;
    margin-top: 5px;
}

.copy {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 40px;
    background: #2E2C2C;
    font-size: 12px;
    color: #fff;
}

.copy a {
    font-size: 12px;
    color: #fff;
    margin-left: 10px;
}

.innew {
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}

.innews {
    max-width: 1600px;
    margin: auto;
}

.innewlists {
    width: 100%;
    background: #fff;
    border: 1px solid #e9e9e9;
    padding: 20px;
    -webkit-box-shadow: #e9e9e9 0px 0px 10px;
    -moz-box-shadow: #e9e9e9 0px 0px 10px;
    box-shadow: #e9e9e9 0px 0px 10px;
    margin-top: 30px;
    overflow: hidden;
}

.innewpic {
    float: left;
    width: 24.5%;
}

.innewpic img {
    width: 100%;
}

.innewintro {
    float: right;
    width: 71%;
}

.innewtitle {
    font-size: 20.5px;
    color: #000000;
    font-weight: bold;
    margin-top: 15px;
}

.innewdate {
    font-size: 14.4px;
    color: #b1b1b1;
    margin-top: 8px;
}

.innewcon {
    font-size: 16.8px;
    color: #333333;
    margin-top: 15px;
    line-height: 28px;
}

.innewmore {
    margin-top: 50px;
    width: 115px;
    height: 36px;
    line-height: 34px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    text-align: center;
    font-size: 14.4px;
    color: #3f3f3f;
}

.news_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 16px;
}

.news_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
}

#art_content {
    word-break: break-all;
    font-size: 13px;
    padding: 0 0 10px 0;
}

#art_content img {
    max-width: 920px;
}

.newshow {
    width: 100%;
    overflow: hidden;
}

.newshows {
    max-width: 1600px;
    margin: 30px auto 40px;
}

.inbanner {
    width: 100%;
    position: relative;
}

.inbanner img {
    width: 100%;
}

.inbanner_title {
    position: absolute;
    font-size: 40px;
    color: #397EDB;
    font-weight: bold;
    top: 25%;
    right: 10%;
    padding-bottom: 15px;
}

.inbanner_title::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 2px;
    background: #397EDB;
}

.incontact {
    width: 100%;
    overflow: hidden;
    margin: 50px 0;
}

.incontacts {
    max-width: 1600px;
    margin: auto;
}

.incontact_top {
    width: 100%;
    overflow: hidden;
}

.incontact_tops {
    width: 32%;
    float: left;
    margin-bottom: 25px;
    margin-right: 2%;
    background: #397EDB;
    border-radius: 15px;
    padding: 50px 15px;
    text-align: center;
}

.incontact_tops:nth-child(3n) {
    margin-right: 0;
}

.incontact_top_title {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
}

.incontact_top_con p {
    font-size: 18px;
    color: #fff;
    margin-top: 25px;
}

.incontact_bot {
    width: 100%;
    overflow: hidden;
}

.incontact_bot_fr {
    float: right;
    width: 56%;
}

.incontact_bot_fl {
    float: left;
    width: 40%;
}

.incontact_bot_fl_title {
    font-size: 36px;
    color: #000;
    margin-top: 5px;
}

.incontact_bot_fl input[type=text] {
    width: 100%;
    background: none;
    outline: none;
    border: 1px solid #d2d2d2;
    padding-left: 20px;
    font-size: 23px;
    margin-top: 20px;
    height: 85px;
}

.incontact_bot_fl textarea {
    width: 100%;
    background: none;
    outline: none;
    border: 1px solid #d2d2d2;
    padding-left: 20px;
    font-size: 23px;
    margin-top: 20px;
    height: 205px;
    padding-top: 20px;
}

.incontact_bot_fl input[type=submit] {
    width: 100%;
    background: #397EDB;
    outline: none;
    border: 1px solid #d2d2d2;
    font-size: 23px;
    margin-top: 20px;
    height: 85px;
    font-size: 30px;
    color: #fff;
}

.inbusiness {
    width: 100%;
    overflow: hidden;
    margin: 35px 0;
}

.inbusiness_container {
    max-width: 1600px;
    margin: auto;
}

.inbusy {
    width: 32%;
    margin-right: 2%;
    float: left;
    margin-bottom: 25px;
}

.inbusy:nth-child(3n) {
    margin-right: 0;
}

.inbusy_pic img {
    width: 100%;
	border:1px solid #ddd;
	border-bottom:none;
}

.inbusy_name {
    text-align: center;
    background: #397EDB;
    line-height: 60px;
    font-size: 24px;
    color: #fff;
}

.inproduct {
    width: 100%;
    overflow: hidden;
    background: #FAFAFA;
    padding: 40px 0;
}

.inproducts {
    max-width: 1600px;
    margin: auto;
}

.inpro {
    background: #fff;
    float: left;
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 40px;
    padding: 15px 10px;
}

.inpro:nth-child(4n) {
    margin-right: 0;
}

.inpro_pic img {
    width: 100%;
}

.inpro_title {
    padding-left: 10px;
    position: relative;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.inpro_title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 20px;
    background: #D9D9D9;
}

.inpro_con {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    height: 60px;
    line-height: 2;
	overflow:hidden;
	margin-bottom:20px;
}

.inpro_more {
    width: 100%;
    overflow: hidden;
}

.inpro_more a {
    width: 48%;
    float: left;
    margin-right: 4%;
    height: 40px;
    line-height: 40px;
    background: #397EDB;
    text-align: center;
    font-size: 14px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.inpro_more a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25px;
    width: 47px;
    height: 41px;
    background: url(../images/probefore1.png) center no-repeat;
    transition: all 1s;
}

.inpro_more a:last-child {
    margin-right: 0;
    background: #F99827;
}

.inpro_more a:hover::before {
    left: 100%;
}

.inabmore {
    margin-top: 30px;
}

.inabmore a {
    display: block;
    width: 226px;
    height: 54px;
    line-height: 54px;
    border-radius: 10px;
    background: #397EDB;
    text-align: center;
    font-size: 20px;
    color: #fff;
    position: relative;
}

.inabmore a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -6px;
    width: 35px;
    height: 56px;
    background: url(../images/probefore.png) center no-repeat;
    background-size: cover;
}

.honor {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    padding-bottom: 40px;
}

.honors {
    max-width: 1600px;
    margin: 40px auto 0;
}

.honor_item {
    padding: 40px;
    width: 100%;
    background: url(../images/honorborder.png) center no-repeat;
    height: 515px;
}

.honor_container {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.honor_pic img {
    width: 114%;
    margin-left: -7%;
}

.honor_before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(57, 126, 219, 0.6);
    font-size: 33px;
    color: #fff;
    padding-top: 65%;
    opacity: 0;
    transition: all 0.6s;
}

.honor_item:hover .honor_before {
    opacity: 1;
}

.honorarrow {
    text-align: center;
    margin-top: 50px;
    height: 50px;
    line-height: 50px;
}

.honornum {
    display: inline-block;
    font-size: 48px;
    color: #397EDB;
    font-weight: bold;
}

.honorsum {
    display: inline-block;
    font-size: 20px;
    color: #999;
}

.honorarrow .swiper-button-prev {
    display: inline-block;
    position: static;
    width: 51px;
    height: 50px;
    background: url(../images/left_honor.png) center no-repeat;
    margin-top: 0;
    box-shadow: 0 0 10px#ddd;
    border-radius: 100%;
    margin-right: 50px;
}

.honorarrow .swiper-button-prev:hover {
    background: url(../images/right_honor.png) center no-repeat;
    transform: rotate(180deg);
}

.honorarrow .swiper-button-next {
    display: inline-block;
    position: static;
    width: 51px;
    height: 50px;
    background: url(../images/left_honor.png) center no-repeat;
    margin-top: 0;
    box-shadow: 0 0 10px#ddd;
    border-radius: 100%;
    margin-left: 50px;
    transform: rotate(180deg);
}

.honorarrow .swiper-button-next:hover {
    background: url(../images/right_honor.png) center no-repeat;
    transform: rotate(0);
}

.partner {
    width: 100%;
    overflow: hidden;
}

.partners {
    max-width: 1600px;
    margin: 40px auto 0;
}

.par {
    float: left;
    background: #fff;
    box-shadow: 0 0 10px #ddd;
    border-radius: 10px;
    line-height: 80px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    width: 18.4%;
    margin-right: 2%;
    margin-bottom: 40px;
    text-align: center;
}

.par:nth-child(5n) {
    margin-right: 0;
}

.proshow {
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.proshows {
    max-width: 1600px;
    margin: auto;
	overflow:hidden;
}

.proshow_title{
	max-width: 1600px;
    margin: 40px auto 0;
	background:#f4f4f4;
	line-height:50px;
	height:50px;
}

.proshow_title span{
	display:block;
	text-align:center;
	color:#fff;
	font-size:16px;
	width:150px;
	background: #397EDB;
}

.proshow_top_fr_bottomcon{
	max-width: 1600px;
    margin: 40px auto 0;
}

.proshow_top_fl {
    float: left;
    width: 47.8%;
}

.proshow_top_fl img {
    width: 100%;
    border: 1px solid #d2d2d2;
}

.proshow_top_fr {
    float: right;
    width: 48.2%;
}

.proshow_top_fr_title {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
}

.proshow_top_fr_titles {
    font-size: 18px;
    color: #000000;
    margin-top: 20px;
}

.proshow_top_fr_con {
    font-size: 18px;
    color: #474747;
    line-height: 2.8;
    margin-top: 10px;
}

.proshow_top_fr_tel {
    font-size: 20px;
    color: #000000;
    margin-top: 8px;
}

.proshow_top_fr_num {
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin-top: 10px;
}

.proshow_top_fr_more {
    margin-top: 30px;
}

.proshow_top_fr_more a {
    display: block;
    width: 190px;
    height: 47px;
    line-height: 47px;
    border-radius: 30px;
    text-align: center;
    background: #397EDB;
    font-size: 20px;
    color: #fff;
}

.honor_pic{
	display: table;
    height: 100%;
}

.honor_pic a{
	display: table-cell;
    vertical-align: middle;
}