/* public */
.u-tab {
	font-size: 0;
}
.u-tab li {
	display: inline-block;
	box-sizing: border-box;
	min-width: 1rem;
	border: 1px solid #bbb;
	padding: 0 .2rem;
	margin-bottom: .14rem;
	line-height: .5rem;
	font-size: .16rem;
	text-align: center;
	color: #444;
	background: #fff;
	transition: all .3s ease;
}
.u-tab a:nth-child(n+2) li {
	margin-left: .14rem;
}
.u-tab li:hover,
.u-tab li.z-crt {
	border-color: #000;
	font-weight: bold;
	color: #000;
	background: #76BB38;
}

.u-button {
	position: relative;
}
.u-button span {
	position: relative;
}
.u-button:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: #fff;
	transition: width .3s ease;
	background: #76BB38;
}
.u-button:hover:before {
	width: 100%;
}
.u-button:after {
	content: '';
	position: absolute;
	right: -.35rem;
	top: 50%;
	width: .5rem;
	height: 1px;
	background: #000;
}

.m-content {
	position: relative;
	width: 15rem;
	margin: 0 auto;
}

.m-textarea {
	line-height: .3rem;
	font-size: .16rem;
	text-align: justify;
	color: #333;
}

.u-loading {
	clear: both;
	line-height: 1rem;
	font-size: .16rem;
	text-align: center;
	color: #999;
}
.u-loading .tf {
	margin-right: .5em;
}

.f-anchor {
	position: relative;
	top: -100px;
}
/* end public */

/* head */
.m-head {
	z-index: 101;
	position: sticky;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
}
.m-mobile {
	display: none;
}

.m-immersion-head .m-head {
	position: fixed;
	left: 0;
	right: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,0));
}
.m-immersion-head .m-head:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.m-immersion-head.z-active .m-head {
	background: #fff;
	box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
}
.m-immersion-head .m-nav {
	color: #fff;
	transition: color .3s ease;
}
.m-immersion-head.z-active .m-nav {
	border-bottom: none;
	color: #333;
}
.m-immersion-head .m-nav .logo img:nth-child(1) {
	display: initial;
}
.m-immersion-head:not(.z-active) .m-head .m-nav .logo img:nth-child(2),
.m-immersion-head.z-active .m-nav .logo img:nth-child(1) {
	display: none;
}
.m-immersion-head .m-nav dt:after {
	background: #6BAF1B;
}
.m-immersion-head.z-active .m-nav dt:after {
	background: #666;
}
/* end head */

/* nav */
.m-nav {
	box-sizing: border-box;
	width: 15rem;
	height: 100px;
    margin: 0 auto;
	color: #333;
}
.m-nav .logo {
	width: 210px;
}
.m-nav .logo img:nth-child(1) {
	display: none;
}
.m-nav dl {
	position: relative;
	margin-left: .64rem;
}
[lang=en] .m-nav dl {
	margin-left: .64rem;
}
@media screen and (max-width: 1380px) {
	.m-nav dl,
	[lang=en] .m-nav dl {
		margin-left: .45rem;
	}
}
.m-nav .menu > div:nth-child(1) dl:nth-child(1) {
	margin-left: 0;
}
.m-nav dl > a {
	display: block;
	min-width: 4em;
	text-align: center;
}
.m-nav dt {
	position: relative;
	display: inline-block;
	height: 100px;
	font-size: 18px;
	line-height: 100px;
	white-space: nowrap;
}
.m-nav dt:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #6BAF1B;
	transition: width .3s ease;
}
.m-nav dl:hover dt:after {
	width: 100%;
}
.m-nav dt .tf {
	margin-right: 8px;
	font-size: 18px;
}
.m-nav dd {
	display: none;
	z-index: 11;
	position: absolute;
	right: 0;
	top: 100%;
	padding-top: 15px;
	animation: headNavIn 0.4s;
	animation-fill-mode: forwards;
}
@keyframes headNavIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}
.m-nav dl:hover dd {
	display: block;
}
.m-nav dd ul {
	border-radius: 6px;
	padding: .1rem 0;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 8px 0 rgba(0,0,0,.1);
}
.m-nav dd li {
	position: relative;
	padding: 0 .36rem 0 .18rem;
	line-height: .34rem;
	font-size: 14px;
	white-space: nowrap;
	color: #444;
	transition: all .3s ease;
}
.m-nav dd li img {
	vertical-align: -1px;
	height: 11px;
	margin-right: 14px;
}
.m-nav dd li:hover {
	background: #ddd;
}
/* end nav */

/* sub-head */
.m-sub-head {
	position: relative;
	height: 7.5rem;
}
.m-sub-head .text {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -7rem;
	margin-top: -.6rem;
	font-size: .24rem;
	color: #fff;
}
.m-sub-head .text h1 {
	margin-bottom: .15rem;
	font-size: .7rem;
	font-weight: normal;
}
.m-sub-nav {
	border-bottom: 1px solid #ddd;
	background: #fff;
}
.m-sub-nav .m-content {
	height: 90px;
}
.m-sub-nav .name {
	width: 292px;
	font-size: 12px;
}
.m-sub-nav .name .icon {
	width: 50px;
	height: 50px;
	border: 1px solid #000;
	border-radius: 100%;
	margin-right: 14px;
	font-size: 30px;
}
.m-sub-nav .name p {
	font-size: 18px;
	font-weight: bold;
}
.m-sub-nav .name span {
	display: block;
	margin-top: 6px;
}
.m-sub-nav li {
	position: relative;
	padding: 0 .4rem;
	line-height: 90px;
	font-size: .18rem;
	white-space: nowrap;
	transition: all .3s ease;
}
[lang=en] .m-sub-nav li {
	padding: 0 .24rem;
	font-size: .16rem;
}
.m-sub-nav li.z-crt,
.m-sub-nav li:hover {
	font-weight: bold;
}
.m-sub-nav li:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #6BAF1B;
	transform: translate(-50%,0);
	transition: all .3s ease;
}
.m-sub-nav li.z-crt:before,
.m-sub-nav li:hover:before {
	width: 44px;
}
/* end sub-head */

/* sidebar */
.m-sidebar {
	z-index: 99;
	position: fixed;
	right: 0;
	top: 50%;
	width: .7rem;
	border-radius: .06rem 0 0 .06rem;
	text-align: center;
	color: #666;
	background: #fff;
	box-shadow: 0 1px 10px 0 rgba(0,0,0,.1);
	transform: translate(100%,0);
	transition: transform .3s ease;
}
.m-immersion-head.z-active .m-sidebar {
	transform: translate(0,0);
}
.m-sidebar .item {
	position: relative;
	padding: .1rem 0;
	margin: 0 .05rem;
	cursor: pointer;
}
.m-sidebar .item:hover {
	color: #6BAF1B;
}
.m-sidebar .item:nth-child(n+2) {
	border-top: 1px solid #ECEFF4;
}
.m-sidebar .item .tf {
	font-size: .22rem;
}
.m-sidebar .item p {
	margin-top: .06rem;
	font-size: .12rem;
}

.m-sidebar .item .qrcode {
	display: none;
	position: absolute;
	right: .8rem;
	bottom: 0;
	width: 1.4rem;
	height: 1.4rem;
	border: 1px solid #ECEFF4;
	background: #fff;
}
.m-sidebar .item:hover .qrcode {
	display: block;
}
.m-sidebar .item .qrcode:after {
	content: '';
	position: absolute;
	right: -.04rem;
	bottom: .2rem;
	border-left: .05rem solid #fff;
	border-top: .05rem solid rgba(255,255,255,0);
	border-bottom: .05rem solid rgba(255,255,255,0);
}
.m-sidebar .item .qrcode:before {
	content: '';
	position: absolute;
	right: -.06rem;
	bottom: .18rem;
	border-left: .07rem solid #ECEFF4;
	border-top: .07rem solid rgba(255,255,255,0);
	border-bottom: .07rem solid rgba(255,255,255,0);
}

.m-sidebar .item .phone {
	display: none;
	position: absolute;
	right: .8rem;
	top: 50%;
	height: .36rem;
	padding: 0 .08rem;
	margin-top: -.18rem;
	line-height: .36rem;
	font-size: .16rem;
	white-space: nowrap;
	color: #fff;
	background: #000;
}
.m-sidebar .item:hover .phone {
	display: block;
}
.m-sidebar .item .phone:after {
	content: '';
	position: absolute;
	right: -.04rem;
	bottom: .13rem;
	border-left: .05rem solid #000;
	border-top: .05rem solid rgba(255,255,255,0);
	border-bottom: .05rem solid rgba(255,255,255,0);
}
/* end sidebar */

/* foot */
.foot-border .m-foot-logo {
	border-top: 1px solid #eee;
}
.m-foot-logo {
	padding: .4rem 0 .54rem;
	background: #fff;
}
.m-foot-logo .m-content {
	position: relative;
	overflow: hidden;
}
.m-foot-logo .m-content:before {
	content: '';
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 1.6rem;
	background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,1));
}
.m-foot-logo .m-content:after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1.6rem;
	background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}
.m-foot-logo ul {
	float: left;
	animation-duration: 50s;
}
.m-foot-logo li {
	width: 1.6rem;
	height: .8rem;
	border: 1px solid #eee;
}
.m-foot-logo li:nth-child(n+2) {
	margin-left: .08rem;
}
.m-foot {
	background: #fff;
}
.m-foot .menu dl {
	width: 1.8rem;
	margin-right: .7rem;
}
.m-foot .menu dt {
	border-bottom: 1px solid #eee;
	margin-bottom: .14rem;
	line-height: .48rem;
	font-size: .18rem;
}
.m-foot .menu dd {
	line-height: .36rem;
	font-size: .16rem;
	color: #666;
}
[lang=en] .m-foot .menu dd {
	font-size: .14rem;
}
.m-foot .menu dd a {
	display: inline-block;
	line-height: .36rem;
	transition: transform .3s ease;
}
.m-foot .menu dd a:hover {
	text-decoration: underline;
	color: #6BAF1B;
	transform: translate(10px,0);
}
.m-foot .tel {
	margin-bottom: .2rem;
	font-size: .24rem;
}
.m-foot .tel .tf {
	margin-right: .1rem;
}
.m-foot .info {
	max-width: 4rem;
	padding: .05rem;
	line-height: .2rem;
	font-size: .14rem;
	text-align: right;
	color: #999;
}
.m-foot .qrcode {
	width: 1.4rem;
	border: 1px solid #eee;
	border-radius: 4px;
	padding: .06rem;
	margin: .2rem 0 .48rem;
}
.m-foot .qrcode p {
	margin: 2px 0 10px;
	font-size: 13px;
	text-align: center;
	color: #999;
}
.m-copyright {
	border-top: 1px solid #eee;
	background: #fff;
}
.m-copyright .logo {
	height: .4rem;
}
.m-copyright .copyright {
	line-height: .6rem;
	font-size: 13px;
	text-align: right;
	color: #999;
}
/* end foot */

/* pagination */
.m-pagination {
	padding: 1rem 0;
}
.m-pagination a,
.m-pagination span {
	display: inline-block;
	height: .44rem;
	margin: 0 .05rem;
	line-height: .44rem;
	font-size: .14rem;
	text-align: center;
	color: #333;
	background: #F5F5F5;
}
.m-pagination a,
.m-pagination span {
	padding: 0 .18rem;
}
.m-pagination .current,
.m-pagination a:hover {
	color: #fff;
	background: #6BAF1B;
}
/* end pagination */

/* empty */
.m-empty {
	padding: 1rem 0;
	font-size: .16rem;
	color: #999;
	text-align: center;
}
.m-empty .tf {
	font-size: .88rem;
	color: #ccc;
}
.m-empty p {
	margin-top: .2rem;
}
/* end empty */

/* popup */
	/* loading */
	.d-loading {
		z-index: 999;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
	}
	.d-loading:after {
		content: '';
		display: block;
		width: 60px;
		height: 24px;
		background: url(../img/loading.gif);
	}
	/* end loading */

	/* message */
	.d-message {
		z-index: 999;
		position: fixed;
		left: 50%;
		top: 50%;
		border-radius: .04rem;
		padding: .14rem .2rem;
		background: rgba(0,0,0,.7);
		transform: translate(-50%, -50%);
	}
	.d-message p {
		max-width: 15em;
		min-width: 8em;
		line-height: .2rem;
		font-size: .14rem;
		text-align: center;
		color: #fff;
	}
	.d-message .tf {
		margin-bottom: .08rem;
		font-size: .36rem;
	}
	.d-message .tf-success {
		color: #37d003;
	}
	.d-message .tf-fail {
		color: #eb3f2f;
	}
	/* end message */

	/* confirm */
	.confirm-content {
		position: relative;
		min-height: 50px;
		padding: 30px;
		line-height: 20px;
		font-size: 14px;
		word-break: break-all;
		background: #fff;
	}
	.confirm-content .df {
		margin-right: 30px;
		font-size: 50px;
		color: #ff5212;
	}
	/* end confirm */

	/* end dialog */
	.d-dialog-box {
		z-index: 999;
		position: fixed;
	}
	.d-dialog-box.z-full {
		left: 0 !important;
		top: 0 !important;
		right: auto !important;
		bottom: auto !important;
		width: 100% !important;
		height: 100% !important;
	}

	.d-dialog {
		border-radius: .04rem;
		overflow: hidden;
		background: #fff;
		box-shadow: 0 0 .05rem rgba(100,100,100,.4);
	}

	.dialog-head {
		position: relative;
		height: .7rem;
		border-bottom: 1px solid #eee;
		line-height: .8rem;
	}
	.dialog-head.z-move {
		cursor: move;
		user-select: none;
	}
	.d-dialog.z-full .dialog-head.z-move, .d-dialog-queue .dialog-head.z-move {
		cursor: auto;
	}
	.d-dialog.z-move .dialog-body:after {
		content: '';
		z-index: 999;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
	}
	.dialog-head p {
		font-size: .2rem;
		font-weight: bold;
		color: #000;
		text-indent: .32rem;
	}
	.dialog-head a {
		position: absolute;
		right: 0;
		top: 0;
		width: .7rem;
		height: .7rem;
		font-size: .18rem;
		color: #bbb;
		text-align: center;
		cursor: pointer;
	}
	.dialog-head a:hover {
		color: #000;
	}

	.dialog-body {
		position: relative;
		overflow: auto;
	}
	.dialog-body iframe {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		border: none;
	}

	.dialog-foot {
		height: 72px;
		line-height: 72px;
		border-top: 1px solid #ddd;
		padding: 0 18px;
	}
	.dialog-foot button {
		height: 44px;
		padding: 0 2em;
		border: none;
		border-radius: 4px;
		margin-left: 12px;
		font-size: 15px;
		color: #777;
		background: #eee;
	}
	.dialog-foot button.hl {
		color: #fff;
		background: #FF9000;
	}

	.d-dialog-queue {
		z-index: 999;
		position: fixed;
		right: 0;
		bottom: 0;
	}
	.d-dialog-queue .dialog-head {
		float: right;
		width: 160px;
		height: 34px;
		margin-left: 5px;
	}
	.d-dialog-queue .dialog-head p {
		right: 68px;
	}
	/* end dialog */
	
	/* video */
	.d-popup-video {
		z-index: 998;
		position: fixed;
		left: 50%;
		top: 50%;
		width: 12rem;
		height: 6.8rem;
		background: #000;
		transform: translate(-50%,-50%);
	}
	.d-popup-video video {
		width: 100%;
		height: 100%;
	}
	.d-popup-video .close {
		position: absolute;
		right: 0;
		top: -.7rem;
		width: .5rem;
		height: .5rem;
		border-radius: 100%;
		line-height: .5rem;
		font-size: .24rem;
		text-align: center;
		color: #fff;
		background: rgba(0,0,0,.5);
		cursor: pointer;
	}
	/* end video */
	
	/* preview */
	.d-popup-preview {
		z-index: 998;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
	}
	.d-popup-preview .index {
		position: fixed;
		left: 0;
		right: 0;
		top: 20px;
		font-size: 15px;
		text-align: center;
		color: #ccc;
	}
	.d-popup-preview .list {
		position: absolute;
		left: 50%;
		top: 50%;
		width: 10rem;
		overflow: hidden;
		transform: translate(-50%,-50%);
	}
	.d-popup-preview ul {
		float: left;
		font-size: 0;
		white-space: nowrap;
		transition: margin-left .6s ease;
	}
	.d-popup-preview li {
		display: inline-block;
		position: relative;
		width: 10rem;
		height: 6rem;
		overflow: hidden;
		line-height: 6rem;
		text-align: center;
	}
	.d-popup-preview li img {
		display: inline-block;
		vertical-align: middle;
	}
	.d-popup-preview .angle {
		position: absolute;
		left: 20px;
		right: 20px;
		top: 50%;
		font-size: 24px;
		color: #fff;
	}
	.d-popup-preview .angle div {
		opacity: .6;
		cursor: pointer;
	}
	.d-popup-preview .angle div:hover {
		opacity: 1;
	}
	.d-popup-preview .close {
		position: fixed;
		right: 20px;
		top: 20px;
		width: .5rem;
		height: .5rem;
		line-height: .5rem;
		font-size: .24rem;
		text-align: center;
		color: #fff;
		cursor: pointer;
	}
	/* end preview */

	.d-popup-layer {
		z-index: 997;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		background: rgba(0,0,0,.8);
	}
/* end popup */

/* preview */
.m-preview {
    z-index: 998;
    position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.m-preview .title {
	position: absolute;
	left: 0;
	right: 0;
	top: .54rem;
	font-size: .24rem;
	text-align: center;
	color: #fff;
}
.m-preview .index {
	position: absolute;
	left: 0;
	right: 0;
	top: .94rem;
	font-size: .14rem;
	text-align: center;
	color: #fff;
}
.m-preview .close {
	position: absolute;
	right: .5rem;
	top: 40px;
	box-sizing: border-box;
	width: .5rem;
	height: .5rem;
	border: 2px solid #fff;
	border-radius: 100%;
	font-size: .2rem;
	text-align: center;
	color: #fff;
}
.m-preview .image {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12.8rem;
    height: 60vh;
	margin-left: -6.4rem;
	margin-top: -30vh;
}
.m-preview .nav {
	position: absolute;
	left: .4rem;
	right: .4rem;
	top: 50%;
	box-sizing: border-box;
	margin-top: -.25rem;
}
.m-preview .nav a {
	box-sizing: border-box;
	width: .5rem;
	height: .5rem;
	border: 2px solid #fff;
	border-radius: 100%;
	font-size: .2rem;
	text-align: center;
	color: #fff;
}
/* end preview */
