<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  overflow: hidden;
  overscroll-behavior: contain !important;
}

.my-drawer {
  position: fixed;
  top: 0;
  width: 100%;
  overscroll-behavior: contain !important;
  overflow-y: scroll;
  max-width: 7.7rem !important;
  margin: 0 auto;
  background-color: #F7F7F7;
}

.my-drawer::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.am-drawer {
  overflow: scroll;
  overscroll-behavior: contain !important;
}

a,a:hover,a:visited,a:active {
  color: #262626;
}

.ct {
  width: 100%;
  min-height: calc(100% - 0.8rem);
  padding-top: 0.8rem;
  /* overflow: scroll; */
  overscroll-behavior: contain !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #F7F7F7;
  background-color: #FFFFFF;
}

.ct .head-main {
  position: fixed;
}

.ct .line-2 {
  word-break: break-all;
  /* text-align: left; */
  text-overflow: ellipsis;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ct .loading-text {
  width: 100%;
  border-top: 0.01rem solid #E7E7E7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ct .loading-text .icon-loading {
  display: block;
  animation: round 1s linear infinite;
  margin-right: 0.1rem;
}

@keyframes round {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.page__list__article .header {
  padding: 0.3rem 0.4rem;
  border-bottom: 0.02rem solid #E7E7E7;
  font-size: 0.36rem;
  font-weight: 500;
}

.page__list__article .article-list {
  padding: 0 0.4rem;
}

.page__list__article .article-list .article-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.3rem;
  margin-top: 0.2rem;
}

.page__list__article .article-list .article-item:not(:last-child) {
  border-bottom: 0.01rem solid #E7E7E7;
}

.page__list__article .article-list .article-item .cover {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
  border-radius: 0.08rem;
  overflow: hidden;
}

.page__list__article .article-list .article-item .cover img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: cover;
}

.page__list__article .article-list .article-item .info {
  height: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page__list__article .article-list .article-item .info .title {
  width: 100%;
  font-size: 0.32rem;
  font-weight: 500;
  line-height: 0.45rem;
}

.page__list__article .article-list .article-item .info .detail {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #8C8C8C;
  font-size: 0.24rem;
  line-height: 0.32rem;
}

.page__list__article .article-list .article-item .info .detail .read {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page__list__article .article-list .article-item .info .detail span {
  display: inline-block;
  margin-left: 0.06rem;
}</pre></body></html>