#warpper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#body {
  flex: 1;
}
.banner {
  width: 100%;
}
.banner img {
  display: block;
  width: 100%;
}
.news-list {
  width: 90vw;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.news-list .item {
  height: 6vh;
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-bottom: 1px solid #e0dddd;
  box-sizing: content-box;
}
.news-list .item .date {
  width: 20%;
  text-align: center;
  border-right: 1px solid #ccc;
}
.news-list .item .date .day {
  font: 1.6875rem "PingFangSC Regular";
  color: #999;
}
.news-list .item .date .month {
  color: #ccc;
  font: 0.625rem "PingFangSC Regular";
}
.news-list .item .info {
  width: 80%;
  padding-left: 1rem;
}
.news-list .item .info .title {
  font: 0.9375rem "PingFangSC Medium";
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list .item .info .title a {
  color: #666;
}
.news-list .item .info .intro {
  width: 100%;
  color: #999;
  font: 0.6875rem "PingFangSC Regular";
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.e-masker {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 32rpx;
  background-color: rgba(8, 8, 8, 0.95);
  z-index: 998;
  transform: scale(1.185);
  -ms-transform: scale(1.185);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  backface-visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.e-masker.show {
  opacity: 1;
  transition-duration: 0.3s;
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: auto;
}
.e-masker .bb {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  overflow: scroll;
}
.e-masker .book_img {
  flex: 1;
}
.e-masker .book_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.e-masker .book_footer {
  width: 100%;
  background: #000000;
  height: 40px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  flex-shrink: 0;
}
