/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
/* 顶部UI - 自适应 */
a {
  text-decoration: none;
}
:root {
  --thkm-primary: #8ac471;
  --thkm-secondary: #bab570;
  --thkm-accent: #8c5565;
  --thkm-text: #ffffff;
  --thkm-text-secondary: #e0e0e0;
  --thkm-metal-light: rgba(192, 192, 210, 0.3);
  --thkm-metal-highlight: rgba(255, 255, 255, 0.8);
  --thkm-footer-bg: #95aa4c;
  --thkm-footer-border: rgba(255, 255, 255, 0.08);
}

/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 主要容器 */
.thkm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  align-items: center;
}

/* 头部区域 */
.thkm-header {
  background: linear-gradient(135deg, var(--thkm-primary), var(--thkm-secondary));
  position: relative;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

/* Logo 区域 */
.thkm-logo-wrapper {
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 5px;
}

.thkm-logo {
  color: var(--thkm-text);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  padding: 15px 0;
  position: relative;
  z-index: 2;
}

.thkm-logo-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--thkm-metal-highlight), transparent);
  transform: translateX(-100%);
  animation: thkm-flow 3s infinite;
}

/* 搜索表单 */
.thkm-search-form {
  flex-grow: 1;
  margin: 0 20px;
  max-width: 500px;
}

.thkm-search-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.thkm-search-wrapper:hover, 
.thkm-search-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.thkm-search-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: var(--thkm-text);
  font-size: 1rem;
  outline: none;
}

.thkm-search-input::placeholder {
  color: var(--thkm-text-secondary);
  opacity: 0.7;
}

.thkm-search-btn {
  background: transparent;
  border: none;
  padding: 0 15px;
  color: var(--thkm-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem; /* 增加字体大小使特殊符号更明显 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.thkm-search-btn:hover {
  color: var(--thkm-accent);
}

.thkm-search-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 200%;
  background: linear-gradient(90deg, transparent, var(--thkm-metal-highlight), transparent);
  transform: translateX(-50%);
  animation: thkm-flow 4s infinite;
}

/* 用户按钮 */
.thkm-user {
  position: relative;
  margin-left: auto;
}

.thkm-user-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  background-color: rgba(138,196,113,0.85);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.thkm-user-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2px;
}

.thkm-user-link:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.thkm-user-liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 60%, var(--thkm-metal-highlight) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thkm-user-link:hover .thkm-user-liquid {
  opacity: 0.5;
  animation: thkm-pulse 2s infinite;
}

/* 导航栏 */
.thkm-nav {
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.thkm-nav::-webkit-scrollbar {
  display: none;
}

.thkm-nav .thkm-container {
  justify-content: flex-start;
  flex-wrap: nowrap;
  padding: 0;
}

.thkm-nav-item {
  position: relative;
  margin-right: 5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.thkm-nav-item a {
  display: block;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  padding: 12px 15px;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.thkm-nav-item:hover a,
.thkm-nav-active a {
  color: var(--thkm-text);
}

.thkm-nav-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.thkm-nav-item:hover .thkm-nav-liquid,
.thkm-nav-active .thkm-nav-liquid {
  transform: scaleX(1);
}

.thkm-nav-active {
  background: rgba(255, 255, 255, 0.1);
}

.thkm-nav-active .thkm-nav-liquid {
  background: var(--thkm-accent);
  height: 3px;
  transform: scaleX(1);
}

/* 页面包装器 */
.thkm-page-wrapper {
  min-height: 100vh;
  background: var(--thkm-primary);
  color: var(--thkm-text);
  display: flex;
  flex-direction: column;
}

/* 内容区域 */
.thkm-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
  flex: 1 0 auto;
}

/* 轮播区域 */
.thkm-banner-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to bottom, var(--thkm-secondary), var(--thkm-primary));
}

.thkm-slider-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.thkm-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thkm-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.thkm-slide.thkm-active .thkm-slide-bg img {
  transform: scale(1.05);
}

.thkm-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
    rgba(0, 0, 0, 0.9) 0%, 
    rgba(0, 0, 0, 0.6) 30%, 
    rgba(0, 0, 0, 0.3) 60%, 
    rgba(0, 0, 0, 0) 100%);
}

.thkm-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.thkm-slide.thkm-active .thkm-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.thkm-slide-title {
  color: var(--thkm-text);
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thkm-slide-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 20px;
}

.thkm-slide-score {
  display: flex;
  align-items: center;
  color: #ffc107;
}

.thkm-slide-score span:first-child {
  margin-right: 8px;
}

.thkm-slide-area {
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.thkm-slide-area a {
  color: var(--thkm-text);
  text-decoration: none;
}

.thkm-slide-desc {
  color: var(--thkm-text-secondary);
  font-size: 1.1rem;
  max-width: 60%;
  line-height: 1.5;
  margin-bottom: 25px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.thkm-slide-actions {
  display: flex;
  gap: 15px;
}

.thkm-slide-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--thkm-text);
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-play-btn {
  background: var(--thkm-accent);
}

.thkm-info-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.thkm-slide-btn i {
  margin-right: 8px;
}

.thkm-btn-liquid {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  pointer-events: none;
}

.thkm-slide-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-wide 8s infinite;
}

.thkm-slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 5;
}

.thkm-slider-prev,
.thkm-slider-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.thkm-slider-prev:hover,
.thkm-slider-next:hover {
  opacity: 1;
  background: var(--thkm-accent);
  transform: scale(1.1);
}

.thkm-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.thkm-indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.thkm-indicator-dot.thkm-active,
.thkm-indicator-dot:hover {
  background: var(--thkm-accent);
  transform: scale(1.2);
}

/* 分类区域样式增强 */
.thkm-section {
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.thkm-section-visible {
  opacity: 1;
  transform: translateY(0);
}

.thkm-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.thkm-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--thkm-text);
  position: relative;
}

.thkm-section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--thkm-accent);
  transition: width 0.5s ease;
}

.thkm-section-title.thkm-title-animated::after {
  width: 50px;
}

.thkm-section-subtitle {
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
  margin-top: 5px;
}

.thkm-section-more {
  position: relative;
}

.thkm-section-more a {
  display: flex;
  align-items: center;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.thkm-section-more a:hover {
  color: var(--thkm-text);
}

.thkm-section-more a span:first-child {
  margin-right: 5px;
}

.thkm-section-liquid {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--thkm-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.thkm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.thkm-vod-item {
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.thkm-item-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 站长推荐区域 */
.thkm-featured-section {
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin: 40px 0;
}

.thkm-featured-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-wide 8s infinite;
}

.thkm-featured-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-wide 8s infinite reverse;
}

.thkm-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
}

.thkm-featured-item {
  position: relative;
  transition: all 0.3s ease;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .thkm-banner-slider {
    height: 450px;
  }
  
  .thkm-slide-title {
    font-size: 2.2rem;
  }
  
  .thkm-slide-desc {
    max-width: 70%;
  }
}

@media (max-width: 992px) {
  .thkm-banner-slider {
    height: 400px;
  }
  
  .thkm-slide-title {
    font-size: 2rem;
  }
  
  .thkm-slide-desc {
    max-width: 80%;
  }
  
  .thkm-slide-content {
    padding: 30px;
  }
  
  .thkm-video-grid,
  .thkm-featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .thkm-banner-slider {
    height: 350px;
  }
  
  .thkm-slide-title {
    font-size: 1.8rem;
  }
  
  .thkm-slide-desc {
    max-width: 100%;
    -webkit-line-clamp: 2;
    font-size: 1rem;
  }
  
  .thkm-slide-content {
    padding: 25px;
  }
  
  .thkm-slider-nav {
    padding: 0 10px;
  }
  
  .thkm-slider-prev,
  .thkm-slider-next {
    width: 40px;
    height: 40px;
  }
  
  .thkm-section-title {
    font-size: 1.3rem;
  }
  
  .thkm-video-grid,
  .thkm-featured-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .thkm-featured-section {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .thkm-banner-slider {
    height: 300px;
    border-radius: 8px;
  }
  
  .thkm-slide-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .thkm-slide-info {
    margin-bottom: 10px;
  }
  
  .thkm-slide-desc {
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
  
  .thkm-slide-content {
    padding: 20px;
  }
  
  .thkm-slide-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .thkm-slider-prev,
  .thkm-slider-next {
    width: 35px;
    height: 35px;
  }
  
  .thkm-indicator-dot {
    width: 8px;
    height: 8px;
  }
  
  .thkm-video-grid,
  .thkm-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .thkm-featured-section {
    padding: 15px;
  }
}

/* 全局动画 */
@keyframes thkm-flow-wide {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 视频列表部分 */
.thkm-video-sections {
  margin-top: 30px;
}

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

.thkm-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.thkm-section-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--thkm-text);
  position: relative;
}

.thkm-section-title::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--thkm-accent);
}

.thkm-section-more {
  position: relative;
}

.thkm-section-more a {
  display: flex;
  align-items: center;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.thkm-section-more a:hover {
  color: var(--thkm-text);
}

.thkm-section-more a span:first-child {
  margin-right: 5px;
}

.thkm-section-liquid {
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-metal-highlight), transparent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.thkm-section-more:hover .thkm-section-liquid {
  transform: scaleX(1);
}

/* 视频网格布局 */
.thkm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

/* 视频项目卡片 */
.thkm-vod-item {
  text-decoration: none;
  color: var(--thkm-text);
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.thkm-vod-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  height: 100%; 
  width: 182px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thkm-vod-item:hover .thkm-vod-card {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.thkm-vod-poster {
  position: relative;
  padding-top: 140%;
  overflow: hidden;
}

.thkm-vod-poster img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-vod-item:hover .thkm-vod-poster img {
  transform: scale(1.05);
}

.thkm-vod-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
}

.thkm-vod-liquid-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-metal-highlight), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-vod-liquid-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--thkm-metal-highlight), transparent);
  transform: translateY(-100%);
  transition: transform 0.6s ease;
}

.thkm-vod-item:hover .thkm-vod-liquid-top {
  transform: translateX(100%);
}

.thkm-vod-item:hover .thkm-vod-liquid-right {
  transform: translateY(100%);
}

.thkm-vod-lang {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 6px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--thkm-text);
  z-index: 2;
}

.thkm-vod-meta {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
}

.thkm-vod-hits {
  display: flex;
  align-items: center;
  color: var(--thkm-text-secondary);
  font-size: 0.8rem;
}

.thkm-vod-hits span:first-child {
  margin-right: 4px;
  color: #ff5722;
}

.thkm-vod-score {
  font-weight: bold;
  color: #ffc107;
  font-size: 0.9rem;
}

.thkm-vod-info {
  padding: 12px;
}

.thkm-vod-title {
  font-size: 1rem;
  margin: 0 0 5px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thkm-vod-actor {
  font-size: 0.8rem;
  color: var(--thkm-text-secondary);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thkm-vod-hover-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.thkm-vod-item:hover .thkm-vod-hover-info {
  opacity: 1;
}

.thkm-vod-desc {
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.thkm-vod-play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--thkm-accent);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.thkm-vod-play-btn span:first-child {
  margin-right: 5px;
}

.thkm-vod-play-btn:hover {
  background: #3a67ff;
  transform: scale(1.05);
}

/* 筛选区域 */
.thkm-filter-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.thkm-filter-group {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.thkm-filter-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.thkm-filter-label {
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--thkm-text);
}

.thkm-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thkm-filter-item {
  position: relative;
  overflow: hidden;
}

.thkm-filter-item a {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.thkm-filter-item:hover a,
.thkm-filter-active a {
  color: var(--thkm-text);
  background: rgba(74, 118, 253, 0.3);
}

.thkm-filter-active a {
  background: var(--thkm-accent);
}

.thkm-filter-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-metal-highlight), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-filter-item:hover .thkm-filter-liquid {
  transform: translateX(100%);
}

/* 排序栏 */
.thkm-sort-bar {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.thkm-sort-item {
  position: relative;
  flex: 1;
  text-align: center;
  overflow: hidden;
}

.thkm-sort-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.thkm-sort-item a .iconfont {
  margin-left: 5px;
  font-size: 0.8rem;
}

.thkm-sort-item:hover a,
.thkm-sort-active a {
  color: var(--thkm-text);
}

.thkm-sort-active {
  background: rgba(74, 118, 253, 0.3);
}

.thkm-sort-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--thkm-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.thkm-sort-item:hover .thkm-sort-liquid,
.thkm-sort-active .thkm-sort-liquid {
  transform: scaleX(1);
}

/* 动画 */
@keyframes thkm-flow {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes thkm-flow-wide {
  0% {
    background-position: -100% 0;
  }
  50% {
    background-position: 200% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@keyframes thkm-pulse {
  0% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
}

/* 自适应 */
@media (max-width: 768px) {
  .thkm-container {
    flex-wrap: wrap;
  }
  
  .thkm-logo-wrapper {
    flex: 0 0 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .thkm-logo {
    justify-content: center;
    padding: 10px 0;
  }
  
  .thkm-search-form {
    flex: 1 1 auto;
    margin: 0 10px 10px 0;
    order: 2;
  }
  
  .thkm-user {
    order: 3;
    margin-left: 0;
    margin-bottom: 10px;
  }
  
  .thkm-nav {
    order: 4;
  }
  
  .thkm-nav-item a {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .thkm-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .thkm-banner-slider {
    height: 300px;
  }
  
  .thkm-slide-title {
    font-size: 1.5rem;
  }
  
  .thkm-slide-desc {
    max-width: 100%;
  }
  
  .thkm-filter-options {
    max-height: 120px;
    overflow-y: auto;
  }
  
  /* 底部自适应 */
  .thkm-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .thkm-footer-bottom {
    flex-direction: column;
    gap: 15px;
  }
  
  .thkm-footer-logo {
    margin-bottom: 10px;
  }
  
  .thkm-footer-copyright {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .thkm-search-input {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .thkm-search-btn {
    padding: 0 10px;
  }
  
  .thkm-nav-item a {
    padding: 8px 10px;
    font-size: 0.85rem;
  }
  
  .thkm-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .thkm-banner-slider {
    height: 220px;
  }
  
  .thkm-slide-title {
    font-size: 1.2rem;
  }
  
  .thkm-slide-content {
    padding: 15px;
  }
  
  .thkm-slide-desc {
    display: none;
  }
  
  .thkm-sort-item a {
    padding: 8px;
    font-size: 0.85rem;
  }
  
  /* 底部自适应 */
  .thkm-footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .thkm-footer-section {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--thkm-footer-border);
  }
  
  .thkm-footer-section:last-child {
    border-bottom: none;
  }
  
  .thkm-footer-bottom {
    text-align: center;
  }
}

/* 底部区域 */
.thkm-footer {
  position: relative;
  background: var(--thkm-footer-bg);
  color: var(--thkm-text);
  padding-top: 2px;
  margin-top: 50px;
  overflow: hidden;
  flex-shrink: 0;
}

.thkm-footer-liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--thkm-accent), transparent, var(--thkm-accent));
  animation: thkm-flow-wide 8s infinite;
  z-index: 1;
}

.thkm-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px 20px;
  position: relative;
}

/* 主要链接区域 */
.thkm-footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--thkm-footer-border);
  margin-bottom: 20px;
}

.thkm-footer-section {
  position: relative;
}

.thkm-footer-title {
  color: var(--thkm-text);
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.thkm-footer-title-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--thkm-accent);
  transition: width 0.3s ease;
}

.thkm-footer-section:hover .thkm-footer-title-line {
  width: 60px;
  background: linear-gradient(90deg, var(--thkm-accent), transparent);
}

.thkm-footer-links {
  list-style: none;
}

.thkm-footer-links li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.thkm-footer-links li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--thkm-accent);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.thkm-footer-links li:hover:before {
  background: var(--thkm-text);
  box-shadow: 0 0 5px var(--thkm-accent);
}

.thkm-footer-links a {
  color: var(--thkm-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.thkm-footer-links a:hover {
  color: var(--thkm-text);
  transform: translateX(5px);
}

.thkm-footer-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--thkm-accent);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.thkm-footer-links a:hover:after {
  transform: translateX(0);
}

/* 友情链接区域 */
.thkm-friend-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thkm-friend-links a {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.thkm-friend-links a:hover {
  color: var(--thkm-text);
  background: rgba(74, 118, 253, 0.2);
  transform: translateY(-2px);
}

.thkm-friend-links a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-friend-links a:hover:before {
  transform: translateX(100%);
}

/* 联系我们区域 */
.thkm-footer-contact p {
  margin-bottom: 10px;
  color: var(--thkm-text-secondary);
  display: flex;
  align-items: center;
}

.thkm-footer-contact p i {
  margin-right: 10px;
  color: var(--thkm-accent);
}

.thkm-footer-qrcode {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.thkm-footer-qrcode:hover {
  transform: scale(1.05);
  border-color: var(--thkm-accent);
}

.thkm-footer-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thkm-qrcode-liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(74, 118, 253, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.thkm-footer-qrcode:hover .thkm-qrcode-liquid {
  opacity: 1;
  animation: thkm-pulse 2s infinite;
}

/* 底部版权区域 */
.thkm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}

.thkm-footer-logo {
  position: relative;
}

.thkm-footer-logo a {
  color: var(--thkm-text);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.thkm-footer-logo .thkm-logo-liquid {
  bottom: -5px;
}

.thkm-footer-copyright {
  text-align: center;
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
}

.thkm-footer-copyright p {
  margin: 0;
  padding: 3px 0;
}

/* 返回顶部按钮 */
.thkm-footer-backtop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-footer-backtop:hover {
  background: var(--thkm-accent);
  transform: translateY(-5px);
}

.thkm-footer-backtop i {
  color: var(--thkm-text);
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

.thkm-backtop-liquid {
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thkm-footer-backtop:hover .thkm-backtop-liquid {
  opacity: 1;
  animation: thkm-pulse 1.5s infinite;
}

/* 视频详情页样式 */
.thkm-detail-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 视频基本信息英雄区 */
.thkm-detail-hero {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  padding-top: 20px;
}

/* 视频海报区域 */
.thkm-detail-poster-wrap {
  position: relative;
  width: 280px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(to right bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
  padding: 3px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.thkm-detail-poster {
  position: relative;
  width: 100%;
  height: 400px; /* 添加固定高度 */
  border-radius: 10px;
  overflow: hidden;
}

.thkm-detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 确保图片正确覆盖整个区域 */
  display: block;
  border-radius: 10px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-detail-poster-wrap:hover img {
  transform: scale(1.03);
}

/* 液态边框效果 */
.thkm-liquid-border-top,
.thkm-liquid-border-right,
.thkm-liquid-border-bottom,
.thkm-liquid-border-left {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  opacity: 0.7;
}

.thkm-liquid-border-top,
.thkm-liquid-border-bottom {
  height: 2px;
  width: 100%;
  left: 0;
}

.thkm-liquid-border-right,
.thkm-liquid-border-left {
  width: 2px;
  height: 100%;
  top: 0;
}

.thkm-liquid-border-top {
  top: 0;
  animation: thkm-flow 4s infinite;
}

.thkm-liquid-border-right {
  right: 0;
  background: linear-gradient(180deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-vertical 4s infinite 1s;
}

.thkm-liquid-border-bottom {
  bottom: 0;
  animation: thkm-flow 4s infinite 2s;
}

.thkm-liquid-border-left {
  left: 0;
  background: linear-gradient(180deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-vertical 4s infinite 3s;
}

@keyframes thkm-flow-vertical {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/* 评分标签 */
.thkm-detail-score {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  overflow: hidden;
  z-index: 2;
}

.thkm-detail-score-liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  animation: thkm-pulse 2s infinite;
}

/* 视频信息区域 */
.thkm-detail-info {
  flex: 1;
  min-width: 0;
}

.thkm-detail-title {
  font-size: 2rem;
  margin: 0 0 15px 0;
  color: var(--thkm-text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* 标签列表 */
.thkm-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.thkm-detail-tag {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-detail-tag:hover {
  color: var(--thkm-text);
  background: rgba(74, 118, 253, 0.2);
  transform: translateY(-2px);
}

.thkm-detail-tag-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-detail-tag:hover .thkm-detail-tag-liquid {
  transform: translateX(100%);
}

/* 视频元数据 */
.thkm-detail-meta {
  margin-bottom: 20px;
}

.thkm-detail-meta-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.thkm-detail-meta-label {
  flex-shrink: 0;
  width: 60px;
  color: var(--thkm-text);
  font-weight: bold;
}

.thkm-detail-meta-content {
  flex: 1;
  min-width: 0;
  color: var(--thkm-text-secondary);
}

.thkm-detail-meta-content a {
  color: var(--thkm-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.thkm-detail-meta-content a:hover {
  color: var(--thkm-accent);
}

/* 操作按钮 */
.thkm-detail-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.thkm-detail-play-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--thkm-accent);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-detail-play-btn span {
  position: relative;
  z-index: 2;
}

.thkm-detail-play-btn span:first-child {
  margin-right: 8px;
}

.thkm-detail-play-btn:hover {
  background: #3a67ff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(74, 118, 253, 0.4);
}

.thkm-detail-btn-liquid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-detail-play-btn:hover .thkm-detail-btn-liquid {
  transform: scale(2);
}

.thkm-detail-sub-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thkm-detail-collect-btn,
.thkm-detail-share-btn {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thkm-text);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-detail-collect-btn:hover,
.thkm-detail-share-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.thkm-detail-collect-btn span,
.thkm-detail-share-btn span {
  position: relative;
  z-index: 2;
}

.thkm-detail-collect-btn:hover .thkm-detail-btn-liquid,
.thkm-detail-share-btn:hover .thkm-detail-btn-liquid {
  transform: scale(1.5);
}

/* 视频统计数据 */
.thkm-detail-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.thkm-detail-stat-item {
  position: relative;
  flex: 1;
  min-width: 120px;
  padding: 15px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.thkm-detail-stat-value {
  font-size: 1.2rem;
  color: var(--thkm-text);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thkm-detail-stat-value .iconfont {
  margin-right: 5px;
  color: #ffc107;
}

.thkm-detail-stat-label {
  font-size: 0.85rem;
  color: var(--thkm-text-secondary);
}

.thkm-detail-stat-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.thkm-detail-stat-item:hover .thkm-detail-stat-liquid {
  transform: translateX(100%);
}

/* 视频简介区域 */
.thkm-detail-desc {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.thkm-detail-section-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.thkm-detail-section-title h3 {
  font-size: 1.3rem;
  color: var(--thkm-text);
  margin: 0;
  margin-right: 15px;
}

.thkm-section-title-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, var(--thkm-accent), transparent);
}

.thkm-detail-desc-content {
  position: relative;
  max-height: 100px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.thkm-detail-desc-text {
  color: var(--thkm-text-secondary);
  line-height: 1.6;
}

.thkm-detail-desc-expand {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-top: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  cursor: pointer;
}

.thkm-detail-desc-expand .iconfont {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.thkm-detail-desc-expand:hover .iconfont {
  background: var(--thkm-accent);
  transform: translateY(-2px);
}

.thkm-detail-desc-expanded .thkm-detail-desc-content {
  max-height: 1000px;
}

.thkm-detail-desc-expanded .thkm-detail-desc-expand .iconfont {
  transform: rotate(180deg);
}

/* 剧集列表 */
.thkm-detail-episodes {
  margin-bottom: 30px;
}

.thkm-episode-group {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 20px;
}

.thkm-episode-group:last-child {
  margin-bottom: 0;
}

.thkm-detail-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.thkm-episode-sort {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--thkm-text-secondary);
  transition: all 0.3s ease;
}

.thkm-episode-sort:hover {
  color: var(--thkm-text);
}

.thkm-episode-sort .iconfont {
  margin-right: 5px;
}

.thkm-episode-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thkm-episode-item {
  position: relative;
  display: inline-block;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-episode-item:hover {
  color: var(--thkm-text);
  background: rgba(74, 118, 253, 0.3);
  transform: translateY(-2px);
}

.thkm-episode-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-episode-item:hover .thkm-episode-liquid {
  transform: translateX(100%);
}

/* 猜你喜欢区域 */
.thkm-detail-similar {
  margin-top: 30px;
}

.thkm-video-item {
  margin-bottom: 20px;
}

/* 自适应 */
@media (max-width: 768px) {
  .thkm-detail-hero {
    flex-direction: column;
    align-items: center;
  }
  
  .thkm-detail-poster-wrap {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
  
  .thkm-detail-poster {
    height: 350px;
  }

  .thkm-detail-backdrop {
    height: 100%;
  }
  
  .thkm-detail-title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .thkm-detail-tags {
    justify-content: center;
  }
  
  .thkm-detail-meta-item {
    flex-direction: column;
  }
  
  .thkm-detail-meta-label {
    width: auto;
    margin-bottom: 5px;
  }
  
  .thkm-detail-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .thkm-detail-poster-wrap {
    max-width: 250px;
  }
  
  .thkm-detail-poster {
    height: 300px;
  }
  
  .thkm-detail-stats {
    flex-wrap: wrap;
  }
  
  .thkm-detail-stat-item {
    flex: 1 1 45%;
    margin-bottom: 10px;
  }
  
  .thkm-detail-play-btn {
    width: 100%;
    justify-content: center;
  }
  
  .thkm-episode-list {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .thkm-episode-item {
    padding: 8px;
  }
}

/* 视频播放页样式 */
.thkm-player-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* 播放器区域 */
.thkm-player-wrapper {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, var(--thkm-secondary), var(--thkm-primary));
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.thkm-player-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 宽高比 */
  overflow: hidden;
}

.thkm-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/* 播放器液态边框 */
.thkm-player-liquid-border-top,
.thkm-player-liquid-border-right,
.thkm-player-liquid-border-bottom,
.thkm-player-liquid-border-left {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  opacity: 0.7;
  z-index: 10;
}

.thkm-player-liquid-border-top,
.thkm-player-liquid-border-bottom {
  height: 2px;
  width: 100%;
  left: 0;
}

.thkm-player-liquid-border-right,
.thkm-player-liquid-border-left {
  width: 2px;
  height: 100%;
  top: 0;
}

.thkm-player-liquid-border-top {
  top: 0;
  animation: thkm-flow 4s infinite;
}

.thkm-player-liquid-border-right {
  right: 0;
  background: linear-gradient(180deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-vertical 4s infinite 1s;
}

.thkm-player-liquid-border-bottom {
  bottom: 0;
  animation: thkm-flow 4s infinite 2s;
}

.thkm-player-liquid-border-left {
  left: 0;
  background: linear-gradient(180deg, transparent, var(--thkm-accent), transparent);
  animation: thkm-flow-vertical 4s infinite 3s;
}

/* 播放控制栏 */
.thkm-player-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 15px;
}

/* 画质选择器 */
.thkm-quality-selector {
  position: relative;
}

.thkm-quality-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--thkm-text);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-quality-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.thkm-quality-text {
  margin-left: 5px;
  font-size: 14px;
}

.thkm-btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-quality-btn:hover .thkm-btn-ripple {
  transform: scale(2);
  opacity: 1;
}

/* 音量控制 */
.thkm-volume-control {
  position: relative;
  display: flex;
  align-items: center;
}

.thkm-volume-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thkm-text);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-volume-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.thkm-volume-slider-wrapper {
  width: 0;
  height: 36px;
  overflow: hidden;
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
}

.thkm-volume-control:hover .thkm-volume-slider-wrapper {
  width: 80px;
  padding-left: 10px;
}

.thkm-volume-slider {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.thkm-volume-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.thkm-volume-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: var(--thkm-accent);
  border-radius: 2px;
}

.thkm-volume-handle {
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--thkm-text);
  border-radius: 50%;
  transform: translate(50%, -50%);
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.thkm-volume-handle:hover {
  transform: translate(50%, -50%) scale(1.2);
}

/* 播放速度控制 */
.thkm-playback-speed {
  position: relative;
}

.thkm-speed-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--thkm-text);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-speed-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.thkm-speed-text {
  margin-left: 5px;
  font-size: 14px;
}

.thkm-speed-btn:hover .thkm-btn-ripple {
  transform: scale(2);
  opacity: 1;
}

/* 全屏按钮 */
.thkm-player-fullscreen {
  position: relative;
}

.thkm-fullscreen-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--thkm-text);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.thkm-fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.thkm-fullscreen-btn:hover .thkm-btn-ripple {
  transform: scale(2);
  opacity: 1;
}

/* 视频信息和剧集区域 */
.thkm-play-info-container {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

/* 视频标题区域 */
.thkm-play-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thkm-play-titles {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.thkm-play-main-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--thkm-text);
  margin: 0;
  margin-right: 10px;
}

.thkm-play-title-divider {
  margin: 0 10px;
  color: var(--thkm-text-secondary);
}

.thkm-play-sub-title {
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--thkm-text-secondary);
  margin: 0;
}

.thkm-play-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thkm-play-tag {
  position: relative;
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
  overflow: hidden;
}

.thkm-tag-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-play-tag:hover .thkm-tag-liquid {
  transform: translateX(100%);
}

/* 视频元数据区域 */
.thkm-play-meta {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.2);
}

.thkm-play-score {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffc107;
  font-size: 1.1rem;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.thkm-play-score .iconfont {
  margin-right: 5px;
}

.thkm-score-value {
  font-weight: bold;
}

.thkm-score-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
  animation: thkm-pulse 2s infinite;
  pointer-events: none;
}

.thkm-play-meta-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
}

.thkm-meta-item {
  margin: 0 5px;
}

.thkm-meta-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* 视频简介区域 */
.thkm-play-desc {
  position: relative;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.thkm-play-desc-content {
  position: relative;
  max-height: 80px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.thkm-play-desc-title {
  font-weight: bold;
  color: var(--thkm-text);
  margin-right: 5px;
}

.thkm-play-desc-text {
  color: var(--thkm-text-secondary);
  line-height: 1.6;
  display: inline;
}

.thkm-play-desc-toggle {
  position: absolute;
  bottom: 5px;
  right: 15px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.thkm-play-desc-toggle .iconfont {
  font-size: 10px;
  color: var(--thkm-text-secondary);
  transition: transform 0.3s ease;
}

.thkm-play-desc-toggle:hover {
  background: var(--thkm-accent);
  transform: translateY(-2px);
}

.thkm-play-desc.expanded .thkm-play-desc-content {
  max-height: 500px;
}

.thkm-play-desc.expanded .thkm-play-desc-toggle .iconfont {
  transform: rotate(180deg);
}

/* 互动按钮组 */
.thkm-play-actions {
  display: flex;
  padding: 15px 20px;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.thkm-action-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--thkm-text-secondary);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--thkm-text);
  transform: translateY(-2px);
}

.thkm-action-btn.active {
  background: var(--thkm-accent);
  color: var(--thkm-text);
}

.thkm-action-btn .iconfont {
  margin-right: 6px;
  font-size: 16px;
}

.thkm-action-btn .btn-text {
  font-size: 14px;
}

.thkm-action-btn .count {
  margin-left: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 10px;
  font-size: 12px;
}

.thkm-action-btn:hover .count {
  background: rgba(255, 255, 255, 0.2);
}

.thkm-action-btn[data-action="like"] .iconfont,
.thkm-action-btn[data-action="collect"] .iconfont {
  color: #ff6b6b;
}

.thkm-action-btn[data-action="dislike"] .iconfont {
  color: #5c7cfa;
}

.thkm-action-btn[data-action="report"] .iconfont {
  color: #fcc419;
}

.thkm-action-btn[data-action="share"] .iconfont {
  color: #51cf66;
}

/* 剧集列表区域 */
.thkm-play-episodes {
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.thkm-episodes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.thkm-episodes-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--thkm-text);
}

.thkm-episodes-sort {
  display: flex;
  align-items: center;
  color: var(--thkm-text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.thkm-episodes-sort:hover {
  color: var(--thkm-text);
}

.thkm-episodes-sort .iconfont {
  margin-right: 5px;
}

.thkm-episodes-sort.reversed .iconfont {
  transform: rotate(180deg);
}

.thkm-episodes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thkm-episode-item {
  position: relative;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--thkm-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-episode-item:hover {
  background: rgba(74, 118, 253, 0.2);
  color: var(--thkm-text);
  transform: translateY(-2px);
}

.thkm-episode-active {
  background: var(--thkm-accent);
  color: var(--thkm-text);
}

.thkm-episode-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-episode-item:hover .thkm-episode-liquid {
  transform: translateX(100%);
}

/* 猜你喜欢区域 */
.thkm-play-similar {
  padding: 20px;
}

.thkm-similar-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

.thkm-similar-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--thkm-text);
  margin: 0;
  margin-right: 15px;
}

.thkm-similar-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--thkm-accent), transparent);
}

/* 自适应 */
@media (max-width: 768px) {
  .thkm-play-titles {
    flex-direction: column;
    align-items: flex-start;
  }

  .thkm-play-main-title {
    margin-bottom: 10px;
  }

  .thkm-play-title-divider {
    display: none;
  }
  
  .thkm-play-tags {
    justify-content: flex-start;
  }

  .thkm-play-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .thkm-play-score {
    margin-bottom: 10px;
    padding-right: 0;
    border-right: none;
  }

  .thkm-play-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .thkm-meta-divider {
    display: none;
  }

  .thkm-play-actions {
    justify-content: space-between;
  }

  .thkm-action-btn {
    flex: 1;
    justify-content: center;
  }
  
  .thkm-action-text {
    display: none;
  }
  
  .thkm-action-btn .iconfont {
    margin-right: 0;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .thkm-player-controls {
    flex-wrap: wrap;
    gap: 10px;
  }

  .thkm-play-desc {
    padding: 10px;
  }
  
  .thkm-episodes-list {
    gap: 8px;
  }
  
  .thkm-episode-item {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
  
  .thkm-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 调整iconfont图标样式 */
.iconfont {
  font-style: normal;
  font-size: 16px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 播放控制栏图标特殊样式 */
.thkm-player-controls .iconfont {
  font-size: 18px;
  margin-right: 2px;
}

/* 操作按钮图标特殊样式 */
.thkm-action-btn .iconfont {
  margin-right: 6px;
  font-size: 16px;
}

/* 全屏按钮特殊样式 */
.thkm-fullscreen-btn .iconfont {
  font-size: 22px;
  margin: 0;
}

/* 描述切换按钮特殊样式 */
.thkm-desc-toggle .iconfont {
  font-size: 14px;
  margin-left: 2px;
}

/* 排序按钮特殊样式 */
.thkm-episodes-sort .iconfont {
  font-size: 16px;
  margin-right: 5px;
}

/* 分页样式 */
.thkm-pagination-container {
  margin: 30px auto;
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

.thkm-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 23, 41, 0.7);
  border-radius: 25px;
  padding: 8px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 
              inset 0 0 0 1px rgba(74, 118, 253, 0.2),
              inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.thkm-pagination::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(74, 118, 253, 0.2) 25%, 
    rgba(74, 118, 253, 0.4) 50%, 
    rgba(74, 118, 253, 0.2) 75%, 
    transparent 100%);
  animation: flow 4s linear infinite;
}

.thkm-pagination::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(74, 118, 253, 0.2) 25%, 
    rgba(74, 118, 253, 0.4) 50%, 
    rgba(74, 118, 253, 0.2) 75%, 
    transparent 100%);
  animation: flow 4s linear infinite reverse;
}

.thkm-page-btn {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(74, 118, 253, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(74, 118, 253, 0.3);
}

.thkm-page-btn:hover {
  transform: translateY(-2px);
  background: rgba(74, 118, 253, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(74, 118, 253, 0.4);
}

.thkm-page-btn.thkm-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  transform: none;
}

.thkm-page-info {
  margin: 0 10px;
  padding: 5px 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 14px;
  position: relative;
  border: 1px solid rgba(74, 118, 253, 0.2);
}

.thkm-current-page {
  color: #4a76fd;
  font-weight: bold;
  font-size: 16px;
}

.thkm-btn-liquid {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(74, 118, 253, 0.3);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.thkm-jump-wrapper {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.thkm-jump-input {
  width: 50px;
  height: 30px;
  border-radius: 15px 0 0 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(74, 118, 253, 0.3);
  color: #fff;
  text-align: center;
  outline: none;
  transition: all 0.3s ease;
}

.thkm-jump-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(74, 118, 253, 0.5);
}

.thkm-jump-btn {
  min-width: 40px;
  height: 30px;
  border-radius: 0 15px 15px 0;
  background: rgba(74, 118, 253, 0.3);
  border: 1px solid rgba(74, 118, 253, 0.3);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thkm-jump-btn:hover {
  background: rgba(74, 118, 253, 0.5);
}

@media (max-width: 768px) {
  .thkm-pagination {
    padding: 5px 10px;
  }
  
  .thkm-page-btn {
    min-width: 35px;
    height: 35px;
    margin: 0 3px;
  }
  
  .thkm-first-btn, .thkm-last-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .thkm-pagination {
    padding: 3px 8px;
  }
  
  .thkm-page-btn {
    min-width: 30px;
    height: 30px;
    margin: 0 2px;
  }
  
  .thkm-jump-wrapper {
    margin-left: 5px;
  }
  
  .thkm-jump-input {
    width: 40px;
    height: 25px;
  }
  
  .thkm-jump-btn {
    min-width: 35px;
    height: 25px;
    font-size: 12px;
  }
  
  .thkm-page-info {
    padding: 3px 10px;
    margin: 0 5px;
    font-size: 12px;
  }
  
  .thkm-current-page {
    font-size: 14px;
  }
}

/* 流动动画 */
@keyframes flow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* 脉冲动画 */
@keyframes thkm-pulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* 搜索页样式 */
.thkm-search-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

/* 搜索头部 */
.thkm-search-header {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 15px;
  overflow: hidden;
}

.thkm-search-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thkm-search-keyword-label {
  color: var(--thkm-text-secondary);
  font-size: 1rem;
}

.thkm-search-keyword {
  color: var(--thkm-accent);
  font-size: 1.2rem;
  font-weight: bold;
  padding: 3px 8px;
  background: rgba(74, 118, 253, 0.2);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.thkm-search-keyword::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  animation: flow 3s linear infinite;
}

.thkm-search-count {
  margin-left: auto;
  color: var(--thkm-text-secondary);
}

.thkm-search-count strong {
  color: var(--thkm-text);
  font-weight: bold;
}

.thkm-search-liquid-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(74, 118, 253, 0.2) 25%, 
    rgba(74, 118, 253, 0.5) 50%, 
    rgba(74, 118, 253, 0.2) 75%, 
    transparent 100%
  );
  animation: flow 4s linear infinite;
}

/* 搜索结果项 */
.thkm-search-results {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.thkm-search-item {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thkm-search-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
              0 0 0 1px rgba(74, 118, 253, 0.3);
}

.thkm-search-item-link {
  display: flex;
  color: var(--thkm-text);
  text-decoration: none;
  padding: 15px;
  position: relative;
}

.thkm-search-poster {
  position: relative;
  width: 180px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
}

.thkm-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.thkm-search-item:hover .thkm-poster-img {
  transform: scale(1.05);
}

.thkm-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.thkm-vod-liquid-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--thkm-accent), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.thkm-vod-liquid-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--thkm-accent), transparent);
  transform: translateY(-100%);
  transition: transform 0.6s ease;
}

.thkm-search-item:hover .thkm-vod-liquid-top {
  transform: translateX(100%);
}

.thkm-search-item:hover .thkm-vod-liquid-right {
  transform: translateY(100%);
}

.thkm-search-item-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(74, 118, 253, 0.5), 
    transparent
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.thkm-search-item:hover .thkm-search-item-liquid {
  transform: scaleX(1);
}

.thkm-vod-lang {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 6px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--thkm-text);
  z-index: 2;
}

.thkm-vod-meta {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 2;
}

.thkm-vod-remarks {
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
  padding: 3px 7px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.thkm-vod-score {
  font-weight: bold;
  color: #ffc107;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 3px 7px;
  border-radius: 4px;
}

.thkm-search-info-box {
  flex: 1;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.thkm-search-title {
  font-size: 1.4rem;
  margin: 0 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--thkm-text);
}

.thkm-search-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

.thkm-meta-item {
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
}

.thkm-search-actors {
  color: var(--thkm-text-secondary);
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.thkm-search-desc {
  color: var(--thkm-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.thkm-search-stats {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.thkm-stats-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
  color: var(--thkm-text-secondary);
}

.thkm-stats-item .iconfont {
  margin-right: 5px;
}

.thkm-hits {
  color: var(--thkm-text-secondary);
}

.thkm-play-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 15px;
  background: rgba(74, 118, 253, 0.3);
  border-radius: 20px;
  color: var(--thkm-text);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-left: auto;
}

.thkm-search-item:hover .thkm-play-btn {
  background: var(--thkm-accent);
  transform: translateY(-2px);
}

/* 搜索为空时 */
.thkm-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  margin: 30px 0;
}

.thkm-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--thkm-text-secondary);
  opacity: 0.7;
}

.thkm-empty-text {
  font-size: 1.2rem;
  color: var(--thkm-text);
  margin-bottom: 20px;
}

.thkm-empty-tips {
  color: var(--thkm-text-secondary);
  text-align: left;
  max-width: 500px;
}

.thkm-empty-tips a {
  color: var(--thkm-accent);
  text-decoration: none;
  position: relative;
}

.thkm-empty-tips a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--thkm-accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.thkm-empty-tips a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.thkm-empty-tips ul {
  list-style-type: none;
  padding-left: 20px;
}

.thkm-empty-tips li {
  margin-bottom: 8px;
  position: relative;
}

.thkm-empty-tips li::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--thkm-accent);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .thkm-search-item-link {
    flex-direction: column;
  }
  
  .thkm-search-poster {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
  }
  
  .thkm-search-info-box {
    padding: 10px 0;
  }
  
  .thkm-search-title {
    font-size: 1.2rem;
  }
  
  .thkm-search-header {
    margin-bottom: 15px;
  }
  
  .thkm-search-info {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .thkm-search-count {
    margin-left: 0;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .thkm-search-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .thkm-search-stats {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .thkm-play-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  
  .thkm-search-empty {
    padding: 30px 15px;
  }
  
  .thkm-empty-icon {
    font-size: 3rem;
  }
  
  .thkm-empty-text {
    font-size: 1rem;
  }
}

/* 添加间隔 */
.thkm-section-gap {
  height: 30px;
}

/* 在样式文件最后添加的修复样式 */
.thkm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* 确保视频项目正确显示 */
.thkm-video-item {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.thkm-video-item:hover {
  transform: translateY(-5px) !important;
  z-index: 2;
}

/* 筛选器样式增强 */
.thkm-filter-container {
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 0 0 10px 0;
}

/* 筛选项增强显示 */
.thkm-filter-item a,
.thkm-sort-item a {
  display: block !important;
  position: relative !important;
  z-index: 1 !important;
}

/* 修复排序栏样式 */
.thkm-sort-bar {
  margin-bottom: 20px !important;
}

/* 修复流体效果显示 */
.thkm-filter-liquid,
.thkm-sort-liquid {
  position: absolute !important;
  z-index: 0 !important;
}

@media (max-width: 768px) {
  .thkm-video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  
  .thkm-filter-container {
    padding: 0 !important;
  }
  
  .thkm-filter-options {
    flex-wrap: wrap !important;
  }
  
  .thkm-filter-item,
  .thkm-sort-item {
    margin: 2px !important;
  }
}

@media (max-width: 480px) {
  .thkm-video-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 5px !important;
  }
}

/* 修复移动设备下视频列表样式 */
@media (max-width: 768px) {
  /* 视频网格布局 - 手机端一排两个 */
  .thkm-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-bottom: 20px;
  }
  
  /* 视频项目尺寸统一 */
  .thkm-vod-item {
    width: 100% !important;
    height: auto !important;
  }
  
  /* 海报尺寸比例保持一致 */
  .thkm-vod-poster {
    padding-top: 140% !important; /* 保持统一的高宽比 */
  }
  
  /* 标题字体大小调整 */
  .thkm-vod-title {
    font-size: 0.9rem !important;
    line-height: 1.3;
    margin-bottom: 3px !important;
  }
  
  /* 演员信息字体调整 */
  .thkm-vod-actor {
    font-size: 0.75rem !important;
    line-height: 1.2;
  }
  
  /* 信息区域内边距调整 */
  .thkm-vod-info {
    padding: 8px 10px !important;
  }
  
  /* 悬停效果在移动端简化 */
  .thkm-vod-hover-info {
    display: none !important; /* 在移动端禁用悬停信息 */
  }
}

@media (max-width: 480px) {
  /* 小屏幕手机进一步调整 */
  .thkm-video-grid {
    gap: 8px !important;
  }
  
  .thkm-vod-info {
    padding: 6px 8px !important;
  }
  
  .thkm-vod-title {
    font-size: 0.85rem !important;
    margin-bottom: 2px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .thkm-vod-actor {
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  /* 调整语言标签和评分等信息的大小 */
  .thkm-vod-lang {
    font-size: 0.7rem !important;
    padding: 2px 4px !important;
  }
  
  .thkm-vod-meta {
    bottom: 5px !important;
  }
  
  .thkm-vod-hits, .thkm-vod-score {
    font-size: 0.7rem !important;
  }
}

/* 优化底部footer自适应样式 */
@media (max-width: 992px) {
  .thkm-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 20px;
  }
  .thkm-footer-section {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .thkm-footer-main {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-bottom: 10px;
  }
  .thkm-footer-section {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--thkm-footer-border);
  }
  .thkm-footer-section:last-child {
    border-bottom: none;
  }
  .thkm-footer-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .thkm-footer-links li {
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .thkm-friend-links {
    gap: 6px;
    flex-wrap: wrap;
  }
  .thkm-friend-links a {
    font-size: 0.95rem;
    padding: 4px 8px;
  }
  .thkm-footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  .thkm-footer-bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 10px;
  }
  .thkm-footer-logo a {
    font-size: 1rem;
  }
  .thkm-footer-copyright {
    font-size: 0.9rem;
    text-align: left;
  }
  .thkm-footer-backtop {
    margin-left: 0;
    margin-top: 10px;
    align-self: flex-end;
  }
}

@media (max-width: 480px) {
  .thkm-footer-container {
    padding: 20px 5px 10px;
  }
  .thkm-footer-main {
    gap: 8px;
  }
  .thkm-footer-title {
    font-size: 1rem;
  }
  .thkm-footer-links li {
    font-size: 0.85rem;
  }
  .thkm-friend-links a {
    font-size: 0.85rem;
    padding: 3px 6px;
  }
  .thkm-footer-contact p {
    font-size: 0.85rem;
  }
  .thkm-footer-logo a {
    font-size: 0.95rem;
  }
  .thkm-footer-backtop {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

/* 懒加载图片样式 */
.lazy-load {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 0.3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.lazy-load.loaded {
  opacity: 1;
}

.thkm-video-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.thkm-detail-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  transition: opacity 0.5s ease;
}

.thkm-detail-backdrop.loaded {
  opacity: 1;
}
