/* 公共样式表css */
html,body {
    color: #333;
    margin: 0;
    height: 100%;
   font-family: Open Sans, PingFang SC, Hiragino Sans GB, Heiti SC, STHeiti, Microsoft YaHei, WenQuanYi Micro Hei, Helvetica Neue, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: normal;
}

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

a {
    text-decoration: none;
    color: #000;
}

img {
    border: 0;
}

body {
    background: #fff;
    color: #666;
}

html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #08acee;
}

button {
    outline: 0;
}

img {
    border: 0;
}

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

input, textarea, button {
    border: none;
    background: none;
    border: none;
    outline: none;
}


li {
    list-style: none;
}

a {
    color: #666;
}

a:hover {
    color: #eee;
}

.clearfix::after {
    clear: both;
    content: ".";
    display: block;
    visibility: hidden;
}

.clearfix {
}

/* 导航css */


.header{
	width:100%;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
    height: 102px;
    line-height: 102px;
    box-sizing: border-box;
    min-width: 1300px;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
/*左侧logo*/
.header .left{
	width: 25%;
}
.header .left a img{
    height: 100%;
	padding-top:25px;
}

/*右侧*/
.header .nav{
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	height: 100%;
	display: block;
}
.header .navbar_nav li{
	float:left;
	position: relative;
	display: block;
	align-items: center;
    text-align: left;
    width: auto;
    white-space: normal;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    line-height:102px;
    letter-spacing: .6px;
    color: #fff;
    cursor: pointer;
}
.header .navbar_nav li:after{
		color: #00c2ff;

    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}
.header .navbar_nav li:hover:after{
    width: 100%;
}
.header .navbar_nav li a{
	text-decoration: none;
	height: 100%;
	padding: 0 25px;
	display: block;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
	color: #fff;
	font-size: 13px;
}
.header .navbar_nav li:hover a{
	color: #00c2ff;
}
.header .navbar_nav li.dropdown{
	display: inherit;
	position: relative;
}

.header .navbar_nav li.dropdown .dropdown_menu{
min-width: 300px;
    display: none;
    position: absolute;
    background: #012d55;
    padding: 26px 0 56px;
    -webkit-box-shadow: 1px 1px 1px hsla(0,0%,100%,.2);
    box-shadow: 1px 1px 1px hsla(0,0%,100%,.2);
    max-height: calc(100vh - 105px);
    overflow-x: hidden;
    overflow-y: auto;
    top: 103px;
    left: -100px;
}
.header .navbar_nav li.dropdown .dropdown_menu a{
	display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    width: auto;
    white-space: normal;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    min-height: 50px;
    line-height: 50px;
    letter-spacing: .6px;
	margin:0 13px;
    color: #fff;
    cursor: pointer;
    padding-left: 14px;
    border-bottom: 2px solid hsla(0,0%,96.1%,.5);


}
.header .navbar_nav li.dropdown:hover .dropdown_menu{
	display: block;
	background: #012d55;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a{
	color: #fff;
    font-size: 14px;
    display: block;
    border-bottom: 2px solid hsla(0,0%,96.1%,.5);
}
.header .navbar_nav li.dropdown:hover .dropdown_menu a:hover{
	color: #00b2eb;
	background:#004e7b;
}
/*白色背景的头部*/
.header.on{
background-color: #043156;}

.header.on .navbar_nav li a{
	color: #fff;
}
.header.on .navbar_nav li:hover a{
	color:#00c2ff;
}
#navToggle{
	display: none;
}

.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 30px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}




.layui-btn {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

.layui-btn:hover {
    opacity: .8;
    filter: alpha(opacity=80);
    color: #fff
}

.layui-btn:active {
    opacity: 1;
    filter: alpha(opacity=100)
}








































/* 必要布局样式css */



.banner-bg {
    width: 100%;
    transform: translate3d(0px, 0px, 0px);
    transition-duration: 0ms;
}



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


.swiper-pagination-bullet{}

.swiper-pagination-bullet-active {
    background: #fff;
    opacity: .9;
    margin: 0 14px;
    cursor: pointer;
}


.pure-g {
    letter-spacing: -.31em;
    *letter-spacing: normal;
    *word-spacing: -.43em;
    text-rendering: optimizespeed;
    font-family: FreeSans,Arimo,Droid Sans,Helvetica,Arial,sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.about{ color:#fff;}

.pure-u-md-2-5 {
    width: 40%;
}

.pure-u-md-3-5{ width:60%;}


.about .left{
    padding-left: 8%;
    background: #0d798f;
    padding-top: 64px;
    padding-bottom: 64px;
}


.about .left .title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0 0 27px;
}

.about .left .subtitle{
    font-size: 39px;
    font-weight: 500;
    line-height: 1.36;
    letter-spacing: 3.1px;
    margin: 0;
}






.about-button{
    float: right;
    margin-right: 80px;
    margin-top: 30px;
    height: 43px;
    font-size: 16px;
    font-weight: 500;
    line-height: 43px;
    letter-spacing: 1.6px;
    text-align: center;
    background: transparent;
    border-radius: 4px;
	display:block;
	width:102px;
}

.about-button:hover{ background:#fff; color:#00c2ff;}


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

.about .right{
    background: #0191b1;
    padding: 70px 44px 52px;
}

.about .right .intro{
    font-size: 14px;
    font-weight: 300;
    line-height: 2.14;
    letter-spacing: 1.4px;

    width: 900px;


    margin: 0 auto;



}



.services .top{
	text-align:center;
    color: #74787c;
    padding: 87px 44px 55px;
}

.services .top .title{
    font-size: 42px;
	color:#0191b1;
	font-weight:900;
    line-height: 1.19;
    letter-spacing: 3.8px;
    margin: 0 0 21px;
}

.services .top .subtitle{
    color: #979797;
    line-height: 1.33;
    letter-spacing: .6px;
    margin: 0;
}


.services .top .intro{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: 1.2px;
    margin: 25px 0 0;
	color:#979797;
}

.services .middle{
    display: block;
}

.services .middle .image{
    height: 463px;
    background-position: 50%;
    background-size: cover;
    cursor: pointer;
}


.services .bottom .tri1 {
    left: calc(12.5% - 20px);
    border-bottom-color: #3da8f5;
}
.services .bottom .triangle{
    width: 1px;
    height: 1px;
    border: 20px solid transparent;
    border-bottom-color: #3da8f5;
    position: absolute;
    top: -40px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.services .bottom .item:nth-child(2) {
    background: #57c7ec;
}
.services .bottom .item:nth-child(3) {
    background: #2bb2be;
}

.services .bottom .item:nth-child(4) {
    background: #00a2c3;
}

.services .bottom .item:nth-child(5) {
    background: #0d798f;
}



.item{
    color: #fff;
    text-align: center;
    padding: 38px 0;
    background: #3da8f5;
    cursor: pointer;
}
.pure-u-md-1-4, .pure-u-md-6-24 {
    width: 25%;
    *width: 24.969%;
}



.item .p{
    text-align: center;
    margin: 23px 0 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.47;
    letter-spacing: 1.5px;
    height: 42px;
}
.item .p .text{
    display: inline-block;
    width: 80%;
    height: 100%;
}


.contact-from textarea {
    width: 100%;
    height: 170px;
    font-size: 14px;
    line-height: 24px;
    color: #b7bfc4;
    padding: 10px 20px;
}





.contact-center a {
    display: inline-block;
    color: #233645;
}

.contact-center li:after {
    content: '';
    width: 1px;
    height: 15px;
    background: #dfdfdf;
    display: inline-block;
    vertical-align: middle;
    margin: 0 49px;
}


.contact-center .contact-tel:before {
    width: 15px;
    background-position: -69px 0;
}
.contact-center li:before {
    content: '';
    height: 19px;
    background-image: url(../image/icon.png);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}

.contact-center .contact-fax:before {
    width: 18px;
    background-position: -84px 0;
}
.contact-center li:before {
    content: '';
    height: 19px;
    background-image: url(../image/icon.png);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}

.contact-center .contact-addr:before {
    width: 15px;
    background-position: -102px 0;
}
.contact-center li:before {
    content: '';
    height: 19px;
    background-image: url(../image/icon.png);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}

.contact-center .contact-website:before {
    width: 18px;
    background-position: -117px 0;
}
.contact-center li:before {
    content: '';
    height: 19px;
    background-image: url(../image/icon.png);
    background-repeat: no-repeat;
    display: inline-block;
    vertical-align: sub;
    margin-right: 10px;
}





/*新闻中心*/
.h-new {
    margin-top: 5%;
    margin-bottom: 6.5104%;
}

.container {
   margin: 0 16%;
    position: relative;
}

.tit {
    text-align: center;
}

.tit .tit-cn {
    font-size: 36px;
    line-height: 1;
    color: #233645;
    margin-bottom: 10px;
    font-family: SourceHanSansCN;
}
.tit .tit-en {
    font-family: poppins;
    font-size: 16px;
    line-height: 30px;
    color: #98b8cd;
    text-transform: uppercase;
}


.h-new-wrap {
    margin: 6.8376% 0 7.4358%;
}

.h-new-top {
    position: relative;

}

.h-new-top a {
    display: block;
}

.h-new-top .new-img {
    width: 50%;

    
}

.h-new-top:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.img_scale:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.h-new-wrap img {
    transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -ms-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -o-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -webkit-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -moz-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
}


.img_scale {
    overflow: hidden;
}

.img-auto {
    max-width: 100%;
    height: 262PX;
    width: 100%;
}

.h-new-top .new-desc {
    width: 50%;
    padding: 0 5.9829%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    right: 0;
}

.fr {
    float: right;
}

.h-new-top .time {
    width: 132px;
    border: 1px solid #abd6f3;
    border-radius: 15.5px;
    font-size: 14px;
    line-height: 30px;
    color: #57ade3;
    text-align: center;
    margin-bottom: 6.1538%;
}

.h-new-wrap h2 {
    font-size: 16px;
    line-height: 28px;
    height: 56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.h-new-top p {
    color: #979797;
    margin: 3.7606% 0 6.4957%;
}
.h-new-wrap p {
    font-size: 12px;
    line-height: 26px;
    height: 78px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.h-new-top span {
    color: #57ade3;
}
.h-new-wrap span {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.h-new-bottom {
    margin-top: 3px;
}

.h-new-bottom ul {
    margin: 0 -1.5px;
}

.h-new-bottom li:nth-child(1) {
    background: #5498b5;
}
.h-new-bottom li {
    float: left;
    width: calc(50% - 3px);
    height: 262px;
    margin: 0 1.5px;
    position: relative;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.h-new-bottom a {
    display: block;
    position: relative;
}

.h-new-bottom .new-img {
    width: 45%;
}
.img_scale {
    overflow: hidden;
}


.h-new-bottom .new-desc {
    width: 50%;
    padding: 7.0885% 5.8119% 6.4957%;
}


.h-new-bottom li:nth-child(2) {
    background: #63809c;
}

.fl {
    float: left;
}


.h-new-bottom .new-sort, .h-new-bottom h2 {
    color: #fff;
}
.h-new-bottom p {
    color: #b3daeb;
    margin: 7.931% 0 7.2413%;
}
.h-new-bottom span {
    color: #fff;
}

.h-new-top .new-sort, .h-new-top h2 {
    color: #233645;
}
.h-new-top:hover span {
    border-bottom-color: #abd6f3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}





.container {
    width: 1294px;
    margin: 0 auto;
    position: relative;
}



.arr-left {
    left: 0;
    margin-left: -23px;
}


.arr:hover:after {
    background-position: -10px 0;
}
.arr-left:after {
    background: url(../image/arr-left.png) no-repeat;
}
.arr:after {
    content: '';
    width: 10px;
    height: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}


.arr {
    width: 46px;
    height: 46px;
    border: 1px solid #b4daf4;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    z-index: 22;
    cursor: pointer;
    background: #fff;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}



.arr-right {
    right: 0;
    margin-right: -23px;
}




.arr:hover {
    border-color: #57ade3;
    background: #57ade3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}


.arr:hover:after {
    background-position: -10px 0;
}
.arr-right:after {
    background: url(../image/arr-right.png) no-repeat;
}
.arr:after {
    content: '';
    width: 10px;
    height: 15px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.swiper-slide-img {
    flex-shrink: 0;
    /* width: 100%; */
    height: 100%;
    position: relative;
    transition-property: transform;
}



.img_scale:hover img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
}
.img_scale img {
    transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -ms-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -o-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -webkit-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
    -moz-transition: transform cubic-bezier(.215,.61,.355,1) 1s;
}




/*新闻*/
.location {
    background: #f5f8f9;
    padding: 29px 0 22px;
}




.location li {
    float: left;
    font-size: 12px;
    line-height: 30px;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.location a {
    display: block;
    color: #9fb3c0;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.location a:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid #9fb3c0;
    border-right: 1px solid #9fb3c0;
    display: inline-block;
    margin: 0 9px;
    transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
}




.pagination {
    position: relative;
    left: 50%;
    float: left;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
}

.pagination {
    margin: 0 -10px;
}

.pagination li:first-child, .pagination li:last-child {
    position: relative;
}
.pagination li {
    float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    background: rgba(87,173,227,0);
    margin: 0 10px;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.pagination li.active, .pagination li:hover {
    background: #57ade3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}
.pagination li.active a, .pagination li.active span, .pagination li:hover a, .pagination li:hover span {
    color: #fff;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}
.pagination a, .pagination span {
    display: block;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;


	
}


.pagination li:first-child:after {
    background-image: url(../image/arr-left.png);
}
.pagination li:first-child:after, .pagination li:last-child:after {
    content: '';
    width: 10px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: -20px 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.pagination li:first-child, .pagination li:last-child {
    position: relative;
}
.pagination li.active, .pagination li:hover {
    background: #57ade3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.pagination li:first-child:after, .pagination li:last-child:after {
    content: '';
    width: 10px;
    height: 15px;
    background-repeat: no-repeat;
    background-position: -20px 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}
.pagination li:last-child:after {
    background-image: url(../image/arr-right.png);
}


.pagination li.active, .pagination li:hover {
    background: #57ade3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
	border-radius: 50%;
}



.page-num{float: left;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    background: rgba(87,173,227,0);
    margin: 0 10px;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}


.page-num:hover{ color: #fff;	    background: #57ade3;
}





.page-num-current{   color: #fff;
    display: block;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
	  border-radius: 50%;
    text-align: center;
	width:40px;
	height:40px;
	line-height:40px;
	    background: #57ade3;
}


.more {
    width: 200px;
    display: block;
    font-size: 14px;
    color: #57ade3;
    line-height: 46px;
    border: 1px solid #abd6f3;
    border-radius: 6px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    text-transform: uppercase;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.more:hover {
    color: #fff;
    border-color: #57ade3;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.more:hover:before {
    width: 100%;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}
.more:before {
    content: '';
    width: 0;
    height: 100%;
    background: #57ade3;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 5px;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}







.h-book {
    margin-bottom: 2.6041%;
    position: relative;
}
.h-book .bg {
    width: 100%;
    height: 557px;
    position: absolute;
    left: 0;
    top: 34px;
    background: url(../image/book-bg.jpg) no-repeat center/cover;
}

.book-con {
    width: 53.3333%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    right: 0;
}

.book-con .book-desc {
    width: 100%;
    padding-left: 15.5448%;
    padding-right: 12.3397%;
}

.book-con h3 {
    font-size: 30px;
    line-height: 1;
    color: #fff;
}

.book-con .desc {
    margin: 3.8461% 0 8.0128%;
}
.book-con .desc p {
    font-size: 12px;
    line-height: 24px;
    color: #feffff;
}
.book-con li {
    font-size: 14px;
    line-height: 24px;
    color: #feffff;
    margin-bottom: 20px;
    transition: all .45s ease;
    -ms-transition: all .45s ease;
    -o-transition: all .45s ease;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
}

.book-con li:before {
    content: '';
    width: 17px;
    height: 16px;
    background: url(../image/icon1.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}


.book-form {
    width: 46.6667%;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 1px 8px 70px 0 rgba(156,172,182,.16);
    box-shadow: 1px 8px 70px 0 rgba(156,172,182,.16);
    padding: 6.1538% 4.1025% 5.5555%;
}
.book-form h2 {
    font-size: 28px;
    line-height: 1;
    color: #233645;
    text-align: center;
    margin-bottom: 10%;
}

.book-form .ipt-wrap {
    margin-right: -4px;
    margin-left: -4px;
}
.book-form .layui-form-item {
    margin-bottom: 13px;
}

.book-form .layui-form-item .layui-inline {
    margin-bottom: 0;
    margin-right: 0;
    width: 50%;
    float: left;
    padding: 0 4px;
}

.book-form .layui-form-item .layui-input-inline {
    width: 100%;
    margin-right: 0;
    display: block;
}

.layui-form-item .layui-input-inline {
    float: left;
    width: 190px;
    margin-right: 10px;
}

.book-form .layui-input {
    height: 46px;
    padding-left: 20px;
    padding-right: 10px;
}
.book-form .layui-input, .book-form .layui-textarea {
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    color: #b7bfc4;
    font-size: 14px;
}

.layui-input, .layui-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
}

.book-form .layui-form-item {
    margin-bottom: 13px;
	overflow:hidden;
}

.book-form .layui-textarea {
    min-height: 163px;
    resize: none;
    line-height: 24px;
    padding: 10px 20px;
}
.book-form .layui-input, .book-form .layui-textarea {
    border: none;
    background: #f5f5f5;
    border-radius: 8px;
    color: #b7bfc4;
    font-size: 14px;
}

.book-form .btn {
    margin-bottom: 0;
    padding-top: 8px;
}

.book-form .layui-btn {
    width: 100%;
    background: #57ade3;
    border-radius: 8px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
}
.layui-btn {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #009688;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}

book-form .layui-input {
    height: 46px;
    padding-left: 20px;
    padding-right: 10px;
}


.layui-input, .layui-textarea {
    display: block;
    width: 100%;
    padding-left: 10px;
}










/*联系我们*/

.contact-wrap {
    margin-top: 5.3645%;
}

.contact-top {
    text-align: center;
}
.contact-top h2 {
    font-size: 36px;
    line-height: 1;
    color: #233645;
    margin-bottom: 10px;
}
.contact-top p {
    font-size: 14px;
    line-height: 28px;
    color: #98b8cd;
}
.contact-center {
    padding: 6.8376% 0 3.0769%;
    border-bottom: 1px solid #e3e7e9;
}
.contact-center li {
    float: left;
    font-size: 14px;
    line-height: 36px;
    color: #233645;
    text-transform: uppercase;
}
.contact-center a {
    display: inline-block;
    color: #233645;
}
.contact-bottom {
    padding: 5.7264% 0 10.8547%;
    border-bottom: 1px solid #e3e7e9;
}
.contact-bottom .map {
    width: 48.2051%;
    height: 418px;
    border: 8px solid #fff;
    border-radius: 8px;
    -webkit-box-shadow: 1px 8px 13px 0 rgba(33,41,59,.11);
    box-shadow: 1px 8px 13px 0 rgba(33,41,59,.11);
}
.contact-from {
    width: 48.2051%;
}
.contact-from .ipt {
    width: 100%;
    border-radius: 8px;
    background: #f5f5f5;
    margin-bottom: 12px;
}
.contact-from input {
    width: 100%;
    height: 46px;
    line-height: 46px;
    font-size: 14px;
    color: #b7bfc4;
    padding: 0 20px;
}
.contact-from .contact-submit {
    width: 100%;
    font-size: 16px;
    line-height: 45px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    background: #57ade3;
    margin-top: 10px;
}



























/*底部*/

.footer{ background: #043156;font-size: 16px; }
.footer img{display: block;width: 130px; height: 100%;padding: 40px 0;float: right;}
.footer .foot-foot{ margin:0 16%;}
.footer .left{ float: left; padding-top: 40px;}
.footer ul li{padding-right: 30px;float: left;}
.footer ul li a{ color: #fff; height: 30px; line-height: 30px;}
.footer p{line-height: 30px;color: #fff;width: 722px;}
















