html {
	/* font-size: 13.333vw; */
	font-size: 100px;
}

/*滚动条样式*/

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	/*background-color: #F5F5F5;*/
}

/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
	/*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
	border-radius: 10px;
	/*background-color: #F5F5F5;*/
}

/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	/*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);*/
	background-color: #ccc;
}

/* 重置列表元素 */

ul,
ol {
	list-style: none;
}

/* 重置文本格式元素 */

a {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: none;
	color: #23A090;
}

html,
body {

	height: 100%;
	width: 100%;
}

html {
	overflow-x: hidden;

}

.clearfix {
	zoom: 1;
}

.clearfix:before,
.clearfix:after {
	content: '';
	display: table;
}

.clearfix:after {
	clear: both;
}

.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}


/*垂直显示*/

.flex-v {
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	overflow: hidden
}


/*垂直对其方式*/

.flex-align-center {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.flex-align-end {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.container-fluid {
	padding-left: 38px;
	padding-right: 38px;
}

.w1400 {
	width: 100%;
	padding: 0 20px;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

.main {
	opacity: 0;
}

.main.active {
	opacity: 1;
}

.inner {
	/* width: 1200px; */
	width: 14rem;
	margin: 0 auto;
	max-width: 92%;
}

.ellipsis1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.ellipsis3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.ellipsis5 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
}

.header {
	/* height: 70px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1); */
}

/*头部样式 */
/* pc端 */
.header {
	/* height: 80px; */
}

.header .real-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0.7rem;
	z-index: 3;
	background-color: rgba(255, 255, 255, 0.4);
	/* box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.0); */
	transition: all .3s ease;
}


.header:hover .real-header,
.header.high .real-header {
	background-color: #fff;
}

.header.high .real-header {
	box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
	/* box-shadow: 0px 0.03rem 0.08px rgba(0, 0, 0, 0.1); */
}

.header .header-height {
	height: .7rem;
}

.header.noHoldHeight .header-height {
	height: 0;
}

.header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.header .logo {
	position: relative;
	height: .7rem;
	/* height: 32px; */
	/* margin-right: 0.71rem; */
}

.header .logo img {
	height: 100%;
	opacity: 1;
	transition: all .3s ease;
}

.header .logo .img1 {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	opacity: 0;
}

.header.high .logo .img2,
.header:hover .logo .img2 {
	opacity: 0;
}

.header.high .logo .img1,
.header:hover .logo .img1 {
	opacity: 1;
}

.header .navigation {
	height: 100%;
}

.header .navigation ul {
	display: flex;
	height: 100%;
}

.header .navigation ul li {
	position: relative;
	margin-right: 30px;
}

.header .navigation ul li:last-child {
	margin-right: 0;
}

.header .navigation ul li .nav {
	display: block;
	/*line-height: 76px;
	 color: #fff; 
	font-size: 16px;*/
	line-height: 0.66rem;
	color: #333333;
	font-size: 0.16rem;
	text-align: center;
	white-space: nowrap;
	border-top: 0.03rem solid rgba(255, 255, 255, 0);
	transition: all .3s ease;
}

.header .navigation ul li:hover .nav,
.header .navigation ul li.active .nav {
	/* border-top-color: #fff; */
	border-top-color: #218D94;
}

.header:hover .navigation ul li .nav,
.header.high .navigation ul li .nav {
	color: #465871;
}

.header:hover .navigation ul li.active .nav,
.header.high .navigation ul li.active .nav,
.header:hover .navigation ul li:hover .nav,
.header.high .navigation ul li:hover .nav {
	color: #23A090;
	border-color: #218D94;
}

.header .navigation ul li ol {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	background-color: #fff;
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
	display: none;
}

.header .navigation ul li:hover ol {
	display: block;
}

.header .navigation ul li ol li {
	margin: 0;
}

.header .navigation ul li ol a {
	display: block;
	line-height: 0.57rem;
	color: #333333;
	font-size: 0.14rem;
	white-space: nowrap;
	padding: 0 79px;
}

.header .navigation ul li ol li:hover a,
.header .navigation ul li ol li.active a {
	color: #23A090;
}

/* 头部拨打电话 */
.header .nav-extra {
	cursor: pointer;
	margin: 0 .71rem;
}

.header .nav-extra .phone {
	width: 0.16rem;
	height: 0.21rem;
	vertical-align: middle;

}

.header .nav-extra .phoneNum {
	font-size: 0.16rem;
	color: #23A090;
	font-weight: 600;
	margin-left: 0.12rem;
	vertical-align: middle;
}


/* 手机端 */

.mobile-header {
	height: 1.0rem;
	display: none;
}

.mobile-header .real-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 1.0rem;
	background-color: #fff;
	z-index: 4;
}

.mobile-header.high .real-header {}

.mobile-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.mobile-header .logo {
	/* height: 40%; */
	height: 100%;
}

.mobile-header .logo img {
	display: none;
	height: 100%;
}

.mobile-header .logo .img2 {
	display: block;
	height: 100%;
}

/* .mobile-header .menu {
	position: relative;
	width: 0.54rem;
	height: 0.54rem;
	overflow: hidden;
} */
.mobile-header .menu {
	position: relative;
	width: 0.54rem;
	height: 0.54rem;
	overflow: hidden;
	margin-top: 0.15rem;
}

.mobile-header .menu span {
	position: absolute;
	left: 0;
	width: 100%;
	/* height: 0.04rem; */
	height: 2px;
	background-color: #218D94;
}

.mobile-header .menu span:nth-child(1) {
	top: 0;
	transform: rotate(0deg);
	transition: all .3s ease 0s;
}

.mobile-header .menu span:nth-child(2) {
	top: 35%;
	transform: rotate(0deg);
	transition: all .3s ease 0s;
}

.mobile-header .menu span:nth-child(3) {
	top: 70%;
	transition: all .3s ease 0s;
}

/* .mobile-header .menu span:nth-child(2) {
	top: 48%;
	transform: rotate(0deg);
	transition: all .3s ease 0s;
}
.mobile-header .menu span:nth-child(3) {
	top: 89%;
	transition: all .3s ease 0s;
} */



.mobile-header.active .menu span:nth-child(1) {
	top: 50%;
	transform: rotate(45deg);
}

.mobile-header.active .menu span:nth-child(2) {
	top: 50%;
	transform: rotate(-45deg);
}

.mobile-header.active .menu span:nth-child(3) {
	top: 105%;
}

.mobile-header .navigation {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	padding-top: 1.0rem;
	transform: translate(0, -100%);
	background-color: #fff;
	z-index: 3;
	transition: all .3s linear 0s;
}

.mobile-header.active .navigation {
	transform: translate(0, 0%);
}

.mobile-header .navigation ul li {
	border-bottom: 0.01rem solid #eee;
}

.mobile-header .navigation ul li .nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.32rem;
	padding: 0.32rem;
}

.mobile-header .navigation ul li .nav img {
	width: 0.32rem;
	height: 0.32rem;
}

.mobile-header .navigation ul li.active .nav {
	color: #23A090;
}

.mobile-header .navigation ul li.fold .nav img {
	transform: rotate(180deg);
}

.mobile-header .navigation ul li ol {
	padding: 0 0.6rem;
	display: none;
	font-size: 0.30rem;
}

.mobile-header .navigation ul li.fold ol {
	display: block;
}

.mobile-header .navigation ul li ol li:last-child {
	border-bottom-width: 0;
}

.mobile-header .navigation ul li ol a {
	display: block;
	line-height: 0.70rem;
}

.mobile-header .navigation ul li ol li.active a {
	color: #23A090;
}



/* 页面通用banner文字样式 */
.banner .banner-txt {
	padding-top: 1.62rem;
	color: #fff;
}

.banner .banner-txt .line {
	width: 0.34rem;
	height: 2px;
	background: #FFFFFF;
	margin-bottom: 0.23rem;
}

.banner .banner-txt .title {
	font-size: 1.2rem;
	line-height: 1.68rem;
	letter-spacing: 0.04em;
	font-weight: 700;
	text-shadow: 0px 3px 23px rgba(0, 0, 0, 0.2);
}

.banner .banner-txt .entxt {
	font-size: 0.32rem;
	font-weight: 700;
	line-height: 0.5rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	opacity: 0.9;
}

.banner .banner-txt .subtitle {
	font-size: 0.16rem;
	font-weight: 500;
	margin-top: 0.32rem;
	letter-spacing: 0.1em;
}

/* banner图样式 结束*/

/* 底部样式 */
.footer {
	background-color: #049684;
	color: #fff;
	font-size: 0.15rem;
}

.footer .footer-top {
	padding: 0.78rem 0 0;
}

.footer .footer-top .logo {
	height: 0.73rem;
	margin-bottom: 0.25rem;
}

.footer .footer-top .center {
	width: 30%;
	float: left;
	border-right: 1px solid #17A694;
}

.footer .footer-top .center .left {
	display: flex;
	align-items: flex-start;
}

.footer .footer-top .navigation:not(:first-child) {
	margin-left: 1.01rem;
}

.footer .footer-top .navigation ul li {
	margin-bottom: 0.20rem;
}

.footer .footer-top .navigation ul li a {
	display: block;
	color: #fff;
}

.footer .footer-top .navigation ul li a:hover {
	color: #fff;
}

.footer .footer-top .right {
	margin-top: 0.20rem;
	padding-left: 10%;
	float: left;
}

.footer .footer-top .right .address {
	position: relative;
}

.footer .footer-top .right .address .map {
	position: absolute;
	top: -0.15rem;
	right: 16%;
	height: 3.20rem;
}

.footer .footer-top .tel {
	font-size: 0.32rem;
	line-height: 0.60rem;
}

.footer .footer-top .tel span {
	margin-right: 0.25rem;
}

/* 
.footer .footer-top .tel,
.footer .footer-top .hint, */
.footer .footer-top .contact,
.footer .footer-top .msg,
.footer .footer-top .market {
	margin-bottom: 0.20rem;
}

.footer .footer-top .code {
	margin-left: 0.99rem;
}

.footer .footer-top .ewm {
	width: 1.52rem;
	height: 1.52rem;

}

.footer .footer-top .code .code-tip {
	margin-top: 0.12rem;
}

.footer .footer-top .code-tip .wechat {
	width: 0.16rem;
	height: 0.13rem;
}

.footer .footer-top .code .code-tip span {
	font-size: 0.14rem;
	margin-left: 0.03rem;
}

.footer .footer-bottom {
	margin-top: 1.0rem;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
	clear: both;
}

.footer .footer-bottom .inner {
	height: 0.64rem;
}

.footer .footer-bottom .copyright {
	float: left;
}



/* 右侧固定操作栏样式 */
.page-right-tools {
	position: fixed;
	bottom: 40px;
	right: 0.24rem;
	z-index: 3;
}

.page-right-tools .item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.64rem;
	height: 0.64rem;
	background-color: #fff;
	box-shadow: 0px 0.012rem 0.048rem rgba(0, 0, 0, 0.1);
	margin-bottom: 0.05rem;
	border-radius: 0.03rem;
	color: #666666;
}

.page-right-tools .item .icon {
	width: 0.36rem;
	height: 0.36rem;
}

.page-right-tools .item:hover {
	border-radius: 0 0.03rem 0.03rem 0;
}

.page-right-tools .item.qq .icon {
	width: 0.28rem;
	height: 0.31rem;
}

.page-right-tools .item.phone .icon {
	width: 0.2rem;
	height: auto
}

.page-right-tools .item.wechat .icon {
	width: 0.32rem;
	height: 0.28rem;
}

/* .page-right-tools .item.apply {
	background: #fff;
	width: 0.64rem;
	height: 0.64rem;
	line-height: 0.64rem;
	box-shadow: 0px 0.012rem 0.048rem rgba(0, 0, 0, 0.1);
	border-radius: 100%;
	text-align: center;
	position: relative;
	margin-bottom: 0.23rem;
} */
.page-right-tools .item.apply {
	background: #fff;
	width: 0.64rem;
	height: 0.64rem;
	line-height: 0.64rem;
	background: linear-gradient(150.88deg, #03B09A 17.12%, #1CD9C1 96.09%);
	box-shadow: 0px 1.2px 4.8px rgba(9, 186, 163, 0.3);
	/* box-shadow: 0px 0.012rem 0.048rem rgba(0, 0, 0, 0.1); */
	border-radius: 100%;
	text-align: center;
	/* position: relative;
	margin-bottom: 0.23rem; */
	font-weight: 700;
	font-size: 0.16rem;
	line-height: 0.20rem;
	color: #FFFFFF;
}

.page-right-tools .item.apply .text {
	width: 2em;
}

.page-right-tools .item.scrollTop {
	background: #fff;
	width: 0.64rem;
	height: 0.30rem;
	line-height: 0.30rem;
	font-size: 0.12rem;
	box-shadow: 0px 0.012rem 0.048rem rgba(0, 0, 0, 0.1);
	border-radius: 0.03rem;
	text-align: center;
	position: relative;
	margin-bottom: 0.25rem;

}

.page-right-tools .item.scrollTop .icon {
	width: 0.16rem;
	height: 0.16rem;
	margin-right: 0.06rem;
	vertical-align: middle;
}

.page-right-tools .item.apply .btn {
	width: 0.72rem;
	height: 0.24rem;
	line-height: 0.24rem;
	background: #03B09A;
	border-radius: 18px;
	color: #fff;
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	bottom: -0.18rem;
}



.page-right-tools .item .item-in {
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translate(0, -50%);
	display: none;

	margin-right: 0.15rem;
}

.page-right-tools .item:hover .item-in {
	display: block;
}

/* .page-right-tools .item .item-in .content {
	position: relative;
	font-weight: 400;
	font-size: 0.14rem;
	line-height: 0.64rem;
	color: #03B09A;
	text-align: center;
	white-space: nowrap;
	padding: 0 0.15rem;
	background-color: #fff;
	border-radius: 0.03rem 0 0 0.03rem;
	box-shadow: 0 0 0.1rem 0 #eeeeee;
} */
.page-right-tools .item .item-in .content {
	position: relative;
	font-weight: 400;
	font-size: 0.14rem;
	line-height: 0.64rem;
	color: #03B09A;
	text-align: center;
	white-space: nowrap;
	padding: 0.05rem 0.10rem;
	background-color: #fff;
	border-radius: 0.03rem 0 0 0.03rem;
	box-shadow: 0 0 0.1rem 0 #eeeeee;
}

/* .page-right-tools .item .item-in .content::after {
	content: '';
	position: absolute;
	right: 0;
	width: 2px;
	height: 0.53rem;
	margin: 0.04rem 0;
	background-color: #F8F8F8;
} */
.page-right-tools .item .item-in .content::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -5.5px;
	width: 11px;
	height: 11px;
	background-color: #fff;
	margin-top: -5.5px;
	transform: rotate(45deg);
}

.page-right-tools .wechat .item-in .content img+img {
	margin-left: 10px;
}

/* 分页器样式 */
.page-footer {
	text-align: center;
	margin-bottom: 0.96rem;
}

.pagination {
	/* text-align: right; */
	width: 14rem;
	/* margin: 0 auto 80px; */
}

.pagination ul li {
	display: inline-block;
}

.pagination ul li+li {
	margin-left: 0.09rem;
}

.pagination ul li {
	/* display: block; */
	line-height: 0.40rem;
	min-width: 0.40rem;
	padding: 0 0.10rem;
	background: #fff;
	color: #666;
	border: 1px solid #DDDDDD;
	font-size: 0.18rem;
	border-radius: 3px;
	cursor: pointer;
}

.pagination .xl-nextPage,
.pagination .xl-prevPage {
	/* color: #0073A9;
	height: 28px; */
}

.pagination .xl-nextPage img,
.pagination .xl-prevPage img {
	vertical-align: middle;
	margin-top: -3px;
	width: 0.06rem;
	height: 0.10rem;
}

.pagination li.xl-disabled {
	opacity: .5;
	cursor: no-drop;
}

.pagination li.xl-disabled:hover {
	background-color: #f9f9f9 !important;
	/* border: 1px solid #dce0e0 !important; */
	color: #666 !important;
}

.pagination li.xl-active,
.pagination li:hover {
	color: #fff;
	background: #03B09A;
	border: 1px solid #03B09A;
}

.pagination li.xl-jumpText {
	background-color: rgba(0, 0, 0, 0);
	border-color: rgba(0, 0, 0, 0);
	opacity: 1;
}

.pagination li.xl-jumpText:hover {
	background-color: rgba(0, 0, 0, 0) !important;
	border-color: rgba(0, 0, 0, 0) !important;
}

.pagination li.xl-jumpButton {
	padding: 0 0.05rem;
}

.pagination #xlJumpNum {
	width: 0.35rem;
	margin: 0 0.03rem;
}

.pagination input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
}

.pagination input[type="number"] {
	-moz-appearance: textfield;
}

/* tab标签样式 */
.tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.17rem 0 0.63rem;
}

.tabs .tabs-item {
	padding: .1rem 0;
	line-height: 0.30rem;
	font-size: 0.24rem;
	cursor: pointer;
	color: #666666;
	border-bottom: 0.03rem solid #fff;
	flex: none;

}

.tabs .tabs-item:not(:last-child) {
	margin-right: 0.84rem;
}

.tabs .tabs-item.active {
	color: #333333;
	border-bottom: 0.03rem solid #218D94;
}

/* 面包屑样式 */
.bread-crumbs .inner {
	box-shadow: 0 -1px 0 0 #F3F3F3 inset;
}

.bread-crumbs .text {
	padding: 0.3rem 0 0.32rem;
}

.bread-crumbs .text img {
	display: inline-block;
	width: 0.15rem;
	height: 0.18rem;
	margin-right: 0.07rem;
	vertical-align: middle;
}

.bread-crumbs .text span,
.bread-crumbs .text a {
	color: #666666;
	vertical-align: middle;
	font-size: 0.16rem;
}

.bread-crumbs .text span:last-child,
.bread-crumbs .text a:last-child {
	color: #333333;
}

.defaultBtn {
	/* width: 1.48rem !important; */
	line-height: 0.44rem !important;
	border: 1px solid #03B09A;
	color: #03B09A !important;
	text-align: center;
	font-size: 0.16rem;
	border-radius: 3px;
	display: block;
}

.defaultBtn:hover,
.defaultBtn:active {
	background-color: #03B09A !important;
	color: #fff !important;
}

/* 返回列表 */
.backBtn {
	position: fixed;
	top: 42%;
	right: 0.24rem;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	font-size: 0.26rem;
	font-weight: 700;
	color: #fff;
	text-align: center;
	background: linear-gradient(150.88deg, #03B09A 17.12%, #1CD9C1 96.09%);
	box-shadow: 0px 1.2px 4.8px rgba(9, 186, 163, 0.3);
	display: none;
}

.backBtn .text {
	font-size: 0.26rem;
	width: 2em;
	line-height: 1.3;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

}