/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
/* 关闭Safari浏览器点击时出现区域背景 */
* {
	-webkit-tap-highlight-color: transparent;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* add */
body {
	font-size: 12px;
}

body,
html {
	/* height: 100%; */
	/* width: 100vw; */
	height: auto;
}

img {
	border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

select,
input {
	vertical-align: middle;
}

.clear {
	display: block !important;
	clear: both !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	height: 0;
	line-height: 0;
	font-size: 0;
	overflow: hidden;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0;
}

.spacer {
	clear: both;
	font-size: 0;
	height: 0;
	line-height: 0;
}

body {
	font-family: "Microsoft Yahei", helvetica, arial, sans-serif;
	-webkit-text-size-adjust: none;
	word-break: break-word;
}

a {
	text-decoration: none;
	outline: none;
}

/*****--文字超出影藏--*******/

.text-overflow {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.text-overflow2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.text-overflow3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


/*提示框通用*/
#promptBox {
	padding: 0.24rem 0.6rem;
	border-radius: 0.16rem;
	background: rgba(0, 0, 0, .6);
	color: #fff;
	opacity: 0.4;
	font-size: 0.44rem;
	position: fixed;
	z-index: 9999;
	bottom: -2rem;
	left: 50%;
	transform: translateX(-50%);
}

/*boder 0.5px适配处理方法*/
.borderThinFit {
	position: relative;
}

.borderThinFit-bottom {
	position: relative;
	z-index: 2;
}

.borderThinFit-bottom:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 199%;
	/*减去1%解决底边框不出现问题*/
	height: 199%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0.5, 0.5);
	-ms-transform: scale(0.5, 0.5);
	-o-transform: scale(0.5, 0.5);
	transform: scale(0.5, 0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	z-index: -1;
}

.borderThinFit:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 199%;
	/*减去1%解决底边框不出现问题*/
	height: 199%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0.5, 0.5);
	-ms-transform: scale(0.5, 0.5);
	-o-transform: scale(0.5, 0.5);
	transform: scale(0.5, 0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*boder 0.25px适配处理方法*/
.borderThinFit25 {
	position: relative;
}

.borderThinFit25:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 399%;
	height: 399%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-transform-origin: 0 0;
	-moz-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	-o-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scale(0.25, 0.25);
	-ms-transform: scale(0.25, 0.25);
	-o-transform: scale(0.25, 0.25);
	transform: scale(0.25, 0.25);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*字体*/
.PingFang-SC-Regular {
	font-family: PingFang-SC-Regular
}

.PingFang-SC-Bold {
	font-family: PingFang-SC-Bold
}

.PingFang-SC-Th {
	font-family: PingFang-SC-Th;
}

.PingFang-SC-Medium {
	font-family: PingFang-SC-Medium;
}

.Bold {
	font-weight: bold !important;
}

.Th {
	font-weight: 100 !important;
}

body {
	/* background-color: #f3f4f7; */
}