@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: #FFFFFF;
  color: #1E293B;
  line-height: 1.6;
  font-size: 16px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563EB;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-up {
  animation: fadeInUp 0.5s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.5s ease-out;
}

.header {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.header .header-content {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.header .logo img {
  height: 36px;
}
.header .logo .site-name {
  font-size: 20px;
  font-weight: 600;
  color: #2563EB;
}
.header .nav-menu {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .header .nav-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .header .nav-menu.active {
    display: flex;
  }
}
.header .nav-menu .nav-link {
  color: #1E293B;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
}
.header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.1);
}
@media (max-width: 768px) {
  .header .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }
  .header .nav-menu .nav-link:hover, .header .nav-menu .nav-link.active {
    background: rgba(37, 99, 235, 0.1);
  }
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 20px;
  cursor: pointer;
  z-index: 100;
}
.header .menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1E293B;
  transition: all 0.3s ease;
}
.header .menu-toggle.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header .menu-toggle.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
@media (max-width: 768px) {
  .header .menu-toggle {
    display: flex;
  }
}

.main-content {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

.search-section {
  padding: 40px 0;
  background: white;
  border-bottom: 1px solid #E2E8F0;
}
.search-section .search-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .search-section .search-layout {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.search-section .search-text h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1E293B;
  margin-bottom: 8px;
}
.search-section .search-text p {
  color: #475569;
  font-size: 16px;
}
.search-section .search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 400px;
}
@media (max-width: 768px) {
  .search-section .search-input {
    min-width: 100%;
  }
}
.search-section .search-input input {
  flex: 1;
  height: 48px;
  padding: 0 20px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s;
}
.search-section .search-input input:focus {
  border-color: #2563EB;
  outline: none;
}
.search-section .search-input .search-btn {
  width: 48px;
  height: 48px;
  background: #2563EB;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.search-section .search-input .search-btn i {
  font-size: 20px;
}
.search-section .search-input .search-btn:hover {
  background: rgb(20.7142857143, 84.9285714286, 225.7857142857);
}

@media (max-width: 768px) {
  .search-section {
    padding: 30px 0;
  }
  .search-section .search-wrapper {
    padding: 15px;
  }
  .search-section .search-title {
    font-size: 24px;
  }
  .search-section .search-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .search-section .search-box {
    flex-direction: column;
    border-radius: 12px;
    padding: 4px;
  }
  .search-section .search-box input {
    padding: 10px 20px;
    text-align: center;
  }
  .search-section .search-box .search-btn {
    width: 100%;
    padding: 10px;
  }
}
.main-wrapper {
  display: flex;
  gap: 30px;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.main-wrapper .container {
  flex: 1;
  min-width: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .main-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .main-wrapper {
    padding: 0 10px;
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  border: 1px solid #E2E8F0;
  cursor: pointer;
}
.video-card .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 11/8;
  background: #F1F5F9;
  overflow: hidden;
  flex-shrink: 0;
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card .video-thumbnail .video-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 2px 6px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 12px;
}
.video-card .video-info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px 8px 10px 8px;
  min-height: 48px;
  box-sizing: border-box;
}
.video-card .video-info .video-title {
  font-size: 14px;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2.6em;
  max-height: 2.6em;
}
.video-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #2563EB;
}
.video-card:hover .video-title {
  color: #2563EB;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .masonry-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}
.section-header .header-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.section-header .header-left h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  margin: 0;
}
.section-header .header-right {
  flex: 1;
  max-width: 400px;
}
.section-header .header-right .search-layout {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-header .header-right .search-layout .search-input {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.section-header .header-right .search-layout .search-input input {
  flex: 1;
  height: 36px;
  padding: 0 12px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s;
}
.section-header .header-right .search-layout .search-input input:focus {
  border-color: #2563EB;
  outline: none;
}
.section-header .header-right .search-layout .search-input .search-btn {
  width: 36px;
  height: 36px;
  background: #2563EB;
  border: none;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.section-header .header-right .search-layout .search-input .search-btn i {
  font-size: 16px;
}
.section-header .header-right .search-layout .search-input .search-btn:hover {
  background: rgb(20.7142857143, 84.9285714286, 225.7857142857);
}
@media (max-width: 768px) {
  .section-header {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .section-header .header-left {
    flex-shrink: 0;
  }
  .section-header .header-left h2 {
    font-size: 20px;
  }
  .section-header .header-right {
    max-width: 200px;
  }
  .section-header .header-right .search-layout .search-input input {
    height: 32px;
    padding: 0 8px;
    font-size: 12px;
  }
  .section-header .header-right .search-layout .search-input .search-btn {
    width: 32px;
    height: 32px;
  }
  .section-header .header-right .search-layout .search-input .search-btn i {
    font-size: 14px;
  }
}

.featured-section {
  margin-bottom: 40px;
}

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

.sidebar-ads {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sidebar-ads {
    width: 100%;
  }
}
.content-ad {
  margin: 40px 0;
  padding: 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}
.content-ad .ad-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 6px;
}

.footer {
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
  padding: 40px 0 20px;
  margin-top: 60px;
}
.footer .footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer .footer-links {
  background: #f7f9fa;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.footer .footer-links .link-label {
  font-weight: bold;
  color: #2563EB;
  margin-right: 12px;
  font-size: 15px;
}
.footer .footer-links .link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.footer .footer-links .footer-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  background: #fff;
  border-radius: 8px;
  color: #1E293B;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  position: relative;
}
.footer .footer-links .footer-link::before {
  content: "🔗"; /* 🔗 */
  font-size: 13px;
  margin-right: 2px;
  opacity: 0.7;
}
.footer .footer-links .footer-link:hover {
  background: #2563EB;
  color: #fff;
  border-color: #2563EB;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}
@media (max-width: 768px) {
  .footer .footer-links {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 10px;
  }
  .footer .footer-links .link-list {
    gap: 8px;
  }
  .footer .footer-links .footer-link {
    font-size: 13px;
    padding: 5px 12px;
  }
}
.footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
  color: #64748B;
  font-size: 14px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #2563EB;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}
.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background: #1D4ED8;
}
.back-to-top i {
  font-size: 18px;
}

.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 0;
  display: flex;
  justify-content: center;
}
.pagination-container ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #f5f5f5;
  border-radius: 100px;
  padding: 4px;
}
.pagination-container ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 14px;
  color: #1E293B;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s ease;
}
.pagination-container ul li a:hover {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.1);
}
.pagination-container ul li a.active {
  background: #2563EB;
  color: white;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}
.pagination-container ul li a.no-page {
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}
.pagination-container ul li a.no-page:hover {
  background: none;
  color: #999;
}
.pagination-container ul li.page-options a {
  padding: 0 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pagination-container {
    margin: 20px 0;
  }
  .pagination-container ul {
    gap: 1px;
    padding: 3px;
  }
  .pagination-container ul li a {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .pagination-container ul li.page-options a {
    padding: 0 15px;
  }
}

.video-player-section {
  margin-bottom: 30px;
}
.video-player-section .video-player {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0;
}
.video-player-section .video-info {
  margin-top: 18px;
}
.video-player-section .video-info .video-title {
  font-size: 22px;
  font-weight: bold;
  color: #1E293B;
  margin-bottom: 10px;
  line-height: 1.3;
}
.video-player-section .video-info .video-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-tags .tag {
  display: inline-block;
  padding: 3px 14px;
  font-size: 13px;
  border-radius: 100px;
  background: #f5f5f5;
  color: #2563EB;
  font-weight: 500;
}
.video-player-section .video-info .video-tags .tag.hot {
  background: #ffeaea;
  color: #e53e3e;
}
.video-player-section .video-info .video-tags .tag.recommend {
  background: #eaf6ff;
  color: #2563eb;
}
.video-player-section .video-info .video-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: #475569;
  flex-wrap: wrap;
}
.video-player-section .video-info .video-meta .views, .video-player-section .video-info .video-meta .date {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .video-player-section .video-info .video-title {
    font-size: 18px;
  }
  .video-player-section .video-info .video-tags {
    gap: 6px;
  }
  .video-player-section .video-info .video-tags .tag {
    font-size: 12px;
    padding: 2px 10px;
  }
  .video-player-section .video-info .video-meta {
    gap: 10px;
    font-size: 12px;
  }
}

.related-section .section-header {
  margin-bottom: 20px;
}
.related-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .related-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .related-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.search-result-section .result-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #E2E8F0;
}
.search-result-section .result-header .result-info .keyword-info .label {
  font-size: 14px;
  color: #475569;
}
.search-result-section .result-header .result-info .keyword-info .keyword {
  font-size: 16px;
  font-weight: 600;
  color: #2563EB;
}
.search-result-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .search-result-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .search-result-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .header-content {
    height: 60px;
  }
  .header .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
  .header .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  .header .nav-menu .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  .header .menu-toggle {
    display: flex;
  }
  .main-content {
    margin-top: 60px;
  }
  .search-section {
    padding: 40px 0 30px;
  }
  .search-section .search-box {
    flex-direction: column;
    gap: 12px;
  }
  .search-section .search-box input {
    padding: 12px 16px;
  }
  .search-section .search-box .search-btn {
    width: 100%;
    justify-content: center;
  }
  .main-wrapper {
    padding: 20px 10px;
  }
  .section-header {
    gap: 12px;
    align-items: flex-start;
  }
  .section-header h2 {
    font-size: 20px;
  }
  .video-card .video-info {
    padding: 12px;
  }
  .video-card .video-info .video-title {
    font-size: 14px;
  }
  .video-card .video-info .video-meta {
    font-size: 12px;
    gap: 12px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
.plyr--video {
  border-radius: 8px;
  --plyr-color-main: #2563EB;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #E2E8F0;
  border-top: 4px solid #2563EB;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.video-list-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}
.video-list-section .section-title h1 {
  font-size: 28px;
  font-weight: bold;
  color: #1E293B;
  margin-bottom: 10px;
}
.video-list-section .section-title p {
  font-size: 16px;
  color: #475569;
}
@media screen and (max-width: 768px) {
  .video-list-section .section-title {
    margin-bottom: 20px;
  }
  .video-list-section .section-title h1 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .video-list-section .section-title p {
    font-size: 14px;
  }
}
.video-list-section .masonry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .video-list-section .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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