@charset "utf-8";
@import url('reset.css');
@import url('animate.css');
@import url('/public/plugins/font-awesome-4.7.0/css/font-awesome.min.css');

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

:root {
	--common-page-width: 1208px;
	--common-font-size: 12px;
	--common-color: #666;
	--common-background-color: #0d64b0;
	--common-background-hover-color: #0d64b0;
	--nav-height: 57px;
	--common-p-line-height: 200%;
	--common-p-size: 16px;
	--common-p-color: #262626;
	--common-font-color-hover: #0d64b0;
}

body {
	background-color: #fff;
	overflow: hidden;
	font-size: var(--common-font-size);
}


input {
	font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, 微软雅黑, Arial, sans-serif;
}

img {
	max-width: 100%;
}

a {
	background: transparent;
	text-decoration: none;
	color: var(--common-p-color)
}

a:active,
a:hover {
	outline: 0
}

a:hover {
	text-decoration: none;
	color: var(--common-background-color)
}

.textCenter {
	text-align: center;
}

.wrapper {
	width: var(--common-page-width);
	margin: 0 auto;
	text-align: left
}

.index .wrapper {
	width: var(--common-page-width);
}

.ov {
	overflow: hidden;
}

.ts {
	text-transform: uppercase
}

.mauto {
	margin: 0 auto
}

.pz {
	position: relative;
	z-index: 0
}

.pa {
	position: absolute;
	z-index: 0
}

.bz {
	box-sizing: border-box
}

.b {
	font-weight: bold
}

.i {
	font-style: italic
}

.hidden {
	display: none !important
}

.cb {
	clear: both
}

.tes {
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mt20 {
	margin-top: 20px;
}

/*animation*/
@keyframes slideDown {
	0% {
		top: 45px;
		opacity: 0;
		transform: scale(0, 0);
	}

	to {
		top: 56px;
		opacity: 1;
		transform: scale(1, 1);
	}
}

@-webkit-keyframes slideDown {
	0% {
		top: 45px;
		opacity: 0;
		transform: scale(0, 0);
	}

	to {
		top: 56px;
		opacity: 1;
		transform: scale(1, 1);
	}
}

@keyframes headerDown {
	0% {
		transform: translateY(-70%);
	}

	to {
		transform: translateY(0);
	}
}

.img img {
	transform: scale(1);
}

a:hover .img img {
	transform: scale(1.1, 1.1);
}

.flex {
	display: flex;
	display: -webkit-flex;
}

.flexJb {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
}

.flexColumn {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
}

.flexAc {
	display: flex;
	display: -webkit-flex;
	align-items: center;
}

.flexCenter {
	display: flex;
	display: -webkit-flex;
	justify-content: center;
	align-items: center;
}

.flexWrap {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
}

.flexRight {
	display: flex;
	display: -webkit-flex;
	justify-content: flex-end;
}

.ovd {
	overflow: hidden;
}

.db {
	display: block;
}

#app {
	overflow: hidden;
}

/*header*/
.headerBar {
	width: 100%;
	height: 35px;
	background-color: #169a5e;
	background: linear-gradient(to right, #169a5e, #1279af);
	font-size: var(--common-font-size);
	color: #fff;
	padding: 0 11.25%;
}

.headerBar *,
.headerBar a {
	font-size: var(--common-font-size);
	color: #fff;
}

.headerBar a:hover {
	text-decoration: underline;
}

.headerBar i {
	margin-right: 10px;
}

header {
	width: 100%;
	height: 205px;
	background-color: #fff;
}

header .wrapper {
	height: 203px;
}

header .logo,
header .logo img {
	height: 123px;
}

header .logo .name {
	margin-left: 20px;
}

header .logo .name h2 {
	line-height: 35px;
	font-size: 26px;
	color: var(--common-color);
}

header .logo .name h3 {
	line-height: 21px;
	font-size: 15px;
	color: var(--common-color);
}

header .sitename {
	font-size: 40px;
	color: #fff;
	margin-left: 10px;
}

header .logo img {
	max-width: 100%;
	display: block;
}

header .search {
	width: 105px;
	background-color: #436cac;
}

header .search .input {
	margin: 1px 0 1px 1px;
	width: 53px;
	height: 33px;
	background: none;
	border: 0;
	font-size: 14px;
	color: #333;
	background-color: #fff;
}

header .search .button {
	width: 51px;
	height: 33px;
	background: #1c3995;
	border: 0;
	font-size: 14px;
	color: #fff;
}

header .r {
	width: 196px;
}

header .r .tel {
	padding-left: 52px;
	background: url(../images/icon/headerPhone.png) no-repeat 0 5px;
}

header .r .tel h2 {
	line-height: 22px;
	font-size: 14px;
	color: #000;
}

header .r .tel h3 {
	line-height: 25px;
	font-size: 20px;
	font-weight: bold;
	color: #666;
}

header .r .rb {
	margin-top: 18px;
}

header .r .oa {
	line-height: 35px;
	background-color: #44af78;
	padding: 0 12px;
	font-size: 14px;
	color: #fff;
}

/*nav*/
nav {
	width: 100%;
	height: var(--nav-height);
	background-color: #169a5e;
	background: linear-gradient(to right, #1174b6, #169c56);
}

nav.active {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	-webkit-animation: headerDown .5s 1;
	-khtml-animation: headerDown .5s 1;
	animation-direction: alternate;
	box-shadow: 0 0 5px #666;
}

nav ul {
	overflow: visible !important;
	margin: 0 auto;
	font-size: 0;
}

nav li {
	position: relative;
	z-index: 9999999;
	height: var(--nav-height);
	flex: 1;
}

nav li .a {
	display: inline-block;
	height: var(--nav-height);
	text-align: center;
	line-height: var(--nav-height);
	font-size: 16px;
	color: #fff;
	width: 100%;
}

nav li .a.active {
	background-color: #1a6791;
}

nav .dl {
	overflow: hidden;
	display: none;
	position: absolute;
	z-index: 999;
	top: 56px;
	left: 0;
	width: 100%;
	background: var(--common-background-color);
	text-align: center;
	-webkit-animation: slideDown 0.3s 1;
	-khtml-animation: slideDown 0.3s 1;
	animation-direction: alternate
}

nav li:hover .dl {
	display: block;
}

nav dt {
	overflow: hidden;
	width: 100%;
}

nav dt a {
	overflow: hidden;
	display: block;
	width: 100%;
	text-align: center;
	padding: 10px 0;
	line-height: 25px;
}

nav dt a:link,
nav dt a:visited {
	font-size: var(--common-font-size);
	color: #fff
}

nav dt a:hover {
	background-color: #058998;
	text-decoration: none;
	color: #fff
}

/*footer*/
footer {
	background-color: #52687e;
}

footer .ft {
	height: 57px;
	width: 100%;
	border-bottom: 1px solid #8696a5;
}

footer .ft .nav li {
	line-height: 56px;
	flex: 1;
}

footer .ft .nav a {
	font-size: 16px;
	color: #fff;
	display: block;
	width: 100%;
	text-align: center;
}

footer .fc {
	padding: 36px 0 29px 0;
}

footer .fc article {
	line-height: 25px;
	font-size: 14px;
	color: #fff;
}

footer .fc .tel {
	padding-left: 48px;
	background: url(../images/icon/footerPhone.png) no-repeat 0 5px;
	margin-bottom: 14px;
}

footer .fc .tel h2 {
	line-height: 18px;
	font-size: 14px;
	color: #fff;
}

footer .fc .tel h3 {
	line-height: 25px;
	font-size: 21px;
	font-weight: bold;
	color: #fff;
}

footer .fc ul li {
	text-align: center;
}

footer .fc ul li:first-child {
	margin-right: 35px;
}

footer .fc ul li img {
	max-width: 85px;
	margin: 0 auto;
}

footer .fc ul li p {
	font-size: 14px;
	color: #fff;
	margin-top: 10px;
	line-height: 25px;
}

footer .fc article a {
	color: #fff;
}

footer .fc article a:hover {
	text-decoration: underline;
}

footer .copyright {
	padding: 10px 0;
	background-color: #159568;
	color: #fff;
	line-height: 28px;
	font-size: 14px;
}

footer .copyright .img {
	margin-top: 25px;
}

footer .copyright .img img {
	max-width: 145px;
}

footer .copyright .sydw {
	left: 99px;
	top: 40px;
}

footer .support {
	padding: 8px 0;
	line-height: 34px;
	font-size: 17px;
}

/*swiper*/
.headerSwiper {
	z-index: 1;
}

.headerSwiper img {
	width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--common-font-color) !important;
}

.swiper-pagination-bullet-active {
	background-color: var(--common-font-color) !important;
}

.headerSwiper .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 1;
}

.headerSwiper .swiper-pagination-bullet-active {
	background-color: var(--common-background-color) !important;
}

/*index*/
.indexTop {
	width: 100%;
	height: 35px;
	border-bottom: 2px solid var(--common-background-color);
}

.indexTop p {
	padding: 0 12px;
	line-height: 33px;
	background-color: var(--common-background-color);
	color: #fff;
	font-size: 16px;
}

.indexTop a {
	color: var(--common-background-color);
}

.indexTop a:hover {
	color: #1e929f;
}

.indexTabs {
	width: 100%;
	height: 35px;
	border-bottom: 2px solid var(--common-background-color);
}

.indexTabs li {
	padding: 0 11px;
	line-height: 33px;
	font-size: 16px;
	color: #000;
	cursor: pointer;
}

.indexTabs li.active {
	background-color: var(--common-background-color);
	color: #fff;
}

.indexTypename {
	width: 100%;
	height: 35px;
}

.indexTypename p {
	font-size: 29px;
	color: #1c3995;
}

.indexTypename a {
	font-size: 20px;
	color: #4a4a4a;
}

.indexTypename a:hover {
	color: var(--common-font-color-hover);
}

#headerSwiper {
	z-index: 1;
}

.index1 {
	margin-top: -161px;
	z-index: 2;
	height: 216px;
}

.index1::after {
	content: '';
	display: block;
	width: 468px;
	height: 216px;
	background: linear-gradient(to bottom, #2aa173, #2a86b7);
	position: absolute;
	z-index: 999;
	left: 0;
	top: 0;
	z-index: -1;
}

.index1 ul.search {
	padding: 16px 0 0 29px;
	z-index: 999;
}

.index1 ul.search li {
	margin-right: 25px;
}

.index1 ul.search li dl {
	width: 115px;
	height: 31px;
	background-color: #55b292;
	border-radius: 15px;
}

.index1 ul.search li dl:hover {
	border-radius: 15px 15px 0 0;
}

.index1 ul.search li dl dt {
	width: 100%;
	font-size: 16px;
	color: #fff;
}

.index1 ul.search li dl dt i {
	display: block;
	width: 8px;
	height: 5px;
	background: url(../images/icon/arrow-down.png) no-repeat;
	margin-left: 10px;
}

.index1 ul.search li dl dd {
	top: 31px;
	left: 0;
	width: 100%;
	background-color: #55b292;
	display: none;
}

.index1 ul.search li dl:hover dd {
	display: block;
	max-height: 200px;
	overflow: scroll;
	overflow-y: auto;
	overflow-x: hidden;
}

.index1 ul.search li dl dd a {
	padding: 5px;
	line-height: 25px;
	font-size: 14px;
	color: #fff;
}

.index1 ul.search li dl:hover dd a:hover {
	background-color: #2aa074;
}

.index1 ul.list {
	background-color: #fff;
	margin: 15px 0 0 19px;
	width: 1170px;
	padding: 25px 0;
	height: 154px;
}

.index1 ul.list li {
	flex: 1;
}

.index1 ul.list li .title {
	margin-top: 15px;
	line-height: 150%;
	font-size: 14px;
	color: #3e3e3e;
}

.index1 ul.list li .img {
	height: 45px;
	font-size: 0;
	line-height: 45px;
}

.index1 ul.list li .img img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
}

.index2 {
	margin-top: 40px;
}

.index2 .tname {
	width: 100%;
	height: 44px;
	border-bottom: 1px solid #b1b1b1;
}

.index2 .tname::after {
	content: '';
	display: block;
	width: 95px;
	height: 4px;
	background-color: #55b293;
	position: absolute;
	bottom: 0;
	left: 0;
}

.index2 .tname a {
	margin-right: 24px;
	color: #55b293;
	font-size: 15px;
	font-weight: bold;
}

.index2 .kslist {
	margin-top: 22px;
}

.index3 {
	margin-top: 49px;
	height: 371px;
	background-color: #55a4b6;
	background: linear-gradient(to bottom, #559ec5, #55b391);
}

.index3 .tname {
	height: 44px;
	border-bottom: 1px solid #fff;
	margin: 0 4px;
	margin-top: 20px;
	z-index: 99;
}

.index3 .tname h2 {
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

.index3 .tname::after {
	content: '';
	display: block;
	width: 95px;
	height: 4px;
	background-color: #55b293;
	position: absolute;
	bottom: 0;
	left: 0;
}

.index3 .tname ul.search {
	padding: 0 55px 0 0;
}

.index3 .tname ul.search li:not(:last-child) {
	margin-right: 25px;
}

.index3 .tname ul.search li dl {
	min-width: 115px;
	height: 31px;
	background-color: #77b2cf;
	border-radius: 15px;
	padding: 0 5px;
}

.index3 .tname ul.search li dl:hover {
	border-radius: 15px 15px 0 0;
}

.index3 .tname ul.search li dl dt {
	width: 100%;
	font-size: 16px;
	color: #fff;
}

.index3 .tname ul.search li dl dt i {
	display: block;
	width: 8px;
	height: 5px;
	background: url(../images/icon/arrow-down.png) no-repeat;
	margin-left: 10px;
}

.index3 .tname ul.search li dl dd {
	top: 31px;
	left: 0;
	width: 100%;
	background-color: #77b2cf;
	display: none;
}

.index3 .tname ul.search li dl:hover dd {
	display: block;
	max-height: 200px;
	overflow: scroll;
	overflow-y: auto;
	overflow-x: hidden;
}

.index3 .tname ul.search li dl dd a {
	padding: 5px;
	line-height: 25px;
	font-size: 14px;
	color: #fff;
}

.index3 .tname ul.search li dl:hover dd a:hover {
	background-color: #2aa074;
}

.index3 .tname ul.search li button i {
	display: block;
	margin-right: 8px;
	margin-left: 13px;
	width: 17px;
	height: 17px;
	background: url(../images/icon/search.png) no-repeat;
}

.index3 .tname ul.search li button {
	width: 115px;
	height: 31px;
	background: #e26f23;
	border-radius: 15px;
	border: 0;
	font-size: 14px;
	color: #fff;
}

.index3 .list {
	margin-top: 25px;
	padding: 0 53px;
}

.index3 .list .swiper-button-next,
.index3 .list .swiper-button-prev {
	width: 17px;
	height: 60px;
	background: url(../images/icon/team-swiper-button.png) no-repeat;
}

.index3 .list .swiper-button-next::after,
.index3 .list .swiper-button-prev::after {
	display: none;
}

.index3 .list .swiper-button-next {
	transform: rotate(180deg);
}

.index3 .list .img,
.index3 .list img {
	width: 100%;
}

.index3 .list article {
	padding-top: 6px;
	padding-bottom: 10px;
	background-color: #fff;
}

.index3 .list article .title {
	line-height: 150%;
	font-size: 15px;
	color: #55b293;
}

.index3 .list article .zc {
	line-height: 150%;
	font-size: 15px;
	color: #3e3e3e;
}

.index4 {
	margin-top: 28px;
	padding: 42px 0 13px 0;
	background-color: #f0f0f0;
}

.index4 .l {
	width: 371px;
}

.index4 .c {
	width: 435px;
}

.index4 .r {
	width: 327px;
}

.index4 .it {
	width: 100%;
	height: 33px;
	border-bottom: 2px solid #b3b3b3;
}

.index4 .it h2 {
	width: 112px;
	height: 33px;
	background-color: #1176b3;
	background: linear-gradient(to right, #1175b4, #169b59);
	font-size: 16px;
	color: #fff;
}

.index4 .it a {
	font-size: 14px;
	color: #55b293;
	font-weight: bold;
}

.index4 .l .it,
.index4 .c .it {
	margin-bottom: 14px;
}

.index4 .r .it {
	margin-bottom: 18px;
}

.index4 .list li.n {
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #3e3e3e;

	width: 100%;
}

.index4 .list li.n .title {
	width: 70%;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index4 .list li.n span {
	color: #00a04a;
}

.index4 .list li.t article {
	width: 260px;
}

.index4 .list li.t article .title {
	display: block;
	overflow: hidden;
	height: 30px;
	line-height: 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 17px;
	font-weight: bold;
	color: #3b3b3b;
}

.index4 .list li.t article .intro {
	margin-top: 5px;
	line-height: 160%;
	font-size: 14px;
	color: #3e3e3e;
}

.index4 .list2 .t img {
	width: 100%;
	margin-bottom: 6px;
}

.index4 .list2 li.n {
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	color: #3e3e3e;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.index4 .list2 li.n span {
	color: #00a04a;
}

.index5 {
	padding: 0px 0;
}

.index5 .tabs {
    margin-top:20px;
	width: 100%;
	height: 54px;
	border-bottom: 1px solid #b1b1b1;
}

.index5 .tabs li {
	padding: 0 22px;
	margin-right: 34px;
	line-height: 50px;
	border-bottom: 4px solid transparent;
	font-size: 20px;
	color: #5d5d5d;
}

.index5 .tabs li.active {
	border-color: #009dc0;
	font-weight: bold;
}

.index5 .c {
	margin-top: 20px;
}

.index5 .c #indexNewsSwiper,
.index5 .c #indexNewsSwiper img {
	width: 375px;
}

.index5 .c #indexNewsSwiper p.pa {
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0,0,0,.5);
  color: #fff;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  height: 35px;
  line-height: 35px;
  padding: 0 5px;
}

.index5 .c #indexNewsSwiper .swiper-button-next,
.index5 .c #indexNewsSwiper .swiper-button-prev {
	background: rgba(0, 0, 0, .5);
}

.index5 .c #indexNewsSwiper .swiper-button-prev {
	left: 5px;
}

.index5 .c #indexNewsSwiper .swiper-button-next {
	right: 5px;
}

.index5 .c #indexNewsSwiper .swiper-button-next::after,
.index5 .c #indexNewsSwiper .swiper-button-prev::after {
	font-size: 20px;
	color: #fff;
}


.index6 {
	padding: 18px 0 37px 0;
	background-color: #f0f0f0;
}

.index6 .tabs {
	width: 100%;
	height: 54px;
	border-bottom: 1px solid #b1b1b1;
}

.index6 .tabs li {
	padding: 0 22px;
	margin-right: 34px;
	line-height: 50px;
	border-bottom: 4px solid transparent;
	font-size: 20px;
	color: #5d5d5d;
}

.index6 .tabs li.active {
	border-color: #009dc0;
	font-weight: bold;
}

.index6 .list {
	margin-top: 14px;
}

.index6 .list li {
	width: 280px;
	width: calc( (100% - 28 * 3) / 4 );
	margin-right: 28px;
	height: 115px;
	background-color: #fff;
	padding: 15px 24px;
}

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

.index6 .list li:hover {
	box-shadow: 0 0 5px #ccc;
}

.index6 .list li .time {
	line-height: 33px;
	font-size: 24px;
	color: #888;
	font-weight: bold;
}

.index6 .list li .author {
	line-height: 33px;
	font-size: 14px;
	color: #3e3e3e;
	max-width: 50%;
	height: 33px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.index6 .list li .title {
	margin-top: 12px;
	line-height: 20px;
	font-size: 14px;
	color: #3e3e3e;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	/* 限制为两行 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	/* 隐藏超出部分 */
	text-overflow: ellipsis;
	/* 超出部分用省略号表示 */
	white-space: normal;
	/* 允许换行 */
}

/*other*/
.banner {
	width: 100%;
	height: 196px;
}

.banner img {
	display: block;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
  height: 196px;
  object: cover;
}

.banner .nav {
	width: 100%;
	height: 57px;
	border-bottom: 1px solid #fff;
	line-height: 56px;
}

.banner .nav li {
	min-width: 10%;
}

.banner .nav li a {
	width: 100%;
	display: block;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 57px;
}

.banner .nav li a.active,
.banner .nav li a:hover {
	background-color: #1a6791;
}

.banner .typename {
	width: 100%;
	line-height: 83px;
	text-align: right;
	padding-right: 32px;
	font-size: 35px;
	font-weight: bold;
	color: #fff;
}

.banner .nav:last-child {
	border-bottom: 0;
	border-top: 1px solid #fff;
}

.banner .nav:last-child li a {
	line-height: 55px;
	font-size: 15px;
}

.banner .nav:last-child li a.active,
.banner .nav:last-child li a:hover {
	background: none;
	font-weight: bold;
}

.banner .ks {
	margin-top: 6px;
	height: 133px;
}

.banner .ks .search {
	margin-left: 158px;
}

.banner .ks .search .input {
	width: 248px;
	height: 35px;
	background: none;
	border: 1px solid #dee9ed;
	font-size: 14px;
	color: #fff;
	padding: 0 12px;
}

.banner .ks .search .input::placeholder {
	opacity: 1;
	color: #fff;
}

.banner .ks .search .button {
	width: 53px;
	height: 35px;
	background: #d9e6e8;
	border: 0;
	font-size: 14px;
	color: #494949;
	font-family: '微软雅黑';
}

.banner .ks h2 {
	margin-right: 32px;
	font-size: 35px;
	font-weight: bold;
	color: #fff;
}

/*sidebar*/
.sidebar {
	background-color: #ededed;
}

.sidebar .wrapper {
	line-height: 60px;
}

.sidebar li a {
	line-height: 60px;
	margin-right: 58px;
}

.sidebar li a.active {
	color: var(--common-background-color);
}

/*main*/
main {
	padding: 45px 0;
}

main .typename {
	line-height: 52px;
	margin-bottom: 25px;
}

main .typename::after {
	content: '';
	display: block;
	margin-top: 7px;
	display: block;
	width: 59px;
	height: 3px;
	background-color: #bcbcbc;
}

main .typename h1,
main .typename .title {
	font-size: 25px;
	color: #212121;
}

.detail {
	background-color: #fff;
	padding: 35px 50px;
}

.introduction {
	padding: 30px 0;
	text-align: justify;
	line-height: var(--common-p-line-height);
	font-size: var(--common-p-size);
	color: var(--common-p-color);
}

.introduction.nmt {
	margin-top: 0;
	padding: 0;
}

.introduction div,
.introduction p {
	font-size: var(--common-p-size);
	color: var(--common-p-color);
}

.introduction img {
	max-width: 100%
}

.articleImg {
	width: 100%;
	margin: 0 0 0 0;
	text-align: center
}

.articleImg img {
	display: block;
	max-width: 100%;
	margin: 0 auto
}

.articleImg2 {
	width: 100%;
	margin: 0 0 22px 0;
	text-align: center
}

.articleImg2 img {
	display: block;
	max-width: 100%;
	margin: 0 auto
}

.articleBody {
	width: 400px;
	margin: 20px 0
}

.articleTitle {
	overflow: hidden;
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-size: 20px;
	color: var(--common-p-color);
	margin-bottom: 8px;
}

.articleTitle2 {
	overflow: hidden;
	width: 100%;
	text-align: center;
	line-height: 32px;
	font-size: var(--common-font-size);
	color: var(--common-background-color);
	font-weight: bold;
	margin-bottom: 8px;
}

.articlePhoto {
	margin-top: 18px;
	margin-bottom: 16px;
}

.articleTime {
	width: 100%;
	margin-top: 8px;
	margin-bottom: 15px;
	text-align: center;
	line-height: 21px;
	font-size: 18px;
	color: #262626;
	padding-bottom: 22px;
}

.articleDes {
	text-align: center;
	line-height: 28px;
	font-size: 14px;
	color: #42403f
}

.articlePages {
	margin-top: 20px;
	padding-top: 10px;
	border-top: 1px dashed #969797
}

.articlePages div {
	width: 50%;
	font-size: 16px;
	color: #666
}

.askNow a {
	width: 165px;
	height: 35px;
	background: #ea6000;
	margin: 10px auto;
	line-height: 35px;
	font-size: 14px;
	color: #fff
}

.askNow a:hover {
	background: linear-gradient(to bottom, #f78e45, #ea6000)
}

/*关于我们*/
.about-title::after {
	content: '';
	display: block;
	width: 95px;
	height: 3px;
	background-color: #55b293;
	position: absolute;
	bottom: 0;
	left: 0;
}

.about-title h2 {
	font-size: 18px;
	color: #262626;
}

.about-title a {
	right: 0;
	bottom: 0;
	font-size: 15px;
	color: #55b293;
}

.about {
	margin-top: 36px;
}

.about .about1 .img,
.about .about1 .img img {
	width: 627px;
}

.about .about1 article {
	width: 530px;
}

.about-title {
	width: 100%;
	line-height: 35px;
	padding-bottom: 9px;
	border-bottom: 1px solid #b1b1b1;
}

.about .about1 .intro {
	line-height: 30px;
	margin-top: 15px;
	font-size: 16px;
	color: #262626;
}

.about .about1 .details {
	line-height: 22px;
	background-color: #169a5e;
	padding: 0 16px;
	border-radius: 11px;
	font-size: 14px;
	color: #fff;
	margin-top: 10px;
}

.about .about2 {
	width: 100%;
	margin-top: 60px;
}

.about .about2 .c {
	margin-top: 26px;
	padding: 0 52px;
}

.about .about2 .c .swiper-button-next,
.about .about2 .c .swiper-button-prev {
	width: 17px;
	height: 56px;
	background: url(../images/icon/leader-swiper-button.png) no-repeat;
}

.about .about2 .c .swiper-button-next {
	transform: rotate(180deg);
}

.about .about2 .c .swiper-button-next::after,
.about .about2 .c .swiper-button-prev::after {
	display: none;
}

.about .about2 .c .title {
	margin-top: 3px;
	line-height: 26px;
	font-size: 15px;
	color: #55b293;
}

.about .about2 .c .zc {
	line-height: 24px;
	font-size: 15px;
	color: #3e3e3e;
}

.about .about3 {
	width: 100%;
	margin-top: 60px;
}

.about .about3 .nt {
	margin-top: 20px;
}

.about .news-index.about3 .nt #newsSwiper {
	margin: 0;
}

.about .about4 {
	width: 100%;
	margin-top: 60px;
}

.about .about4 #honorSwiper {
	margin-top: 28px;
}

.about .about4 #honorSwiper .title {
	margin: 10px 0 0;
	line-height: 30px;
	font-size: 15px;
	color: #3e3e3e;
}

/*预约专家*/
.orderMaster img {
	border: 2px solid #af7f47;
	border-radius: 3px;
}

.orderMaster p.title {
	line-height: 60px;
	font-size: 20px;
	color: var(--common-font-color2);
}

/*联系我们*/
.contactTel {
	padding-left: 52px;
	background: url(../images/icon/contactPhone.png) no-repeat 0 5px;
	margin-bottom: 13px;
}

.contactTel .title {
	line-height: 24px;
	font-size: var(--common-font-size);
	color: #000;
}

.contactTel .number {
	line-height: 23px;
	font-size: 20px;
	color: #666;
}

.contactus {
	margin-top: 6px;
	line-height: 30px;
}

.contactus img {
	margin-bottom: 10px;
}

.contactus p {
	font-size: 15px !important;
	color: #5e3a10 !important;
}

.contactus b {
	font-size: 18px !important;
}

/*科室*/
.kslist {
	width: 100%;
}

.kslist .tabs li {
	flex: 1;
	height: 56px;
	background-color: #f0f0f0;
	font-size: 22px;
	font-weight: bold;
	color: #3b3b3b;
}

.kslist .tabs li a {
	display: block;
	width: 100%;
	height: 56px;
	line-height: 56px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	text-align: center;
	color: #333;
}

.kslist .tabs li.active {
	background-color: #2ba076;
	background: linear-gradient(to right, #2ba076, #2a86b6);
	color: #fff;
}

.kslist .tabs li.active a {
	color: #fff;
}

.kslist .list {
	margin-top: 18px;
}

.kslist .list li {
	width: 25%;
	height: 40px;
	line-height: 40px;
}

.kslist .list li a {
	padding-right: 3%;
	display: block;
	width: 100%;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	color: #333;
}

.kslist .list li a:hover, .kslist .list li a.active {
	color: #2ba077;
}

/*新闻列表*/
.news-index .nt #newsSwiper {
	width: 375px;
	height: 216px;
}

.news-index .nt #newsSwiper img {
	width: 375px;
	height: 216px;
}

.news-index .nt #newsSwiper p {
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 36px;
	line-height: 36px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	padding: 0 5px;
	font-size: 12px;
	color: #fff;
}

.news-index .nt #newsSwiper .swiper-button-next,
.news-index .nt #newsSwiper .swiper-button-prev {
	background: rgba(0, 0, 0, .5);
}

.news-index .nt #newsSwiper .swiper-button-prev {
	left: 5px;
}

.news-index .nt #newsSwiper .swiper-button-next {
	right: 5px;
}

.news-index .nt #newsSwiper .swiper-button-next::after,
.news-index .nt #newsSwiper .swiper-button-prev::after {
	font-size: 20px;
	color: #fff;
}

.news-index .nt ul {
	width: 800px;
}

.news-index .nt ul li {
	width: 50%;
	padding-left: 25px;
	background: url(../images/icon/news.png) no-repeat left 7px;
}

.news-index .nt ul li article {
	line-height: 32px;
	font-size: 14px;
	color: #2d2d2d;
	flex: 1;
}

.news-index .nt ul li a:hover article {
	color: #61b98e;
}

.news-index .nb {
	margin-top: 30px;
}

.news-index .nb .tabs {
	margin-bottom: 15px;
}

.news-index .nb .tabs li {
	display: inline-block;
	padding: 0 20px;
	line-height: 31px;
	font-size: 15px;
	color: #333;
}

.news-index .nb .tabs li.active {
	font-weight: bold;
}

.newslist {
	padding: 0;
}

.newslist li {}

.newslist li a {
	width: 100%;
	height: 40px;
}

.newslist li a::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #bababa;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: -1;
}

.newslist li a .title {
	z-index: 1;
	font-size: 16px;
	padding-right: 20px;
	background-color: #fff;
}

.newslist li a .time {
	padding-left: 14px;
	z-index: 1;
	font-size: 16px;
	background-color: #fff;
}

.newslist2 li {
	width: 600px;
	margin-bottom: 25px;
}

.newslist2 li .img,
.newslist2 li .img img {
	width: 215px;
}

.newslist2 li article {
	line-height: 32px;
	font-size: 14px;
	color: #2d2d2d;
	flex: 1;
	margin-left: 30px;
}

/*图片文字列表*/
.picstextlist {
	width: 100%;
	background-color: #fff;
	padding: 47px 43px;
}

.picstextlist a {
	padding: 25px;
	border: 1px solid #eee;
}

.picstextlist li:last-child a {
	margin-bottom: 0;
}

.picstextlist .img {
	width: 218px;
}

.picstextlist img {
	width: 218px;
}

.picstextlist article {
	width: 500px;
	width: calc(100% - 246px);
}

.picstextlist .title {
	line-height: 28px;
	font-size: 20px;
	color: #000;
	margin-top: 10px;
}

.picstextlist .time {
	margin: 6px 0;
	line-height: 33px;
	font-size: 18px;
	color: #c8c8c8;
}

.picstextlist .time i {
	margin-right: 8px;
}

.picstextlist .des {
	margin-top: 20px;
	line-height: 25px;
	font-size: 17px;
	color: #636363;
}

.picstextlist .more {
	margin-top: 20px;
	width: 150px;
	height: 40px;
	border: 1px solid #d4d4d4;
	font-size: var(--common-font-color);
	color: #212121;
}

.picstextlist a:hover .more {
	background-color: var(--common-background-hover-color);
	border-color: var(--common-background-hover-color);
	color: #fff;
}

.picstextlist .ly:hover {
	background: #1279ba
}

/*图片列表*/
.picslist {
	padding: 5px 0;
}


.picslist li {
	width: 270px;
	width: calc((100% - 42px * 3) / 4);
	margin: 0 42px 28px 0;
}

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

.picslist .img {
	width: 100%;
}

.picslist img {
	width: 100%;
}

.picslist .title {
	width: 100%;
	margin-top: 19px;
	line-height: 34px;
	color: #3e3e3e;
	font-size: 15px;
	text-align: center;
}

.picslist a:hover .title {
	color: var(--common-background-color);
}

/*团队列表*/
.teamlist {
	margin: 20px 16px;
}

.teamlist li {
	width: 200px;
	width: calc((100% - 36px * 5) / 6);
	margin: 0 36px 33px 0;
}

.teamlist li:nth-child(6n) {
	margin-right: 0;
}

.teamlist li .img,
.teamlist li img {
	width: 100%;
}

.teamlist li .title {
	margin-top: 2px;
	line-height: 29px;
	font-size: 15px;
	color: #55b293;
}

.teamlist li .zc {
	line-height: 25px;
	font-size: 15px;
	color: #3e3e3e;
}

.team-detail {
	margin-top: 10px;
}

.team-detail .avatar {
	width: 166px;
}

.team-detail article {
	margin-left: 42px;
	flex: 1;
}

.team-detail article .name {
	margin-top: 10px;
	line-height: 34px;
	font-size: 17px;
	font-weight: bold;
	color: #55b293;
}

.team-detail article ul {
	margin-top: 7px;
}

.team-detail article li {
	line-height: 31px;
	font-size: 16px;
	color: #3e3e3e;
}

.openHtml {
	overflow: hidden;
	width: 798px;
	height: 533px;
	background-color: #fff
}

.openHtml .h1 {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 46px;
	border-bottom: 1px solid #eee;
	line-height: 46px;
	text-indent: 25px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #333
}

.openHtml .close {
	position: absolute;
	z-index: 999;
	top: 14px;
	right: 17px;
	display: block;
	width: 13px;
	height: 11px;
	background: url(../images/close.gif) no-repeat
}

.openHtml .htmlContent {
	overflow: scroll;
	overflow-x: hidden;
	overflow-y: auto;
	width: 753px;
	height: 420px;
	padding: 10px 0 0 25px;
	padding-right: 10px;
	border-bottom: 1px solid #ddd;
	line-height: 28px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #333
}

.openHtml .closeBlock {
	position: relative;
	z-index: 0;
	width: 100%;
	height: 54px;
	margin-top: 1px;
	background-color: #f5f5f5
}

.openHtml .close2 {
	position: absolute;
	z-index: 999;
	top: 13px;
	left: 15px;
	display: block;
	width: 82px;
	height: 30px;
	background: #2384ef;
	background: linear-gradient(to bottom, #0080eb, #0565b2);
	text-align: center;
	line-height: 30px;
	font-size: 14px;
	font-family: "Microsoft YaHei";
	color: #fff
}

.floatMenu {
	position: fixed;
	z-index: 99999;
	width: 226px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(to bottom, #0bafff, #0bafff);
	padding: 0 11px 9px 11px;
	border-radius: 10px;
}

.floatMenu .ask {
	width: 100%;
	height: 99px;
	background: url(../images/service.png) no-repeat;
	margin-top: -29px;
}

.floatMenu ul {}

.floatMenu ul li {
	width: 100%;
	margin-bottom: 3px;
}

.floatMenu ul li a {
	width: 100%;
	height: 46px;
	background-color: #fff;
	font-size: 18px;
	color: #000;
	cursor: pointer;
}

.floatMenu ul li a:hover {
	background-color: var(--common-background-color);
	color: #fff;
}

/*分页*/
.pages {
	padding: 20px 0 15px 0;
	text-align: right;
}

.pages li {
	display: inline;
}

.pages li.active a {
	background-color: #1a6791;
}


.pages a,
.pages em {
	display: inline-block;
	height: 28px;
	margin-right: 5px;
	padding: 0 8px;
	background: #169a5e;
	border: 1px solid #169a5e;
	line-height: 28px;
	font-size: 14px;
	color: #fff
}

.pages span {
	display: inline-block;
	height: 28px;
	margin-right: 5px;
	padding: 0 8px;
	line-height: 28px;
	font-size: 14px;
	color: #fff
}

.pages span.disabled {
	background: var(--common-color);
	color: #fff
}

.pages em {
	background: var(--common-color);
	color: #fff;
	font-style: normal;
}

/*在线留言*/
.guestbook {
	margin-top: 40px;
}

.guestbook h2 {
	height: 32px;
	font-size: 20px;
	color: #000;
}

.guestbook ul {
	margin-top: 14px;
}

.guestbook li {
	margin-bottom: 14px;
}

.guestbook .title {
	width: 104px;
	margin-left: 180px;
	height: 26px;
	font-size: 15px;
	color: #696969;
}

.guestbook .wbk {
	box-sizing: border-box;
	width: 317px;
	height: 26px;
	background: #fff;
	border: 1px solid #b5b5b5;
	border-radius: 2px;
	padding: 0 5px;
	font-size: 15px;
	color: #333;
}

.guestbook .wby {
	box-sizing: border-box;
	width: 316px;
	height: 189px;
	border: 1px solid #b5b5b5;
	border-radius: 2px;
	padding: 5px;
	font-size: 15px;
	color: #333;
}

.guestbook .wbk:focus {
	border-color: #04654d;
}

.guestbook button {
	box-sizing: border-box;
	width: 72px;
	height: 26px;
	text-align: center;
	line-height: 26px;
	background: var(--common-background-color);
	border: 0;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	font-family: 微软雅黑;
	margin-left: 400px;
	border-radius: 4px
}

/*home*/
.home {
	width: 100vw;
	height: 100vh;
	background: url(../images/bg/home.jpg?1.1) no-repeat;
	background-size: 100% 100%;
}

.home .logo {
	height: 44vh;
	animation: fadeInUp 1s;
}

.home .logo img {
	height: 100%;
}

.home .font {
	height: 6.49vh;
	animation: fadeInUp 1s;
}

.home .font img {
	height: 100%;
}

.home .enter {
	width: 22.8vh;
	height: 6.4vh;
	border: 2px solid #fff;
	border-radius: 32px;
	font-size: 2.2vh;
	color: #fff;
	margin-top: 5vh;
	animation: fadeInUp 1s;
}

.home article {
	animation: fadeInUp 1s;
	line-height: 140%;
	font-size: 2vh;
	color: #fff;
	margin-top: 5vh;
}

.home article .sydw img {
	max-height: 8vh;
	margin-top: 1vh;
}

.home article .phone {
	font-size: 3vh;
	color: #fff;
	margin-bottom: 10px;
}

.home article .phone i {
	margin-right: 5px;
}

.layer-wrap {
	padding: 20px;
}

.layer-input {
	flex: 1;
	height: 40px;
	background: none;
	border: 1px solid #ccc;
	margin-right: 10px;
	padding: 0 10px;
	transition: all .5s;
}

.layer-input:focus {
	border-color: var(--common-background-color);
	transition: all .5s;
}

.layer-button {
	display: inline-block;
	padding: 0 20px;
	height: 40px;
	background: var(--common-background-color);
	color: #fff;
	font-size: 14px;
	border: 0;
}

footer .copyright a {
color: #fff;
}