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

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #2c3e50;
}
.header .logo .logo-img {
  height: 32px;
  width: auto;
  margin-right: 10px;
}
.header .logo .logo-text {
  font-size: 20px;
  font-weight: bold;
}
.header .nav-menu .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}
.header .nav-menu .nav-item .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.header .nav-menu .nav-item .nav-link:hover {
  background: #e91e63;
  color: #fff;
}
.header .nav-menu .nav-item.active .nav-link {
  background: #e91e63;
  color: #fff;
}
.header .search-box .search-form {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 25px;
  padding: 5px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.header .search-box .search-form:focus-within {
  border-color: #e91e63;
}
.header .search-box .search-input {
  border: none;
  background: transparent;
  padding: 8px 15px;
  width: 200px;
  outline: none;
  font-size: 14px;
}
.header .search-box .search-input::placeholder {
  color: #666;
}
.header .search-box .search-btn {
  background: #e91e63;
  border: none;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.header .search-box .search-btn:hover {
  background: rgb(193.1174089069, 18.8825910931, 78.1052631579);
}
.header .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  position: relative;
}
.header .hamburger span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  transition: 0.3s;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform-origin: center;
}
.header .hamburger span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-9px);
}
.header .hamburger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-1.5px);
}
.header .hamburger span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) translateY(6px);
}
.header .hamburger.active span:nth-child(1) {
  transform: translateX(-50%) translateY(-1.5px) rotate(-45deg);
}
.header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .hamburger.active span:nth-child(3) {
  transform: translateX(-50%) translateY(-1.5px) rotate(45deg);
}

.main {
  margin-top: 80px;
  padding: 20px 0;
}

.banner-ad {
  margin-bottom: 30px;
}


.friend-links {
  margin-bottom: 40px;
  padding: 30px 0;
  background: #f8f9fa;
  border-radius: 8px;
}
.friend-links .section-header {
  margin-bottom: 20px;
}
.friend-links .section-header .section-title {
  font-size: 24px;
  color: #2c3e50;
  font-weight: bold;
  text-align: center;
}
.friend-links .links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}
.friend-links .link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  background: #fff;
  border-radius: 6px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}
.friend-links .link-item:hover {
  color: #e91e63;
  background: #fff;
  border-color: #e91e63;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.video-section {
  margin-top: 10px;
}
.video-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}
.video-section .section-header .section-title {
  font-size: 28px;
  color: #2c3e50;
  font-weight: bold;
  flex-shrink: 1;
  min-width: 0;
}
.video-section .section-header .more-link {
  color: #e91e63;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(233, 30, 99, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.video-section .section-header .more-link:hover {
  color: #fff;
  background: #e91e63;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}
.video-section .section-header .more-link:hover i {
  transform: translateX(3px);
}
.video-section .section-header .more-link i {
  transition: transform 0.3s ease;
}
.video-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.video-section .video-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.video-section .video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}
.video-section .video-card .video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 100%;
  background: #eee;
}
.video-section .video-card .video-thumbnail .thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  transition: transform 0.3s ease;
}
.video-section .video-card:hover .thumbnail-img {
  transform: scale(1.05);
}
.video-section .video-card .video-info {
  padding: 12px;
}
.video-section .video-card .video-info .video-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 8px 0;
}
.video-section .video-card .video-info .video-tags .tag {
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
}
.video-section .video-card .video-info .video-tags .tag.tag-hot {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
  font-weight: 600;
}
.video-section .video-card .video-info .video-tags .tag.tag-recommend {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.4);
}
.video-section .video-card .video-info .video-tags .tag.tag-duration {
  background: rgba(108, 117, 125, 0.1);
  color: #6c757d;
  border: 1px solid rgba(108, 117, 125, 0.3);
}
.video-section .video-card .video-info .video-desc {
  color: #333;
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.page-header {
  padding: 20px 0 20px 0;
  text-align: center;
}
.page-header .page-title {
  font-size: 32px;
  color: #2c3e50;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.page-header .page-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.video-list-section {
  padding: 20px 0 40px 0;
}

.pagination-wrapper {
  margin-top: 40px;
}
.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pagination-wrapper .pagination .page-btn {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.pagination-wrapper .pagination .page-btn:hover:not(:disabled) {
  background: #e91e63;
  color: #fff;
  border-color: #e91e63;
}
.pagination-wrapper .pagination .page-btn:disabled {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  border-color: #eee;
}
.pagination-wrapper .pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 5px;
}
.pagination-wrapper .pagination .page-numbers .page-num {
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
  transition: all 0.3s ease;
}
.pagination-wrapper .pagination .page-numbers .page-num:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: #e91e63;
  color: #e91e63;
}
.pagination-wrapper .pagination .page-numbers .page-num.active {
  background: #e91e63;
  color: #fff;
  border-color: #e91e63;
}
.pagination-wrapper .pagination .page-numbers .page-dots {
  color: #666;
  padding: 0 5px;
  font-size: 14px;
}
.pagination-wrapper .page-info {
  text-align: center;
  color: #666;
  font-size: 14px;
}
.pagination-wrapper .page-info .total-count,
.pagination-wrapper .page-info .current-page,
.pagination-wrapper .page-info .total-pages {
  color: #e91e63;
  font-weight: 500;
}

.search-section {
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 64, 129, 0.05));
}
.search-section .search-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.search-section .search-header .search-title {
  font-size: 36px;
  color: #2c3e50;
  font-weight: bold;
  margin: 0 0 30px 0;
}
.search-section .search-box-large .search-form-large {
  display: flex;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.search-section .search-box-large .search-form-large .search-input-large {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  outline: none;
  background: transparent;
}
.search-section .search-box-large .search-form-large .search-input-large::placeholder {
  color: #666;
}
.search-section .search-box-large .search-form-large .search-btn-large {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.search-section .search-box-large .search-form-large .search-btn-large:hover {
  background: rgb(193.1174089069, 18.8825910931, 78.1052631579);
}
.search-section .search-box-large .search-form-large .search-btn-large i {
  font-size: 18px;
}

.search-results-section {
  padding: 10px 0 40px 0;
}
.search-results-section .search-info {
  margin-bottom: 30px;
}
.search-results-section .search-info .results-title {
  font-size: 28px;
  color: #2c3e50;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.search-results-section .search-info .results-count {
  font-size: 16px;
  color: #666;
  margin: 0;
}
.search-results-section .search-info .results-count .search-keyword {
  color: #e91e63;
  font-weight: 500;
}
.search-results-section .video-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.empty-state-section {
  padding: 80px 0;
}
.empty-state-section .empty-state {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.empty-state-section .empty-state .empty-icon {
  font-size: 80px;
  color: #666;
  margin-bottom: 20px;
}
.empty-state-section .empty-state .empty-icon i {
  opacity: 0.5;
}
.empty-state-section .empty-state .empty-title {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin: 0 0 10px 0;
}
.empty-state-section .empty-state .empty-desc {
  font-size: 16px;
  color: #666;
  margin: 0 0 30px 0;
}
.empty-state-section .empty-state .empty-btn {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.empty-state-section .empty-state .empty-btn:hover {
  background: rgb(193.1174089069, 18.8825910931, 78.1052631579);
  transform: translateY(-2px);
}

.video-detail-section .detail-layout {
  display: block;
}
.video-detail-section .video-player-area .video-player-wrapper {
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}
.video-detail-section .video-player-area .video-player-wrapper #player {
  width: 100%;
  height: 100%;
}
.video-detail-section .video-player-area .video-player-wrapper .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.8), rgba(255, 64, 129, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-detail-section .video-player-area .video-player-wrapper .video-placeholder:hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.9), rgba(255, 64, 129, 0.9));
}
.video-detail-section .video-player-area .video-player-wrapper .video-placeholder .placeholder-content {
  text-align: center;
  color: #fff;
}
.video-detail-section .video-player-area .video-player-wrapper .video-placeholder .placeholder-content i {
  font-size: 60px;
  margin-bottom: 10px;
  display: block;
}
.video-detail-section .video-player-area .video-player-wrapper .video-placeholder .placeholder-content p {
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}
.video-detail-section .video-player-area .video-simple-info {
  padding: 20px;
  margin: 20px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.video-detail-section .video-player-area .video-simple-info .video-desc {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 15px 0;
}
.video-detail-section .video-player-area .video-simple-info .video-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.video-detail-section .video-player-area .video-simple-info .video-tags .tag {
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.video-detail-section .video-player-area .video-simple-info .video-tags .tag.tag-hot {
  background: linear-gradient(45deg, #ff4444, #ff6666);
  color: #fff;
  box-shadow: 0 2px 4px rgba(255, 68, 68, 0.3);
}
.video-detail-section .video-player-area .video-simple-info .video-tags .tag.tag-recommend {
  background: #e8f5e8;
  color: #4caf50;
  border: 1px solid #4caf50;
}
.video-detail-section .video-player-area .video-simple-info .video-tags .tag.tag-duration {
  background: #f5f5f5;
  color: #666;
  border: 1px solid #ddd;
}

.more-videos-section {
  padding: 40px 0;
}
.more-videos-section .section-header {
  margin-bottom: 30px;
}
.more-videos-section .section-header .section-title {
  font-size: 24px;
  color: #2c3e50;
  font-weight: bold;
  margin: 0;
}

.footer {
  background: #fce4ec;
  color: #2c3e50;
  padding: 30px 0 20px 0;
  margin-top: 60px;
}
.footer .footer-links {
  margin-bottom: 25px;
  text-align: center;
}
.footer .footer-links .links-title {
  font-size: 18px;
  color: #2c3e50;
  font-weight: bold;
  margin: 0 0 15px 0;
}
.footer .footer-links .links-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer .footer-links .links-grid .link-item {
  padding: 6px 12px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  transition: all 0.3s ease;
  border: 1px solid rgba(233, 30, 99, 0.1);
}
.footer .footer-links .links-grid .link-item:hover {
  color: #e91e63;
  background: #fff;
  border-color: #e91e63;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(233, 30, 99, 0.15);
}
.footer .footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(233, 30, 99, 0.1);
  padding-top: 15px;
}
.footer .footer-bottom .copyright {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.video-player {
  border-radius: 8px;
  overflow: hidden;
}
.video-player video {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.iframeBox {
  width: 100%;
  aspect-ratio: 16/9;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.iframeBox .iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

.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: #e91e63;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  color: #666;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}
.pagination-container ul li:hover {
  background-color: #fce4ec;
  color: #e91e63;
  border-color: #e91e63;
}
.pagination-container ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.pagination-container ul li a.active {
  background: #e91e63;
  font-weight: 600;
  color: #fff;
}
.pagination-container ul li.page-options {
  width: 70px;
}
.pagination-container ul li.page-options a {
  width: 70px;
}
.pagination-container ul li.active {
  background: #e91e63;
  color: #fff;
  border-color: #e91e63;
}
@media (max-width: 768px) {
  .pagination-container {
    transform: scale(0.8);
    margin: 20px auto 15px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .main {
    margin-top: 110px;
    padding: 10px 0;
  }
  .header {
    min-height: 100px;
  }
  .header .nav-wrapper {
    padding: 8px 0 5px 0;
    flex-wrap: wrap;
    min-height: 90px;
  }
  .header .logo {
    order: 1;
  }
  .header .logo .logo-img {
    height: 32px;
  }
  .header .logo .logo-text {
    font-size: 20px;
  }
  .header .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    min-height: 200px;
    background: #fff;
    transition: left 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header .nav-menu.active {
    left: 0;
  }
  .header .nav-menu .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }
  .header .nav-menu .nav-list .nav-item {
    margin-bottom: 10px;
  }
  .header .nav-menu .nav-list .nav-item .nav-link {
    display: block;
    padding: 15px;
    border-radius: 8px;
  }
  .header .search-box {
    width: 100%;
    order: 3;
    margin-top: 8px;
  }
  .header .search-box .search-form .search-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
  }
  .header .search-box .search-form .search-btn {
    padding: 8px 12px;
  }
  .header .hamburger {
    display: flex;
    order: 2;
  }
  .banner-ad {
    margin-bottom: 20px;
  }
  .search-section {
    padding: 30px 0;
  }
  .search-section .search-header .search-title {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .search-section .search-box-large .search-form-large {
    border-radius: 25px;
  }
  .search-section .search-box-large .search-form-large .search-input-large {
    padding: 14px 20px;
    font-size: 14px;
  }
  .search-section .search-box-large .search-form-large .search-btn-large {
    padding: 14px 20px;
    font-size: 14px;
  }
  .search-section .search-box-large .search-form-large .search-btn-large span {
    display: none;
  }
  .search-results-section {
    padding: 5px 0 30px 0;
  }
  .search-results-section .search-info {
    margin-bottom: 20px;
  }
  .search-results-section .search-info .results-title {
    font-size: 24px;
  }
  .search-results-section .search-info .results-count {
    font-size: 14px;
  }
  .search-results-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .empty-state-section {
    padding: 60px 0;
  }
  .empty-state-section .empty-state .empty-icon {
    font-size: 60px;
    margin-bottom: 15px;
  }
  .empty-state-section .empty-state .empty-title {
    font-size: 20px;
  }
  .empty-state-section .empty-state .empty-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .empty-state-section .empty-state .empty-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  .video-detail-section {
    padding: 10px 0;
  }
  .video-detail-section .detail-layout {
    display: block;
  }
  .video-detail-section .video-player-area .video-simple-info {
    margin: 15px 0;
    padding: 15px;
  }
  .video-detail-section .video-player-area .video-simple-info .video-desc {
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 12px 0;
  }
  .video-detail-section .video-player-area .video-simple-info .video-tags {
    gap: 8px;
  }
  .video-detail-section .video-player-area .video-simple-info .video-tags .tag {
    font-size: 11px;
    padding: 4px 8px;
    min-height: 18px;
  }
  .more-videos-section {
    padding: 30px 0;
  }
  .more-videos-section .section-header {
    margin-bottom: 20px;
  }
  .more-videos-section .section-header .section-title {
    font-size: 20px;
  }
 
  .footer .footer-links .links-grid {
    gap: 8px;
  }
  .footer .footer-links .links-grid .link-item {
    font-size: 12px;
    padding: 5px 10px;
  }
  .video-section {
    margin-bottom: 30px;
  }
  .video-section .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .video-section .video-card .video-info {
    padding: 15px;
  }
  .video-section .video-card .video-info .video-desc {
    font-size: 14px;
    color: #333;
    -webkit-line-clamp: 2;
    margin: 0 0 10px 0;
  }
  .video-section .video-card .video-info .video-tags {
    gap: 8px;
  }
  .video-section .video-card .video-info .video-tags .tag {
    font-size: 11px;
    padding: 4px 8px;
    min-height: 18px;
  }
  .video-section .section-header {
    margin-bottom: 20px;
  }
  .video-section .section-header .section-title {
    font-size: 24px;
  }
  .footer {
    margin-top: 40px;
  }
  .footer .footer-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-header {
    padding: 30px 0 15px 0;
  }
  .page-header .page-title {
    font-size: 24px;
  }
  .page-header .page-subtitle {
    font-size: 14px;
  }
  .video-list-section {
    padding: 15px 0 30px 0;
  }
  .pagination-wrapper {
    margin-top: 30px;
  }
  .pagination-wrapper .pagination {
    flex-wrap: wrap;
    gap: 8px;
  }
  .pagination-wrapper .pagination .page-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .pagination-wrapper .pagination .page-numbers {
    gap: 3px;
  }
  .pagination-wrapper .pagination .page-numbers .page-num {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 36px;
  }
  .pagination-wrapper .page-info {
    font-size: 13px;
    margin-top: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .video-card .video-info {
    padding: 14px;
  }
  .video-card .video-info .video-desc {
    font-size: 14px;
    color: #333;
    -webkit-line-clamp: 2;
    margin: 0 0 10px 0;
  }
  .video-card .video-info .video-tags {
    gap: 8px;
  }
  .video-card .video-info .video-tags .tag {
    font-size: 11px;
    padding: 4px 8px;
    min-height: 18px;
  }
  .friend-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .search-box .search-form .search-input {
    width: 180px;
  }
  .page-header .page-title {
    font-size: 28px;
  }
  .pagination-wrapper .pagination .page-btn {
    padding: 7px 14px;
  }
  .pagination-wrapper .pagination .page-numbers .page-num {
    padding: 7px 11px;
    min-width: 38px;
  }
  .search-results-section .video-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .video-detail-section .detail-layout {
    display: block;
  }
  .video-detail-section .video-player-area .video-simple-info {
    margin: 18px 0;
    padding: 18px;
  }
  .video-detail-section .video-player-area .video-simple-info .video-desc {
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 13px 0;
  }
  .video-detail-section .video-player-area .video-simple-info .video-tags {
    gap: 9px;
  }
  .video-detail-section .video-player-area .video-simple-info .video-tags .tag {
    font-size: 11px;
    padding: 4px 10px;
    min-height: 20px;
  }
}

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