@charset "utf-8";
.header {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	z-index: 1001;
	width: 100%;
	height: 1.26rem;
	font-size: 0;
}
.header .con-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	border-bottom: 1px solid #ddd;
	padding: 0 0.3rem;
	height: 100%;
	background-color: rgba(255,255,255,0.98);
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: justify;
	-ms-flex-align: center;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.header .con-wrap .logo {
	display: block;
	overflow: hidden;
	width: 1.58rem;
	height: 0.62rem;
	text-indent: -999em;
}
.header .con-wrap .logo img{
    width: 1.58rem;
    height: 0.62rem;
    display: block;
}

.header .con-wrap .op-wrap .btn-language {
	display: inline-block;
	border: 1px solid #333;
	border-radius: 0.18rem;
	padding: 0 0.16rem;
	height: 0.36rem;
	font-size: 0.24rem;
	line-height: 0.36rem;
	vertical-align: middle;
	color: #333;
}
.header .con-wrap .op-wrap .btn-language.active {
	border: 1px solid #335eff;
	color: #fff;
	background-color: #335eff;
}
.header .con-wrap .op-wrap .btn-language+.btn-menu {
	margin-left: 0.8rem;
}
.header .con-wrap .op-wrap .btn-menu {
	display: inline-block;
	position: relative;
	width: 0.36rem;
	height: 0.36rem;
	vertical-align: middle;
}
.header .con-wrap .op-wrap .btn-menu .line {
	display: block;
	border-radius: 0.06rem;
	width: 100%;
	height: 0.04rem;
	background-color: #333;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.header .con-wrap .op-wrap .btn-menu .line+.line {
	margin-top: 0.12rem;
}
.header .con-wrap .op-wrap .btn-menu.active .line:nth-child(1) {
	-webkit-transform: translateY(0.16rem) rotateZ(45deg) scaleX(1.4);
	transform: translateY(0.16rem) rotateZ(45deg) scaleX(1.4);
}
.header .con-wrap .op-wrap .btn-menu.active .line:nth-child(2) {
	opacity: 0;
}
.header .con-wrap .op-wrap .btn-menu.active .line:nth-child(3) {
	-webkit-transform: translateY(-0.16rem) rotateZ(-45deg) scaleX(1.38);
	transform: translateY(-0.16rem) rotateZ(-45deg) scaleX(1.38);
}
.header .language-wrap {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100vh;
}
.header .language-wrap.active {
	display: block;
	-webkit-animation: headerModalIn 0.3s linear forwards;
	animation: headerModalIn 0.3s linear forwards;
}
.header .language-wrap .list {
	overflow: auto;
	padding-top: 1.26rem;
	max-height: calc(100vh - 1.26rem);
	background-color: rgba(255,255,255,0.98);
}
.header .language-wrap .list .item+.item {
	border-top: 1px solid rgba(221,221,221,0.5);
}
.header .language-wrap .list .txt {
	display: block;
	padding: 0 0.4rem;
	font-size: 0.32rem;
	line-height: 1.36rem;
	text-align: center;
	color: #333;
	position: static;
	margin: 0;
	top: 0;
}
.header .menu-wrap {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	height: 100vh;
}
.header .menu-wrap.active {
	display: block;
	-webkit-animation: headerModalIn 0.3s linear forwards;
	animation: headerModalIn 0.3s linear forwards;
}
.header .menu-wrap .list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 1.26rem;
	padding-bottom: 2.52rem;
	height: 100vh;
	background-color: rgba(255,255,255,0.98);
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.header .menu-wrap .list .item {
	min-height: 0.8rem;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.header .menu-wrap .list .item+.item {
	border-top: 1px solid rgba(221,221,221,0.5);
}
.header .menu-wrap .list .txt {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0 0.4rem;
	height: 100%;
	font-size: 0.32rem;
	color: #333;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	position: static;
	margin: 0;
	top: 0;
}
.footer-nav-wrap {
	padding-left: 0.4rem;
	background-color: #333;
}
.footer-nav-wrap .nav .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	padding-right: 0.3rem;
	height: 1.48rem;
	-webkit-align-items: center;
	align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: justify;
	-ms-flex-align: center;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.footer-nav-wrap .nav .title {
	font-size: 0.34rem;
	color: #fff;
}
.footer-nav-wrap .nav .des {
	margin: 0 0.14rem;
	font-size: 0.26rem;
	text-align: right;
	color: rgba(255,255,255,0.5);
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.footer-nav-wrap .nav .arrow {
	border-width: 1px 1px 0 0;
	border-style: solid;
	border-color: #bdbdbd;
	width: 0.14rem;
	height: 0.14rem;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}
.footer-nav-wrap .nav .item.qq-group {
	padding-right: .4rem;
	justify-content: space-between;
}

.footer-nav-wrap .nav .item.qq-group .des {
	margin: 0;
	line-height: 2;
}

.footer-nav-wrap .nav .item.qq-group .des:first-child {
	text-align: left;
}
.footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0.6rem 0.2rem;
	font-size: 0.24rem;
	line-height: 1.5;
	text-align: center;
	color: #b1b1b1;
	background-color: #333;
	-webkit-box-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-pack: center;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}
.footer a {
	color: #b1b1b1;
}
.footer p {
	line-height: 2;
}
.footer .f-a-img img,
.footer .f-a-img i {
	vertical-align: middle;
}
a {
	-webkit-tap-highlight-color: transparent;
}
.modal {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
	background-color: rgba(0,0,0,0.8);
	opacity: 0;
	overscroll-behavior: contain;
	-ms-scroll-chaining: contain;
}
.modal.modal-hide {
	opacity: 0;
	-webkit-animation: fadeOut 0s linear forwards;
	animation: fadeOut 0s linear forwards;
}
.modal.modal-hide .modal-wrapper {
	opacity: 0;
	-webkit-animation: fadeOut 0s linear forwards;
	animation: fadeOut 0s linear forwards;
}
.modal.modal-active {
	opacity: 1;
	-webkit-animation: fadeIn 0.3s linear forwards;
	animation: fadeIn 0.3s linear forwards;
}
.modal.modal-active .modal-wrapper {
	opacity: 1;
	-webkit-animation: fadeIn 0.3s linear forwards;
	animation: fadeIn 0.3s linear forwards;
}
.modal-open {
	position: fixed;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
.modal-open-scroll-through {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
.btn-close {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: 0.5rem;
	height: 0.5rem;
	cursor: pointer;
}
.btn-close::before,
.btn-close::after {
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	/*粗细*/
	height: 0.04rem;
	/*默认颜色*/
	background-color: #aaa;
	content: '';
}
.btn-close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-close::after {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.btn-close.close-hid {
	opacity: 0;
}
.modal-mar-type1 {
	position: absolute;
	top: 50%;
	left: 50%;
}
.modal-mar-type2 {
	position: relative;
	margin: 0 auto;
	margin-top: 2rem;
	margin-bottom: 2rem;
}
.modal-wrapper {
	z-index: 10001;
	width: 12rem;
	font-size: 0;
	background-color: #eee;
}
.service-modal .modal-wrapper {
	width: 2.18rem;
}
.service-modal .modal-wrapper img {
	width: 100%;
}
@-webkit-keyframes headerModalIn {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0.01;
		-webkit-transform: translate3d(0, -0.32rem, 0);
		transform: translate3d(0, -0.32rem, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 15px, 0);
		transform: translate3d(0, 15px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -8px, 0);
		transform: translate3d(0, -8px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 4px, 0);
		transform: translate3d(0, 4px, 0);
	}
	100% {
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes headerModalIn {
	0%, 60%, 75%, 90%, 100% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0.01;
		-webkit-transform: translate3d(0, -0.32rem, 0);
		transform: translate3d(0, -0.32rem, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 15px, 0);
		transform: translate3d(0, 15px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -8px, 0);
		transform: translate3d(0, -8px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 4px, 0);
		transform: translate3d(0, 4px, 0);
	}
	100% {
		-webkit-transform: none;
		transform: none;
	}
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.hid {
	display: none !important;
}

.return{
	width: .78rem;
	height: .78rem;
	background: url(../images/top.png) no-repeat;
	background-size: 100% 100%;
	text-indent: -999em;
	position: fixed;
	bottom: 1.2rem;
	right: .05rem;
	z-index: 100;
}
.LT-footer.f-mobile.dark {
    background-color: #333!important;
}