<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__video .header {
  padding: 0.3rem 0.4rem;
  border-bottom: 0.02rem solid #E7E7E7;
  font-size: 0.36rem;
  font-weight: 500;
}

.page__list__video .video-list {
  padding: 0 0.4rem;
}

.page__list__video .video-item {
  display: block;
  position: relative;
  width: 6.7rem;
  height: 4.01rem;
  border-radius: 0.08rem;
}

.page__list__video .video-item:not(:last-child) {
 margin-bottom: 0.2rem;
}

.page__list__video .video-item .cover{
  position: relative;
  width: 6.7rem;
  height: 4.01rem;
  border-radius: 0.08rem;
  background-color: #E7E7E7;
}

.page__list__video .video-item .title{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.2rem;
  width: calc(100% - 0.4rem);
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.28rem;
  border-bottom-left-radius: 0.08rem;
  border-bottom-right-radius: 0.08rem;
  font-weight: normal;
  color: #FFFFFF;  
  background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, #262626 100%);
}</pre></body></html>