@charset "utf-8";

/**{
	margin: 0;
	padding: 0;
}*/
ul,ol,li{
	list-style: none;
}
/*html,body{
	width: 100%;
	height: 100%;
	font-size: 62.5%;
}*/

.alertDisable{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	background-color: rgba(0,0,0,0.7);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);
	z-index: 99;
}
.alertBox{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	/* margin-left: -19rem; */
	/* border-radius: 0.2rem; */
	overflow: hidden;
	/* background-color: #fff; */
}
.alertHeader{
	font-size: .32rem;
	height: .6rem;
	line-height: .6rem;
	text-align: center;
	font-weight: bolder;
	background-color: #ccc;
	display: none;
}
.alertContent{
	/* height: 85%; */
	overflow-y: auto;
	/* padding: .2rem; */
	color: #333;
}
.alertContent p{
	/*font-size: .25rem;*/
	font-size: 0.3rem;
    line-height: 0.48rem;
	/*letter-spacing: 0.1rem;*/
	word-break:break-all;
	text-indent: .4rem;
	text-align: left;
}
.alertContent a.alertOK{
	border-radius: 0.12rem;
	/* background-color: #3475f580; */
	/* color: #fff; */
	/* margin-right: 5%; */
	position: absolute;
	width: 8%;
	height: 6%;
	top: 0%;
	right: 3.7%;
}
.alertFooter{
	height: 1rem;
	text-align: center;
	line-height: 1rem;
	border-top: 1px solid #ccc;
	/*background-color: #ccc;*/
	font-size: 0;
	display: none;
}
.alertFooter a{
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	width: 2rem;
	height: .6rem;
	line-height: .6rem;	
	color: #000;
	font-size: .28rem;
	border-radius: .06rem;
	background-color: #fff;
}
.alertFooter a.alertOK{
	background-color: #3475f5;
	color: #fff;
	margin-right: 5%;
}
.alertFooter a.alertCancle{
	border: 1px solid #3475f5;
	box-sizing: border-box;
	margin-left: 5%;
}
.alertFooter a:hover{
	text-decoration: none;
	/*background-color: #777;*/
}

body.html_noscroll{
	/* display: flex; */
	width: 100%;
	height: 100%;
	overflow: hidden;
}