html,
body,
div,
dl,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
pre,
table,
ul,
dd,
dt,
li,
a,
abbr,
b,
em,
i,
img,
samp,
span,
strong,
sub,
sup,
tt,
var,
input,
select {
  margin: 0;
  padding: 0;
}
ul,
ol,
li {
  list-style: none;
}
* {
  -webkit-overflow-scrolling: touch;
}
body,
html {
  -webkit-text-size-adjust: 100%;
  font-family: "Source Han Sans CN";
  font-size: 0.28rem;
  -webkit-tap-highlight-color: rgba(
    0,
    0,
    0,
    0
  ); /*取消手机点击屏幕时，会出现的灰块*/
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  background: transparent;
}
.clearfix:after {
  content: "";
  height: 0;
  line-height: 0;
  visibility: hidden;
  display: block;
  clear: both;
}
/*文本超出1行显示...*/
.limit-line {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
/*文本超出2行显示...*/
.limit-line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left !important;
  white-space: normal;
  word-break: break-all;  
}

.hasDownload {
  padding-bottom: 1.18rem;
}

.hasDownload .open_app {
  display: block;
  z-index: 1000;
}
/*404错误*/
.notFound {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}

.notFoundInner {
  max-width: 640px;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0 auto;
  background: #ffffff;
  text-align: center;
}

.notFound_content {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-80%);
}

.notFound_content img {
    width: 4.48rem;
    display: block;
    margin: 0 auto .2rem;
}

.notFound_content p {
    font-size: .28rem;
    color: rgba(107, 107, 107, 1);
    line-height: .36rem;
}


.load_more {
  font-size: 0.28rem;
  margin: 0;
  font-weight: normal;
  display: flex;
  justify-content: center;
  padding: 0.2rem 0;
  border-top: 0.01rem solid rgba(238, 238, 238, 1);
  box-shadow: 0px -2px 2px 0px rgba(238, 238, 238, 1);    
  display: none;
  text-align: center;
}
.load_more_content{
  position: relative;
}    
.load_more_content .loading_img{
  position: relative;
  left: -.1rem;
  width: .28rem;
  height: .28rem;
}


