@charset "utf-8";
/* 解决滑动不顺畅 */
*{  
	/* -webkit-overflow-scrolling: auto; */
  -webkit-backface-visibility: hidden;
	-webkit-overflow-scrolling: touch;
  /* -webkit-transform: translate3d(0,0,0) */
}


	/* 透明的ackdrop-filter: saturate(180%) blur(6px);
    background-color: var(--header-background); */

html,body{
  min-height: 100%;
  width: 100%;
  margin:0;
  padding:0;
 	overflow-x: hidden !important;
 	-webkit-tap-highlight-color:transparent;
	-webkit-user-select: none;
	user-select: none;
-webkit-overflow-scrolling: auto;
::-webkit-scrollbar{width:0;height:1px;display: none;}
::-webkit-scrollbar-thumb{border-radius:5px;-webkit-box-shadow:inset 0 0 5px rgba(0,0,0,.2);background:rgba(0,0,0,.2)}
}
body{
	overflow-x: hidden;
	overflow-y: auto;
}

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,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	direction: none;
	font-weight: normal;
	font-style: normal;
	font-size: 100%;
	font-family:"Microsoft YaHei",微软雅黑,"MicrosoftJhengHei";
	vertical-align: baseline;
	-webkit-user-select: none;/*用户不可以复制*/
 	user-select: none;  /*用户不可以复制*/
	-mo-user-select: none;/*用户不可以复制*/
	-webkit-tap-highlight-color:transparent;  /*禁止被监听元素高亮显示*/
	-webkit-highlight: none;/*禁止被监听元素高亮显示*/
	-webkit-touch-callout: none;/*当你触摸并按住触摸目标时候，禁止或显示系统默认菜单*/
	-webkit-text-size-adjust: none;/*禁止缩放字体*/
}
e{
	display: inline-block;
	font-family: 'din';
}
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	text-align: left;
	font-weight: normal;
}

img,
a img {
	border: none;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	color: #1a1a1a;
	cursor: pointer;
}

ol,
ul {
	list-style: none;
}

input,
textarea,
select,
button {
	font-size: 100%;
	font-family: inherit;
}

select {
	margin: inherit;
}

.hidden,
.dis_none {
	display: none !important;
}
.clear{
	zoom: 1;
}
.text_over{
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
}
.close:before, .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 100%;
  background-color: #fff;
}
.close:before {
  transform: rotate(45deg);
}
.close:after {
  transform: rotate(-45deg);
}
.text_center{
	text-align: center;
}
.text_white{
	color: #fff;
}
.icon_bg{
  background: url(../image/1909rank/icon.png) left center no-repeat;
}

/* flex通用 */
.flex{
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flexbox;
		display: flex;
}
/* flex主轴方向 */
.flex_direction_column{  /* 竖排 */
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	-o-flex-direction: column;
	flex-direction: column;
}
/* 换行 */
.flex_wrap{
	-webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* 主轴方向+换行 */
.flex_flow_column_wrap{
	-webkit-flex-flow:column wrap;
	-moz-flex-flow:column wrap;
	-ms-flex-flow:column wrap;
	-o-flex-flow:column wrap;
	flex-flow:column wrap;
}
/* 主轴对齐方式 */
.justify_content_end{  
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}
.justify_content_center{  
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}
.justify_content_between{  /* 两端贴紧 */ 
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}
.justify_content_around{  /* 均分 */
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}
/* 交叉轴对齐方式 */
.align_items_end{
	-webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}
.align_items_center{
	-webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}
/* 绝对定位布局 */
/* absolute居中 */
.absolute_center{
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
}
/* absoluteX轴居中 */
.absolute_x_center{
	position: absolute;
	left:50%;
	transform: translate(-50%,0);
	-webkit-transform: translate(-50%,0);
}
/* absoluteY轴居中 */
.absolute_y_center{
	position: absolute;
	top:50%;
	transform: translate(0,-50%);
	-webkit-transform: translate(0,-50%);
}
.absolute_zero{
	position: absolute;
	left: 0px;
	top: 0px;
}
.absolute_full{
	position: absolute;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
}

.fixed_full{
	position: fixed;
	top: 0px;
	bottom: 0px;
	right: 0px;
	left: 0px;
}