* {
  margin: 0;
  padding: 0;
}

body, html {
  background: #f0f2f5;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*取消手机点击屏幕时，会出现的灰块*/
}

@media (min-width: 640px) {
  html {
    font-size: 85.33px !important;
  }
}

/*@font-face {*/
/*font-family: 'FZPingXYSK';*/
/*src: url('../fonts/FZPingXYSK.TTF');*/
/*}*/
body {
  font-family: 'FZPINGXYSK--GBK1-0', "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
  font-size: 0.34rem;
  min-height: 100vh;
}

.page {
}

/*有下载按钮需要padding底部*/
.page.article.hasDownload {
  padding-bottom: 1.3rem;
}

.page.article.hasDownload .open_app {
  display: block;
}

.page.article.hasDownload .more_comment {
  display: block;
}

.loading.page {
  width: 100%;
  max-width: 640px;
  height: 100%;
  display: block;
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
}

.loading_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-align: center;
  font-size: 16px;
}

.loading_content img {
  display: block;
  width: .6rem;
  margin: 0 auto .2rem;
}

.open_app {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}

.open_app_inner {
  max-width: 640px;
  height: 1.3rem;
  border-top: 1px solid #EAEAEA;
  background: #ffffff;
  padding: 0.26rem 0.24rem;
  box-sizing: border-box;
  margin: 0 auto;
}

.app_icon {
  width: 0.8rem;
  height: 0.8rem;
  background: url('../images/logo.png') no-repeat center;
  background-size: cover;
  float: left;
}

.open_disc {
  height: 0.8rem;
  margin: 0 1.6rem 0 0.96rem;
  color: #1788D7;
  font-size: .24rem;
}

.open_disc .app_name {
  font-size: .28rem;
  margin-top: 0.08rem;
}

.btn_open_app {
  width: 1.4rem;
  height: .5rem;
  /*line-height: .5rem;*/
  font-size: .24rem;
  color: #1788D7;
  border-radius: 0.08rem;
  outline: none;
  border: 1px solid #1788D7;
  background: #ffffff;
  float: right;
  margin-top: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clearBoth {
  position: relative;
}

.clearBoth:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  clear: both;
}

/*文本超出1行显示...*/
.limit-line1 {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*文本超出2行显示...*/
.limit-line2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*文本超出3行显示...*/
.limit-line3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*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;
}

iframe {
  display: block;
  width: 100%;
}

.article_comment {
  overflow: hidden;
  display: none;
}

.more_comment {
  display: none;
}

.noComment {
  text-align: center;
  margin-bottom: 0.4rem;
}

.noComment img {
  width: 1.4rem;
  display: block;
  margin: 0 auto .36rem;
}

.noComment span {
  font-size: .2rem;
  color: rgba(219, 219, 219, 1);
}
/*标题阴影*/
.titleShadow{
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 97%);
}