* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  color: #2c2c2c;
  background-color: #fff5f8;
}
body.menu-open {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 30px;
}
.header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.header .logo img {
  height: 40px;
  width: auto;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header .nav .nav-item {
  text-decoration: none;
  color: #666;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}
.header .nav .nav-item:hover, .header .nav .nav-item.active {
  color: #ff6b81;
  background: rgba(255, 107, 129, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
  margin-left: 15px;
  z-index: 1000;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s;
}
.hamburger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.main {
  padding: 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: #ff6b81;
  font-weight: 600;
  color: white;
  border-color: #ff6b81;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  color: #666;
  border: 1px solid #eee;
  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(255, 107, 129, 0.05);
  border-color: #ff6b81;
  color: #ff6b81;
  transform: translateY(-1px);
}
.pagination-container ul li.active {
  background: #ff6b81;
  font-weight: 600;
  color: white;
  border-color: #ff6b81;
  box-shadow: 0 4px 12px rgba(255, 107, 129, 0.3);
}
.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: #ff6b81;
  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: #999;
}
.pagination-container ul li:disabled:hover, .pagination-container ul li.disabled:hover {
  background-color: #fff;
  border-color: #eee;
  color: #999;
  transform: none;
}
@media (max-width: 768px) {
  .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;
  }
}

.recommended {
  margin-bottom: 40px;
}
.recommended .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.recommended .section-header h2 {
  font-size: 20px;
  color: #333;
}
.recommended .section-header .more {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.recommended .section-header .more:hover {
  color: #ff6b81;
}
.recommended .video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.banner {
  margin-bottom: 30px;
  margin-top: 30px;
  background: #fff0f5;
}
.banner .banner-wrapper {
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
}
.banner .banner-container {
  width: 100%;
  position: relative;
  background: linear-gradient(to right, #fff0f5, #fff5f8, #fff0f5);
}
.banner .banner-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}
.banner .banner-container > *:first-child {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  position: relative;
}
.banner .banner-container > * img {
  width: 100%;
  height: auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}
.video-card:hover {
  transform: translateY(-5px);
}
.video-card .video-thumb {
  position: relative;
  padding-top: 56.25%;
}
.video-card .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-card .video-thumb .duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .video-info {
  padding: 10px;
}
.video-card .video-info .video-title {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.video-card .video-info .video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #666;
}
.video-card .video-info .video-meta .tags {
  display: flex;
  gap: 5px;
}
.video-card .video-info .video-meta .tags .tag {
  padding: 2px 6px;
  background: rgba(255, 107, 129, 0.1);
  color: #ff6b81;
  border-radius: 4px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: 24px;
  font-weight: 600;
}
.section-header .more {
  color: #ff6b9d;
  text-decoration: none;
}
.section-header .more:hover {
  text-decoration: underline;
}

.ad-section {
  margin: 40px 0;
}
.ad-section .ad-banner {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ad-banner {
  margin-bottom: 30px;
}
.ad-banner .container {
  max-width: 1200px;
  margin: 0 auto;
}
.ad-banner .ad-link {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.ad-banner .ad-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.ad-banner .ad-link img:hover {
  transform: scale(1.02);
}

.footer {
  background: #fafafa;
  padding: 40px 0 20px;
  color: #666;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer .footer-links {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer .footer-links h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 15px;
}
.footer .footer-links .links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer .footer-links .links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-links .links a:hover {
  color: #ff6b81;
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.latest .video-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.search-section {
  padding: 20px 0;
  background-color: #fff;
  margin-bottom: 20px;
}
.search-section .search-box {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 10px;
}
.search-section .search-box .search-input {
  flex: 1;
  height: 40px;
  padding: 0 15px;
  border: 2px solid #ff6b81;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}
.search-section .search-box .search-input:focus {
  border-color: rgb(255, 56, 85.5810810811);
  box-shadow: 0 0 5px rgba(255, 107, 129, 0.3);
}
.search-section .search-box .search-btn {
  padding: 0 25px;
  height: 40px;
  background-color: #ff6b81;
  border: none;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-section .search-box .search-btn:hover {
  background-color: rgb(255, 56, 85.5810810811);
}

.search-results {
  padding: 40px 0;
}
.search-results .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.search-results .section-header h2 {
  font-size: 24px;
  color: #333;
}
.search-results .section-header .result-info {
  color: #666;
  font-size: 14px;
}
.search-results .section-header .result-info .result-count {
  color: #ff6b81;
  font-weight: bold;
}
.search-results .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.filter-section {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.filter-section .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.filter-section .filter-group {
  display: flex;
  align-items: center;
  gap: 15px;
}
.filter-section .filter-group .filter-label {
  font-size: 16px;
  color: #666;
  white-space: nowrap;
}
.filter-section .filter-group .filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-section .filter-group .filter-option {
  padding: 6px 16px;
  border-radius: 20px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
  background: #f5f5f5;
}
.filter-section .filter-group .filter-option:hover {
  background: #ffeaed;
  color: #ff6b81;
}
.filter-section .filter-group .filter-option.active {
  background: #ff6b81;
  color: #fff;
}

.video-list-section {
  padding: 30px 0;
}
.video-list-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.pagination .page-item,
.pagination .page-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: 18px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s;
}
.pagination .page-item:hover,
.pagination .page-next:hover {
  background: #f5f5f5;
  color: #ff6b81;
}
.pagination .page-item.active,
.pagination .page-next.active {
  background: #ff6b81;
  color: #fff;
}
.pagination .page-dots {
  color: #999;
  padding: 0 4px;
}
.pagination .page-next {
  padding: 0 20px;
}

@media (max-width: 1200px) {
  .video-list-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .header .container {
    padding: 10px 15px;
    gap: 20px;
  }
  .header .logo img {
    height: 32px;
  }
  .header .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 999;
  }
  .header .nav.active {
    display: flex;
  }
  .header .nav .nav-item {
    font-size: 18px;
    padding: 12px 24px;
  }
  .header .nav .nav-item:hover, .header .nav .nav-item.active {
    background: rgba(255, 107, 129, 0.1);
    transform: scale(1.05);
  }
  .header .hamburger {
    display: flex;
  }
  .ad-banner {
    padding: 15px;
  }
  .ad-banner .ad-link {
    border-radius: 8px;
  }
  .video-list-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .pagination {
    gap: 4px;
  }
  .pagination .page-item,
  .pagination .page-next {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination .page-next {
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .header .search-box {
    display: none;
  }
  .video-grid,
  .latest .video-grid {
    gap: 10px;
  }
  .section-header h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  .recommended .video-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .latest .video-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .search-results .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .recommended .video-grid,
  .latest .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .video-card .video-info {
    padding: 8px;
  }
  .video-card .video-info .video-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .video-card .video-info .video-meta {
    font-size: 11px;
  }
  .search-section {
    padding: 20px 0;
  }
  .search-section .search-box {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .search-section .search-box input {
    flex: 1;
    min-width: 0;
    padding: 12px 20px;
    font-size: 14px;
  }
  .search-section .search-box button {
    width: auto;
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
  }
  .search-results {
    padding: 20px 0;
  }
  .search-results .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  .search-results .section-header h2 {
    font-size: 20px;
  }
  .search-results .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pagination {
    gap: 4px;
  }
  .pagination .page-item,
  .pagination .page-next {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .pagination .page-next {
    padding: 0 15px;
  }
}
.video-player-section {
  margin-bottom: 40px;
}
.video-player-section .video-container {
  position: relative;
  background: #000;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.video-player-section .video-description {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.video-player-section .video-description .description-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.video-player-section .video-description .description-header h3 {
  font-size: 18px;
  color: #333;
}
.video-player-section .video-description .description-header .toggle-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 5px;
}
.video-player-section .video-description .description-header .toggle-btn:hover {
  color: #ff6b81;
}
.video-player-section .video-description .description-header .toggle-btn i {
  font-size: 16px;
  transition: transform 0.3s;
}
.video-player-section .video-description .description-header .toggle-btn i.layui-icon-up {
  transform: rotate(180deg);
}
.video-player-section .video-description .description-content {
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.video-player-section .video-description .description-content p {
  margin-bottom: 10px;
}
.video-player-section .video-description .description-content ul {
  margin: 10px 0;
  padding-left: 20px;
}
.video-player-section .video-description .description-content ul li {
  margin-bottom: 5px;
}
.video-player-section .video-description .description-content .tags {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}
.video-player-section .video-description .description-content .tags .tag {
  padding: 4px 12px;
  background: rgba(255, 107, 129, 0.1);
  color: #ff6b81;
  border-radius: 15px;
  font-size: 12px;
}

.recommended-videos .section-header {
  margin-bottom: 20px;
}
.recommended-videos .section-header h2 {
  font-size: 20px;
  color: #333;
}
.recommended-videos .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .recommended-videos .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .video-player-section {
    margin-bottom: 20px;
  }
  .video-player-section .video-description {
    padding: 15px;
  }
  .video-player-section .video-description .description-header h3 {
    font-size: 16px;
  }
  .recommended-videos .section-header h2 {
    font-size: 18px;
  }
  .recommended-videos .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

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