@charset "utf-8";
html {
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;/*取消浏览器最小字体限制*/
}

input[type="submit"], input[type="reset"], input[type="button"], input:focus, button:focus, select:focus, textarea:focus {
	outline: none;
}

input {
	font-family: "微软雅黑";
	-webkit-appearance: none;
	resize: none;
	border-radius: 0;
}

body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

img {
	max-width: 100%;
	height: auto;
	width: auto\9;
	-ms-interpolation-mode: bicubic;
}

body, div, ul, li, ol, h1, h2, h3, h4, h5, h6, input, textarea, select, p, dl, dt, dd, a, img, button, form, table, th, tr, td, tbody, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	margin: 0;
	padding: 0;
	border: none;
}

em, i {
	font-style: normal;
}

strong {
	font-weight: normal;
}

a {
	text-decoration: none;
}

ul, ol {
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

img {
	border: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
.fl{float: left;}
.fr{float: right;}
.clear{clear: both;}
.flex{
	display: flex;
}
.flex-center{
	display: flex;
	align-items: center;
}
.flex-center-center{
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-end{
	display: flex;
	align-items: flex-end;
}
.flex-between{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-wrap{
	display: flex;
	flex-wrap: wrap;
}
.flex-direction{
	display: flex;
	flex-direction:column;
}
.ellipsis01{
	overflow: hidden;
	white-space: nowrap;
	text-overflow:ellipsis;
}
.ellipsis02{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
body {
	margin: 0 auto;
	font-size: 0.6rem;
	-webkit-text-size-adjust: none!important;/*取消浏览器最小字体限制*/
	-webkit-overflow-scrolling: touch;/*流畅滚动*/
	font-family: "PingFang SC", "微软雅黑", "Microsoft YaHei", Helvetica, "Helvetica Neue", Tahoma, Arial, sans-serif;
	-webkit-tap-highlight-color: transparent;
}
/*弹窗*/
.mask {
    position: fixed;
    width: 100%;
    background-color: rgba(0,0,0,.7);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    overflow: hidden;
}


/*底部*/
footer{
  width: 100%;
  border-top: 1px solid #cccccc;
  position: fixed;
  bottom:0;
  z-index:99;
  background-color:#fafafa;
}
footer div{
display: flex;
  justify-content: space-between;
padding:0.25rem 3.5rem;
}
footer a{
  font-size: 0.65rem;
  text-align: center;
}
footer a{
  color: #666666;
  font-size: 0.55rem
}
footer a img{
width: 1.15rem;
height: 1.15rem;
display: table;
margin:auto;
}

.blue{color: #0071bc}

/*灰色占位*/
.empty{
  height: 0.25rem;
  background: #fbfbfb;
}


/*返回顶部*/
.gotop{
position: fixed;
right: 0.5rem;
bottom:5.0rem;
display: none;
}
.gotop img{
width: 2.0rem;
height: 2.0rem
}