@charset "UTF-8";
body.dark-theme {
  background-color: #1a1a1a;
  color: #fff;
  font-family: "Microsoft YaHei", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
}

.header {
  background-color: #2a2a2a;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.header .layui-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header .nav-left .logo {
  display: block;
  height: 40px;
}
.header .nav-left .logo img {
  height: 100%;
  width: auto;
}
.header .nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav-right .layui-nav {
  background: none;
  padding: 0;
}
.header .nav-right .layui-nav .layui-nav-item a {
  color: #fff;
}
.header .nav-right .layui-nav .layui-nav-item a:hover {
  color: #409EFF;
}
.header .nav-right .layui-nav .layui-nav-item.layui-this a {
  color: #409EFF;
}
@media (max-width: 767px) {
  .header .nav-right .layui-nav {
    display: none;
  }
}
.header .nav-right .mobile-menu-btn {
  display: none;
  cursor: pointer;
  padding: 10px;
  color: #fff;
  position: relative;
  width: 40px;
  height: 40px;
}
@media (max-width: 767px) {
  .header .nav-right .mobile-menu-btn {
    display: block;
  }
}
.header .nav-right .mobile-menu-btn .menu-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.header .nav-right .mobile-menu-btn .menu-line::before, .header .nav-right .mobile-menu-btn .menu-line::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}
.header .nav-right .mobile-menu-btn .menu-line::before {
  top: -6px;
}
.header .nav-right .mobile-menu-btn .menu-line::after {
  bottom: -6px;
}
.header .nav-right .mobile-menu-btn.active .menu-line {
  background-color: transparent;
}
.header .nav-right .mobile-menu-btn.active .menu-line::before {
  top: 0;
  transform: rotate(45deg);
}
.header .nav-right .mobile-menu-btn.active .menu-line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.main-container {
  margin-top: 80px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .main-container {
    margin-top: 70px;
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .main-container .layui-container {
    padding: 0 10px;
  }
}
.main-container .layui-container .list-content {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .main-container .layui-container .list-content {
    gap: 12px;
    margin: 10px 0;
  }
}
.main-container .layui-container .list-content .list-main {
  flex: 1;
  min-width: 0;
  width: 100%;
}
.main-container .layui-container .list-content .list-main .list-video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .main-container .layui-container .list-content .list-main .list-video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .main-container .layui-container .list-content .list-main .list-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.main-container .layui-container .list-content .side-ad {
  width: 300px;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .main-container .layui-container .list-content .side-ad {
    width: 100%;
    order: -1;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .main-container .layui-container .list-content .side-ad {
    width: 100%;
    margin: 0 0 12px;
  }
}
.main-container .layui-container .list-content .side-ad .ad-wrapper {
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 1200px) {
  .main-container .layui-container .list-content .side-ad .ad-wrapper {
    position: static;
  }
}
.main-container .layui-container .list-content .side-ad .ad-wrapper .ad-placeholder {
  width: 100%;
  height: 600px;
  background: rgba(32, 33, 35, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
@media (max-width: 767px) {
  .main-container .layui-container .list-content .side-ad .ad-wrapper .ad-placeholder {
    height: 200px;
  }
}

.search-section {
  margin: 0 auto 30px;
  max-width: 800px;
  padding: 0 20px;
}
.search-section .search-box-main {
  width: 100%;
  background: rgba(32, 33, 35, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 2px;
}
.search-section .search-box-main .layui-input {
  flex: 1;
  height: 44px;
  background: transparent;
  border: none;
  color: rgba(217, 217, 227, 0.8);
  font-size: 14px;
  padding: 0 16px;
}
.search-section .search-box-main .layui-input::placeholder {
  color: rgba(217, 217, 227, 0.4);
}
.search-section .search-box-main .layui-input:focus {
  outline: none;
}
.search-section .search-box-main .search-btn {
  margin: 2px;
  padding: 0 20px;
  height: 40px;
  background: #2870EA;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.search-section .search-box-main .search-btn:hover {
  background: rgb(63.2309322034, 127.4512711864, 236.2690677966);
}
.search-section .search-box-main .search-btn::before {
  content: "🔍";
  font-size: 14px;
}
@media (max-width: 767px) {
  .search-section {
    padding: 0 15px;
    margin-bottom: 20px;
  }
}

#banner {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}
#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title {
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  position: relative;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.2));
  border-radius: 2px;
}
.section-title .more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}
.section-title .more-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  opacity: 0.5;
}
.section-title .more-link svg {
  transition: transform 0.3s ease;
  position: relative;
  top: -1px;
}
.section-title .more-link:hover {
  color: #fff;
}
.section-title .more-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.section-title .more-link:hover svg {
  transform: translateX(4px);
}
.section-title .search-info {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-top: 8px;
}
.section-title .search-info .result-count {
  color: #fff;
  font-weight: 500;
}
.section-title .search-info .keyword {
  color: #2870EA;
  font-weight: 500;
}
@media (max-width: 767px) {
  .section-title {
    margin: 20px 0 15px;
    padding: 0 5px;
  }
  .section-title h2 {
    font-size: 20px;
  }
  .section-title h2::after {
    bottom: -4px;
    width: 24px;
  }
  .section-title .more-link {
    font-size: 13px;
    padding: 6px 0;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.video-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: scale(1.05);
}
.video-card .video-cover {
  position: relative;
  padding-top: 56.25%;
}
.video-card .video-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-cover .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .video-cover .recommend-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.video-card .video-cover .recommend-tag::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 6px;
  opacity: 0.8;
}
.video-card .video-cover .recommend-tag svg {
  width: 14px;
  height: 14px;
  color: #FFD700;
  filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.5));
  animation: twinkle 1.5s ease-in-out infinite;
}
.video-card .video-info {
  padding: 12px;
}
.video-card .video-info .title {
  font-size: 14px;
  line-height: 1.4;
  height: 2.8em;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  color: #fff;
}
.video-card .video-info .publish-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.video-card:hover .hover-info {
  opacity: 1;
}
.video-card .meta-info {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.video-card .meta-info .publish-time {
  position: relative;
  top: 1px;
}

.side-ad .ad-placeholder {
  background: #2a2a2a;
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
}

.ad-banner {
  margin: 30px 0;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(32, 33, 35, 0.3);
}
@media (max-width: 767px) {
  .ad-banner {
    margin: 20px 0;
  }
}

.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: black;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
}

.pagination-container {
  margin: 30px auto 20px;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-container ul.page-no li.active {
  background: #409EFF;
  font-weight: 600;
  color: white;
  border-color: #409EFF;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #2a2a2a;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s;
  font-size: 0.9rem;
}
.pagination-container ul li:hover:not(.active) {
  background-color: rgba(64, 158, 255, 0.1);
  border-color: #409EFF;
  color: #409EFF;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #409EFF;
  font-weight: 600;
  color: white;
  border-color: #409EFF;
  box-shadow: 0 4px 12px rgba(64, 158, 255, 0.2);
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: inherit;
}
.pagination-container ul li a.active {
  background: #409EFF;
  font-weight: 600;
  color: white;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li:disabled, .pagination-container ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  color: rgba(255, 255, 255, 0.7);
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transform: none;
}
@media (max-width: 767px) {
  .pagination-container {
    margin: 20px auto 15px;
  }
  .pagination-container ul {
    gap: 8px;
  }
  .pagination-container ul li {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .pagination-container ul li a {
    width: 36px;
    height: 36px;
  }
  .pagination-container ul li.page-options {
    width: 60px;
  }
  .pagination-container ul li.page-options a {
    width: 60px;
  }
}

.footer {
  background: rgba(32, 33, 35, 0.95);
  padding: 40px 0 20px;
  margin-top: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.footer .footer-content {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-content .footer-links .link-group h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}
.footer .footer-content .footer-links .link-group .friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.footer .footer-content .footer-links .link-group .friend-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.footer .footer-content .footer-links .link-group .friend-links a:hover {
  color: #fff;
}
.footer .copyright {
  padding-top: 20px;
  text-align: center;
}
.footer .copyright p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0 20px;
    margin-top: 30px;
  }
  .footer .footer-content {
    padding-bottom: 20px;
  }
  .footer .footer-content .footer-links {
    width: 100%;
  }
  .footer .footer-content .footer-links .link-group .friend-links {
    padding: 0 20px;
  }
}

.mobile-menu {
  position: fixed;
  top: 60px;
  right: -280px;
  width: 280px;
  height: calc(100vh - 60px);
  background: rgba(32, 33, 35, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: right 0.3s ease;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .mobile-user-info {
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu .layui-nav {
  background: none;
  width: 100%;
  padding: 10px 0;
}
.mobile-menu .layui-nav .layui-nav-item {
  margin: 4px 0;
}
.mobile-menu .layui-nav .layui-nav-item a {
  color: rgba(217, 217, 227, 0.9);
  padding: 12px 20px;
  font-size: 15px;
  border-radius: 6px;
  margin: 0 8px;
  transition: all 0.2s ease;
  border: none;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-menu .layui-nav .layui-nav-item a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.mobile-menu .layui-nav .layui-nav-item.layui-this a {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 500;
}
.mobile-menu .layui-nav .layui-nav-item.layui-this a:hover {
  background: rgba(255, 255, 255, 0.15);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mobile-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .layui-container {
    padding: 0 10px;
  }
}

.layui-nav .layui-nav-child {
  background-color: #2a2a2a;
}

.layui-nav .layui-nav-child a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.layui-carousel-ind li.layui-this {
  background-color: #409EFF;
}

.layui-carousel-ind li {
  background-color: rgba(255, 255, 255, 0.5);
}

.hot-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hot-video-grid .video-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}
.hot-video-grid .video-card.featured .video-cover {
  padding-top: 66%;
}
.hot-video-grid .video-card.featured .video-cover .hot-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #FF4D4D, #F6416C);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(246, 65, 108, 0.3);
}
.hot-video-grid .video-card.featured .video-cover .hot-tag svg {
  width: 16px;
  height: 16px;
  animation: flame 2s ease-in-out infinite;
}
.hot-video-grid .video-card.featured .video-info {
  padding: 16px;
}
.hot-video-grid .video-card.featured .video-info .title {
  font-size: 16px;
  margin-bottom: 12px;
  -webkit-line-clamp: 2;
}
.hot-video-grid .video-card.featured .video-info .meta-info {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.hot-video-grid .video-card.featured:hover {
  transform: translateY(-2px);
}
@media screen and (max-width: 1200px) {
  .hot-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .hot-video-grid .video-card.featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 767px) {
  .hot-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hot-video-grid .video-card.featured {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .hot-video-grid .video-card.featured .video-cover {
    padding-top: 56.25%;
  }
  .hot-video-grid .video-card.featured .video-info {
    padding: 12px;
  }
  .hot-video-grid .video-card.featured .video-info .title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

@keyframes flame {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 0.9;
    transform: scale(0.95) rotate(5deg);
  }
}
.list-content {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.list-content .list-main {
  flex: 1;
  min-width: 0;
}
.list-content .list-main .list-video-grid {
  grid-template-columns: repeat(4, 1fr);
}
.list-content .side-ad {
  width: 300px;
  flex-shrink: 0;
}
.list-content .side-ad .ad-wrapper {
  position: sticky;
  top: 80px;
}
.list-content .side-ad .ad-wrapper .ad-placeholder {
  width: 100%;
  height: 600px;
  background: rgba(32, 33, 35, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
@media screen and (max-width: 1400px) {
  .list-content .side-ad {
    width: 250px;
  }
  .list-content .side-ad .ad-wrapper .ad-placeholder {
    height: 500px;
  }
}
@media screen and (max-width: 1200px) {
  .list-content .list-main .list-video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .list-content .side-ad {
    width: 100%;
    order: -1;
    margin: 0 0 20px;
  }
  .list-content .side-ad .ad-wrapper {
    position: static;
  }
}
@media (max-width: 767px) {
  .list-content {
    margin: 15px 0;
  }
  .list-content .side-ad {
    width: 100%;
    order: -1;
    margin: 0 15px 20px;
  }
  .list-content .list-main .list-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-video-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 1200px) {
  .list-video-grid {
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .list-video-grid {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.horizontal-ad {
  margin-bottom: 20px;
  width: 100%;
}
.horizontal-ad .ad-wrapper {
  width: 100%;
}
.horizontal-ad .ad-wrapper .ad-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(32, 33, 35, 0.6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
@media (max-width: 767px) {
  .horizontal-ad {
    margin: 0 0 12px;
  }
  .horizontal-ad .ad-placeholder {
    height: 120px;
    border-radius: 8px;
  }
}

.detail-content .video-section {
  margin-bottom: 30px;
  border-radius: 12px;
}
.detail-content .video-section .player-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.detail-content .video-section .video-info {
  margin-top: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}
.detail-content .video-section .video-info .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
}
.detail-content .video-section .video-info .meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
@media (max-width: 767px) {
  .detail-content .video-section {
    margin-bottom: 20px;
  }
  .detail-content .video-section .video-info {
    margin-top: 15px;
    padding: 15px;
  }
  .detail-content .video-section .video-info .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .detail-content .video-section .video-info .meta {
    padding-top: 10px;
  }
}
.detail-content .recommend-section {
  padding: 20px 0;
}
.detail-content .recommend-section h2 {
  font-size: 20px;
  margin-bottom: 20px;
}
.detail-content .recommend-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .detail-content .recommend-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .detail-content .recommend-section {
    padding: 15px 0;
  }
}
.detail-content .recommend-section .video-card {
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.detail-content .recommend-section .video-card:hover {
  transform: scale(1.05);
}
.detail-content .recommend-section .video-card .video-cover {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.detail-content .recommend-section .video-card .video-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-content .recommend-section .video-card .video-cover .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.detail-content .recommend-section .video-card .video-info {
  padding: 12px;
}
.detail-content .recommend-section .video-card .video-info .title {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.detail-content .recommend-section .video-card .video-info .meta-info {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.plyr {
  --plyr-color-main: #409EFF;
  --plyr-video-background: #000;
  --plyr-menu-background: #2a2a2a;
  --plyr-menu-color: #fff;
  --plyr-menu-item-text-color: #fff;
  --plyr-menu-border-color: rgba(255, 255, 255, 0.1);
}
.plyr .plyr__control--overlaid {
  background: rgba(64, 158, 255, 0.8);
}
.plyr .plyr__control--overlaid:hover {
  background: rgba(64, 158, 255, 0.9);
}
.plyr .plyr__control:hover {
  background: rgba(64, 158, 255, 0.8);
}

/*# sourceMappingURL=index.css.map */
