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-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: 2.24rem;
  display: block;
  margin: 0 auto .1rem;
}

.notFound_content p {
  font-size: .14rem;
  color: rgba(107, 107, 107, 1);
  line-height: .36rem;
}

.load_more {
  font-size: 0.14rem;
  margin: 0;
  font-weight: normal;
  display: flex;
  justify-content: center;
  padding: 0.1rem 0;
  display: none;
  text-align: center;
  color: #9B1616;
}

.load_more_content {
  position: relative;
}

.load_more_content .loading_img {
  position: relative;
  left: -.05rem;
  top: 2px;
  width: .14rem;
  height: .14rem;
}

/**超过750就适配为PC**/
@media screen and (min-width: 750px) {
  html {
      font-size: 100px !important;
  }

  /**PC端如果宽度过小展示底部滚动条***/
  ::-webkit-scrollbar {
    width: 0px; /* 设置一个合适的宽度，比如8px，可按需调整 */
    height: 14px; /* 同样设置合适的高度 */
    background: #F5F5F5; /* 背景色 */
  }
  ::-webkit-scrollbar-thumb {
      background-color: #C0C0C0;
      /* border-radius: 4px; */
  }
}