/*
* @Author: adminomt
* @Date:   2020-11-09 10:14:04
* @Last Modified by:   adminomt
* @Last Modified time: 2020-12-06 13:41:04
*/

@charset "utf-8";

html {
	font-size: 62.5%;
}
body {
	position: relative;
	min-width: 320px;
	/*max-width: 640px;*/
	margin-left: auto;
	margin-right: auto;
}

/* backtop */
.backtop {
	position: fixed;
	right: 1rem;
	bottom: 5rem;
	z-index: 20;
	display: none;
	width: 4rem;
	height: 4rem;
	background-image: none;
	background-color: #000;
	border-radius: 50%;
	opacity: .5;
}
.backtop:after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	overflow: hidden;
	margin-top: -.3rem;
	margin-left: -.6rem;
	content: '';
	border: .1rem solid #fff;
	border-right: transparent;
	border-bottom: transparent;
	-webkit-transform: rotate(
			45deg
	);
	transform: rotate(
			45deg
	);
}

/* loadtxt */
.loadtxt {
	display: block;
	text-align: center;
	font-size: 1.2rem;
	color: #919191;
	line-height: 3.5;
}

/* loading-wrap */
.loading-wrap {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
}
.loading-wrap .load-container{
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -4.5em 0 0 -4.5em;
	width: 9em;
	height: 9em;
	padding-top: 2em;
	z-index: 9;
	background: rgba(0,0,0,0.5);
	border-radius: 10px;
}
.load-container .loader, .load-container .loader:after {
	border-radius: 50%;
	width: 4rem;
	height: 4rem;
	margin-left: 3.5rem;
}
.load-container .loader {
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: .5em solid rgba(255,255,255,0.2);
	border-right: .5em solid rgba(255,255,255,0.2);
	border-bottom: .5em solid rgba(255,255,255,0.2);
	border-left: .5em solid #fff;
	-webkit-animation: loading 1.1s infinite linear;
	animation: loading 1.1s infinite linear;
}
.loading-wrap .loader {
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}
.loading-wrap .text {
	font-size: 1rem;
	color: #fff;
	text-align: center;
	margin-top: 2rem;
}
@keyframes loading {
	from {transform: rotateZ(0deg);}
	to {transform: rotateZ(360deg);}
}
@-webkit-keyframes loading { /*Safari and Chrome*/
	from {transform: rotateZ(0deg);}
	to {transform: rotateZ(360deg);}
}

/* tips */
.tips {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 51;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .75);
}
.tips .inner {
	position: relative;
	top: 50%;
	left: 50%;
	width: 86%;
	min-width: 276px;
	padding: 1.5rem 1.2rem 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #13142c;
	text-align: center;
	border-radius: .6rem;
	background-color: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.tips .text {
	padding: 2rem 1.5rem;
	line-height: 1.6;
	text-align: center;
}
.tips .text p {
	margin: .3rem 0;
	color: #2e96df;
}
.tips .btn a {
	display: inline-block;
	padding: .6rem 2rem;
	color: #2e96df;
	cursor: pointer;
	border: .1rem solid #2e96df;
	border-radius: .6rem;
}
.tips .btn a.active {
	color: #fff;
	background-color: #2e96df;
}
.tips .close {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 4rem;
	height: 4rem;
	overflow: hidden;
	color: #2e96df;
	cursor: pointer;
	border-top-right-radius: .5rem;
}
.tips .close:after,
.tips .close:before {
	position: absolute;
	top: 1.8rem;
	left: 50%;
	display: block;
	width: 1.6rem;
	height: .1rem;
	margin-left: -.8rem;
	content: '';
	background-color: #2e96df;
}
.tips .close:before {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
.tips .close:after {
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
}

/* alert */
.alert {
	position: fixed;
	top: 50%;
	right: 10%;
	left: 10%;
	z-index: 70;
	text-align: center;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.alert span {
	display: inline-block;
	padding: 1.2rem 2rem;
	font-size: 1.5rem;
	line-height: 1.5;
	color: #fff;
	border-radius: .5rem;
	background: #333;
	-webkit-box-shadow: inset 0 0 .1rem #424242, 0 .1rem .3rem rgba(0,0,0,.65);
	box-shadow: inset 0 0 .1rem #424242, 0 .1rem .3rem rgba(0,0,0,.65);
	text-shadow: 0 .1rem .1rem #9d9d9d;
}
