/* 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: 16rem;
	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: -93px;
}
/* end public */

/* head */
.m-head {
	z-index: 101;
	position: sticky;
	left: 0;
	right: 0;
	top: 0;
	border-top: 3px solid #E8432A;
	background: #fff;
	transition: background .3s ease;
	box-shadow: 0 2px 5px 0 rgba(102,102,102,.1);
}
.m-mobile {
	display: none;
}

.m-immersion-head .m-head {
	position: fixed;
	left: 0;
	right: 0;
	border-bottom: 1px solid rgba(255,255,255,.25);
	background: none;
	box-shadow: none;
}
.m-immersion-head:hover .m-head,
.m-immersion-head.z-active .m-head {
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(102,102,102,.1);
}
.m-immersion-head.z-in .m-head,
.m-immersion-head.z-in .m-nav {
	transition-delay: .2s;
}
.m-immersion-head .m-nav {
	color: #fff;
	transition: all .3s ease;
}
.m-immersion-head:hover .m-nav,
.m-immersion-head.z-active .m-nav {
	border-bottom: none;
	color: #444;
}
.m-immersion-head .m-nav .logo img:nth-child(1) {
	display: initial;
}
.m-immersion-head:not(.z-active):not(.z-out) .m-head .m-nav .logo img:nth-child(2),
.m-immersion-head:hover .m-nav .logo img:nth-child(1),
.m-immersion-head.z-active .m-nav .logo img:nth-child(1),
.m-immersion-head.z-out .m-nav .logo img:nth-child(1) {
	display: none;
}
.m-immersion-head:hover .m-nav .logo img:nth-child(2) {
	display: initial !important;
}
.m-immersion-head .m-nav dt:after {
	background: #fff;
}
.m-immersion-head:hover .m-nav dt:after,
.m-immersion-head.z-active .m-nav dt:after {
	background: #E8432A;
}
/* end head */

/* search */
.m-search {
	z-index: 101;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	background: #fff;
	transform: translate(0,-100%);
	transition: transform .3s ease;
}
.m-search.z-active {
	transform: translate(0,0);
}
.m-search .m-content {
	height: 90px;
}
.m-search dl {
	position: relative;
}
.m-search dt {
	box-sizing: border-box;
	width: 1.6rem;
	height: .6rem;
	border: 1px solid #ddd;
	padding: 0 .16rem;
	font-size: .18rem;
	background: #F9F9F9;
	cursor: pointer;
}
.m-search dd {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border: 1px solid #ddd;
	padding: .1rem 0;
	margin-top: -1px;
	background: #F9F9F9;
}
.m-search dd li {
	padding: 0 .16rem;
	line-height: .4rem;
	font-size: .16rem;
	cursor: pointer;
}
.m-search dd li:hover {
	color: #E8432A;
}
.m-search input {
	box-sizing: border-box;
	height: .6rem;
	border: 1px solid #ddd;
	padding: 0 .16rem;
	margin-left: -1px;
	font-size: .16rem;
}
.m-search button {
	width: 1.4rem;
	height: .6rem;
	border: none;
	font-size: .2rem;
	color: #fff;
	background: #E8432A;
}
.m-search button:hover {
	opacity: .8;
}
.m-search .close {
	width: .56rem;
	height: .56rem;
	border: 1px solid #ddd;
	border-radius: 100%;
	margin-left: .5rem;
	font-size: .2rem;
	color: #F00000;
}
.m-search .close:hover {
	border-color: #F00000;
}
.m-search-title {
	position: relative;
	padding-left: .18rem;
	line-height: 1rem;
	font-size: .36rem;
}
.m-search-title:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: .04rem;
	height: .36rem;
	margin-top: -.18rem;
	background: #F00000;
}
.m-search-empty {
	height: 3rem;
	padding-bottom: 1.2rem;
	font-size: .18rem;
	color: #ccc;
}
.m-search-empty .tf {
	margin-bottom: .14rem;
	font-size: .94rem;
}
/* end search */

/* nav */
.m-nav {
	box-sizing: border-box;
	height: 90px;
	padding: 0 0 0 .5rem;
    margin: 0 auto;
	color: #333;
}
.m-nav .logo {
	width: 1.7rem;
}
.m-nav .logo img:nth-child(1) {
	display: none;
}
.m-nav dl {
	position: relative;
	margin-left: .7rem;
}
.m-nav dl > a {
	display: block;
	min-width: 4em;
	text-align: center;
}
.m-nav dt {
	position: relative;
	display: inline-block;
	height: 90px;
	font-size: .18rem;
	line-height: 90px;
	white-space: nowrap;
}
.m-nav dl:hover dt {
	font-weight: 600;
	color: #E8432A;
}
.m-nav dl.lang dt .tf {
	margin-right: .08rem;
}
.m-nav dl.lang:hover dt .tf {
	font-weight: normal;
}
.m-nav dt .angle {
	margin-left: .06rem;
	font-size: .12rem;
}
.m-nav dd {
	box-sizing: border-box;
	z-index: 11;
	position: absolute;
	left: -.2rem;
	top: 100%;
	width: 250px;
	border-radius: 0 0 12px 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(102,102,102,.1);
	transition: height .3s ease;
}
.m-nav dl:not(:hover) dd {
	height: 0 !important;
}
.m-nav dl:hover dd {
	z-index: 12;
	height: auto;
}
.m-immersion-head:not(.z-in) .m-nav dd {
	transition-delay: .2s;
}
.m-nav dd ul {
	padding: .16rem 0 .2rem;
}
.m-nav dd li {
	position: relative;
	box-sizing: border-box;
	height: .5rem;
	padding: 0 .2rem;
	line-height: .5rem;
	font-size: .16rem;
	white-space: nowrap;
	color: #444;
}
.m-nav dd li:hover {
	color: #fff;
	background: #E8432A;
}
.m-nav dd li:hover:after {
	content: '\e6fc';
	position: absolute;
	right: .2rem;
	top: 0;
	font-size: .14rem;
	font-family: iconfont;
	color: #fff;
}
.m-nav .search {
	width: .84rem;
	height: 100%;
	border-left: 1px solid #eee;
	margin-left: .3rem;
	font-size: .24rem;
	cursor: pointer;
}
.m-nav .search:hover {
	border-color: #E8432A;
	color: #fff;
	background: #E8432A;
}
/* end nav */

/* sub-head */
.m-sub-head {
	position: relative;
	height: 5rem;
	overflow: hidden;
}
.m-sub-head .image {
	position: absolute;
	inset: 0;
	transform: scale(1.3);
	transition: transform 3s ease;
}
.m-sub-head.z-active .image {
	transform: scale(1);
}
.m-sub-head .content {
	position: relative;
	color: #fff;
	text-align: center;
	opacity: 0;
	transition: opacity 2s ease;
}
.m-sub-head.z-active .content {
	opacity: 1;
}
.m-sub-head h5 {
	margin-bottom: .16rem;
	font-size: .6rem;
}
.m-sub-head p {
	font-size: .2rem;
}
.m-sub-nav {
	position: relative;
	border-bottom: 1px solid #ddd;
}
.m-sub-nav .m-content {
	height: 80px;
}
.m-sub-nav .name {
	width: 230px;
}
.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: 600;
}
.m-sub-nav .name span {
	display: block;
	margin-top: 6px;
	font-size: 12px;
}
.m-sub-nav ul {
	float: left;
}
.m-sub-nav li {
	position: relative;
	padding: 0 .5rem;
	line-height: 80px;
	font-size: .18rem;
	font-weight: 400;
	white-space: nowrap;
	color: #444;
}
[lang=en] .m-sub-nav li {
	padding: 0 .24rem;
	font-size: .18rem;
	font-weight: 600;
}
.m-sub-nav li.z-crt,
.m-sub-nav li:hover {
	font-weight: bold;
	color: #000;
}
.m-sub-nav li:after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	background: #E8432A;
	transform: translate(-50%,0);
}
.m-sub-nav li.z-crt:after,
.m-sub-nav li:hover:after {
	width: .44rem;
}
/* end sub-head */

/* foot */
.m-foot {
	background-color: #E8432A;
	background-image: url('../img/foot_bg.png');
	background-size: 4.5rem auto;
	background-position: right bottom;
	background-repeat: no-repeat;
}
.m-foot .menu {
	gap: 1.8rem;
	padding: .72rem 0 .42rem;
}
html[lang=en] .m-foot .menu {
	gap: 1.2rem
}
.m-foot .menu dt {
	margin-bottom: .3rem;
	font-size: .18rem;
	font-weight: bold;
	color: #fff;
}
.m-foot .menu dt .angle {
	display: none;
}
.m-foot .menu dd a {
	display: inline-block;
	line-height: .36rem;
	font-size: .15rem;
	color: #fff;
	opacity: .7;
	transition: transform .3s ease;
}
.m-foot .menu dd a:hover {
	text-decoration: underline;
	opacity: 1;
	transform: translate(10px,0);
}
.m-foot .contact {
	box-sizing: border-box;
	min-width: 5.2rem;
	padding-right: .2rem;
	margin: .42rem 0;
	border-right: 1px solid rgba(221,221,221,.3);
}
.m-foot .contact .logo {
	height: .7rem;
	margin-bottom: .3rem;
}
.m-foot .contact .item {
	margin-bottom: .22rem;
}
.m-foot .contact .item .tf {
	box-sizing: border-box;
	width: .4rem;
	height: .4rem;
	border: 1px solid rgba(238,238,238,.2);
	border-radius: 50%;
	margin-right: .15rem;
	line-height: .4rem;
	font-size: .2rem;
	text-align: center;
	color: rgba(255,255,255,.7);
}
.m-foot .contact .item p {
	margin-top: .06rem;
	line-height: .28rem;
	font-size: .15rem;
	color: rgba(255,255,255,.4);
}
.m-foot .contact .item p a,
.m-foot .contact .item p span {
	color: #fff;
}
.m-foot .contact .item p a {
	font-size: .18rem;
}
.m-foot .contact .qrcode {
	border-radius: .04rem;
	padding: .1rem .1rem 0;
	margin-right: .14rem;
	background: #fff;
}
.m-foot .contact .qrcode img {
	width: 1rem;
	height: 1rem;
}
.m-foot .contact .qrcode p {
	text-align: center;
	line-height: .3rem;
	font-size: .13rem;
	color: #444;
}
.m-foot .copyright {
	background: #333;
}
.m-foot .copyright .m-content {
	height: .6rem;
	font-size: .13rem;
	color: rgba(255,255,255,.7);	
}
.m-foot .copyright p {
	margin-right: .18rem;
}
.m-foot .copyright p img {
	width: .16rem;
	margin-right: .1rem;
}
.m-foot .copyright a {
	margin: 0 .6em;
}
.m-foot .copyright a:hover {
	text-decoration: underline;
	color: #fff;
}
/* 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: #E8432A;
}
/* 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 */

/* menu */
.m-menu {
	z-index: 101;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	box-sizing: border-box;
	background: #E8432A;
	background-image: url('../img/menu_bg.png');
	background-position: right bottom;
	background-size: 6rem;
	background-repeat: no-repeat;
	transform: translate(0,-100%);
	transition: transform .6s ease;
}
.m-menu.z-active {
	transform: translate(0,0);
}
.m-menu .m-content {
	height: 100vh;
}
.m-menu .close {
	position: absolute;
	right: .4rem;
	top: .4rem;
	width: .62rem;
	height: .62rem;
	border: 1px solid #fff;
	border-radius: 100%;
	font-size: .24rem;
	color: #fff;
	background: rgba(255,255,255,.15);
	opacity: .8;
}
.m-menu .close:hover {
	opacity: 1;
}
.m-menu .menu {
	padding-top: 1.8rem;
}
.m-menu .menu dt {
	margin-bottom: .3rem;
	font-size: .18rem;
	font-weight: bold;
	color: #fff;
}
.m-menu .menu dt .angle {
	display: none;
}
.m-menu .menu dd a {
	display: inline-block;
	line-height: .36rem;
	font-size: .15rem;
	color: #fff;
	opacity: .7;
	transition: transform .3s ease;
}
.m-menu .menu dd a:hover {
	text-decoration: underline;
	opacity: 1;
	transform: translate(10px,0);
}
.m-menu .contact {
	height: 2rem;
	border-top: 1px solid rgba(255,255,255,.2);
}
.m-menu .contact .item {
	margin-right: .5rem;
	font-size: .32rem;
	color: #fff;
}
.m-menu .contact .item .tf {
	box-sizing: border-box;
	width: .5rem;
	height: .5rem;
	border: 1px solid rgba(238,238,238,.2);
	border-radius: 50%;
	margin-right: .15rem;
	line-height: .5rem;
	font-size: .24rem;
	text-align: center;
	color: rgba(255,255,255,.7);
}
.m-menu .contact .qrcode {
	border-radius: .04rem;
	padding: .1rem .1rem 0;
	margin-right: .14rem;
	background: #fff;
}
.m-menu .contact .qrcode img {
	width: 1rem;
	height: 1rem;
}
.m-menu .contact .qrcode p {
	text-align: center;
	line-height: .3rem;
	font-size: .13rem;
	color: #444;
}
/* end menu */