@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: 1122px;
	--common-font-size: 14px;
	--common-color: #939393;
	--common-background-color: #0d64b0;
	--common-background-hover-color: #0d64b0;
	--nav-height: 58px;
	--nav-son-color: #b53300;
	--common-p-line-height: 200%;
	--common-p-size: 16px;
	--common-p-color: #393939;
	--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: 44px;
	background-color: #eee;
	font-size: var(--common-font-size);
	color: var(--common-font-color);
	padding: 0 11.25%;
}

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

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

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

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

header .wrapper {
	height: 173px;
}

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

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: 300px;
}

header .search .input {
	width: 230px;
	height: 28px;
	border: 1px solid #bababa;
	border-radius: 4px;
	padding: 0 10px 0 48px;
	margin-right: 6px;
	background: url(../images/icon/search.jpg) no-repeat 8px center;
}

header .search .button {
	width: 63px;
	height: 28px;
	background: #595757;
	border: 0;
	font-size: 14px;
	color: #fff;
	border-radius: 4px;
}

header .r {
	width: 301px;
}

header .r .tel {}

header .r .tel h2 {
	height: 34px;
	width: 242px;
	font-size: 16px;
	font-weight: bold;
	color: #7c7c7c;
}

header .r .tel h2::after,
header .r .tel h2::before {
	content: '';
	display: block;
	width: 37px;
	height: 4px;
	background-color: #7c7c7c;
}

header .r .tel h3 {
	width: 242px;
	height: 42px;
	font-size: 25px;
	font-weight: bold;
	color: #8a0d01;
}

header .r .search {
	margin-top: 10px;
}


/*nav*/
nav {
	width: 100%;
	height: var(--nav-height);
	background-color: #ce500e;
	background: linear-gradient(to bottom, #ce500e, #8d170f);
}

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: var(--nav-son-color);
}

nav .dl {
	overflow: hidden;
	display: none;
	position: absolute;
	z-index: 999;
	top: 56px;
	left: 0;
	width: 100%;
	background: var(--nav-son-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: #890c01;
	text-decoration: none;
	color: #fff
}

/*footer*/
footer {
	background-color: #221f2a;
}

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

footer .fc .logo {
	margin: 0 35px 0 30px;
}

footer .fc article {
	line-height: 25px;
	font-size: 16px;
	color: #fff;
	margin-right: 75px;
}

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: 130px;
	margin: 0 auto;
}

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

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

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

footer .fc .r {
	width: 215px;
}

footer .fc .r .title {
	height: 34px;
	background-color: #fff;
	font-size: 18px;
	font-weight: bold;
	color: #8a0d01;
}

footer .fc .r ul {
	margin-top: 17px;
}

footer .fc .r ul li {
	height: 28px;
	width: 50%;
	margin-right: 0;
}

footer .fc .r ul li a {
	font-size: 16px;
	color: #fff;
}

footer .fc .r ul li:nth-child(even) {
	justify-content: flex-end;
}

footer .copyright {
	padding: 6px 0 0;
	background-color: #ca4908;
	background: linear-gradient(to bottom, #ca4908, #8c0f01);
	color: #fff;
	line-height: 28px;
	font-size: 14px;
}

footer .copyright .wrapper {
	border: 2px solid #c5bfbf;
	border-bottom: 0;
	line-height: 34px;
	font-size: var(--common-font-color);
	color: #fff;
}

/*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: 64px;
}

.index1 .img {
	width: 375px;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 0 9px 9px 0;
}

.index1 .img::after {
	content: '';
	display: block;
	width: 365px;
	height: 288px;
	background-color: #ac2b00;
	position: absolute;
	z-index: -1;
	top: 9px;
	left: 9px;
}

.index1 .img img {
	width: 100%;
}

.index1 article {
	flex: 1;
	margin-left: 25px;
}

.index1 article .title {
	font-weight: bold;
	line-height: 40px;
	font-size: 22px;
	color: #c84300;
}

.index1 article .title a {
	line-height: 20px;
	padding: 0 9px;
	background-color: #c84400;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
}

.index1 article .des {
	margin-top: 8px;
	line-height: 22px;
	font-size: 15px;
	color: #2a2a2a;
}

.index1 article .content {
	margin-top: 20px;
	line-height: 165%;
	font-size: 14px;
	color: #393939;
}

.iname {
	width: 100%;
	height: 43px;
}

.iname h2 {
	font-size: 22px;
	font-weight: bold;
	color: #c84300;
}

.iname h2 span {
	font-size: 16px;
	color: #000;
}

.iname a {
	line-height: 20px;
	padding: 0 9px;
	background-color: #c84400;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
}

.index2 {
	margin-top: 40px;
}

.index3 {
	margin-top: 40px;
}

.index3 .iname {
	margin-bottom: 15px;
}

.index3 .l {
	width: 675px;
}

.index3 .r {
	width: 420px;
}

.index3 .img {
	flex-grow: 0;
	flex-shrink: 0;
	width: 264px;
	padding: 10px;
	border: 1px solid #d2d2d2;
}

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

.index3 .content {
	margin-left: 18px;
	line-height: 160%;
}

.index3 .v {
	margin: 8px;
}

.index3 .v li {
	width: 100%;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
}

.index4 {
	margin-top: 40px;
}

.index4 .tabs {
	margin-top: 14px;
	width: 100%;
	background-color: #eaeaea;
	padding: 12px 20px;
}

.index4 .tabs li {
	margin-right: 9px;
	display: inline-block;
	padding: 0 87px;
	line-height: 37px;
	font-size: 18px;
	color: #8a0d01;
	border: 1px solid #c5bfbf;
}

.index4 .tabs li.active {
	background-color: #8a0d01;
	border-color: #8a0d01;
	color: #fff;
}

.iname2 {
	width: 100%;
	height: 52px;
	border-bottom: 4px solid #d2d2d2;
}

.iname2 h2 {
	width: 142px;
	line-height: 48px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	background: url(../images/bg/iname.jpg) no-repeat;
	text-align: center;
}

.iname2 a {
	line-height: 20px;
	padding: 0 9px;
	background-color: #c84400;
	font-size: 14px;
	color: #fff;
	font-weight: normal;
}

.index5 {
	margin-top: 40px;
	overflow: hidden;
	margin-bottom: 40px;
}

.index5 .l {
	width: 785px;
}

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

.banner img {
	display: block;
	width: 100%;
	left: 0;
	top: 0;
	z-index: -1;
}

.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 {
	width: 237px;
	margin-top: 47px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 50px;
}

.sidebar .title {
	width: 100%;
	height: 58px;
	background-color: #f99f08;
	background: linear-gradient(to bottom, #fb9d09, #eea803);
	border-radius: 6px 6px 0 0;
	box-shadow: 0 0 5px #eea803;
	font-weight: bold;
	font-size: 22px;
	color: #fff;
	letter-spacing: 1px;
}

.sidebar ul {
	border-bottom: 1px solid #bfbfbf;
}

.sidebar li a {
	width: 237px;
	height: 51px;
	border-left: 1px solid #bfbfbf;
	border-right: 1px solid #bfbfbf;
	background: #fff;
	font-size: 16px;
	color: #333;
	padding-left: 74px;
}

.sidebar li.active a {
	background-color: #f3f3f3;
	background: linear-gradient(to bottom, #f3f3f3, #d6d3d3);
	color: #fa9e09;
}

.sidebar li a img {
	margin-right: 10px;
}

.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;
}

main>.r {
	width: 835px;
	margin-top: 78px;
}

main>.r .position {
	width: 100%;
	height: 30px;
	border-bottom: 3px solid #e3e3e3;
	padding-left: 46px;
}

main>.r .position .title {
	height: 30px;
	line-height: 30px;
	font-size: 18px;
	color: #000;
	font-weight: bold;
}

main>.r .position .title::after {
	content: '';
	display: block;
	position: absolute;
	top: 28px;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #fa9e08;
}

main>.r .position .pos,
main>.r .position .pos a {
	font-size: 14px;
	color: #666;
}

main>.r .position .pos a:hover {
	color: #fa9e08;
}

.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;
}

/*视频*/
.vlist {
	margin-top: 41px;
}

.vlist li {
	width: 410px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
}

/*新闻列表*/
.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 {
	margin-top: 25px;
	padding: 0 9px;
}

.newslist li {
	width: 50%;
}

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

.newslist li a::before {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border: 2px solid #e7e7e7;
	border-radius: 50%;
	margin-right: 7px;
	flex-grow: 0;
	flex-shrink: 0;
}

.newslist li a .title {
	z-index: 1;
	font-size: 16px;
	display: block;
	height: 34px;
	line-height: 34px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.newslist li a .time {
	width: 75px;
	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;
}

.aboutus {
	margin: 25px 9px;
}

.aboutus .img {
	width: 196px;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 5px;
	border: 1px solid #c5bfbf;
}

.aboutus .img img {
	width: 100%;
}

.aboutus article {
	flex: 1;
	margin-left: 33px;
}

.aboutus article .title {
	line-height: 28px;
	font-size: 20px;
	color: #393939;
}

.aboutus article .content {
	margin-top: 15px;
	line-height: 160%;
	font-size: 16px;
	color: #393939;
}
/*图片文字列表*/
.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 {
	margin-top: 38px;
	padding: 0 6px;
}

.picslist li {
	width: 193px;
	width: calc((100% - 14px * 3) / 4);
	margin: 0 14px 37px 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);
}

/*产品列表*/
.productslist {
	margin-top: 39px;
}

.productslist li {
	width: 203px;
	width: calc((100% - 6px * 3) / 4);
	margin: 0 6px 5px 0;
}

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

.productslist .img {
	width: 100%;
}

.productslist img {
	width: 100%;
}

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

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

.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: red;
}


.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;
}