@charset "UTF-8";

/* CSS Document */
/*
-----------------------------首页样式start-----------------------------
*/
.minH600 {
    min-height: 600px;
    height: auto !important;
    height: 600px;
}
/*头部开始*/
.top {
	position: relative;
	width: 100%;
	height: 190px;
	background: #fff;
	z-index: 9;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.top1 {
	height: 129px;
}

.topR {
	margin-top: 43px;
	width: 402px;
	border: 1px solid #029edb;
	border-radius: 3px;
	overflow: hidden;
}

.topSearch {
	overflow: hidden;
}

.topBtn {
	width: 100px;
	height: 42px;
	background: #0193cf url(../images/search.png) center center no-repeat;
	border-radius: 0 3px 3px 0;
	overflow: hidden;
}

.topSearchBox {
	overflow: hidden;
	padding: 0 10px 0 45px;
	background: url(../images/search2.png) 15px center no-repeat;
}

.topSearchBox input {
	width: 100%;
	height: 42px;
	line-height: 42px;
	border: none;
	background: none;
	font-size: 16px;
	color: #333;
}

.topSearchBox input::-webkit-input-placeholder {
	color: #aaa;
	/* placeholder颜色  */
	font-size: 16px;
	/* placeholder字体大小  */
	text-align: left;
	/* placeholder位置  */
}

.topL {
	overflow: hidden;
}

.logo {
	padding: 25px 0;
}

.logo a img {
	width: 352px;
	display: block;
	height: 80px;
}

/*头部结束*/
/*menu开始*/
.meuBox {
	border-top: 1px solid #f0f0f0;
}

.menuDl {
	position: relative;
	margin: 0 -32px;
}

.menuDl:after {
	display: block;
	content: "";
	clear: both;
}

.menuDl dd {
	display: inline;
	float: left;
	position: relative;
	z-index: 3;
	margin: 0 30px;
}

.menuDl dd span a {
	display: block;
	height: 60px;
	overflow: hidden;
	line-height: 60px;
	color: #333;
	font-size: 16px;
	position: relative;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	font-weight: bold;
}

.menuDl dd.hover span a {
	color: #029edb;
}

.subMenuDiv {
	display: none;
	width: 100%;
	position: absolute;
	/*left: 0px;*/
	top: 60px;
	/*opacity: 0;*/
	z-index: 1;
}

.menuDl dd.hover .subMenuDiv {
	z-index: 3;
}

.menuDl dt {
	height: 2px;
	background: #029edb;
	position: absolute;
	left: 0px;
	top: -1px;
	z-index: 2;
}

.subMenu_ul {
	width: 1000px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}

.subMenuShadow {
	height: 100%;
	overflow: hidden;
	position: absolute;
	background: rgba(255, 255, 255, 0.7);
	left: 50%;
	top: 0px;
	z-index: 1;
	width: 50000px;
	margin-left: -25000px;
}

.subMenu_ul li {
	overflow: hidden;
	height: 60px;
	line-height: 60px;
	position: relative;
	z-index: 2;
	float: left;
	display: inline;
	margin: 0px 15px;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menuDl dd.hover .subMenu_ul li {
	opacity: 0;
	-webkit-animation: liMove 0.3s linear forwards;
	-o-animation: liMove 0.3s linear forwards;
	animation: liMove 0.3s linear forwards;
}

@keyframes liMove {
	0% {
		transform: translateY(-110%);
		opacity: 0;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
	}
}

.menuDl dd.hide .subMenu_ul li {
	opacity: 1;
	-webkit-animation: liHIde 0.3s linear forwards;
	-o-animation: liHIde 0.3s linear forwards;
	animation: liHIde 0.3s linear forwards;
}

@keyframes liHIde {
	0% {
		transform: translateY(0px);
		opacity: 1;
	}

	100% {
		transform: translateY(110%);
		opacity: 0;
	}
}

.subMenu_ul li a {
	display: block;
	overflow: hidden;
	font-size: 14px;
	color: #333;
	font-weight: bold;
	-webkit-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.subMenu_ul li a:hover {
	color: #029edb;
}

.half .subMenu_ul li a {
	font-size: 14px;
}

.subMenu_ul li a span {
	position: relative;
}

.subMenu_ul li:hover a span {
	color: #029edb;
}

.subMenu_ul li a span em {
	display: block;
	width: 2px;
	height: 10px;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 50%;
	margin-top: -5px;
	background: #2184c7;
}

.subMenuR {
	width: 50%;
	overflow: hidden;
	padding: 20px 0px;
}

.menuTop {
	height: 40px;
	line-height: 40px;
	display: block;
	overflow: hidden;
	font-size: 24px;
	color: #555;
	padding-left: 50px;
}

.subMenuCont {
	overflow: hidden;
	position: relative;
	margin-right: 15px;
}

.listBg {
	width: 0px;
	height: 0px;
	overflow: hidden;
	background: #fff;
	position: absolute;
	left: 0px;
	top: 0px;
}

.subMenuTop {
	height: 40px;
	line-height: 40px;
	display: none;
	font-size: 16px;
	color: #888;
	overflow: hidden;
	padding: 15px 0px 10px 50px;
}

.half {
	float: left;
	display: inline;
	width: 50%;
}

.half .subMenuTop {
	display: block;
}

.subMenuL {
	width: 50%;
	padding: 20px 0px;
}

.subMenuTxt {
	height: 250px;
	overflow: hidden;
	padding: 20px;
	margin: 0px 20px;
}

.subMenuLTop {
	display: none;
	text-align: center;
	font-size: 34px;
	color: #333;
	overflow: hidden;
}

.subMenuIntr {
	display: none;
	overflow: hidden;
	font-size: 14px;
	color: #404040;
	line-height: 25px;
}

.menuBg {
	display: none;
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 100px;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
}

.subMenuDiv.showMenu {
	-webkit-animation: showMenu 0.5s linear forwards;
	-o-animation: showMenu 0.5s linear forwards;
	animation: showMenu 0.5s linear forwards;
}

@keyframes showMenu {
	0% {
		opacity: 0.5
	}

	100% {
		opacity: 1
	}
}

.subMenuDiv.hideMenu {
	-webkit-animation: hideMenu 0.5s linear forwards;
	-o-animation: hideMenu 0.5s linear forwards;
	animation: hideMenu 0.5s linear forwards;
}

@keyframes hideMenu {
	0% {
		opacity: 0.2
	}

	100% {
		opacity: 0
	}
}

/*menu结束*/
/*indexBanner开始*/
.indexBanner {
	overflow: hidden;
	height: 710px;
	width: 100%;
	position: relative;
}

.indexBanner .myslide {
	position: relative;
	height: 710px;
}
.indexBanner .myslide a{
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
.colBgBoxw {
	position: absolute !important;
	width: 102%;
	height: 102%;
	left: -1% !important;
	top: -1% !important;
}

.colBg {
	width: 100%;
	height: 100%;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
}
.indexBanner .slick-dots {
	position: absolute;
	bottom: 29px;
	width: 100%;
	text-align: center;
}

.indexBanner .slick-dots li {
	width: 16px;
	height: 16px;
	line-height: 9999px;
	text-align: center;
	background: #FFF;
	color: #ffffff;
	display: inline-block;
	margin: 0 12px;
	cursor: pointer;
	border-radius: 16px;
}

.indexBanner .slick-dots li.slick-active {
	background: #0193cf;
}

.indexBanner .text {
	position: absolute;
	width: ;
	top: 110px;
	width: 688px;
	left: 50%;
	margin-left: -344px;
	z-index: 2;
	
}
.indexBanner .textC1{
	position: relative;
}
.indexBanner .textC1 .con1{
	position: absolute;
	top: 0;
}
.indexBanner .textC1 .con1 img{
	display: block;
}
.indexBanner .textC1 .con2{
	position: absolute;
	top: 81px;
}
/*indexBanner结束*/
/*第一通栏start*/
.column1 {
	padding: 40px 0;
	background: #fff;
}

.column1_dl {
	overflow: hidden;
	margin: 0 -10px;
}

.column1_dl dd {
	float: left;
	display: inline;
	width: 16.6667%;
	padding: 10px 0;
}

.column1_dl dd .con {
	margin: 0 10px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	border-radius: 12px;
	overflow: hidden;
}

.column1_dl dd a {
	display: block;
	height: 150px;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}

.column1Icon {
	padding-top: 30px;
	width: 50px;
	height: 50px;
	margin: 0 auto;
}

.column1Icon span {
	display: block;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center center;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column1_dl .text {
	line-height: 30px;
	padding: 10px 0;
	text-align: center;
	font-size: 16px;
	color: #fff;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column1_dl dd .con:hover {
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
	-webkit-transform: translateY(-3px);
	position: relative;
	z-index: 5;
}

.column1_dl dd .con:hover .column1Icon span {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
}

.column1_dl .con:hover .text {
	font-weight: bold;
}

/*第一通栏end*/
/*第二通栏start*/
.column2C {
	overflow: hidden;
}

.column2L {
	width: 660px;
	margin-right: 40px;
}

.column2R {
	overflow: hidden;
}

.column2Banner {
	position: relative;
	border-radius: 2px;
	overflow: hidden;
}

.column2Banner .pic::before {
	padding-top: 60.1515%;
}

.column2Banner .title {
	display: none;
}

.column2Text {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
}

.column2Text a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	margin-right: 90px;
}

.column2Text a h5 {
	font-size: 16px;
	color: #FFFFFF;
	font-weight: normal;
}

.column2Banner .slick-dots {
	width: 86px;
	height: 50px;
	position: absolute;
	bottom: 0px;
	right: 13px;
	z-index: 2;
	text-align: center;
	vertical-align: middle;
}

.column2Banner .slick-dots li {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 100%;
	margin: 0 7px;
	margin-top: 21px;
	cursor: pointer;
	position: relative;
	vertical-align: middle;
}

.column2Banner .slick-dots li.slick-active {
	background: #029edb;
}

.indexTitleBox {
	height: 42px;
	border-bottom: 1px solid #e6e6e6;
	overflow: hidden;
	padding-bottom: 1px;
}

.indexTitleDl {
	position: relative;
	overflow: hidden;
	height: 43px;
}

.indexTitleDl::after {
	display: block;
	content: "";
	clear: both;
}

.indexTitleDl dd {
	float: left;
	display: inline;
	margin-right: 90px;
	height: 42px;
	position: relative;
}

.indexTitleDl dd::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -1px;
	background: #029edb;
	transform: scaleX(0);
	-webkit-transform: scaleX(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.indexTitleDl dd a {
	display: block;
	height: 42px;
	line-height: 30px;
	font-size: 18px;
	color: #666;
	position: relative;
}

.indexTitleDl dd.hover::before {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	visibility: visible;
	opacity: 1;
}

.indexTitleDl dd:hover::before {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
	visibility: visible;
	opacity: 1;
}

.indexTitleDl dd:hover a {
	color: #029edb;
}

.indexTitleDl dd.hover a {
	color: #029edb;
}

.indexTMore a {
	display: block;
	height: 42px;
	line-height: 32px;
	font-size: 14px;
	color: #999;
	text-transform: uppercase;
	cursor: pointer;
}

.indexTMore a:hover {
	color: #029edb;
}

.column2Content {
	padding-top: 18px;
}

.column2Title {
	border-bottom: 1px solid #e6e6e6;
}

.column2Title .title a {
	display: block;
	height: 44px;
	line-height: 44px;
	font-size: 20px;
	color: #333;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column2Title .title a:hover {
	color: #029edb;
	letter-spacing: 1px;
}

.column2Title .text {
	height: 60px;
	line-height: 30px;
	font-size: 14px;
	color: #666;
	margin-bottom: 21px;
}

.column2_dl {
	padding-top: 21px;
}

.column2_dl dd {
	margin-bottom: 3px;
}

.column2_dl dd .con {
	height: 36px;
	line-height: 36px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
}

.column2_dl dd .con .title {
	overflow: hidden;
	position: relative;
	padding-left: 16px;
	padding-right: 30px;
}

.column2_dl dd .con .title::before {
	display: block;
	content: "";
	position: absolute;
	width: 16px;
	height: 36px;
	left: 0;
	top: 0;
	background: url(../images/lx.png) left center no-repeat;
}

.column2_dl dd .con .title a {
	display: block;
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	color: #666;
}

.column2_dl dd .con .time {
	font-size: 14px;
	color: #999;
}

.column2_dl dd .con:hover {
	padding: 0 5px;
}

.column2_dl dd .con a:hover {
	color: #029edb;
}

/*第二通栏end*/
/*
*第三通栏start fpx 2018
*/
.column3 {
	position: relative;
	height: 690px;
}

.column3 .indexTitleBox1 {
	padding-top: 72px;
	margin-bottom: 52px;
}

.indexTitle1 {
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 30px;
	color: #0193cf;
}

.indexTitle2 {
	height: 30px;
	line-height: 30px;
	font-family: arial;
	text-align: center;
}

.indexTitle2 span {
	font-family: 'robot';
	color: rgba(1, 147, 207, 0.35);
	text-transform: uppercase;
	font-size: 18px;
}

.column3CL {
	float: left;
	display: inline;
	width: 495px;
	margin-right: 30px;
}

.column3_dl dd {
	margin-bottom: 30px;
}

.column3_dl dd .con {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}

.column3_dl dd .con .pic::before {
	padding-top: 41.4141%;
}

.column3_dl dd .con .text {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .15);
}

.column3_dl dd .con .textC {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.column3_dl dd .con .textC span {
	display: block;
	line-height: 45px;
	padding: 0 30px;
	text-align: center;
	font-size: 30px;
	color: #FFFFFF;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}

.column3_dl dd .con:hover .textC span {
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
}

.column3CR {
	width: 915px;
}

.column3Title_dl {
	overflow: hidden;
	padding-bottom: 30px;
	margin: 0 -15px;
}

.column3Title_dl dd {
	float: left;
	display: inline;
	width: 50%;
}

.column3Title_dl dd .con {
	margin: 0 15px;
}

.column3Title_dl dd a {
	display: block;
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-size: 20px;
	color: #fff;
	background: #029edb;
	border-radius: 6px;
	position: relative;
}

.column3Title_dl dd a::before {
	display: block;
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	bottom: -15px;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-radius: 3px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column3Title_dl dd.dd2 a {
	background: #55a5aa;
}

.column3Title_dl dd .con:hover a::before {
	bottom: -29px;
}

.column3Title_dl dd.hover a::before {
	bottom: -29px;
}

.column3Title_dl dd.dd1.hover a::before,
.column3Title_dl dd.dd1 .con:hover a::before {
	border-top-color: #029edb;
}

.column3Title_dl dd.dd2.hover a::before,
.column3Title_dl dd.dd2 .con:hover a::before {
	border-top-color: #55a5aa;
}

.column3CRc {
	width: 928px;
	height: 362px;
	overflow: hidden;
}

.column3CR_body {
	padding-right: 15px;
}

.column3Dl {
	overflow: hidden;
	margin: 0 -15px;
}

.column3Dl dd {
	float: left;
	display: inline;
	width: 20%;
	padding-top: 30px;
}

.column3Dl dd .con {
	margin: 0 15px;
}

.column3Dl dd .con a {
	display: block;
	height: 44px;
	line-height: 44px;
	border: 1px solid #ccc;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

/* .column3Dl dd .con a::before{
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	border-top:1px solid #029edb;
	border-left:1px solid #029edb;
	z-index: 2;
	border-radius: 12px;
}
.column3Dl dd .con a::after{
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	right: 0px;
	bottom: 0px;
	border-right:1px solid #029edb;
	border-bottom:1px solid #029edb;
	z-index: 2;
	border-radius: 12px;
} */
.column3Dl dd .con a .jt {
	float: left;
	display: inline;
	width: 17px;
	height: 44px;
	border-right: 1px solid #CCCCCC;
	position: relative;
	background: url(../images/ks.png) center center no-repeat;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column3Dl dd .con a .jt::before {
	display: block;
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	right: -1px;
	background: #029edb;
	opacity: 0;
	visibility: hidden;
	transform: scaleY(0);
	-webkit-transform: scaleY(0);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column3Dl dd .con:hover a .jt {
	background: url(../images/ks_h.png) center center no-repeat;
}

.column3Dl dd .con:hover a .jt::before {
	opacity: 1;
	visibility: visible;
	transform: scaleY(1);
	-webkit-transform: scaleY(1);
}

.column3Dl dd .con a .text {
	padding: 0 5px;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	color: #666;
}

.column3Dl dd .con:hover a .text {
	color: #029edb;
}

.column3Dl dd .con:hover a {
	border-color: #029edb;
}

/*第三通栏end*/
/*专家介绍 start*/
.column4 {
	background: #FFFFFF;
	padding-top: 72px;
}

.column2Con {
	/* overflow: hidden; */
	position: relative;
	padding-top: 50px;
}

.column2Swiper {
	overflow: hidden;
	padding: 30px 0;
}

.column2Swiper .swiper-slide {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	transition: 300ms;
}

.column2Swiper .swiper-slide:hover {
	position: relative;
	z-index: 90;
}

.column2Swiper .picBox {
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
}

/* .column2Swiper .swiper-slide .text{
	overflow: hidden;
} */
.column2Swiper .swiper-slide .text .name {
	height: 48px;
	line-height: 48px;
	font-size: 20px;
	color: #333;
	text-align: center;
	padding-top: 15px;
}

.column2Swiper .swiper-slide .text .duty {
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	color: #666;
	text-align: center;
}

.column2Swiper .swiper-slide .pic {
	transform: scale(.6);
	-webkit-transform: scale(.6);
	transform-origin: 0% 50%;
	border-radius: 100%;
	overflow: hidden;
}
.column2Swiper .swiper-slide .pic img{
	object-position: top center;
}
.column2Swiper .swiper-slide.heihei .pic {
	transform-origin: 100% 50%;
	overflow: auto;
}

/* .column2Swiper .swiper-slide.swiper-slide-next{
	transform: translateX(100px);
	-webkit-transform: translateX(100px);
}
.column2Swiper .swiper-slide.swiper-slide-prev{
	transform: translateX(-100px);
	-webkit-transform: translateX(-100px);
} */
/* .column2Swiper .swiper-slide.mover{
	transform: translateX(50px);
	-webkit-transform: translateX(50px);
}
.column2Swiper .swiper-slide.movel{
	transform: translateX(-50px);
	-webkit-transform: translateX(-50px);
} */
.column2Swiper .swiper-slide.haha .pic {
	transform-origin: 0% 50%;
	overflow: auto;
}

.column2Swiper .swiper-slide .pic::before {
	padding-top: 100%;
}

.column2Swiper .swiper-slide.haha .text .textC {
	float: left;
	display: inline;
	width: 173px;
	margin-top: -50px;
}

.column2Swiper .swiper-slide.heihei .text .textC {
	float: right;
	display: inline;
	width: 173px;
	margin-top: -50px;
}

.column2Swiper .swiper-slide.swiper-slide-active .pic {
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
	transform-origin: 50% 50%;
}

.column2Swiper .swiper-slide.swiper-slide-active .picBox {
	transform: scale(1);
	-webkit-transform: scale(1);
	transform-origin: 50% 50%;
	border-radius: 100%;
	position: relative;
}

/* .column2Swiper .swiper-slide.swiper-slide-active .picBox::before{
	display: block;
	content: "";
	position: absolute;
	top: 0px;
	right:0px;
	left: 0px;
	bottom: 0px;
	border: 1px dotted rgba(10,83,147,0.5);
	border-radius: 100%;
} */
.column2Swiper .swiper-slide.swiper-slide-active .picBox .pic::after {
	display: none;
}

/* .column2SwiperText{
	position: absolute;
	height: 100%;
} */
.column2SwiperText .swiperPrev {
	position: absolute;
	width: 48px;
	height: 48px;
	left: -100px;
	top: 50%;
	background: url(../images/teamPrev.png) center center no-repeat;
	transition: all 0.3s ease;
	-wbkit-transition: all 0.3s ease;
	border-radius: 100%;
	outline: none;
	border: 1px solid #E6E6E6;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.column2SwiperText .swiperNext {
	position: absolute;
	width: 48px;
	height: 48px;
	right: -100px;
	left: auto;
	top: 50%;
	outline: none;
	background: url(../images/teamNext.png) center center no-repeat;
	border: 1px solid #E6E6E6;
	border-radius: 100%;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}



.column2SwiperText .swiperPrev:hover {
	background: #029edb url(../images/teamPrev_h.png) center center no-repeat;
	z-index: 10;
	transform: translateY(-1px);
	-webkit-transform: translateY(-1px);
	box-shadow: 0 3px 7px rgba(0, 0, 0, .08);
	border-color: #029edb;
}

.column2SwiperText .swiperNext:hover {
	background: #029edb url(../images/teamNext_h.png) center center no-repeat;
	z-index: 10;
	transform: translateY(-1px);
	-webkit-transform: translateY(-1px);
	box-shadow: 0 3px 7px rgba(0, 0, 0, .08);
	border-color: #029edb;
}

.column2SwiperText .swiperNext:hover::before,
.column2SwiperText .swiperPrev:hover::before {
	visibility: visible;
	opacity: 1;
}

.commonMore {
	text-align: center;
}

.commonMore a {
	display: inline-block;
	height: 42px;
	line-height: 42px;
	position: relative;
	padding: 0 37px;
	border: 1px solid #ccc;
	overflow: hidden;
	border-radius: 50px;
}

.commonMore a:after {
	display: block;
	content: "";
	position: absolute;
	width: 170px;
	height: 170px;
	border-right: 100%;
	left: -10px;
	top: -65px;
	background: #029edb;
	transform: scale(0);
	-webkit-transform: scale(0);
	transform-origin: center center;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	border-radius: 100%;
}

.commonMore a span {
	display: inline-block;
	padding-right: 20px;
	background: url(../images/teamNext.png) right center no-repeat;
	font-size: 14px;
	font-weight: lighter;
	color: #999;
	position: relative;
	z-index: 5;
	transition: all 0.5s linear;
	-webkit-transition: all 0.5s linear;
}

.commonMore a:hover {
	border-color: #029edb;
}

.commonMore a:hover:after {
	transform: scale(1);
	-webkit-transform: scale(1);
}

.commonMore a:hover span {
	color: #fff;
	background: url(../images/teamNext_h.png) right center no-repeat;
}

/*专家介绍 end*/
/* 健康知识 start */
.column5 {
	position: relative;
	height: 755px;
	overflow: hidden;
}

.column5C {
	overflow: hidden;
}

.column5Swiper {
	margin: 0 -15px;
	padding-top: 70px;
}

.column5Swiper .swiper-slide {
	webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	transition: 300ms;
}

.column5Swiper .con {
	margin: 0 15px;
	position: relative;
}
.column5Swiper .con .contentBox{
	transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
}
.column5Swiper .swiper-slide.swiper-slide-active .contentBox{
	transform: translateY(-70px);
}
.column5Swiper .con .pic {
	border-radius: 12px;
	overflow: hidden;
}

.column5Swiper .con .pic::before {
	padding-top: 59.7826%;
}
.column5Swiper .con .text{
	padding-top: 10px;
}
.column5Swiper .con  .time{
	height:36px;
	line-height: 36px;
	font-size: 18px;
	color: #999;
}
.column5Swiper .con  .title a{
	display: block;
	height:52px;
	line-height: 28px;
	font-size: 16px;
	color: #333;
	font-weight: bold;
}
.column5Swiper .con  .title a:hover{
	color: #0193cf;
}
.col5BannerDot{
	position: relative;
	padding: 11px 0;
	text-align: center;
}
.col5BannerDot span{
	display: inline-block;
	width: 16px;
	height: 16px;
	background: rgba(104,205,246,0.5);
	margin: 0 10px !important;
	opacity: 1;
}
.col5BannerDot span.swiper-pagination-bullet-active{
	background: #0193cf;
}
/* 健康知识 end */
/*底部开始*/
.footer {
	background: #0279aa;
}

.footerTop {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 25px 0;
}

.footerMenu {
	overflow: hidden;
}

.footerMenu dd {
	float: left;
	display: inline;
	margin-right: 52px;
}

.footerMenu dd a {
	display: block;
	height: 42px;
	line-height: 42px;
	font-size: 14px;
	color: #fff;
}

.footerMenu dd a:hover {
	font-weight: bold;
}

.footerEwmDl dd {
	float: left;
	display: inline;
	width: 85px;
	margin-left: 38px;
	margin-top: 22px;
}

.footerEwmDl dd .con {
	width: 85px;
	padding: 0;
}

.footerEwmDl dd img {
	display: block;
	width: 85px;
	height: 85px;
}

.footerEwmDl dd span {
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #FFFFFF;
}

.footerBodyL {
	padding-top: 36px;
	overflow: hidden;
}

.footerDl dd .con {
	overflow: hidden;
}

.footerDl dd .title {
	float: left;
	display: inline;
	height: 40px;
	line-height: 40px;
	font-size: 14px;
	color: #fff;
	padding-left: 28px;
}

.footerDl dd.dd1 .title {
	background: url(../images/icn1.png) left center no-repeat;
}

.footerDl dd.dd2 .title {
	background: url(../images/icn2.png) left center no-repeat;
}

.footerDl dd .text {
	overflow: hidden;
	line-height: 30px;
	padding: 5px 0;
	font-size: 14px;
	color: #FFFFFF;
}

.footerDl dd.dd1 .text {
	font-size: 24px;
}

.footerBody1 {
	background: #026e99;
	height: 45px;
}

.footerBottom {
	text-align: center;
}

.footerBottomT {
	overflow: hidden;
	display: inline-block;
	line-height: 45px;
}

.footerBottomT span {
	float: left;
	display: inline;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 4px;
}

.footerBottomT span.span1 {
	padding-left: 25px;
	background: url(../images/iconJ.png) left center no-repeat;
}

.footerBottomT span a {
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomT span a:hover {
	color: #fff;
}

.footerBottomB {
	line-height: 45px;
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}

.footerBottomB a {
	color: rgba(255, 255, 255, 0.5);
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
}

.footerBottomB a:hover {
	color: rgba(255, 255, 255, 1);
}
.footerBodyC_c{
	overflow: hidden;
	text-align: center;
}
.footerBodyC_dl{
	display: inline-block;
	overflow: hidden;
}
.footerBodyC_dl dd{
	float: left;
	display: inline;
	margin: 0 5px;
	padding: 45px 0;
}
.footerBodyC_dl dd img{
	display: block;
	height: 56x;
}

/*底部结束*/
/*
-----------------------------首页样式end-----------------------------
*/
/*
-----------------------------频道页start-----------------------------
*/
/*
-----------------------------频道页end-----------------------------
*/
/*内页框架开始*/
/*内页外结构开始*/

/*内页外结构结束*/

/* subBanner start */
.subBox{
	position: relative;
	height: 500px;
}
.subBanner{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
/* subBanner end */
/*当前位置开始*/
.locationBox{
	height:60px;
	line-height: 60px;
	background: #f7f7f7;
}
.locationLeft span{
	font-size: 14px;
	color: #666;
	background: url(../images/locationIcon.png) left center no-repeat;
	line-height: 60px;
	padding: 10px 0 10px 28px;
}
.locationLeft a{
	font-size: 14px;
	color: #666;
}

.locationLeft em{
	font-style: normal;
	font-size: 14px;
	color: #666;
}
.locationMenu{
	overflow: hidden;
	padding: 12px 0;
}
.locationMenu dd{
	float: left;
	display: inline;
	margin-left: 52px;
}
.locationMenu dd a{
	display: block;
	line-height: 36px;
	transition: all 0.3s linear;
	-webkit-transition: all 0.3s linear;
	overflow: hidden;
	font-size: 14px;
	color: #666;
}
.locationMenu dd:hover a{
	color: #029edb;
}
.locationMenu dd.hover a{
	color: #029edb;
}
/*当前位置结束*/
/*页码开始*/
.page {
	padding: 30px 0;
	text-align: center;
	clear: both;
	font-size: 14px;
}

.page a {
	display: inline-block;
	overflow: hidden;
	padding: 7px 12px;
	color: #999999;
	border-radius: 3px;
	background: #fff;
	margin: 0 3px;
	border: 1px solid #E2E2E2;
}

.page span {
	display: inline-block;
	padding: 6px 2px;
	position: relative;
	top: -15px;
}

.page a:hover {
	background: #029edb;
	color: #fff;
	border-color: #029edb;
}

.page a.hover {
	background: #029edb;
	color: #fff;
	border-color: #029edb;
}

.page input {
	display: inline-block;
	vertical-align: middle;
	height: 22px;
	border: 1px solid #e6e6e6;
	position: relative;
	top: -2px;
}

.page input.pageDetail {
	width: 30px;
	height: 30px;
	text-align: center;
	border-radius: 3px;
	color: #999999;
	position: relative;
	top: -13px;
}

.page label {
	color: #999999;
	position: relative;
	top: -11px;
}

.page input.page_bnt {
	border: none;
	width: 30px;
	height: 25px;
	cursor: pointer;
	background: none;
	color: #999999;
	position: relative;
	top: -13px;
}

.page a div {
	width: 11px;
	height: 19px;
	background-position: center center;
	background-repeat: no-repeat;
}

.page a.firstPage div {
	background-image: url(../images/page/firstPage.png)
}

.page a.prevPage div {
	background-image: url(../images/page/prevPage.png)
}

.page a.nextPage div {
	background-image: url(../images/page/nextPage.png)
}

.page a.lastPage div {
	background-image: url(../images/page/lastPage.png)
}

.page a.firstPage:hover div {
	background-image: url(../images/page/firstPageh.png)
}

.page a.prevPage:hover div {
	background-image: url(../images/page/prevPageh.png)
}

.page a.nextPage:hover div {
	background-image: url(../images/page/nextPageh.png)
}

.page a.lastPage:hover div {
	background-image: url(../images/page/lastPageh.png)
}

.page a.firstPage.disabled {
	background: #E2E2E2;
}

.page a.prevPage.disabled {
	background: #E2E2E2;
}

.page a.nextPage.disabled {
	background: #E2E2E2;
}

.page a.lastPage.disabled {
	background: #E2E2E2;
}

.page a.firstPage.disabled div {
	background-image: url(../images/page/firstPage.png)
}

.page a.prevPage.disabled div {
	background-image: url(../images/page/prevPage.png)
}

.page a.nextPage.disabled div {
	background-image: url(../images/page/nextPage.png)
}

.page a.lastPage.disabled div {
	background-image: url(../images/page/lastPage.png)
}

/*页码结束*/
/*内页框架结束*/
