@charset "utf-8";
@import url('reset.css');
@import url('../font/font-awesome-4.7.0/css/font-awesome.min.css');
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:root {
	--common-font-size: .16rem;
	--common-font-color: #999;
	--common-hover-color: #f69130;
	--common-p-line-height: 180%;
	--common-p-color: #3e3e3e;
}

body {
	background-color: #fff;
	overflow: hidden;
}

input {
	font-family: arial;
}

img {
	max-width: 100%;
}

a {
	background: transparent;
	text-decoration: none;
	color: #666
}

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

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

.textCenter {
	text-align: center;
}

.wrapper {
	width: 1200px;
	margin: 0 auto;
	text-align: left
}

.index .wrapper {
	width: 1200px;
}

.ov {
	overflow: hidden;
}

.ts {
	text-transform: uppercase
}

.mauto {
	margin: 0 auto
}

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

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

.pf {
	position: fixed;
}

.bz {
	box-sizing: border-box
}

.b, .fb {
	font-weight: bold
}

.i {
	font-style: italic
}

.hidden {
	display: none !important
}

.cb {
	clear: both
}

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

.all100 {
	width: 100% !important;
}
/*animation*/
@keyframes slideDown {
	0% {
		top: .9rem;
		opacity: 0;
		transform: scale(0, 0);
	}

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

@-webkit-keyframes slideDown {
	0% {
		top: .9rem;
		opacity: 0;
		transform: scale(0, 0);
	}

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

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

	to {
		transform: translateY(0);
	}
}

.img img {
	transform: scale(1);
	transition: all .8s;
}

a:hover .img img {
	transform: scale(1.1, 1.1);
	transition: all .8s;
}

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

/*header*/
html{
	padding-top: .8rem;
}

header {
	width: 100%;
	height: .8rem;
	z-index: 99999;
	left: 0;
	top: 0;
	background-color: #4a4a4a;
}

header .wrapper {
	height: .8rem;
}

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

header .r i.fa{
	font-size: .18rem;
	margin-left: .15rem;
	color: #fff;
}

header .r i.fa:hover {
	color: var(--common-hover-color);
}

/*nav*/
nav {
	height: .8rem;
}

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

nav li {
	height: .8rem;
}

nav li>a{
	display: inline-block;
	text-align: center;
	line-height: .8rem;
	color: #fff;
	padding: 0 .2rem;
	font-size: 0;
}

nav li>a i {
	transform: translateY(-.02rem);
}

nav li>a>p {
	font-size: var(--common-font-size);
}

nav li a.active, nav li a.active i, nav li:hover>a>p, nav li:hover>a>i {
	color: var(--common-hover-color) !important;
}

nav li.lang {
	width: 120px;
	margin-right: 20px;
}

nav li.lang dl {
	flex: 1;
	height: 21px;
	border-bottom: 1px solid #fff;
	margin-left: 3px;
}

nav li.lang dl *{
	color: #fff;
}

nav li.lang dl dt {
	width: 100%;
	height: 20px;
	font-size: 14px;
	cursor: pointer;
}

nav li.lang dl dt i {
	right: 0;
	top: 0;
}

nav li.lang dl a{
	height: 40px;
	font-size: 14px;
	color: #333;
}

nav li.lang dl a:hover {
	color: var(--common-hover-color);
}

nav li.lang i {
	margin-left: 0 !important;
}

nav li.lang dd {
	display: none;
	position: absolute;
	top: .5rem;
	left: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 .05rem .05rem #666;
}

nav li.lang:hover dd {
	display: block;
	animation-direction: alternate;
}

nav .dl {
	overflow: hidden;
	display: none;
	position: absolute;
	z-index: 999;
	top: .8rem;
	left: 0;
	width: 100%;
	background: #fff;
	text-align: center;
	animation-direction: alternate;
	padding: 35px 0;
}

nav .dl.w100 {
	width: auto;
	max-width: 390px;
	padding: 10px;
}

nav .dl.flexColumn {
	width: 300px;
	max-width: 300px;
	left: 50%;
	transform: translateX(-50%);
}

nav li:hover .dl {
	display: -webkit-flex;
	display: flex;
}

nav li .dl>dt {
	overflow: hidden;
	flex: 1;
	border-right: 1px solid #fde9cf;
	padding: 0 50px;
}

nav .dl.w100>dt {
	border-right: 0;
	padding: 0 10px;
}

nav li .dl>dt:last-child {
	border-right: 0;
}

nav li .dl>dt.w100 {
	width: 100%;
}

nav .dl.flexColumn dt {
	width: 100% !important;
	margin-left: 0 !important;
}

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

nav li .dl dt a.a2 {
	display: -webkit-flex;
	display: flex;
}

nav li .dl dt a.a2::before {
	content: '';
	display: block;
	width: 5px;
	height: 5px;
	background-color: #919191;
	border-radius: 50%;
	margin-right: 13px;
}

nav li .dl dt a.a2:hover::before {
	background: var(--common-hover-color);
}

nav li .dl dt a:link,
nav li .dl dt a:visited {
	font-size: var(--common-font-size);
	color: var(--common-p-color)
}

nav li .dl dt a:hover {
	text-decoration: none;
	color: var(--common-hover-color);
}

nav li .dl dt dt {
	padding-left: 40px;
}

nav .dl.w100 dt dt {
	padding-left: 0;
}


nav li .dl dt dt a {
	border: 0 !important;
	font-size: .14rem !important;
}

nav li .dl dt dt a:hover {
	color: var(--common-hover-color) !important;
}


/*swiper*/
.indexSwiper div.pa {
	left: calc( (100vw - 12rem) /2 );
	top: 35%;
}

.indexSwiper h2{
	line-height: 180%;
	font-size: .6rem;
	color: #fff;
}

.indexSwiper p{
	line-height: 180%;
	font-size: .22rem;
	color: #fff;
}
/*footer*/
footer {
	background: url(../images/bg/footer.jpg) center top #363437;
	padding: .69rem 0 0;
}

footer .fth {
	padding-bottom: .2rem;
}

footer .logo {
	align-items: flex-end;
	border-bottom: 1px solid #97999e;
	padding-bottom: 15px;
}

/*
footer .logo::after {
	content: '';
	display: block;
	height: 1px;
	background-color: #97999e;
	width: calc(100% - 1.42rem - .13rem);
	margin-left: .13rem;
}*/

footer article .l {
	width: 6rem;
	margin-top: .18rem;
}

footer article .l li {
	line-height: .34rem;
	font-size: .14rem;
	color: #b4b4b4;
}

footer article .r {
	margin-top: .18rem;
}

footer article .r dl {
	margin-left: .5rem;
}

footer article .r dl dt {
	line-height: .34rem;
}

footer article .r dl dt a {
	font-size: .14rem;
	color: #b4b4b4;
}

footer article .r dl dt a:hover {
	color: #fff;
}

footer .ftb {
	background-color: #232323;
}

footer .copyright {
	font-size: var(--common-font-size);
	color: #fff;
}

footer .copyright a{
	color: #fff;
}

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

footer .sns a {
	font-size: .3rem;
	color: #666;
	margin-left: .2rem;
}

footer .sns a:hover {
	color: #fff;
}

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

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

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

.home .c {
	bottom: 18%;
	left: 0;
	width: 100%;
}

.home a {
	display: inline-block;
	width: auto;
	line-height: .79rem;
	font-size: .4rem;
	color: #fff;
	border: 3px solid #fff;
	border-radius: .3rem;
	padding-left: .45rem;
	padding-right: .26rem;
}

.home a img {
	margin-left: .21rem;
}

.home a:nth-child(1) {
	margin-right: 13.95%;
}

.home a:hover {
	background: rgba(255,255,255,.5);
	border-color: #e1ecf6;
}

.index1 {
	width: 100%;
	min-height: 6.64rem;
	background: url(../images/bg/index1.jpg) no-repeat center 1rem;
	position: relative;
}

.index1::after {
	content: '';
	display: block;
	width: 6.21rem;
	height: 1.83rem;
	background: url(../images/bg/index1_2.jpg) no-repeat left bottom;
	background-size: 100%;
}

.index1 .aboutSwiper {
	width: 5.8rem;
	margin: 1.74rem 0 0;
}

.index1 .title {
	line-height: .63rem;
	padding-bottom: .28rem;
	border-bottom: 1px solid #ccc;
	font-size: .66rem;
	color: #131b59;
	font-family: Cambria;
}

.index1 .des {
	line-height: .34rem;
	margin-top: .2rem;
	font-size: .18rem;
	color: #999;
	overflow: hidden;
}

.index1 .des.short {
	max-height: 1.36rem;
}


.index1 .aboutSwiper .sp, .index1 .aboutSwiper .sn {
	width: .29rem;
	height: .29rem;
	border: 2px solid #999;
	border-radius: 50%;
	color: #999;
	font-size: .3rem;
	line-height: 0;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.index1 .aboutSwiper .ctrls {
	margin-top: .3rem;
}

.index1 .aboutSwiper .ctrls div {
	margin-right: .1rem;
}

.index1 .aboutSwiper .sp:hover, .index1 .aboutSwiper .sn:hover {
	border-color: #f2941b;
}

.index1 .aboutSwiper .sp i {
	width: .17rem;
	height: .11rem;
	background: url(../images/icon/arrowUp.png) no-repeat;
}

.index1 .aboutSwiper .sp:hover i {
	background-image: url(../images/icon/arrowUpHover.png);
}

.index1 .aboutSwiper .sn i {
	width: .17rem;
	height: .11rem;
	background: url(../images/icon/arrowUp.png) no-repeat;
	transform: rotate(180deg);
}

.index1 .aboutSwiper .sn:hover i {
	background-image: url(../images/icon/arrowUpHover.png);
}

.index2 {
	background: url(../images/bg/index2.jpg) no-repeat center top #fbfbfb;
	padding-bottom: .6rem;
}

.index2 .swiper-slide .pic {
	text-align: center;
	width: 3.65rem;
	height: 3.65rem;
	overflow: hidden;
}

.index2 .swiper-slide .pic img {
	width: 3.65rem;
	height: 3.65rem;
	object-fit: contain;
}

.index2 .swiper-slide h2 {
	line-height: .4rem;
	font-size: .22rem;
	color: #333;
	margin: .15rem 0 .6rem 0;
}

.index2 .swiper-slide a:hover h2 {
	color: var(--common-hover-color);
}

.index2 .typename {
	height: 1.52rem;
	font-size: .66rem;
	color: #131b59;
}

.index2 .tabs li {
	padding: 0 .3rem;
	height: .45rem;
	font-size: .2rem;
	color: #333;
	border: 1px solid #eee;
	cursor: pointer;
}

.index2 .tabs li.active {
	background-color: #232222;
	color: #fff;
}

.index3 {
	padding: 1.16rem 0 0 0;
	background: url(../images/bg/index3.jpg) no-repeat center top;
	background-size: cover;
}

.index3 .wrapper {
	padding-bottom: 1.61rem;
}

.index3 .typename {
	height: .82rem;
	font-size: .66rem;
	color: #fff;
}

.index3 .wrapper {
	margin-top: .48rem;
}

.index3 .swiper-slide {
	width: 3.58rem;
	height: 3.85rem;
	background-color: #fff;
	padding: .15rem;
}

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

.index3 .swiper-slide h2 {
	margin-top: .35rem;
	line-height: 180%;
	font-size: .22rem;
	color: #333;
}

.index3 .swiper-slide:hover h2 {
	color: var(--common-hover-color);
}

.index3 .swiper, .index3 .swiper-wrapper {
	position: static;
}

.index3 .swiper-pagination {
	bottom: .62rem;
}

.index3 .swiper-pagination-bullet {
	width: .44rem;
	height: .04rem;
	border: 0;
	border-radius: 0;
	opacity: 1;
	background-color: #fff;
	user-select: none;
	margin: 0 .1rem !important;
}

.index3 .swiper-pagination-bullet-active {
	background-color: #f1941c !important;
}

.index4 {
	padding: 1.10rem 0 .91rem 0;
	background: url(../images/bg/index4.jpg) no-repeat center bottom;
}

.index4 .t::before {
	content: '';
	height: 1px;
	background-color: #e5e5e5;
	width: calc(100% - 3.55rem);
}

.index4 .t button {
	width: 3.5rem;
	height: .6rem;
	background: url(../images/icon/double_arrow3.png) no-repeat 2rem center #f2941b;
	border: 0;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: .94rem;
	margin-right: .05rem;
	font-size: .24rem;
	color: #fff;
}

.index4 .t button:hover {
	background-color: #5b5f8c;
}


.index4.contact .t button {
	background-color: #5b5f8c;
}

.index4.contact .t button:hover {
	background-color: #f2941b;
}

.index4 .typename {
	height: .78rem;
	font-size: .66rem;
	color: #131b59;
}

.index4.contact .typename {
	color: #5b5f8c;
	font-size: .35rem;
}

.index4 .l {
	width: 4.8rem;
	margin-top: .45rem;
}

.index4 .l dt {
	margin-top: .23rem;
	line-height: .33rem;
	font-size: .24rem;
	color: #333;
}

.index4.contact .l dt {
	color: #707070;
}

.index4 .l dd {
	margin: .05rem 0 .07rem 0;
	line-height: .32rem;
	font-size: .18rem;
	color: #666;
	border-bottom: 1px solid #cdcdcc;
}

.index4 .r {
	width: 6rem;
	background-color: #f2f2f2;
	margin: .34rem .05rem 0 0;
	padding: .34rem .44rem;
}

.index4.contact .r {
	width: 6.22rem;
	height: 4.23rem;
	border: 1px solid #9ecb66;
}

.index4.contact .r iframe {
	width: 6.22rem;
	height: 4.23rem;
}

.index4 .r ul {
	border-top: 1px solid #cdcdcc;
}

.index4 .r ul li {
	width: 100%;
}

.index4 .r ul li .input {
	width: 100%;
	background: none;
	border: 0;
	border-bottom: 1px solid #cdcdcc;
	height: .51rem;
	font-size: .16rem;
	font-weight: bold;
	color: #969696;
}

.index4 .r ul li .textarea {
	width: 100%;
	background: none;
	border: 1px solid #cdcdcc;
	height: 1.1rem;
	font-size: .16rem;
	font-weight: bold;
	color: #969696;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: .2rem;
}

.index4 .r ul li .input::placeholder, .index4 .r ul li .textarea::placeholder {
	color: #969696;
}

.index4 .r ul li .input:focus, .index4 .r ul li .textarea:focus {
	border-color: var(--common-hover-color);
}
/*other*/
.banner img {
	width: 100%;
}

.banner h2 {
	font-size: .6rem;
	color: #333;
	top: 50%;
	transform: translateY(-50%);
	left: calc( (100vw - 12rem) /2 );
}

.banner.pbanner h2 {
	font-size: .4rem;
	color:#fff;
	line-height: 180%;
	background: rgba(0,0,0,.3);
	padding: 0 .2rem;
	border-radius: .1rem;
}

.banner.center h2 {
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	line-height: 150%;
	text-shadow: 0 0 .1rem #ccc;
}

.banner.banner_other h2{
	font-size: .48rem;
	color: #333 !important;
	text-shadow: none;
	max-width: 4.8rem;
	left: calc( (100vw - 1200px) / 2 );
	top: 50%;
	transform: translate(0, -50%);
	
}
/*main*/
main {
	padding: 34px 0;
}

/*sidebar*/
.sidebar {
	width: 100%;
	margin: .31rem 0;
}

.sidebar li a {
	line-height: .38rem;
	background-color: #273f87;
	border: 1px solid #273f87;
	padding: 0 .24rem;
	font-size: .24rem;
	color: #fff;
}

.sidebar li a.active {
	background-color: #fff;
	border-color: #f3981e;
	color: #333;
}

/*main content*/
.pageTitle {
	line-height: .68rem;
	margin: 1.01rem 0 0 0;
	padding-bottom: .25rem;
	border-bottom: 1px solid #e5e5e5;
	font-size: .48rem;
	color: #333;
	font-family: Cambria;
}

.mainContent {
	width: 943px;
	margin-top: 31px;
	min-height: 400px;
}

.positions {
	width: 100%;
	border-bottom: 3px solid #f6f2ee;
	line-height: .5rem;
}

.positions p, .positions p a {
	font-size: 14px;
	color: #555;
}

.positions p a:hover {
	color: var(--common-font-color2);
}

.positions .typename {
	font-size: 20px;
	color: #693100;
}

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

.introduction.nmt {
	margin-top: 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%;
	padding: .5rem 0 0;
	text-align: center;
	line-height: 180%;
	font-size: .24rem;
	color: var(--common-p-color);
	font-weight: bold;
}

.articleTime {
	width: 100%;
	margin-bottom: 15px;
	text-align: center;
	line-height: 21px;
	font-size: 13px;
	color: var(--common-p-color);
}

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

.articlePages a {
	font-size: 16px;
	color: #333
}

.articlePages a:hover {
	color: #efae2e
}

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

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

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

/*联系我们*/
.contactus {
	margin-top: 1.13rem;
}

.contactus .t {
	line-height: .56rem;
	padding-bottom: .27rem;
	border-bottom: 1px solid #ededed;
	font-size: .4rem;
	color: #131b59;
}

.contactus li {
	margin-bottom: 1.38rem;
}

.contactus li.nob {
	margin-bottom: 0;
}

.contactus .input {
	width: 3.64rem;
	height: .45rem;
	font-size: .18rem;
	border: 0;
	border-top: 1px solid #dcdcdc;
}

.contactus .textarea {
	width: 7.82rem;
	height: 2rem;
	font-size: .18rem;
	border: 1px solid #dcdcdc;
	font-family: Arial, Helvetica, sans-serif;
}

.contactus .input::placeholder {
	color: #b5b5b5;
}

.contactus .input:focus, .contactus .textarea:focus {
	border-color: var(--common-hover-color);
}

/*留言*/
.message {
	padding: .61rem 0 .77rem 0;
}

.message h2 {
	line-height: .36rem;
	font-size: .18rem;
	color: #333;
}

.message ul {
	width: 7.08rem;
	margin-top: .3rem;
}

.message li {
	margin-bottom: .24rem;
}

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

.message .input {
	height: .6rem;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	padding: 0 .1rem;
	width: 100%;
	font-size: .14rem;
	color: #333;
}

.message .input:focus {
	border-color: var(--common-hover-color);
}

.message .input::placeholder {
	color: #808080;
}

.message li.flexJb .input {
	width: 3.42rem;
	border-radius: .05rem;
}

.message .textarea {
	height: 1.44rem;
	background-color: #fff;
	border: 1px solid #e6e6e6;
	padding: .1rem;
	width: 100%;
	font-size: .14rem;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
}

.message .textarea:focus {
	border-color: var(--common-hover-color);
}

.message .textarea::placeholder {
	color: #808080;
}

.message li button {
	width: 100%;
	height: .6rem;
	background: #293068;
	border: 0;
	font-size: .24rem;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
}

.message li p.required {
	font-size: .14rem;
	color: #808080;
}
/*产品*/
.products .typename {
	height: .66rem;
	border-bottom: 1px solid #bdbdbd;
	font-size: .36rem;
	color: #333;
}

.products ul {
	margin-top: .36rem;
}

.products li {
	width: 3.66rem;
	margin-bottom: .36rem;
	margin-right: .51rem;
}

.products li:nth-child(3n+3) {
	margin-right: 0;
}

.products li .img {
	width: 1.47rem;
	height: 1.95rem;
	background: #fff;
	border: 1px solid #bdbdbd;
}

.products li .r {
	width: 2rem;
}

.products li .title {
	line-height: .26rem;
	font-size: var(--common-font-size);
	color: #333;
	padding: .08rem 0 .05rem 0;
	border-bottom: 1px solid #bdbdbd;
}

.products li p.des {
	line-height: .24rem;
	font-size: .14rem;
	color: #333;
	padding: .1rem 0;
}

.products li p.more {
	margin-top: .1rem;
	font-size: var(--common-font-size);
	margin-top: .1rem;
	color: #333;
	width: .65rem;
	padding-right: .3rem;
	background: url(../images/icon/double_arrow.png) no-repeat right center;
}

.productsDetail {
	margin-top: 0.39rem;
	border-top: 1px solid #fff;
}

.productsDetail .thumb {
	width: 3rem;
	height: 3.8rem;
	box-shadow: 0 0 .1rem #ccc;
}

.productsDetail .thumb img {
	width: 2.7rem;
	height: 3.42rem;
	margin: .19rem 0 0 .15rem;
	object-fit: contain;
}

.productsDetail .texts {
	width: 11.66rem;
}

.productsDetail .texts .tname {
	padding: .1rem 0;
	line-height: .5rem;
	border-bottom: 1px solid #bdbdbd;
	font-size: .36rem;
	color: #333;
}

.productsDetail .texts .des {
	margin: .15rem 0;
	line-height: 180%;
	font-size: .14rem;
	color: #333;
}

/*新闻列表*/
.newsMain {
	background-color: #f1f1f1;
}

.newslist {
	margin-top: 1.25rem;
}

.newslist li {
	width: 3.68rem;
	margin: 0 .48rem .4rem 0;
	background-color: #fff;
}

.newslist li:nth-child(3n+3) {
	margin-right: 0;
}

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

.newslist li .text {
	padding: .2rem;
}

.newslist li .text .title {
	line-height: .4rem;
	font-size: .2rem;
	color: #333;
}

.newslist li .text .des {
	line-height: .3rem;
	font-size: .16rem;
	color: var(--common-font-size);
}

.newslist li:hover .text .title, .newslist li:hover .text .des {
	color: var(--common-hover-color);
}

/*招聘列表*/
.jobMain {
	background-color: #f1f1f1;
	padding-bottom: .27rem;
}

.jobMain .mainTop {
	margin-top: 1.13rem;
}

.jobMain .mainTop .title {
	font-size: .36rem;
	color: #333;
}

.jobMain .mainTop p {
	font-size: var(--common-font-size);
	color: #666;
}

.joblist {
	margin-top: .53rem;
}

.joblist li a {
	width: 100%;
	border: 2px solid #e6e6e6;
	padding: .24rem .33rem .21rem .33rem;
	background-color: #fff;
}

.joblist li .num {
	line-height: .47rem;
	font-size: .41rem;
	color: #e5e5e5;
}

.joblist li .text {
	margin-top: .15rem;
}

.joblist li .text::before {
	content: '';
	width: .07rem;
	height: .07rem;
	background-color: #131b59;
	margin-right: .14rem;
}

.joblist li .text .title {
	font-size: .18rem;
	color: #333;
}

.joblist li .text .title2 {
	margin-left: .4rem;
	font-size: .18rem;
	color: #333;
}

.joblist li a:hover {
	box-shadow: 0 0 .1rem #ddd;
}

.jobDetail {
	width: 100%;
	border: 2px solid #e6e6e6;
	padding: .17rem .21rem;
	background-color: #fff;
	margin-top: .53rem;
	margin-bottom: .53rem;
}

.jobDetail .title p {
	padding-left: .55rem;
	font-size: .2rem;
	color: #333;
	background: url(../images/icon/people.png) no-repeat left center;
}

.jobDetail .title i {
	font-size: .3rem;
	cursor: pointer;
}

.jobDetail .des {
	padding: .3rem .45rem;
	line-height: 180%;
	font-size: var(--common-font-size);
	color: #333;
}

.jobDetail .sendMail {
	width: 1.96rem;
	height: .45rem;
	padding-left: .4rem;
	border-radius: .245rem;
	margin: 0 0 0 .45rem;
	background: url(../images/icon/double_arrow2.png) no-repeat 1.32rem center #131b59;
	font-size: var(--common-font-size);
	color: #fff;
}

.jobDetail .sendMail:hover {
	background-color: var(--common-hover-color);
}

/*about*/
.about1 {
	padding: 1.07rem 0 1rem 0;
	background: url(../images/bg/about1.jpg) no-repeat;
	background-size: cover;
}

.about1 .t {
	padding-bottom: .21rem;
	line-height: .5rem;
	border-bottom: 1px solid #e5e5e5;
	font-size: .36rem;
	color: #333;
}

.about1 .des {
	margin: .2rem 0 0 0;
	line-height: .31rem;
	font-size: .18rem;
	color: #333;
}

.about1 .down {
	margin-top: .44rem;
}

.about1 .down a {
	width: .5rem;
	height: .5rem;
	background: url(../images/icon/arrowDown.png) no-repeat center #273f87;
	border-radius: 50%;
}

.about1 .c {
	margin-top: .51rem;
}

.about1 .c .text {
	width: 6.3rem;
	padding: .1rem 0;
}

.about1 .c .text a.more {
	width: 2.83rem;
	height: .51rem;
	border-radius: .255rem;
	margin-top: .6rem;
	background: url(../images/icon/ddots.png) no-repeat .12rem center #273f87;
	padding-left: .55rem;
	font-size: .16rem;
	color: #fff;
}

.about1 .c .text a.more:hover {
	background-color: #f3981e;
}

.about1 .c .pic, .about1 .c .pic img {
	width: 4.47rem;
	margin-right: .02rem;
}

.about2 {
	padding: 1.07rem 0 1rem 0;
	background: url(../images/bg/about2.jpg) no-repeat;
	background-size: cover;
}

.about2 .wrapper {
	line-height: .31rem;
	font-size: .18rem;
	color: #333;
}
/*分页*/
.pages {
	padding: 20px 0 15px 0;
	text-align: right;
}

.pages li {
	display: inline;
}
.pages li.active a{
    background-color: #131b59;
}


.pages a,
.pages em {
	display: inline-block;
	height: 28px;
	margin-right: 5px;
	padding: 0 8px;
	background: var(--common-color);
	border: 1px solid #fff;
	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: #009a74;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	color: #fff;
	margin-left: 400px;
	border-radius: 4px
}

.medicalApplication {
	width: 100%;
	padding: .8rem 0;
	background: url(../images/bg/medical_application.jpg) center .6rem no-repeat;
}

.medicalApplication li {
	margin-bottom: .3rem;
}

.medicalApplication h2.b {
	font-size: .72rem;
	color: #f3981e;
	line-height: 1em;
	margin-right: .22rem;
}

.medicalApplication article {
	width: 2.5rem;
}

.medicalApplication article>h3 {
	font-size: .18rem;
	color: #273f87;
	line-height: 100%;
}

.medicalApplication article>p {
	line-height: 180%;
	font-size: 14px;
	color: #747474;
	margin-top: .1rem;
	
}

.indexSwiper img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
}


.serlist li {
	padding: 1rem 0;
	background: url(../images/bg/sbg1.jpg) no-repeat;
	background-size: cover;
}

.serlist li:nth-child(even) {
	background-image: url(../images/bg/sbg2.jpg);
}

.serlist li .r {
	max-width: 6.3rem;
}

.serlist li .typename {
	font-size: .48rem;
	color: #f3981e;
	line-height: 150%;
	padding-bottom: .2rem;
	border-bottom: 1px solid #d9d9d9;
}

.serlist li .title {
	margin-top: .15rem;
	line-height: 180%;
	font-size: .36rem;
	color: #333;
	font-weight: bold;
}

.serlist li .des {
	line-height: 160%;
	font-size: .18rem;
	color: #333;
}

.serlist li .more {
	line-height: .38rem;
	padding: 0 .36rem;
	font-size: 14px;
	color: #167ec5;
	border: 1px solid #1c81c6;
	border-radius: .18rem;
	margin-top: .4rem;
	padding-right: .69rem;
	background: url(../images/bg/arrow_right.png) .97rem center no-repeat;
	background-size: .29rem auto;
}

.serlist li .more:hover {
	padding-right: .5rem;
	background-position: .77rem center;
}

