@charset "utf-8";

html {
	-webkit-text-size-adjust: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*允许在webkit内核环境下设置小于12px的字体*/

/* 禁用iPhone中Safari的字号自动调整 */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	/* 解决IOS默认滑动很卡的情况 */
	-webkit-overflow-scrolling: touch;
}

input {
	display: block;
	padding: 0;
	margin: 0;
	background: none;
}

/*按钮添加disabled属性后透明度不变，阻止mui修改opacity为0.6*/
input[disabled],
input:disabled,
input.disabled {
	color: #fff;
	-webkit-text-fill-color: #fff;
	-webkit-opacity: 1;
	opacity: 1;
}

/* 去除苹果手机默认input样式 */
input[type=button],
input[type=submit],
input[type=file],
button {
	/* -webkit-appearance: none; */
	-webkit-tap-highlight-color: transparent;
}

input:disabled,
input[disabled] {
	-webkit-opacity: 1;
	opacity: 1;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
	resize: none;
	border: none;
}

/* 修改placeholder字体颜色 */

input::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #666;
}

input:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #666;
}

input::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #666;
}

input:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #666;
}

/* 设置HTML5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

/* 取消链接高亮  */
* {
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 图片自适应 */
img {
	width: 100%;
	height: auto;
	width: auto\9;
	/* ie8 */
	display: block;
	-ms-interpolation-mode: bicubic;
	/*为了照顾ie图片缩放失真*/
}

/* 按钮文本不可选 */
button {
	user-select: none;
}

/* 默认不要下划线 */
a {
	text-decoration: none;
}

body,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
	border: 0;
}

/* .clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.clearfix {
	*zoom: 1;
} */
html,
body {
	height: 100%;
}
.mask {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
	background-color: rgba(0,0,0,.8);
	overflow-y: auto;
}
.mask .wrap {
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.close-icon {
	width: .6rem;
	height: .6rem;
	margin-top: .3rem;
}
.flex {
	display: flex;
}
.flex-v {
	flex-direction: column;
}
.flex-1 {
	flex: 1;
}
.flex-2 {
	flex: 2;
}
.flex-3 {
	flex: 3;
}
.flex-pack-justify {
	justify-content: space-between;
}
.flex-align-center {
	align-items: center;
}
.flex-auto {
	flex: auto;
}
.flex-wrap {
	flex-wrap: wrap;
}
.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.text-over {
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.tips-box {
	width: 6.06rem;
	/* height: 5.78rem; */
	padding: 0.4rem 0.28rem;
	padding-left: 0.32rem;
	background-color: #fff;
	border-radius: 0.14rem;
	color: #000;
	text-align: center;
}
.tips-box .title {
	font-size: 0.39rem;
	font-weight: bold;
}
.tips-box .text {
	font-size: 0.28rem;
	text-align: left;
	text-indent: 2em;
	line-height: 1.8;
}
.tips-box .btn {
	width: 3.92rem;
	height: 0.86rem;
	margin: 0.3rem auto 0;
	font-size: 0.28rem;
	border-radius: 0.26rem;
	background: #999;
	color: #fff;
	line-height: 0.86rem;
}
.tips-box .btn.finish {
	background: linear-gradient(to bottom, #1060f3, #72b9ef);
}
.nodata {
	margin-top: .4rem;
	font-size: .24rem;
	color: #999;
	text-align: center;
}
.white {
	color: #fff;
}
.tc {
	text-align: center;
}
