/* 基础设置：1rem = 10px (方便计算) */
html {
  font-size: 10px;
  background-color: #151515;
}
body {
  color: #ffffff;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: '微软雅黑', 'Roboto', Helvetica, sans-serif;
  /* CSS3 抗锯齿 - 让文字显示更清晰 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* 禁止字体大小自动调整 */
  text-size-adjust: none;
}
a {
  color: #ffffff;
}
a:hover {
  transition: color 0.3s;
  color: #276fdb !important;
}
.site-header .header-inner {
  display: flex;
  height: 4rem;
}
.site-header .header-inner .logo {
  margin: 0;
}
.site-header .header-inner .logo a {
  display: block;
  width: 9.75rem;
  height: 100%;
}
.site-header .header-inner form {
  display: flex;
  flex: 1;
}
.site-header .header-inner form div {
  display: flex;
  align-items: center;
  width: 100%;
}
.site-header .header-inner form div input {
  padding-left: 1rem;
  font-size: 1rem;
  color: #ffffff;
  line-height: 2.4rem;
  background-color: #656565;
  border-radius: 1rem 0 0 1rem;
  width: 100%;
}
.site-header .header-inner form div input::placeholder {
  color: #ffffffe6;
}
.site-header .header-inner form div button {
  height: 2.4rem;
  width: 2rem;
  background-color: #656565;
  border-radius: 0 1rem 1rem 0;
}
.site-header .header-inner form div button span {
  padding-right: 1rem;
  color: #ffffff;
  font-size: 1.5rem;
}
.site-header nav ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.site-header nav ul li {
  flex: 0 0 auto;
}
.site-header nav ul li:first-child a {
  font-size: 1.6rem;
  width: 3rem;
}
.site-header nav ul li a {
  display: block;
  font-size: 1.4rem;
  padding: 0.8rem 0.6rem;
  position: relative;
}
.site-header nav ul li a span {
  font-size: 1.4rem;
}
.site-header nav ul li a .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.site-header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0rem;
  left: 0;
  width: 0%;
  height: 0.2rem;
  background: #276fdb;
  transition: width 0.3s;
}
.site-header nav ul li a:hover::after {
  width: 100%;
}
.site-header nav ul li a.active {
  color: #276fdb;
}
.site-header .announcement {
  padding: 0 0.7rem 0.7rem 0.7rem;
  white-space: nowrap;
}
.site-header .announcement .iconfont {
  background: linear-gradient(180deg, #f4a942 0%, #ff2a14 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  position: absolute;
}
.site-header .announcement div {
  margin-left: 2.5rem;
  overflow: hidden;
  position: relative;
  height: 100%;
}
.site-header .announcement div span {
  color: #ffffff;
  display: inline-block;
  padding-right: 2rem;
  animation: marquee 25s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.site-header .category-wrapper .category-tabs {
  display: flex;
  margin-bottom: 0.8rem;
}
.site-header .category-wrapper .category-tabs button {
  background: none;
  flex: 1;
  font-size: 1.2rem;
  color: #ffffff;
  position: relative;
  padding: 0.5em 0;
  transition: color 0.3s;
}
.site-header .category-wrapper .category-tabs button:hover {
  color: #276fdb;
  font-weight: bold;
}
.site-header .category-wrapper .category-tabs button::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0%;
  height: 0.2rem;
  background: #276fdb;
  transition: width 0.3s;
}
.site-header .category-wrapper .category-tabs button:hover::after {
  width: 100%;
}
.site-header .category-wrapper .category-tabs button.active {
  color: #276fdb;
}
.site-header .category-wrapper .category-tabs button.active::after {
  width: 100%;
}
.site-header .category-wrapper .category-nav {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.site-header .category-wrapper .category-nav ul {
  margin: 0;
  padding: 0.5rem 1rem;
  list-style: none;
  gap: 0.8rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}
.site-header .category-wrapper .category-nav ul::-webkit-scrollbar {
  display: none;
}
.site-header .category-wrapper .category-nav ul.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.site-header .category-wrapper .category-nav ul.mode-static {
  display: flex;
  flex-flow: row wrap;
  height: auto;
}
.site-header .category-wrapper .category-nav ul.mode-static li {
  width: calc((100% - 4rem) / 5);
  flex-shrink: 0;
}
.site-header .category-wrapper .category-nav ul.mode-scroll {
  display: flex;
  flex-flow: column wrap;
  height: 12.5rem;
  width: auto;
  min-width: 100%;
  align-content: flex-start;
  cursor: grab;
}
.site-header .category-wrapper .category-nav ul.mode-scroll:active {
  cursor: grabbing;
}
.site-header .category-wrapper .category-nav ul.mode-scroll li {
  width: 18vw;
  height: 3.2rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .site-header .category-wrapper .category-nav ul.mode-scroll li {
    width: 120px;
  }
}
.site-header .category-wrapper .category-nav ul li a {
  text-align: center;
  line-height: 3.2rem;
  border-radius: 0.6rem;
  background-color: #2b2b2e;
  color: #eee;
  font-size: 1.2rem;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.site-header .category-wrapper .category-nav ul li a:active {
  background-color: #3d3d41;
}
.site-header .category-wrapper .category-nav ul li .hot.lv1 {
  background-color: #a0ccff24;
  color: #15c5ff;
}
.site-header .category-wrapper .category-nav ul li .hot.lv2 {
  background-color: #c6ffa024;
  color: #21ff15;
}
.site-header .category-wrapper .category-nav ul li .hot.lv3 {
  background-color: #ffdaa024;
  color: #ffa515;
}
.site-header .category-wrapper .category-nav ul li .hot.lv4 {
  background-color: #d6a0ff24;
  color: #ff02b3;
}
.site-header .category-wrapper .category-nav ul li .hot.lv5 {
  background-color: #ffa0a024;
  color: #ff1515;
}
.site-header .category-wrapper .scroll-progress {
  margin: 0.5rem auto;
  display: flex;
  justify-content: center;
}
.site-header .category-wrapper .scroll-progress .scroll-progress-track {
  height: 0.3rem;
  border-radius: 0.3rem;
  width: 4rem;
  background-color: #2b2b2e;
  overflow: hidden;
  /* 进度条 */
}
.site-header .category-wrapper .scroll-progress .scroll-progress-track .scroll-progress-bar {
  height: 100%;
  width: 0;
  background-color: #276fdb;
  border-radius: 1rem;
  transition: width 0.2s ease-out;
}
.site-header .welcome-and-friend-wrapper .copy-domain {
  padding: 0 1rem;
  height: 7.5rem;
}
.site-header .welcome-and-friend-wrapper .copy-domain div {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-image: url('/public/images/welcome.png');
}
.site-header .welcome-and-friend-wrapper .copy-domain div button {
  width: 100%;
  height: 100%;
  background: transparent;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: sansSerif;
  color: #276fdb;
}
.site-header .welcome-and-friend-wrapper .friend-links-container {
  display: flex;
  min-height: 70px;
  align-items: center;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-icon {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 7.5rem;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-icon img {
  width: 4rem;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-icon span {
  margin-top: 0.5rem;
  font-family: sansSerif;
  color: #9a5c8f;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  padding-right: 0.5rem;
  align-items: center;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-list a {
  font-size: 1.2rem;
  width: 20%;
  margin: 0.4rem 0;
  color: #c1a0b7;
  position: relative;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-list a span {
  height: 2.2rem;
  line-height: 2.2rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.site-header .welcome-and-friend-wrapper .friend-links-container .friend-links-list a:before {
  position: absolute;
  top: -0.8rem;
  right: 0.5rem;
}
section {
  padding: 0 1rem;
  background-color: #151515;
}
section .common .common-hd {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .common .common-hd h1,
section .common .common-hd h2 {
  margin: 0;
  font-size: 1.5rem;
}
section .common .common-hd a {
  height: 100%;
  font-size: 1.4rem;
  background-color: #232225;
  border-radius: 0.5rem;
  padding: 0px 0.8rem;
}
section .common .common-hd a::after {
  content: '\e60b';
  margin-left: 0;
  font-size: 1.4rem;
}
section .common .top-links div {
  display: flex;
}
section .common .top-links div a {
  font-size: 1.3rem;
  background-color: #4b4a4e;
  border-radius: 0;
  padding: 0px 0.5rem;
  white-space: nowrap;
}
section .common .top-links div a::after {
  content: '';
}
section .common .top-links div .active {
  font-size: 1.3rem;
  background-color: #276fdb;
  border-radius: 0;
  padding: 0px 0.5rem;
  white-space: nowrap;
}
section .common-bd {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
section .common-bd .item a .cover {
  position: relative;
}
section .common-bd .item a .cover img {
  width: 100%;
  object-fit: cover;
}
section .common-bd .item a .cover .duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  color: #ffffff !important;
}
section .common-bd .item a h3 {
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.2rem;
}
section .common-bd .item a h3:hover {
  color: #276fdb !important;
}
section .common-bd .item a .wrap {
  display: flex;
  justify-content: space-between;
}
section .common-bd .item a .wrap:nth-child(-n + 4) div {
  font-size: 1.4rem;
  color: #5f5f5f;
}
section .video-list .item {
  flex-basis: calc(50% - 0.5rem);
}
section .video-list .item a img {
  aspect-ratio: 16 / 9;
  /* 撑开标准比例 */
  /* 关键修改 */
  object-fit: contain;
  /* 1. 完整显示整张图，绝对不截断 */
  background-color: #000;
  /* 2. 如果图太窄，左右黑边垫底（或者换成深灰色 #1a1a1a） */
}
section .comic-list .item {
  flex-basis: calc(33.33% - 0.67rem);
  max-width: calc(33.33% - 0.67rem);
}
section .comic-list .item a img {
  aspect-ratio: 3 / 4;
  /* 撑开标准比例 */
  /* 关键修改 */
  object-fit: contain;
  /* 1. 完整显示整张图，绝对不截断 */
  background-color: #000;
  /* 2. 如果图太窄，左右黑边垫底（或者换成深灰色 #1a1a1a） */
}
section .comic-list .item a .status {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  padding: 0.3rem 0.5rem;
  background-color: #276fdb;
  color: #ffffff;
  font-size: 1rem;
}
section .comic-list .item a .latest {
  position: absolute;
  bottom: 0;
  padding: 0.5rem;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  color: #ffffff;
  font-size: 1rem;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
section .comic-list .item a h3 {
  -webkit-line-clamp: 1;
}
section .novel-list .item {
  flex-basis: calc(33.33% - 0.67rem);
  max-width: calc(33.33% - 0.67rem);
}
section .novel-list a img {
  aspect-ratio: 3 / 4;
  /* 撑开标准比例 */
  /* 关键修改 */
  object-fit: contain;
  /* 1. 完整显示整张图，绝对不截断 */
  background-color: #000;
  /* 2. 如果图太窄，左右黑边垫底（或者换成深灰色 #1a1a1a） */
}
section .novel-list a .status {
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  padding: 0.3rem 0.5rem;
  background-color: #276fdb;
  color: #ffffff;
  font-size: 1rem;
}
section .novel-list a .latest {
  position: absolute;
  bottom: 0;
  padding: 0.5rem;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  color: #ffffff;
  font-size: 1rem;
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}
section .novel-list a h3 {
  -webkit-line-clamp: 2;
}
section .movie-list .item {
  flex-basis: calc(33.33% - 0.67rem);
  max-width: calc(33.33% - 0.67rem);
}
section .movie-list .item a img {
  aspect-ratio: 3 / 4;
  /* 撑开标准比例 */
  /* 关键修改 */
  object-fit: contain;
  /* 1. 完整显示整张图，绝对不截断 */
  background-color: #000;
  /* 2. 如果图太窄，左右黑边垫底（或者换成深灰色 #1a1a1a） */
}
section .movie-list .item a .latest-episode {
  position: absolute;
  padding: 0.5rem 1rem;
  bottom: 0;
  right: 0;
  text-align: right;
  width: 100%;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  color: #ffffff;
  font-size: 1rem;
}
section .movie-list .item h3 {
  -webkit-line-clamp: 1;
}
section .movie-list .item .actor {
  font-size: 1.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0.3rem 0;
}
section .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px;
  list-style: none;
}
section .tag-list li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #151515;
  background: #ffffff;
  border-radius: 50px;
  border: 2px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}
section .tag-list li > a span {
  margin-left: 12px;
  font-family: 'Monaco', monospace;
  font-size: 12px;
  color: #276fdb;
  opacity: 0.8;
}
section .tag-list li > a:hover {
  color: #ffffff;
  background: #151515;
  border-color: #151515;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(230, 62, 0, 0.15);
}
section .tag-list li > a:hover span {
  color: #ffffff;
  opacity: 1;
}
section .tag-list li > a:hover span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #276fdb;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
section .tag-list li > a:active {
  transform: translateY(-2px) scale(0.95);
}
section section {
  padding: 0;
  border: 1px solid #8d8888;
  margin-top: 1rem;
  background-color: #212121;
}
section section h2 {
  font-size: 1.3rem;
  padding: 1rem;
  border-bottom: 1px solid #8d8888;
}
section section ul {
  display: flex;
  gap: 0;
  flex-wrap: nowrap;
  margin: 0;
}
section section ul li {
  flex: 1;
  padding: 1rem 0;
  text-align: center;
  border-right: 1px solid #8d8888;
}
section .pagination {
  margin-top: 1rem;
}
section .pagination .pagination-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
section .pagination .pagination-nav a {
  padding: 0.5rem 1rem;
  background-color: #276fdb;
  border-radius: 0.5rem;
}
section .pagination .pagination-nav a:hover {
  color: #ffffff !important;
}
section .pagination .pagination-pages {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 1rem;
}
section .pagination .pagination-pages li {
  padding: 0.5rem 0.3rem;
  border-radius: 0.5rem;
}
section .pagination .pagination-pages li span {
  background-color: #276fdb;
  padding: 0.5rem 0.3rem;
  border-radius: 0.5rem;
}
section .pagination .pagination-pages .ellipsis {
  background-color: transparent;
}
section .pagination .pagination-jump {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
section .pagination .pagination-jump form label {
  color: #276fdb;
}
section .pagination .pagination-jump form input {
  text-align: center;
}
section .pagination .pagination-jump form button {
  padding: 0 0.8rem;
  color: #ffffff;
  border-radius: 0.5rem;
  background-color: #276fdb;
}
section .breadcrumb {
  margin-top: 1rem;
}
section .breadcrumb span a {
  font-size: 1.4rem;
}
section .breadcrumb span a::after {
  content: '>';
}
section .breadcrumb span {
  font-size: 1.4rem;
}
section .dplayer {
  position: relative;
  margin-top: 1rem;
  aspect-ratio: 16/9;
}
section .video-controls {
  padding: 1rem;
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
section .video-controls a,
section .video-controls button,
section .video-controls span {
  text-align: center;
  flex: 1;
  border: 1px solid #eeeeee;
  color: #333333;
  background-color: #f5f5f5;
  display: block;
  padding: 0.6rem;
  border-radius: 0.5rem;
}
section .video-play-info h1 {
  font-size: 1.6rem;
}
section .video-play-info .video-meta {
  display: flex;
  gap: 1rem;
}
section .video-play-info .video-meta span {
  font-size: 1.2rem;
  color: #acacac;
}
section .video-play-info .video-meta span em,
section .video-play-info .video-meta span time {
  color: #ffffff;
}
section .video-play-info .video-type,
section .video-play-info .video-tag {
  display: flex;
  margin-top: 1rem;
}
section .video-play-info .video-type span,
section .video-play-info .video-tag span {
  font-size: 1.2rem;
  color: #acacac;
}
section .video-play-info .video-type .list,
section .video-play-info .video-tag .list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
section .video-play-info .video-type .list a,
section .video-play-info .video-tag .list a {
  background-color: #276fdb;
  padding: 0.2rem 0.2rem;
}
section .video-play-info .video-type .list a:hover,
section .video-play-info .video-tag .list a:hover {
  color: #ffffff !important;
}
section .video-play {
  margin-top: 1rem;
}
section .video-play .play-list span {
  font-size: 1.4rem;
}
section .video-play .play-list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  border-bottom: 1px solid #8d8888;
  padding-bottom: 0.5rem;
  margin-top: 0.5rem;
}
section .video-play .play-list ul li {
  text-align: center;
}
section .video-play .play-list ul li button {
  color: #ffffff;
  background-color: transparent;
}
section .video-play .play-list ul .active {
  color: #276fdb;
  border-bottom: 2px solid #276fdb;
}
section .video-play .m3u8-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
section .video-play .m3u8-list ul li {
  padding: 0.3rem;
  border: 1px solid #8d8888;
  text-align: center;
}
section .video-play .m3u8-list ul li a {
  display: block;
  width: 100%;
}
section .video-play .m3u8-list ul li button {
  width: 100%;
  color: #ffffff;
  background-color: transparent;
}
section .video-play .m3u8-list ul li button:hover {
  color: #276fdb !important;
}
section .info {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}
section .info img {
  width: 10.8rem;
  height: 15rem;
}
section .info .meta {
  margin-left: 1rem;
  flex: 1;
}
section .info .meta h1,
section .info .meta .author,
section .info .meta .genre,
section .info .meta .latest,
section .info .meta .update {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
section .info .meta h1 {
  font-size: 1.8rem;
  margin: 0;
}
section .info .meta p {
  font-size: 1.4rem;
}
section .info .meta .author {
  margin: 0.5rem 0;
}
section .info .meta .author a {
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding: 0.3rem 0.5rem;
  background-color: #9c5b58;
}
section .info .meta .genre a {
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding: 0.3rem 0.5rem;
  background-color: #1e9fff;
}
section .info .meta .stats {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
section .info .meta .stats span {
  padding: 0 0.5rem;
  font-size: 1.3rem;
  background-color: #276fdb;
}
section .info .meta .stats .iconfont::before {
  content: '';
}
section .info .meta .stats .iconfont:after {
  content: '\e96a';
}
section .info .meta .latest {
  margin-bottom: 0.5rem;
}
section .info .meta .latest a {
  color: #007aff;
}
section .info .meta .tag {
  margin-top: 0.5rem;
}
section .info .meta .tag a {
  margin-right: 0.5rem;
}
section .info .start-action {
  margin-top: 0.5rem;
}
section .info .start-action a {
  background-color: #276fdb;
  border: 1px solid #276fdb;
  color: #ffffff;
  display: inline-block;
  padding: 0.6rem 3rem;
  font-size: 1.2rem;
  border-radius: 0.4rem;
}
section .info .start-action a:hover {
  color: #ffffff !important;
}
section .info .intro {
  margin-top: 1rem;
  font-size: 1.2rem;
  width: 100%;
}
section .info .chapter-list {
  width: 100%;
  gap: 0;
}
section .info .chapter-list li {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: solid 1px #414040;
}
section .info .chapter-list li a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
section .recommend {
  padding: 1rem 0 0 0;
}
section .tv-info .meta .area {
  margin: 0.5rem 0;
}
section .tv-info .meta .area a {
  padding: 0 0.5rem;
  background-color: #126d0a;
}
section .tv-info .meta .year span:nth-child(1) {
  padding: 0;
  background-color: transparent;
}
section .tv-info .meta .year span:nth-child(2) {
  margin-right: 0.5rem;
  background-color: #7b7a26;
}
section .tv-info .meta .year a {
  padding: 0 0.5rem;
  background-color: #126d0a;
}
section .tv-info .meta .year .iconfont {
  padding: 0 0.5rem;
  font-size: 1.3rem;
  background-color: #e63e00;
}
section .tv-info .meta .update {
  margin-top: 0.5rem;
}
section .tv-info .video-play {
  width: 100%;
}
section .show-content h1 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0;
}
section .show-content .reader-toolbar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
section .show-content .novel-text p {
  text-indent: 2em;
  margin: 1rem;
  font-size: 1.4rem;
  line-height: 180%;
}
section .show-content .chapter-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}
section .show-content .chapter-nav a {
  padding: 0.5rem 1rem;
  background-color: #276fdb;
  border-radius: 0.5rem;
}
section .show-content .chapter-nav a:hover {
  color: #ffffff !important;
}
section .show-content .icon-ad {
  padding: 0;
  margin-top: 1rem;
}
section .show-content .about {
  margin-top: 1rem;
  font-size: 1.2rem;
  text-align: center;
}
.tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.tags a {
  font-size: 1.2rem;
  display: block;
  text-transform: uppercase;
}
.tags a:last-child {
  text-align: center;
  background-color: #212121;
  padding: 1.2rem 2rem;
  border-radius: 2rem;
  margin: 1rem 0 0;
  font-size: 1.3rem;
  padding: 1rem 2rem;
  width: 100%;
}
.tags a:hover {
  border-radius: 20px;
  background-color: #151515;
  color: #ffffff !important;
}
footer {
  margin-bottom: 5.5rem;
  padding: 0 1rem;
  margin-bottom: 6rem;
}
footer .nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 10000;
  background-color: #232225;
}
footer .nav ul {
  display: flex;
  align-items: center;
  height: 5.5rem;
}
footer .nav ul li {
  flex: 1;
}
footer .nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
}
footer .nav ul li a::before {
  font-size: 2rem;
}
footer .sitemap {
  margin: 1rem 0;
  border-top: solid 1px #276fdb;
  padding-top: 1rem;
}
footer .sitemap ul {
  display: flex;
}
footer .sitemap ul li {
  font-size: 0.9rem;
  flex: 1;
}
footer .sitemap ul li a {
  text-align: center;
  display: block;
}
footer .footer-bottom p {
  line-height: 2rem;
  margin: 1rem 0;
  text-align: center;
  font-size: 1.2rem;
}
footer .footer-bottom p a {
  color: #276fdb;
}
.fixed-layer .right-tools {
  position: fixed;
  right: 1rem;
  bottom: 18.5rem;
  z-index: 10000;
}
.fixed-layer .right-tools button {
  background-color: #6b6666;
  color: #fff;
  padding: 0 0.5rem;
  font-size: 3rem;
  border-radius: 0.5rem;
}
.box404 {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box404 .content {
  text-align: center;
}
.box404 .content h1 {
  font-size: 120px;
  margin: 0;
  line-height: 1;
  letter-spacing: -5px;
  background: linear-gradient(135deg, #276fdb 0%, #276fdb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(24, 150, 12, 0.4));
}
.box404 .content h2 {
  margin: 20px 0 10px;
}
.box404 .content p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 30px;
}
.box404 .content .btn-home {
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(to right, #276fdb, #276fdb);
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(24, 150, 12, 0.3);
}
.box404 .content .btn-home:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(24, 150, 12, 0.5);
  filter: brightness(1.1);
}
.box404 .content .btn-home:active {
  transform: translateY(-1px);
}
.captcha {
  height: 80vh;
}
.captcha .content h1 {
  font-size: 80px;
  letter-spacing: 10px;
}
.captcha .content b {
  display: inline-block;
  font-size: 48px;
  color: #276fdb;
  margin: 20px 0;
  padding: 10px 30px;
  border: 1px solid rgba(24, 150, 12, 0.3);
  background: rgba(24, 150, 12, 0.05);
  border-radius: 8px;
  letter-spacing: 12px;
  text-shadow: 0 0 10px rgba(24, 150, 12, 0.5);
}
.captcha .content .input-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}
.captcha .content .input-wrap input {
  width: 100px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  text-align: center;
  font-size: 20px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s;
}
.captcha .content .input-wrap input:focus {
  border-color: #276fdb;
  box-shadow: 0 0 8px rgba(24, 150, 12, 0.3);
}
.captcha .content .input-wrap input.error {
  border-color: #ff4d4f !important;
  animation: shake 0.4s;
}
.captcha .content .input-wrap button {
  background: #276fdb;
  color: #fff;
  border: none;
  padding: 0 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
.captcha .content .input-wrap button:hover {
  filter: brightness(1.2);
}
.captcha .content .msg-tips {
  height: 20px;
  font-size: 13px;
  color: #ff4d4f;
  margin-bottom: 15px;
  opacity: 0;
}
.captcha .content .msg-tips.show {
  opacity: 1;
}
.captcha .content .footer-tips {
  font-size: 12px;
  color: #555;
  margin-top: 0;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@media (min-width: 769px) {
  html {
    font-size: 12px;
    background-color: #1a1a1a !important;
  }
  body {
    background-color: #1a1a1a !important;
  }
  #pc-wrapper {
    width: 600px;
    margin: 0 auto;
    min-height: 100vh;
  }
  footer .nav,
  .fixed-layer .ad-top,
  .fixed-layer .ad-footer,
  .fixed-layer .right-tools {
    width: 600px !important;
    right: 0 !important;
    margin: 0 auto !important;
  }
  .fixed-layer .ad-left {
    left: calc(50% -  600px / 2 + 1rem) !important;
  }
  .fixed-layer .ad-right {
    right: calc(50% -  600px / 2 + 1rem) !important;
  }
}
.ad-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40rem;
  width: 90%;
  z-index: 100000;
}
.ad-popup .ad-box {
  padding: 5rem 2rem 0.5rem 2rem;
  height: auto;
  width: 100%;
  background: url(/public/images/pop-cont.png) center center / 100% 100% no-repeat;
}
.ad-popup .ad-box ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.ad-popup .ad-box ul li a {
  font-size: 1rem;
  color: #333;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ad-popup .ad-box ul li a img {
  border-radius: 1rem;
}
.ad-popup .ad-bottom {
  width: 100%;
  height: 8rem;
  background: url(/public/images/pop-bottom.png) center center / 100% 100% no-repeat;
}
.ad-popup button {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  padding: 1.5rem;
  font-size: 1.2rem;
  color: #fff;
  background: #3a3734;
  border-radius: 2rem;
}
.ad-top,
.ad-footer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  z-index: 10000;
  overflow: hidden;
}
.ad-top .ad-slider,
.ad-footer .ad-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.ad-top .ad-slider a,
.ad-footer .ad-slider a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s ease-in-out;
}
.ad-top .ad-slider a img,
.ad-footer .ad-slider a img {
  height: 100%;
  width: 100%;
}
.ad-top .ad-slider a.active,
.ad-footer .ad-slider a.active {
  transform: translateX(0);
}
.ad-top .ad-slider a.prepare,
.ad-footer .ad-slider a.prepare {
  transform: translateX(100%);
}
.ad-top .ad-slider a.slide-out,
.ad-footer .ad-slider a.slide-out {
  transform: translateX(-100%);
}
.ad-top .ad-slider a.slide-in,
.ad-footer .ad-slider a.slide-in {
  transform: translateX(0);
}
.ad-top .ad-close,
.ad-footer .ad-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.8rem 1.3rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1.2rem;
  z-index: 3;
}
.ad-footer {
  position: fixed;
  top: auto;
  left: 0;
  bottom: 5.5rem;
  width: 100%;
  height: 8rem;
  z-index: 10000;
}
.ad-left,
.ad-right {
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 10000;
}
.ad-left a img,
.ad-right a img {
  width: 6rem;
  border-radius: 0.6rem;
  animation: 3s ease-in-out 0s infinite normal none running kNHTtG;
}
@keyframes kNHTtG {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.2);
  }
}
.ad-left .ad-close,
.ad-right .ad-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  padding: 0.5rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 1.2rem;
}
.ad-right {
  left: auto;
  right: 1rem;
}
.header-tools {
  display: flex;
  align-items: center;
}
.header-tools a {
  padding-left: 1rem;
}
.header-tools a .iconfont {
  font-size: 2.5rem;
}
.header-tools a .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.header-tools .latest-btn {
  display: flex;
  height: 100%;
  position: relative;
}
.header-tools .latest-btn img {
  width: 2.5rem;
}
.header-tools .latest-btn:after {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  background-color: #f30;
  border-radius: 50%;
  position: absolute;
  right: -0.5rem;
  top: 0.2rem;
}
.header-tools .app-download-btn {
  display: flex;
  width: 9rem;
  position: relative;
}
.header-tools .app-download-btn span {
  position: absolute;
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
  width: 4.8rem;
  font-size: 1rem;
  font-weight: 900;
  color: #ffffff;
}
.footer-tools {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14.5rem;
  z-index: 10000;
}
.footer-tools .tools-group {
  padding: 0px 0.6rem;
  background-color: #212121;
  border-radius: 2rem;
  width: 24rem;
  height: 4rem;
  line-height: 4rem;
  display: flex;
  justify-content: center;
}
.footer-tools .tools-group button {
  background-color: #212121;
  color: #276fdb;
  font-size: 1.3rem;
  padding-right: 0.5rem;
}
.footer-tools .tools-group button::before {
  padding-right: 0.5rem;
}
.footer-tools .tools-group button::after {
  content: '|';
  color: #ffffff;
  padding-left: 0.5rem;
}
.footer-tools .tools-group button:nth-child(3) {
  color: #ffffff;
}
.footer-tools .tools-group button:nth-child(3)::before {
  padding: 0;
}
.footer-tools .tools-group button:nth-child(3)::after {
  content: '';
  padding: 0;
}
.icon-ad {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.icon-ad a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.2rem;
  text-align: center;
}
.icon-ad a img {
  width: 100%;
  border-radius: 0.6rem;
}
.banner-ad a img {
  width: 100%;
  max-height: 8rem;
}
.list-ad {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  background-color: #7a219c;
}
.dp-pause-ad {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 75%;
  max-height: 70%;
  display: none;
  z-index: 99;
}
.dp-pause-ad .ad-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 1.4rem;
  line-height: 2.6rem;
}
.dplayer-mobile-play {
  z-index: 100;
}
