body{
    background-color: #b4ff00;
}/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
 /* 头部样式 */
  .elu-36967-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }

  .elu-36967-header-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* Logo样式 */
  .elu-36967-logo {
    flex-shrink: 0;
    margin-right: 20px;
    max-width: 40%;
    width: auto;
  }

  .elu-36967-logo-link {
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .elu-36967-logo-link:hover {
    transform: scale(1.05);
  }

  .elu-36967-logo-text { background: linear-gradient(90deg, #fff, #ff4d4d); 
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(255, 77, 77, 0.4);
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    max-width: 100%;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .elu-36967-logo-text:after { background: linear-gradient(90deg, #fff, #ff4d4d); 
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: width 0.4s ease;
  }

  .elu-36967-logo-link:hover .elu-36967-logo-text:after { background: linear-gradient(90deg, #fff, #ff4d4d); 
    width: 100%;
  }

  .elu-36967-logo-img {
    height: 40px;
    width: auto;
  }

  /* 导航样式 */
  .elu-36967-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    margin-left: 10px;
    min-width: 0;
    max-width: 60%;
  }

  .elu-36967-nav-toggle {
    display: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
  }

  .elu-36967-nav-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #b4ff00;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }

  .elu-36967-nav-icon:before,
  .elu-36967-nav-icon:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #b4ff00;
    transition: all 0.3s ease;
  }

  .elu-36967-nav-icon:before {
    top: -8px;
  }

  .elu-36967-nav-icon:after {
    bottom: -8px;
  }

  .elu-36967-nav.active .elu-36967-nav-icon {
    background: transparent;
  }

  .elu-36967-nav.active .elu-36967-nav-icon:before {
    transform: rotate(45deg);
    top: 0;
  }

  .elu-36967-nav.active .elu-36967-nav-icon:after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .elu-36967-nav-container {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
  }

  .elu-36967-nav-container::-webkit-scrollbar {
    display: none;
  }

  .elu-36967-nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
  }

  .elu-36967-nav-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(150,225,0,0.85);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
  }

  .elu-36967-nav-item:hover {
    color: #ffffff;
  }

  .elu-36967-nav-item:hover:before {
    transform: scaleY(1);
  }

  .elu-36967-nav-text {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
  }

  /* 箭头图标样式 */
  .elu-36967-icon-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    margin-left: 3px;
  }

  /* 桌面端导航对齐修复 */
  @media (min-width: 769px) {
    .elu-36967-nav-container {
      align-items: center;
      height: 40px;
    }
    
    /* 统一所有导航项样式 */
    .elu-36967-nav-item, 
    a.elu-36967-nav-item, 
    .elu-36967-nav-dropdown {
      display: flex;
      align-items: center;
      height: 40px;
      padding: 0 15px;
      margin: 0 2px;
    }
    
    /* 首页项特殊处理 */
    a.elu-36967-nav-item .elu-36967-nav-text {
      padding: 0;
    }
    
    /* 下拉菜单项 */
    .elu-36967-nav-link-desktop {
      padding: 0;
      display: flex;
      align-items: center;
      height: 100%;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
    }
    
    /* 移除桌面端箭头 */
    .elu-36967-nav-link-desktop .elu-36967-icon-arrow {
      display: none;
    }
    
    /* 确保文本垂直居中 */
    .elu-36967-nav-text {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
    }
    
    /* 修复悬停效果 */
    .elu-36967-nav-item:hover .elu-36967-nav-text,
    .elu-36967-nav-link-desktop:hover {
      color: #ffffff;
    }
  }

  /* 移动端箭头交互增强 */
  @media (max-width: 768px) {
    .elu-36967-nav-dropdown-toggle .elu-36967-icon-arrow {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }
    
    .elu-36967-nav-dropdown.active .elu-36967-nav-dropdown-toggle .elu-36967-icon-arrow {
      transform: translateY(-50%) rotate(180deg);
    }
    
    /* 添加视觉提示 */
    .elu-36967-nav-dropdown-toggle {
      padding-right: 25px; /* 为箭头预留空间 */
    }
  }

  /* 下拉菜单 */
  .elu-36967-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 150px;
    background: rgba(150,225,0,0.85);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: none; /* 默认隐藏 */
    z-index: 100; /* 确保在上层 */
  }

  /* 明确移除在桌面端鼠标悬停时显示下拉菜单的行为 */
  .elu-36967-nav-dropdown:hover .elu-36967-dropdown-menu,
  .elu-36967-nav-item.elu-36967-nav-dropdown:hover .elu-36967-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  /* 只在移动端点击时显示下拉菜单 */
  @media (max-width: 768px) {
    .elu-36967-dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: transparent;
      display: none;
      padding: 5px 0 5px 15px;
    }
    
    .elu-36967-nav-dropdown.active .elu-36967-dropdown-menu {
      display: block;
    }
  }

  .elu-36967-dropdown-item {
    display: block;
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .elu-36967-dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: #b4ff00;
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }

  .elu-36967-dropdown-item:hover {
    color: #ffffff;
    background: rgba(150,225,0,0.85);
    padding-left: 20px;
  }

  .elu-36967-dropdown-item:hover:before {
    transform: scaleY(1);
  }

  /* 用户操作区域 */
  .elu-36967-user-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 10px;
  }

  .elu-36967-search-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(150,225,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer !important;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1000; /* 确保搜索图标在上层 */
    pointer-events: auto !important; /* 确保点击事件不被阻止 */
  }

  .elu-36967-search-toggle:hover {
    background: rgba(150,225,0,0.85);
    transform: rotate(90deg);
  }

  .elu-36967-search-toggle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: transparent;
    z-index: -1;
    transition: all 0.3s ease;
  }

  .elu-36967-search-toggle:hover::after {
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.6);
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.4;
    }
    100% {
      transform: scale(1);
      opacity: 0.8;
    }
  }

  .elu-36967-icon-search-alt:before {
    content: '🔍';
    font-size: 16px;
    font-family: 'Arial, sans-serif';
  }

  /* 搜索面板 */
  .elu-36967-search-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(150,225,0,0.85);
    padding: 30px 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }

  .elu-36967-search-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 999; /* 确保激活时层级足够高 */
  }

  .elu-36967-search-form-wrap {
    max-width: 800px;
    margin: 0 auto;
  }

  .elu-36967-search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(150,225,0,0.85);
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-search-box:focus-within {
    background: rgba(150,225,0,0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-icon-search {
    color: #ffffff;
    margin-right: 10px;
    font-size: 16px;
  }

  .elu-36967-icon-search:before {
    content: '🔍';
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    padding: 10px 0;
  }

  .elu-36967-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .elu-36967-icon-close {
    color: #ffffff;
    cursor: pointer;
    margin: 0 10px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-size: 16px;
  }

  .elu-36967-icon-close:before {
    content: '✖';
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-close:hover {
    opacity: 1;
  }

  .elu-36967-search-btn {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-search-btn:hover {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
  }

  /* 热门搜索 */
  .elu-36967-hot-search {
    margin-top: 20px;
  }

  .elu-36967-hot-search-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 10px;
  }

  .elu-36967-hot-search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-hot-search-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-hot-search-tag:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* 响应式设计 */
  @media (max-width: 992px) {
    .elu-36967-nav-container {
      gap: 2px;
    }
    
    .elu-36967-nav-item {
      padding: 8px 10px;
      font-size: 14px;
    }
  }

  @media (max-width: 768px) {
    .elu-36967-nav-toggle {
      display: block;
    }
    
    .elu-36967-nav-container {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(150,225,0,0.85);
      padding: 20px;
      flex-direction: column;
      border-radius: 0 0 15px 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
      z-index: 1001;
    }
    
    .elu-36967-nav.active .elu-36967-nav-container {
      display: flex;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
    
    .elu-36967-dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: transparent;
      display: none;
      padding: 5px 0 5px 15px;
    }
    
    .elu-36967-nav-dropdown.active .elu-36967-dropdown-menu {
      display: block;
    }
    
    .elu-36967-nav-dropdown .elu-36967-nav-text {
      cursor: pointer;
    }
    
    .elu-36967-logo {
      max-width: 50%;
    }
    
    .elu-36967-logo-text {
      font-size: 16px;
    }
    
    .elu-36967-nav-item {
      position: relative;
    }
    
    .elu-36967-nav-dropdown-toggle {
      width: 100%;
      position: relative;
      z-index: 1;
    }
    
    .elu-36967-nav-item.elu-36967-nav-dropdown {
      overflow: visible;
    }
  }

  /* 视频列表样式 */
  .elu-36967-vod-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
  }

  .elu-36967-vod-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(150,225,0,0.85);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-vod-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-vod-cover {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
  }

  .elu-36967-vod-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-vod-item:hover .elu-36967-vod-cover-img {
    transform: scale(1.1);
  }

  .elu-36967-vod-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .elu-36967-vod-item:hover .elu-36967-vod-play-icon {
    opacity: 1;
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-vod-play-icon:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
  }

  .elu-36967-vod-info {
    padding: 15px;
    background: rgba(150,225,0,0.85);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* 移除transform，让信息始终可见 */
    transition: all 0.3s ease;
    z-index: 2;
  }

  /* 移除悬停效果，让标题始终可见 */
  .elu-36967-vod-item:hover .elu-36967-vod-info {
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-vod-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .elu-36967-vod-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .elu-36967-vod-year {
    background: rgba(150,225,0,0.85);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .elu-36967-vod-type {
    background: rgba(150,225,0,0.85);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .elu-36967-vod-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(150,225,0,0.85);
    padding: 4px 8px;
    border-radius: 4px;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .elu-36967-vod-rating i {
    color: #ffffff;
  }

  /* 列表头部样式 */
  .elu-36967-list-header {
    padding: 20px;
    position: relative;
  }

  .elu-36967-list-title {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    position: relative;
    display: inline-block;
  }

  .elu-36967-list-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
  }

  .elu-36967-list-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 5px;
  }

  .elu-36967-list-count strong {
    color: #ffffff;
  }

  /* 搜索框样式 */
  .elu-36967-search-box {
    margin: 20px;
    position: relative;
  }

  .elu-36967-search-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(150,225,0,0.85);
    border: none;
    border-radius: 25px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .elu-36967-search-input:focus {
    background: rgba(150,225,0,0.85);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  }

  .elu-36967-search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7);
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .elu-36967-vod-list {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 15px;
      padding: 15px;
    }
    
    .elu-36967-vod-title {
      font-size: 14px;
    }
    
    .elu-36967-vod-meta {
      font-size: 11px;
    }
    
    .elu-36967-list-title {
      font-size: 20px;
    }
  }

  /* 分类筛选器样式 */
  .elu-36967-filter-box {
    background: rgba(150,225,0,0.85);
    border-radius: 15px;
    padding: 20px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .elu-36967-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .elu-36967-filter-title {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    position: relative;
    display: inline-block;
  }

  .elu-36967-filter-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
  }

  .elu-36967-filter-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
  }

  .elu-36967-filter-count strong {
    color: #ffffff;
  }

  .elu-36967-filter-tags {
    margin-bottom: 20px;
  }

  .elu-36967-filter-group {
    margin-bottom: 15px;
    position: relative;
  }

  .elu-36967-filter-label {
    display: inline-block;
    width: 75px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
  }

  .elu-36967-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 75px;
    margin-top: -30px;
  }

  .elu-36967-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-tag:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
  }

  .elu-36967-tag.active {
    background-color: #b4ff00;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-filter-sort {
    display: flex;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .elu-36967-sort-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-sort-btn:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
  }

  .elu-36967-sort-btn.active {
    background-color: #b4ff00;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-icon-time:before {
    content: '⏱️';
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-hot:before {
    content: '🔥';
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-star:before {
    content: '⭐';
    font-family: 'Arial, sans-serif';
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .elu-36967-filter-box {
      margin: 10px;
      padding: 15px;
    }
    
    .elu-36967-filter-title {
      font-size: 20px;
    }
    
    .elu-36967-tag {
      padding: 5px 12px;
      font-size: 12px;
    }
    
    .elu-36967-sort-btn {
      padding: 6px 12px;
      font-size: 12px;
    }
    
    .elu-36967-filter-sort {
      flex-wrap: wrap;
      gap: 10px;
    }
    
    .elu-36967-tag-list {
      margin-left: 0;
      margin-top: 0;
    }
    
    .elu-36967-update-count {
      margin-left: 0;
      margin-top: 10px;
      justify-content: center;
      width: 100%;
    }
  }

  /* 底部页脚样式 */
  .elu-36967-footer {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  .elu-36967-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .elu-36967-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }

  .elu-36967-footer-logo-link {
    display: block;
    margin-right: 20px;
    transition: transform 0.3s ease;
  }

  .elu-36967-footer-logo-link:hover {
    transform: scale(1.05);
  }

  .elu-36967-footer-logo-img {
    height: 40px;
    width: auto;
  }

  .elu-36967-footer-logo-text { background: linear-gradient(90deg, #fff, #ff4d4d); 
    color: #ffffff;
    font-size: 22px;
    margin: 0;
    font-weight: bold;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
  }

  .elu-36967-footer-logo-text:after { background: linear-gradient(90deg, #fff, #ff4d4d); 
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: width 0.3s ease;
  }

  .elu-36967-footer-logo-link:hover .elu-36967-footer-logo-text:after { background: linear-gradient(90deg, #fff, #ff4d4d); 
    width: 70%;
  }

  .elu-36967-footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .elu-36967-footer-site-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
  }

  .elu-36967-footer-site-link:hover {
    color: #ffffff;
  }

  .elu-36967-footer-year {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }

  .elu-36967-footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
  }

  .elu-36967-footer-section {
    margin-bottom: 20px;
  }

  .elu-36967-footer-title {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }

  .elu-36967-footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  .elu-36967-footer-sitemap,
  .elu-36967-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 15px;
    background: rgba(150,225,0,0.85);
    transition: all 0.3s ease;
  }

  .elu-36967-footer-link:hover {
    color: #ffffff;
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
  }

  .elu-36967-footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
  }

  .elu-36967-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .elu-36967-footer-social {
    display: flex;
    gap: 15px;
  }

  .elu-36967-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .elu-36967-social-link:hover {
    background-color: #b4ff00;
    color: #ffffff;
    transform: translateY(-3px);
  }

  .elu-36967-icon-wechat:before,
  .elu-36967-icon-weibo:before,
  .elu-36967-icon-qq:before {
    font-size: 18px;
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .elu-36967-footer {
      padding: 30px 0 15px;
    }
    
    .elu-36967-footer-logo {
      flex-direction: column;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    
    .elu-36967-footer-logo-link {
      margin-bottom: 10px;
    }
    
    .elu-36967-footer-links {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .elu-36967-footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
    
    .elu-36967-footer-social {
      justify-content: center;
    }
  }

  /* 分页样式 */
  .elu-36967-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 40px 0;
    padding: 0 20px;
    position: relative;
  }

  .elu-36967-pagination::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transform: translateX(-50%);
    border-radius: 3px;
  }

  .elu-36967-page-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: rgba(150,225,0,0.85);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-page-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .elu-36967-page-item:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 77, 77, 0.25);
    border-color: rgba(255, 77, 77, 0.4);
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-page-item:hover::before {
    opacity: 0.15;
  }

  .elu-36967-page-item.active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 8px 15px rgba(255, 77, 77, 0.3);
    font-weight: bold;
    border: none;
    transform: scale(1.05);
  }

  .elu-36967-page-item.active::before {
    opacity: 0;
  }

  .elu-36967-page-item.disabled {
    opacity: 0.5;
    pointer-events: none;
    background: rgba(150,225,0,0.85);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
  }

  .elu-36967-page-dots {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0 2px;
    font-weight: bold;
  }

  .elu-36967-page-prev,
  .elu-36967-page-next {
    position: relative;
    padding: 0 20px;
    background: rgba(150,225,0,0.85);
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
  }

  .elu-36967-page-prev::after,
  .elu-36967-page-next::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transition: all 0.3s ease;
  }

  .elu-36967-page-prev::after {
    left: 15px;
    transform: translateY(-50%) rotate(-135deg);
  }

  .elu-36967-page-next::after {
    right: 15px;
    transform: translateY(-50%) rotate(45deg);
  }

  .elu-36967-page-prev:hover::after {
    left: 12px;
  }

  .elu-36967-page-next:hover::after {
    right: 12px;
  }

  .elu-36967-page-prev span,
  .elu-36967-page-next span {
    position: relative;
    z-index: 1;
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .elu-36967-pagination {
      flex-wrap: wrap;
      gap: 6px;
    }
    
    .elu-36967-page-item {
      min-width: 36px;
      height: 36px;
      padding: 0 10px;
      font-size: 13px;
    }
    
    .elu-36967-page-prev,
    .elu-36967-page-next {
      padding: 0 15px 0 25px;
      font-size: 13px;
    }
    
    .elu-36967-page-prev::after,
    .elu-36967-page-next::after {
      width: 6px;
      height: 6px;
    }
  }

  @media (max-width: 480px) {
    .elu-36967-pagination {
      gap: 5px;
    }
    
    .elu-36967-page-item {
      min-width: 32px;
      height: 32px;
      padding: 0 8px;
      font-size: 12px;
    }
    
    .elu-36967-page-prev,
    .elu-36967-page-next {
      padding: 0 10px 0 22px;
    }
    
    .elu-36967-page-dots {
      margin: 0;
    }
  }

  /* 分类导航的移动端和桌面端样式 */
  .elu-36967-nav-link-desktop {
    display: flex; /* 默认在桌面端显示 */
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 14px;
  }

  .elu-36967-nav-link-desktop:hover {
    color: #ffffff;
  }

  .elu-36967-nav-dropdown-toggle {
    display: none; /* 默认在桌面端隐藏 */
    align-items: center;
    cursor: pointer;
  }

  /* 修改鼠标悬停行为 */
  .elu-36967-nav-item.elu-36967-nav-dropdown:hover .elu-36967-dropdown-menu {
    display: none; /* 在桌面端悬停不显示下拉菜单 */
  }

  @media (max-width: 768px) {
    .elu-36967-nav-link-desktop {
      display: none; /* 在移动端隐藏 */
    }
    
    .elu-36967-nav-dropdown-toggle {
      display: flex; /* 在移动端显示 */
      padding-left: 10px;
      width: 100%;
    }
    
    .elu-36967-nav-item.elu-36967-nav-dropdown.active .elu-36967-dropdown-menu {
      display: block; /* 在移动端点击后显示下拉菜单 */
    }
  }

  /* 移动端下拉菜单样式 */
  .elu-36967-mobile-dropdown {
    background: rgba(150,225,0,0.85);
    margin: 5px 0 5px 10px;
    padding: 0;
    border-left: 2px solid rgba(255, 77, 77, 0.5);
    border-radius: 0 8px 8px 0;
    overflow: hidden; /* 确保过渡效果正常 */
    max-height: 0; /* 默认折叠状态 */
    transition: max-height 0.3s ease, padding 0.3s ease; /* 添加高度和内边距过渡效果 */
    z-index: 2000; /* 确保在最上层，修改为更高的值 */
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .elu-36967-nav-item.elu-36967-nav-dropdown.active .elu-36967-mobile-dropdown {
    padding: 10px; /* 激活时添加内边距 */
    max-height: 1000px; /* 设置足够大的最大高度 */
  }

  @media (max-width: 768px) {
    .elu-36967-dropdown-menu {
      position: static;
      display: block;
      background: transparent;
      margin-top: 0;
      margin-bottom: 0;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
      z-index: 2000; /* 添加z-index确保显示在最上层 */
    }
    
    .elu-36967-dropdown-item {
      padding: 8px 12px;
      margin: 3px 0;
      border-radius: 4px;
      display: block;
      opacity: 0.8;
      transition: all 0.2s ease;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      position: relative; /* 添加相对定位以确保z-index生效 */
      z-index: 2001; /* 使子项比容器z-index高 */
    }
    
    .elu-36967-dropdown-item:hover {
      opacity: 1;
      transform: translateX(5px);
      background: rgba(150,225,0,0.85);
    }
    
    /* 确保桌面的下拉菜单样式不会干扰移动端 */
    .elu-36967-dropdown-menu.elu-36967-mobile-dropdown {
      display: block;
      transform: none;
      opacity: 1;
      visibility: visible;
      z-index: 2000; /* 确保有足够高的z-index */
    }
    
    /* 添加样式确保展开后的导航项可见 */
    .elu-36967-nav.active .elu-36967-nav-container {
      z-index: 1999; /* 确保导航容器在其他元素之上 */
    }
    
    /* 确保点击时没有遮罩干扰 */
    .elu-36967-nav-dropdown-toggle {
      position: relative;
      z-index: 2000; /* 与下拉菜单同级别的z-index */
    }
  }

  /* 更新计数样式 */
  .elu-36967-update-count {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    background: rgba(150,225,0,0.85);
    border-radius: 15px;
  }

  .elu-36967-count-num {
    color: #ffffff;
    font-weight: bold;
    margin: 0 4px;
  }

  /* ===== 视频详情页样式 ===== */
  .elu-36967-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 70px; /* 添加上边距，防止导航栏遮挡 */
  }

  /* 顶部海报区域 */
  .elu-36967-detail-hero {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-detail-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    filter: blur(30px);
    transform: scale(1.1);
    z-index: 1;
  }

  .elu-36967-detail-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    z-index: 2;
  }

  .elu-36967-detail-content {
    position: relative;
    z-index: 3;
    display: flex;
    padding: 40px;
    gap: 40px;
  }

  .elu-36967-detail-poster {
    flex-shrink: 0;
    width: 300px;
  }

  .elu-36967-detail-poster-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
  }

  .elu-36967-detail-poster-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 180, 0, 0.7);
  }

  .elu-36967-detail-poster-img {
    width: 100%;
    display: block;
    aspect-ratio: 2/3;
    object-fit: cover;
    transition: all 0.5s ease;
  }

  .elu-36967-detail-poster-container:hover .elu-36967-detail-poster-img {
    transform: scale(1.05);
  }

  .elu-36967-detail-poster-rating {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    padding: 30px 15px 15px;
    text-align: center;
  }

  .elu-36967-detail-rating-score {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
    animation: elu-36967-pulse 1.5s infinite alternate;
  }

  @keyframes elu-36967-pulse {
    from { text-shadow: 0 0 10px rgba(255, 204, 0, 0.5); }
    to { text-shadow: 0 0 20px rgba(255, 204, 0, 0.8); }
  }

  .elu-36967-detail-rating-stars {
    margin: 5px 0;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 2px;
  }

  .elu-36967-detail-star-full::before {
    content: '★';
  }

  .elu-36967-detail-star-half::before {
    content: '★';
    position: relative;
    width: 50%;
    display: inline-block;
    overflow: hidden;
  }

  .elu-36967-detail-rating-count {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
  }

  .elu-36967-detail-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .elu-36967-detail-play-btn, 
  .elu-36967-detail-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .elu-36967-detail-play-btn {
    flex: 3;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-detail-share-btn {
    flex: 2;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .elu-36967-detail-play-btn:hover, 
  .elu-36967-detail-share-btn:hover {
    transform: translateY(-5px);
  }

  .elu-36967-detail-play-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 77, 77, 0.5);
  }

  .elu-36967-detail-share-btn:hover {
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-detail-play-btn::before, 
  .elu-36967-detail-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: left 0.7s ease;
  }

  .elu-36967-detail-play-btn:hover::before, 
  .elu-36967-detail-share-btn:hover::before {
    left: 100%;
  }

  .elu-36967-detail-play-icon, 
  .elu-36967-detail-share-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    position: relative;
  }

  .elu-36967-detail-play-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #fff;
  }

  .elu-36967-detail-share-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92c0-1.61-1.31-2.92-2.92-2.92zM18 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM6 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm12 7.02c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z"/></svg>') center/cover no-repeat;
  }

  .elu-36967-detail-info {
    flex: 1;
  }

  .elu-36967-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
  }

  .elu-36967-detail-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 3px;
  }

  .elu-36967-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .elu-36967-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-detail-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    background: rgba(150,225,0,0.85);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .elu-36967-detail-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-detail-year {
    background: rgba(150,225,0,0.85);
    border-color: rgba(255, 193, 7, 0.3);
  }

  .elu-36967-detail-type {
    background: rgba(150,225,0,0.85);
    border-color: rgba(33, 150, 243, 0.3);
  }

  .elu-36967-detail-area {
    background: rgba(150,225,0,0.85);
    border-color: rgba(139, 195, 74, 0.3);
  }

  .elu-36967-detail-remarks {
    background: rgba(150,225,0,0.85);
    border-color: rgba(255, 77, 77, 0.3);
  }

  .elu-36967-detail-stats {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }

  .elu-36967-detail-stat {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
  }

  .elu-36967-detail-hits-icon,
  .elu-36967-detail-trend-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 5px;
    opacity: 0.8;
  }

  .elu-36967-detail-hits-icon::before {
    content: '👁️';
    font-size: 14px;
  }

  .elu-36967-detail-trend-icon::before {
    content: '📈';
    font-size: 14px;
  }

  .elu-36967-detail-directors,
  .elu-36967-detail-actors {
    display: flex;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
  }

  .elu-36967-detail-label {
    flex-shrink: 0;
    font-weight: 600;
    margin-right: 10px;
    color: #ffffff;
  }

  .elu-36967-detail-text {
    flex: 1;
    line-height: 1.6;
  }

  .elu-36967-detail-text a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
  }

  .elu-36967-detail-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #b4ff00;
    transition: width 0.3s ease;
  }

  .elu-36967-detail-text a:hover {
    color: #ffffff;
  }

  .elu-36967-detail-text a:hover::after {
    width: 100%;
  }

  .elu-36967-detail-plot {
    position: relative;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
  }

  .elu-36967-detail-plot-content {
    max-height: 110px;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .elu-36967-detail-plot.expanded .elu-36967-detail-plot-content {
    max-height: 1000px;
  }

  .elu-36967-detail-plot-expand {
    cursor: pointer;
    position: absolute;
    bottom: -25px;
    right: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    padding: 5px 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    z-index: 2; /* 确保展开按钮在内容上方 */
  }

  .elu-36967-detail-plot-expand:hover {
    color: #ffffff;
  }

  .elu-36967-detail-expand-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    transition: transform 0.3s ease;
  }

  .elu-36967-detail-expand-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transition: border-color 0.3s ease;
  }

  .elu-36967-detail-plot-expand:hover .elu-36967-detail-expand-icon::before {
    border-color: #ffffff;
  }

  .elu-36967-detail-plot.expanded .elu-36967-detail-expand-icon {
    transform: rotate(180deg);
  }

  .elu-36967-detail-plot.expanded .elu-36967-detail-plot-expand {
    bottom: -30px;
  }

  .elu-36967-detail-sections {
    margin-bottom: 50px;
  }

  .elu-36967-detail-section {
    background: rgba(150,225,0,0.85);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
  }

  .elu-36967-detail-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.1), transparent 70%);
    z-index: -1;
  }

  .elu-36967-detail-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .elu-36967-detail-section-title {
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    padding-left: 15px;
  }

  .elu-36967-detail-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
  }

  .elu-36967-detail-more-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .elu-36967-detail-more-link:hover {
    color: #ffffff;
  }

  .elu-36967-detail-more-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    margin-left: 5px;
  }

  .elu-36967-detail-more-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 8px;
    height: 8px;
    border-top: 2px solid rgba(255, 255, 255, 0.7);
    border-right: 2px solid rgba(255, 255, 255, 0.7);
  }

  .elu-36967-detail-more-link:hover .elu-36967-detail-more-icon::before {
    border-color: #ffffff;
  }

  .elu-36967-detail-tabs {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
  }

  .elu-36967-detail-tab {
    padding: 8px 15px;
    background: rgba(150,225,0,0.85);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .elu-36967-detail-tab:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .elu-36967-detail-tab-active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-detail-tab-active:hover {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transform: translateY(-2px);
  }

  .elu-36967-detail-play-panels {
    position: relative;
  }

  .elu-36967-detail-play-panel {
    display: none;
    animation: elu-36967-fade-in 0.3s ease;
  }

  .elu-36967-detail-panel-active {
    display: block;
  }

  .elu-36967-detail-episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
  }

  .elu-36967-detail-episode-item {
    background: rgba(150,225,0,0.85);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .elu-36967-detail-episode-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }

  .elu-36967-detail-episode-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 77, 0.3);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-detail-episode-item:hover::before {
    opacity: 0.15;
  }

  .elu-36967-detail-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
  }

  .elu-36967-detail-related-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .elu-36967-detail-related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-detail-related-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
  }

  .elu-36967-detail-related-poster {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
  }

  .elu-36967-detail-related-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-detail-related-item:hover .elu-36967-detail-related-img {
    transform: scale(1.1);
  }

  .elu-36967-detail-related-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .elu-36967-detail-related-item:hover .elu-36967-detail-related-mask {
    opacity: 0.5;
  }

  .elu-36967-detail-related-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .elu-36967-detail-related-play-icon::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
  }

  .elu-36967-detail-related-item:hover .elu-36967-detail-related-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-detail-related-remarks {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 1;
  }

  .elu-36967-detail-related-info {
    padding: 12px;
    background: rgba(150,225,0,0.85);
    position: relative;
  }

  .elu-36967-detail-related-title {
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-weight: 500;
  }

  .elu-36967-detail-related-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  .elu-36967-detail-related-meta span {
    margin-right: 10px;
  }

  .elu-36967-detail-hot-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
  }

  .elu-36967-detail-hot-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(150,225,0,0.85);
    transition: all 0.3s ease;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid transparent;
  }

  .elu-36967-detail-hot-item:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .elu-36967-detail-hot-rank {
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: rgba(150,225,0,0.85);
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
  }

  .elu-36967-detail-hot-top {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 3px 8px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-detail-hot-info {
    flex: 1;
    overflow: hidden;
  }

  .elu-36967-detail-hot-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
    font-size: 15px;
  }

  .elu-36967-detail-hot-hits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* 响应式适配 */
  @media (max-width: 992px) {
    .elu-36967-detail-content {
      flex-direction: column;
      gap: 30px;
      padding: 30px;
    }
    
    .elu-36967-detail-poster {
      width: 240px;
      margin: 0 auto;
    }
    
    .elu-36967-detail-title {
      font-size: 28px;
    }
    
    .elu-36967-detail-sections {
      margin-top: 20px;
    }
    
    .elu-36967-detail-episodes-grid {
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .elu-36967-detail-related-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
  }

  @media (max-width: 768px) {
    .elu-36967-detail-container {
      padding: 0 10px;
      padding-top: 60px; /* 移动端导航栏较小，调整上边距 */
    }
    
    .elu-36967-detail-content {
      padding: 20px;
    }
    
    .elu-36967-detail-title {
      font-size: 24px;
    }
    
    .elu-36967-detail-section {
      padding: 20px 15px;
    }
    
    .elu-36967-detail-section-title {
      font-size: 18px;
    }
    
    .elu-36967-detail-episodes-grid {
      grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
      gap: 8px;
    }
    
    .elu-36967-detail-episode-item {
      padding: 8px 5px;
      font-size: 13px;
    }
    
    .elu-36967-detail-related-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
    
    .elu-36967-detail-hot-list {
      grid-template-columns: 1fr;
    }
  }

  /* 动画效果样式 */
  @keyframes elu-36967-ripple-effect {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  @keyframes elu-36967-click-pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(0.95);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes elu-36967-fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .elu-36967-ripple {
    position: absolute;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    transform: scale(0);
    animation: elu-36967-ripple-effect 0.6s linear;
    pointer-events: none;
  }

  .elu-36967-clicked {
    animation: elu-36967-click-pulse 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  /* 播放页样式 */
  .elu-36967-player-container {
    background-color: #b4ff00;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 70px; /* 添加上边距，防止导航栏遮挡 */
  }

  /* 顶部进度条 */
  .elu-36967-player-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(150,225,0,0.85);
    z-index: 100;
  }

  .elu-36967-progress-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    box-shadow: 0 0 10px rgba(255, 61, 111, 0.7);
    transition: width 0.3s ease-out;
  }



  .elu-36967-player-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .elu-36967-player-main {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: #b4ff00;
    transition: all 0.3s ease;
  }

  .elu-36967-player-main.elu-36967-lights-off {
    box-shadow: 0 0 50px rgba(255, 61, 111, 0.3);
  }

  /* 修改播放器盒子样式，确保完全填充 */
  .elu-36967-player-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9比例 */
    background-color: #b4ff00;
    overflow: hidden;
  }

  /* 确保播放器内的所有元素完全填充 */
  .elu-36967-player-box iframe,
  .elu-36967-player-box video,
  .elu-36967-player-box object,
  .elu-36967-player-box embed,
  .elu-36967-player-box div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    object-fit: fill;
    margin: 0 !important;
    padding: 0 !important;
  }

  .elu-36967-player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  .elu-36967-control-left,
  .elu-36967-control-right {
    display: flex;
    gap: 15px;
  }

  .elu-36967-control-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(150,225,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-control-btn:hover {
    background: rgba(150,225,0,0.85);
    transform: scale(1.1);
  }

  .elu-36967-control-btn:active {
    transform: scale(0.95);
  }

  .elu-36967-control-btn i {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.2s ease;
  }

  .elu-36967-control-btn:hover i {
    opacity: 1;
  }

  /* 播放器控制图标 */
  .elu-36967-icon-prev:before {
    content: "⬅️";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-next:before {
    content: "➡️";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-light:before {
    content: "💡";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-share:before {
    content: "📤";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-report:before {
    content: "🚩";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-views:before {
    content: "👁️";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-star:before {
    content: "⭐";
    font-family: 'Arial, sans-serif';
  }

  /* 播放器侧边栏 */
  .elu-36967-player-sidebar {
    width: 320px;
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  .elu-36967-sidebar-header {
    padding: 15px;
    position: relative;
  }

  .elu-36967-sidebar-poster {
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
  }

  .elu-36967-sidebar-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .elu-36967-sidebar-poster:hover img {
    transform: scale(1.05);
  }

  .elu-36967-sidebar-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  .elu-36967-sidebar-info {
    position: relative;
    margin-top: -40px;
    padding: 0 10px;
    z-index: 2;
  }

  .elu-36967-sidebar-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .elu-36967-sidebar-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }

  .elu-36967-sidebar-meta span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    background: rgba(150,225,0,0.85);
    padding: 2px 8px;
    border-radius: 10px;
  }

  .elu-36967-sidebar-data {
    display: flex;
    gap: 15px;
  }

  .elu-36967-sidebar-views,
  .elu-36967-sidebar-score {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
  }

  .elu-36967-sidebar-score {
    color: #ffffff;
  }

  /* 剧集列表 */
  .elu-36967-sidebar-episodes {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .elu-36967-sidebar-tabs {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .elu-36967-tab-item {
    padding: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: center;
    flex: 1;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }

  .elu-36967-tab-active {
    color: #ffffff;
  }

  .elu-36967-tab-line {
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }

  .elu-36967-tab-active .elu-36967-tab-line {
    width: 70%;
  }

  .elu-36967-sidebar-panels {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
  }

  .elu-36967-panel-item {
    display: none;
  }

  .elu-36967-panel-active {
    display: block;
  }

  .elu-36967-episode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .elu-36967-episode-item {
    background: rgba(150,225,0,0.85);
    text-align: center;
    padding: 8px 5px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
  }

  .elu-36967-episode-item:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-episode-active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(255, 61, 111, 0.3);
  }

  .elu-36967-episode-active:hover {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  /* 视频详情区域 */
  .elu-36967-video-details {
    max-width: 1600px;
    margin: 30px auto;
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-details-tabs {
    display: flex;
    gap: 5px;
    padding: 0 20px;
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-details-tab {
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
  }

  .elu-36967-details-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: all 0.3s ease;
  }

  .elu-36967-details-tab:hover {
    color: #ffffff;
  }

  .elu-36967-details-tab.elu-36967-tab-active {
    color: #ffffff;
  }

  .elu-36967-details-tab.elu-36967-tab-active::after {
    width: 100%;
  }

  .elu-36967-details-content {
    padding: 20px;
  }

  .elu-36967-details-panel {
    display: none;
  }

  .elu-36967-details-panel.elu-36967-panel-active {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* 简介内容样式 */
  .elu-36967-video-info {
    color: rgba(255, 255, 255, 0.8);
  }

  .elu-36967-info-section {
    margin-bottom: 15px;
    display: flex;
  }

  .elu-36967-info-label {
    width: 80px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
  }

  .elu-36967-info-value {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
  }

  .elu-36967-info-value a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-right: 8px;
  }

  .elu-36967-info-value a:hover {
    color: #ffffff;
    text-decoration: underline;
  }

  .elu-36967-info-plot {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
  }

  /* 相似推荐内容样式 */
  .elu-36967-similar-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
  }

  .elu-36967-similar-item {
    transition: all 0.3s ease;
  }

  .elu-36967-similar-item:hover {
    transform: translateY(-5px);
  }

  .elu-36967-similar-poster {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    padding-top: 140%;
  }

  .elu-36967-similar-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
  }

  .elu-36967-similar-link:hover .elu-36967-similar-img {
    transform: scale(1.08);
  }

  .elu-36967-similar-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
  }

  .elu-36967-similar-link:hover .elu-36967-similar-mask {
    opacity: 1;
  }

  .elu-36967-similar-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .elu-36967-similar-play::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid #fff;
    margin-left: 3px;
  }

  .elu-36967-similar-link:hover .elu-36967-similar-play {
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-similar-remarks {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-similar-info {
    padding: 8px 5px;
  }

  .elu-36967-similar-title {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .elu-36967-similar-meta {
    display: flex;
    gap: 10px;
  }

  .elu-36967-similar-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
  }

  /* 热播榜内容样式 */
  .elu-36967-hot-list {
    display: flex;
    flex-direction: column;
  }

  .elu-36967-hot-item {
    display: flex;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 5px;
    overflow: hidden;
  }

  .elu-36967-hot-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: all 0.3s ease;
  }

  .elu-36967-hot-item:hover {
    background: rgba(150,225,0,0.85);
    transform: translateX(5px);
  }

  .elu-36967-hot-item:hover::before {
    opacity: 1;
  }

  .elu-36967-hot-rank {
    width: 24px;
    height: 24px;
    background: rgba(150,225,0,0.85);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 12px;
  }

  .elu-36967-hot-top {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(255, 61, 111, 0.3);
  }

  .elu-36967-hot-info {
    flex: 1;
  }

  .elu-36967-hot-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .elu-36967-hot-meta {
    display: flex;
    gap: 10px;
  }

  .elu-36967-hot-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* 提示框样式 */
  .elu-36967-toast {
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(150,225,0,0.85);
    backdrop-filter: blur(5px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-toast.elu-36967-show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }

  .elu-36967-toast-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: cover;
  }

  .elu-36967-toast-message {
    font-size: 14px;
  }

  /* 响应式样式 */
  @media (max-width: 1200px) {
    .elu-36967-player-wrapper {
      flex-direction: column;
    }
    
    .elu-36967-player-sidebar {
      width: 100%;
      max-height: 400px;
    }
    
    .elu-36967-similar-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 768px) {
    .elu-36967-player-section {
      margin-top: 3px;
    }
    
    .elu-36967-similar-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    
    .elu-36967-player-controls {
      padding: 10px;
    }
    
    .elu-36967-control-btn {
      width: 32px;
      height: 32px;
    }
    
    .elu-36967-details-tab {
      padding: 12px 15px;
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .elu-36967-player-section {
      margin-top: 3px;
    }
    
    .elu-36967-similar-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .elu-36967-player-controls {
      padding: 8px;
    }
    
    .elu-36967-control-btn {
      width: 28px;
      height: 28px;
    }
    
    .elu-36967-control-btn i {
      font-size: 14px;
    }
    
    .elu-36967-episode-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .elu-36967-details-tabs {
      padding: 0 10px;
    }
    
    .elu-36967-details-tab {
      padding: 10px;
      font-size: 13px;
    }
    
    .elu-36967-details-content {
      padding: 15px 10px;
    }
  }

  /* 针对全面屏和折叠屏设备的适配 */
  @media (max-width: 380px) and (max-height: 800px) {
    .elu-36967-player-box {
      padding-top: 60%; /* 稍微调整高宽比，适合超小屏幕 */
    }
    
    .elu-36967-player-sidebar {
      max-height: 300px;
    }
  }

  /* 针对iPad和平板设备的适配 */
  @media (min-width: 768px) and (max-width: 1024px) {
    .elu-36967-player-section {
      padding: 15px;
    }
    
    .elu-36967-player-wrapper {
      gap: 15px;
    }
    
    .elu-36967-player-box {
      padding-top: 56.25%; /* 保持16:9比例 */
    }
    
    .elu-36967-player-sidebar {
      width: 100%;
      max-height: 350px;
    }
  }

  /* 播放器侧边栏 */
  .elu-36967-player-sidebar {
    width: 320px;
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
  }

  /* 针对超宽屏幕的优化 */
  @media (min-width: 1920px) {
    .elu-36967-player-wrapper {
      max-width: 1800px;
    }
    
    .elu-36967-player-sidebar {
      width: 380px;
    }
  }

  /* 横屏手机模式优化 */
  @media (max-height: 500px) and (orientation: landscape) {
    .elu-36967-player-wrapper {
      flex-direction: row; /* 横屏时恢复水平布局 */
    }
    
    .elu-36967-player-sidebar {
      width: 35%;
      max-height: none;
      height: 100%;
    }
    
    .elu-36967-player-box {
      padding-top: 52%; /* 稍微调整比例适应横屏 */
    }
    
    .elu-36967-sidebar-poster {
      height: 70px;
    }
    
    .elu-36967-sidebar-info {
      margin-top: -20px;
    }
    
    .elu-36967-sidebar-title {
      font-size: 14px;
      margin-bottom: 5px;
    }
    
    .elu-36967-sidebar-panels {
      padding: 10px;
    }
    
    .elu-36967-episode-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 5px;
    }
    
    .elu-36967-episode-item {
      padding: 5px;
      font-size: 12px;
    }
  }

  /* 动画效果 */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
  }

  /* 移除播放器主体的动画效果 */
  .elu-36967-player-main {
    /* 移除动画效果 */
    animation: none;
  }

  .elu-36967-control-btn:hover {
    /* 移除悬停时的浮动动画 */
    animation: none;
  }

  /* 灯光关闭模式 */
  body.elu-36967-lights-off {
    background-color: #b4ff00;
  }

  body.elu-36967-lights-off .elu-36967-player-container {
    background-color: #b4ff00;
  }

  body.elu-36967-lights-off .elu-36967-player-sidebar,
  body.elu-36967-lights-off .elu-36967-video-details {
    opacity: 0.3;
    transition: opacity 0.3s ease;
  }

  body.elu-36967-lights-off .elu-36967-player-sidebar:hover,
  body.elu-36967-lights-off .elu-36967-video-details:hover {
    opacity: 1;
  }

  /* 水波纹和点击动画被移除 */
  /* 点击样式，无动画 */
  .elu-36967-clicked {
    transform: scale(1);
  }

  /* 去除a标签的下划线效果 */
  a, .elu-36967-nav-item, .elu-36967-dropdown-item, .elu-36967-footer-link, .elu-36967-social-link, .elu-36967-footer-site-link, .elu-36967-detail-text a, .elu-36967-info-value a {
    text-decoration: none;
  }

  a::after, .elu-36967-nav-item::after, .elu-36967-dropdown-item::after, .elu-36967-footer-link::after, .elu-36967-social-link::after, .elu-36967-footer-site-link::after, .elu-36967-info-value a::after {
    display: none !important;
    height: 0 !important;
    width: 0 !important;
    content: none !important;
  }

  /* 修改特定元素的下划线样式 */
  .elu-36967-detail-text a::after {
    display: none !important;
    content: none !important;  
    width: 0 !important;
    height: 0 !important;
  }

  .elu-36967-footer-title:after,
  .elu-36967-detail-title::after,
  .elu-36967-list-title:after,
  .elu-36967-filter-title:after,
  .elu-36967-logo-text:after,
  .elu-36967-footer-logo-text:after,
  .elu-36967-tab-line,
  .elu-36967-details-tab::after { background: linear-gradient(90deg, #fff, #ff4d4d); 
    /* 保留这些元素的下划线效果，它们是设计的一部分，不是链接下划线 */
    display: block;
  }

  /* 视频分类页样式优化 */
  .elu-36967-show-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 70px 20px 40px; /* 添加上边距，防止导航栏遮挡 */
    position: relative;
  }

  .elu-36967-show-banner {
    position: relative;
    border-radius: 16px;
    height: 180px;
    overflow: hidden;
    margin-bottom: 30px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
  }

  .elu-36967-show-banner:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
  }

  .elu-36967-show-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(150,225,0,0.85);
    z-index: 1;
  }

  .elu-36967-show-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .elu-36967-show-title {
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-show-badge {
    font-size: 16px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 30px;
    margin-left: 15px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-show-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  /* 筛选器样式优化 */
  .elu-36967-filter-wrapper {
    background: rgba(150,225,0,0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: static; /* 修复筛选栏跟随问题，确保其不会随滚动而移动 */
  }

  .elu-36967-filter-wrapper:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.08);
  }
  
  /* 确保在移动设备上也不会有sticky行为 */
  @media (max-width: 992px) {
    .elu-36967-filter-wrapper {
      position: static !important;
      top: auto !important;
      z-index: auto !important;
    }
  }

  .elu-36967-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
  }

  .elu-36967-filter-title {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    font-weight: 500;
  }

  .elu-36967-filter-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    margin-right: 10px;
    border-radius: 2px;
  }

  .elu-36967-filter-active {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
  }

  .elu-36967-active-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 8px;
    border: 1px solid rgba(255, 77, 77, 0.2);
    transition: all 0.3s ease;
  }

  .elu-36967-active-tag:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
  }

  .elu-36967-tag-icon {
    font-style: normal;
    margin-right: 5px;
    opacity: 0.8;
  }

  .elu-36967-active-all {
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .elu-36967-filter-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .elu-36967-filter-panel {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .elu-36967-filter-label {
    flex: 0 0 80px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    margin-right: 20px;
    margin-top: 8px;
  }

  .elu-36967-filter-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    margin-right: 5px;
    opacity: 0.9;
  }

  .elu-36967-icon-category::before {
    content: "🎬";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-area::before {
    content: "🌏";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-letter::before {
    content: "🔤";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-letter-options {
    max-width: 1000px;
  }

  .elu-36967-filter-option {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(150,225,0,0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .elu-36967-filter-option:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .elu-36967-filter-option.elu-36967-active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.25);
    border-color: rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .elu-36967-filter-option.elu-36967-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #b4ff00;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
  }

  /* 排序栏样式 */
  .elu-36967-sort-bar {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .elu-36967-sort-title {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-right: 15px;
  }

  .elu-36967-sort-options {
    display: flex;
    gap: 10px;
    flex: 1;
  }

  .elu-36967-sort-option {
    display: flex;
    align-items: center;
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-sort-option:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .elu-36967-sort-option.elu-36967-active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .elu-36967-sort-icon {
    margin-right: 5px;
    display: inline-block;
  }

  .elu-36967-icon-time::before {
    content: "⏱️";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-hot::before {
    content: "🔥";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-icon-star::before {
    content: "⭐";
    font-family: 'Arial, sans-serif';
  }

  .elu-36967-update-count {
    margin-left: auto;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(150,225,0,0.85);
    padding: 6px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
  }

  .elu-36967-count-num {
    color: #ffffff;
    font-weight: 600;
    margin: 0 5px;
  }

  /* 内容区样式 */
  .elu-36967-content-wrapper {
    margin-bottom: 40px;
  }

  .elu-36967-vod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  .elu-36967-vod-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-vod-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }

  .elu-36967-vod-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .elu-36967-vod-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
  }

  .elu-36967-vod-thumb {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
  }

  .elu-36967-vod-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
  }

  .elu-36967-vod-item:hover .elu-36967-vod-poster {
    transform: scale(1.1);
    filter: brightness(1.1);
  }

  .elu-36967-vod-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }

  .elu-36967-vod-item:hover .elu-36967-vod-mask {
    opacity: 0.5;
  }

  .elu-36967-vod-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .elu-36967-vod-play-icon::before {
    content: '';
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
  }

  .elu-36967-vod-item:hover .elu-36967-vod-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-vod-remarks {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 77, 77, 0.3);
  }

  .elu-36967-vod-score {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.3);
  }

  .elu-36967-vod-info {
    padding: 12px 15px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    /* 添加半透明背景，使文字更易读 */
    background: rgba(150,225,0,0.85);
    border-radius: 0 0 10px 10px;
  }

  .elu-36967-vod-name {
    font-size: 15px;
    font-weight: 500;
    margin: 0 0 5px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }

  .elu-36967-vod-actor {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 5px;
    display: block; /* 确保在移动端也能显示 */
  }

  .elu-36967-vod-detail {
    display: none; /* 默认隐藏额外信息 */
    transition: opacity 0.3s ease;
    opacity: 0;
    background: rgba(150,225,0,0.85);
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0 0 10px 10px;
    max-height: none;
    overflow: hidden;
    z-index: 1;
  }

  /* 鼠标悬停时显示额外信息 */
  .elu-36967-vod-item:hover .elu-36967-vod-detail {
    display: block;
    opacity: 1;
    padding: 12px 15px;
  }

  .elu-36967-vod-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }

  .elu-36967-vod-year,
  .elu-36967-vod-area,
  .elu-36967-vod-class {
    font-size: 12px;
    background: rgba(150,225,0,0.85);
    padding: 2px 8px;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
  }

  .elu-36967-vod-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-height: 54px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* 响应式样式 */
  @media (max-width: 1200px) {
    .elu-36967-vod-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 20px;
    }
  }

  @media (max-width: 992px) {
    .elu-36967-show-banner {
      height: 150px;
    }
    
    .elu-36967-show-title {
      font-size: 28px;
    }
    
    .elu-36967-filter-wrapper {
      padding: 15px;
    }
    
    .elu-36967-vod-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 15px;
    }
  }

  @media (max-width: 768px) {
    .elu-36967-show-container {
      /*margin: 60px auto 30px;*/
      padding: 0 15px;
    }
    
    .elu-36967-show-banner {
      height: 120px;
      margin-bottom: 20px;
      border-radius: 12px;
    }
    
    .elu-36967-show-content {
      padding: 20px;
    }
    
    .elu-36967-show-title {
      font-size: 24px;
      margin-bottom: 5px;
    }
    
    .elu-36967-show-badge {
      font-size: 14px;
      padding: 2px 10px;
      margin-left: 10px;
    }
    
    .elu-36967-show-desc {
      font-size: 14px;
    }
    
    .elu-36967-filter-label {
      flex: 0 0 60px;
      font-size: 14px;
      margin-right: 10px;
    }
    
    .elu-36967-filter-option {
      padding: 5px 10px;
      font-size: 13px;
    }
    
    .elu-36967-sort-bar {
      flex-wrap: wrap;
    }
    
    .elu-36967-update-count {
      margin-left: 0;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
    }
    
    .elu-36967-vod-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }
    
    .elu-36967-vod-info {
      padding: 10px 12px;
    }
    
    .elu-36967-vod-name {
      font-size: 14px;
    }
    
    .elu-36967-vod-actor {
      font-size: 12px;
    }
  }

  @media (max-width: 480px) {
    .elu-36967-show-banner {
      height: 100px;
    }
    
    .elu-36967-show-title {
      font-size: 20px;
    }
    
    .elu-36967-show-badge {
      font-size: 12px;
      padding: 1px 8px;
    }
    
    .elu-36967-show-desc {
      font-size: 12px;
    }
    
    .elu-36967-filter-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .elu-36967-filter-active {
      margin-top: 10px;
    }
    
    .elu-36967-filter-panel {
      flex-direction: column;
    }
    
    .elu-36967-filter-label {
      margin-bottom: 8px;
    }
    
    .elu-36967-vod-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
  }

  /* 脉冲动画效果 */
  @keyframes elu-36967-pulse-animation {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .elu-36967-animate-pulse {
    animation: elu-36967-pulse-animation 0.6s ease;
  }

  /* 涟漪效果 */
  .elu-36967-ripple {
    position: absolute;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    transform: scale(0);
    animation: elu-36967-ripple-animation 0.6s linear;
    pointer-events: none;
    z-index: 10;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
  }

  @keyframes elu-36967-ripple-animation {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(3);
      opacity: 0;
    }
  }

  /* 图标动画效果 */
  .elu-36967-icon-hot::before,
  .elu-36967-icon-star::before,
  .elu-36967-icon-time::before {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .elu-36967-sort-option:hover .elu-36967-icon-hot::before,
  .elu-36967-sort-option:hover .elu-36967-icon-star::before,
  .elu-36967-sort-option:hover .elu-36967-icon-time::before {
    transform: scale(1.2);
  }

  .elu-36967-sort-option.elu-36967-active .elu-36967-icon-hot::before,
  .elu-36967-sort-option.elu-36967-active .elu-36967-icon-star::before,
  .elu-36967-sort-option.elu-36967-active .elu-36967-icon-time::before {
    animation: elu-36967-pulse-animation 1.5s infinite;
  }

  /* 添加图片懒加载样式 */
  .lazy {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .lazy.loaded {
    opacity: 1;
  }

  /* 视频搜索页样式 */
  .elu-36967-search-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 70px 20px 40px; /* 添加上边距，防止导航栏遮挡 */
    position: relative;
  }

  .elu-36967-search-hero {
    position: relative;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 16px;
    overflow: hidden;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .elu-36967-search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
  }

  .elu-36967-search-title {
    font-size: 32px;
    color: #ffffff;
    margin: 0 0 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-search-keyword {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    margin: 5px 0 25px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(150,225,0,0.85);
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .elu-36967-search-form-hero {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 1;
  }

  .elu-36967-search-input-hero {
    width: 100%;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .elu-36967-search-input-hero:focus {
    outline: none;
    background-color: #b4ff00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .elu-36967-search-btn-hero {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border: none;
    border-radius: 50px;
    color: white;
    padding: 0 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .elu-36967-search-btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .elu-36967-search-stat {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    position: relative;
    z-index: 1;
  }

  .elu-36967-search-count {
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  }

  /* 搜索排序工具栏 */
  .elu-36967-search-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(150,225,0,0.85);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .elu-36967-search-filters {
    display: flex;
    gap: 10px;
  }

  .elu-36967-search-filter {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 8px;
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }

  .elu-36967-search-filter:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .elu-36967-search-filter.active {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .elu-36967-search-filter-icon {
    margin-right: 6px;
    font-size: 16px;
  }

  .elu-36967-search-tips {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .elu-36967-search-tip {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
  }

  .elu-36967-search-tip::before {
    content: "💡";
    margin-right: 5px;
    font-size: 15px;
  }

  /* 搜索结果网格 */
  .elu-36967-search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }

  /* 空结果状态 */
  .elu-36967-search-empty {
    text-align: center;
    padding: 50px 20px;
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    margin-bottom: 30px;
  }

  .elu-36967-empty-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.3);
  }

  .elu-36967-empty-title {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
  }

  .elu-36967-empty-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
  }

  .elu-36967-empty-suggestions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .elu-36967-suggestion-tag {
    padding: 6px 15px;
    background: rgba(150,225,0,0.85);
    border-radius: 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-suggestion-tag:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
  }

  /* 相关搜索 */
  .elu-36967-related-search {
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .elu-36967-related-title {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 15px;
    position: relative;
    padding-left: 15px;
  }

  .elu-36967-related-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
  }

  .elu-36967-related-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-related-tag {
    padding: 6px 15px;
    background: rgba(150,225,0,0.85);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-related-tag:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  /* 响应式样式 */
  @media (max-width: 992px) {
    .elu-36967-search-hero {
      padding: 30px;
    }
    
    .elu-36967-search-title {
      font-size: 28px;
    }
    
    .elu-36967-search-keyword {
      font-size: 30px;
    }
    
    .elu-36967-search-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .elu-36967-search-container {
      margin: 60px auto 30px;
      padding: 0 15px;
    }
    
    .elu-36967-search-hero {
      padding: 25px 20px;
      margin-bottom: 20px;
    }
    
    .elu-36967-search-title {
      font-size: 22px;
    }
    
    .elu-36967-search-keyword {
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .elu-36967-search-form-hero {
      max-width: 100%;
    }
    
    .elu-36967-search-input-hero {
      padding: 12px 20px;
      font-size: 15px;
    }
    
    .elu-36967-search-btn-hero {
      padding: 0 15px;
      font-size: 14px;
    }
    
    .elu-36967-search-toolbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 15px;
      padding: 15px;
    }
    
    .elu-36967-search-filters {
      width: 100%;
      overflow-x: auto;
      padding-bottom: 5px;
    }
    
    .elu-36967-search-filter {
      font-size: 13px;
      padding: 6px 12px;
      white-space: nowrap;
    }
    
    .elu-36967-search-tips {
      flex-direction: column;
      gap: 8px;
    }
    
    .elu-36967-search-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 15px;
    }
    
    .elu-36967-empty-icon {
      font-size: 50px;
    }
    
    .elu-36967-empty-title {
      font-size: 20px;
    }
    
    .elu-36967-empty-text {
      font-size: 14px;
    }
  }

  @media (max-width: 480px) {
    .elu-36967-search-hero {
      padding: 20px 15px;
    }
    
    .elu-36967-search-title {
      font-size: 18px;
    }
    
    .elu-36967-search-keyword {
      font-size: 20px;
      margin-bottom: 15px;
      padding: 4px 12px;
    }
    
    .elu-36967-search-btn-hero {
      font-size: 13px;
      padding: 0 12px;
    }
    
    .elu-36967-search-filter {
      padding: 5px 10px;
      font-size: 12px;
    }
    
    .elu-36967-search-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 12px;
    }
    
    .elu-36967-related-title {
      font-size: 16px;
    }
    
    .elu-36967-related-tag {
      padding: 5px 12px;
      font-size: 12px;
    }
  }

  /* 搜索页面闪烁光标 */
  .elu-36967-search-cursor {
    display: inline-block;
    color: #ffffff;
    font-weight: 700;
    animation: blink 1s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }

  /* 搜索按钮提交动画 */
  .elu-36967-search-btn-hero {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .elu-36967-search-btn-submitting {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    background-size: 800% 800%;
    animation: gradientAnimation 2s ease infinite;
  }

  @keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  /* ===== 首页样式 ===== */

  /* 通用容器样式 */
  .elu-36967-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    /*padding-top: 70px; */
    /* 添加上边距，防止导航栏遮挡 */
  }

  /* 英雄区 */
  .elu-36967-hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 40px;
    background-color: #b4ff00;
  }

  .elu-36967-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    background-size: 600% 600%;
    animation: elu-36967-hero-gradient 15s ease infinite;
    opacity: 0.8;
  }

  .elu-36967-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.3"><circle cx="500" cy="500" r="350" stroke="white" stroke-width="2" fill="none" /></svg>');
    background-size: cover;
    opacity: 0.1;
  }

  .elu-36967-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  @keyframes elu-36967-hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .elu-36967-hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .elu-36967-hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .elu-36967-hero-title {
  background: linear-gradient(90deg, #fff, #ff4d4d);
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  text-shadow: 0 2px 1px rgba(0, 0, 0, 0.5);
  animation: elu-36967-hero-fade-in 1s ease;
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  
}

  .elu-36967-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px;
    animation: elu-36967-hero-fade-in 1.2s ease;
  }

  @keyframes elu-36967-hero-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .elu-36967-hero-search {
    margin-bottom: 30px;
    animation: elu-36967-hero-fade-in 1.4s ease;
  }

  .elu-36967-hero-search-box {
    position: relative;
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .elu-36967-hero-search-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-hero-search-input {
    flex: 1;
    height: 60px;
    padding: 0 30px;
    border: none;
    font-size: 16px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    outline: none;
    transition: background 0.3s ease;
  }

  .elu-36967-hero-search-input:focus {
    background-color: #b4ff00;
  }

  .elu-36967-hero-search-btn {
    width: 140px;
    border: none;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s ease;
  }

  .elu-36967-hero-search-btn:hover {
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  }

  .elu-36967-icon-search {
    font-size: 20px;
  }

  .elu-36967-hero-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    animation: elu-36967-hero-fade-in 1.6s ease;
  }

  .elu-36967-hero-tags-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
  }

  .elu-36967-hero-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .elu-36967-hero-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(150,225,0,0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .elu-36967-hero-tag:hover {
    background: rgba(150,225,0,0.85);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #ffffff;
  }

  /* 通用区块标题 */
  .elu-36967-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
  }

  .elu-36967-section-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    position: relative;
    padding-left: 15px;
  }

  .elu-36967-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    border-radius: 2px;
  }

  .elu-36967-section-more {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }

  .elu-36967-section-more:hover {
    color: #ffffff;
  }

  .elu-36967-icon-arrow-right {
    display: inline-block;
    width: 16px;
    height: 16px;
    position: relative;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .elu-36967-icon-arrow-right::before {
    content: '➡️';
    font-family: 'Arial, sans-serif';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .elu-36967-section-more:hover .elu-36967-icon-arrow-right {
    transform: translateX(3px);
  }

  /* 特色推荐 */
  .elu-36967-featured-section {
    margin-bottom: 50px;
  }

  .elu-36967-featured-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    overflow: hidden;
  }

  .elu-36967-featured-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(150,225,0,0.85);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 220px;
  }

  .elu-36967-featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  }

  .elu-36967-featured-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
  }

  .elu-36967-featured-poster {
    width: 150px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-featured-item:hover .elu-36967-featured-img {
    transform: scale(1.05);
  }

  .elu-36967-featured-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .elu-36967-featured-item:hover .elu-36967-featured-mask {
    opacity: 1;
  }

  .elu-36967-featured-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .elu-36967-featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
  }

  .elu-36967-icon-play {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 12px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
  }

  .elu-36967-featured-item:hover .elu-36967-featured-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-featured-info {
    flex: 1;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .elu-36967-featured-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
  }

  .elu-36967-featured-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
  }

  .elu-36967-featured-score {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
  }

  .elu-36967-icon-star {
    font-size: 14px;
    margin-right: 4px;
  }

  .elu-36967-featured-type {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    background: rgba(150,225,0,0.85);
    padding: 2px 8px;
    border-radius: 4px;
  }

  .elu-36967-featured-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  /* 类别导航 */
  .elu-36967-category-nav {
    margin-bottom: 50px;
  }

  .elu-36967-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .elu-36967-category-item {
    background: rgba(150,225,0,0.85);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .elu-36967-category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: rgba(150,225,0,0.85);
  }

  .elu-36967-category-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
  }

  /* 最新上线 */
  .elu-36967-latest-section {
    margin-bottom: 50px;
  }

  .elu-36967-latest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }

  .elu-36967-latest-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(150,225,0,0.85);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  }

  .elu-36967-latest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  .elu-36967-latest-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
  }

  .elu-36967-latest-poster {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
  }

  .elu-36967-latest-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-latest-item:hover .elu-36967-latest-img {
    transform: scale(1.08);
  }

  .elu-36967-latest-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    z-index: 1;
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .elu-36967-latest-item:hover .elu-36967-latest-mask {
    opacity: 0.7;
  }

  .elu-36967-latest-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
  }

  .elu-36967-latest-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 45px;
    height: 45px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .elu-36967-latest-item:hover .elu-36967-latest-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-latest-info {
    padding: 12px;
    position: relative;
  }

  .elu-36967-latest-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .elu-36967-latest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .elu-36967-latest-type {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(150,225,0,0.85);
    padding: 2px 6px;
    border-radius: 4px;
  }

  .elu-36967-latest-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* 分类推荐 */
  .elu-36967-recommend-section {
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-recommend-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05), transparent 70%);
    z-index: -1;
  }

  .elu-36967-recommend-1::before { background: radial-gradient(circle, rgba(255, 77, 77, 0.05), transparent 70%); }
  .elu-36967-recommend-2::before { background: radial-gradient(circle, rgba(33, 150, 243, 0.05), transparent 70%); }
  .elu-36967-recommend-3::before { background: radial-gradient(circle, rgba(156, 39, 176, 0.05), transparent 70%); }
  .elu-36967-recommend-4::before { background: radial-gradient(circle, rgba(0, 188, 212, 0.05), transparent 70%); }

  .elu-36967-recommend-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .elu-36967-recommend-main {
    grid-column: 1;
  }

  .elu-36967-recommend-list {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .elu-36967-recommend-featured {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(150,225,0,0.85);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }

  .elu-36967-recommend-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  }

  .elu-36967-recommend-featured-link {
    display: flex;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #ffffff;
  }

  .elu-36967-recommend-featured-poster {
    width: 150px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-recommend-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-recommend-featured:hover .elu-36967-recommend-featured-img {
    transform: scale(1.05);
  }

  .elu-36967-recommend-featured-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .elu-36967-recommend-featured:hover .elu-36967-recommend-featured-mask {
    opacity: 0.7;
  }

  .elu-36967-recommend-featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
  }

  .elu-36967-recommend-featured:hover .elu-36967-recommend-featured-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-recommend-featured-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .elu-36967-recommend-featured-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.4;
  }

  .elu-36967-recommend-featured-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transition: width 0.3s ease;
  }

  .elu-36967-recommend-featured:hover .elu-36967-recommend-featured-title::after {
    width: 60px;
  }

  .elu-36967-recommend-featured-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
  }

  .elu-36967-recommend-featured-score {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 600;
  }

  .elu-36967-recommend-featured-year {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(150,225,0,0.85);
    padding: 2px 8px;
    border-radius: 4px;
  }

  .elu-36967-recommend-featured-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  .elu-36967-recommend-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(150,225,0,0.85);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .elu-36967-recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .elu-36967-recommend-link {
    display: block;
    text-decoration: none;
    color: #ffffff;
  }

  .elu-36967-recommend-poster {
    position: relative;
    padding-top: 140%;
    overflow: hidden;
  }

  .elu-36967-recommend-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .elu-36967-recommend-item:hover .elu-36967-recommend-img {
    transform: scale(1.08);
  }

  .elu-36967-recommend-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    opacity: 0.5;
    transition: opacity 0.3s ease;
  }

  .elu-36967-recommend-item:hover .elu-36967-recommend-mask {
    opacity: 0.7;
  }

  .elu-36967-recommend-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: rgba(150,225,0,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
  }

  .elu-36967-recommend-item:hover .elu-36967-recommend-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .elu-36967-recommend-info {
    padding: 12px;
    position: relative;
  }

  .elu-36967-recommend-title {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .elu-36967-recommend-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .elu-36967-recommend-score {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
  }

  .elu-36967-recommend-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
  }

  /* 友情链接 */
  .elu-36967-links-section {
    margin-bottom: 50px;
    position: relative;
  }

  .elu-36967-links-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }

  .elu-36967-links-apply {
    background: rgba(150,225,0,0.85);
    color: rgba(255, 255, 255, 0.8);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .elu-36967-links-apply:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
  }

  .elu-36967-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .elu-36967-link-item {
    background: rgba(150,225,0,0.85);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .elu-36967-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  .elu-36967-link-item:hover {
    background: rgba(150,225,0,0.85);
    color: #ffffff;
    transform: translateY(-2px);
  }

  .elu-36967-link-item:hover::before {
    transform: translateX(100%);
  }

  /* 返回顶部按钮 */
  .elu-36967-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #b4ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 77, 77, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    z-index: 99;
  }

  .elu-36967-back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .elu-36967-back-to-top:hover {
    background-color: #b4ff00;
    transform: translateY(-5px);
  }

  .elu-36967-back-to-top::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(45deg) translate(2px, 2px);
  }

  /* 媒体查询，确保在不同设备上显示正常 */
  @media (max-width: 1200px) {
    .elu-36967-hero-section {
      height: 450px;
    }
    
    .elu-36967-recommend-layout {
      grid-template-columns: 1fr;
    }
    
    .elu-36967-recommend-main,
    .elu-36967-recommend-list {
      grid-column: 1;
    }
    
    .elu-36967-recommend-list {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
  }

  @media (max-width: 992px) {
    .elu-36967-hero-section {
      height: 400px;
    }
    
    .elu-36967-hero-title {
  background: linear-gradient(90deg, #fff, #ff4d4d);
  font-size: 32px;
  
}
    
    .elu-36967-hero-subtitle {
      font-size: 16px;
    }
    
    .elu-36967-featured-grid,
    .elu-36967-trending-grid,
    .elu-36967-latest-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    
    .elu-36967-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .elu-36967-recommend-featured-link {
      grid-template-columns: 1fr;
    }
    
    .elu-36967-recommend-featured-info {
      padding: 15px;
    }
    
    .elu-36967-recommend-featured-title {
      font-size: 18px;
    }
  }

  @media (max-width: 768px) {
    .elu-36967-hero-section {
      height: 350px;
    }
    
    .elu-36967-hero-title {
  background: linear-gradient(90deg, #fff, #ff4d4d);
  font-size: 28px;
  
}
    
    .elu-36967-featured-grid,
    .elu-36967-trending-grid,
    .elu-36967-latest-grid,
    .elu-36967-recommend-list {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .elu-36967-section-header h2 {
      font-size: 20px;
    }
    
    .elu-36967-tab-btn {
      padding: 6px 12px;
      font-size: 14px;
    }
  }

  @media (max-width: 576px) {
    .elu-36967-hero-section {
      height: 500px;
    }
    
    .elu-36967-hero-title {
  background: linear-gradient(90deg, #fff, #ff4d4d);
  font-size: 24px;
  
}
    
    .elu-36967-hero-subtitle {
      font-size: 14px;
    }
    
    .elu-36967-featured-grid,
    .elu-36967-trending-grid,
    .elu-36967-latest-grid,
    .elu-36967-recommend-list {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
    
    .elu-36967-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
    
    .elu-36967-section-header {
      margin-bottom: 15px;
    }
    
    .elu-36967-back-to-top {
      right: 20px;
      bottom: 20px;
      width: 40px;
      height: 40px;
    }
  }
  /* 适配移动端的额外样式 */
  @media (max-width: 768px) {
    .elu-36967-mobile-scroll {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      padding-bottom: 5px;
    }
    
    .elu-36967-mobile-scroll::-webkit-scrollbar {
      display: none; /* Chrome, Safari */
    }
    
    .elu-36967-featured-slider.elu-36967-mobile-scroll .elu-36967-featured-item {
      flex: 0 0 85%;
      margin-right: 15px;
      scroll-snap-align: start;
    }
    
    .elu-36967-vod-grid.elu-36967-mobile-scroll {
      display: flex;
      grid-template-columns: none;
    }
    
    .elu-36967-vod-grid.elu-36967-mobile-scroll .elu-36967-vod-item {
      flex: 0 0 140px;
      margin-right: 10px;
      scroll-snap-align: start;
    }
    
    .elu-36967-latest-grid.elu-36967-mobile-scroll {
      display: flex;
      grid-template-columns: none;
    }
    
    .elu-36967-latest-grid.elu-36967-mobile-scroll .elu-36967-latest-item {
      flex: 0 0 140px;
      margin-right: 10px;
      scroll-snap-align: start;
    }
    
    .elu-36967-featured-item {
      height: auto;
    }
    
    .elu-36967-featured-link {
      flex-direction: column;
    }
    
    .elu-36967-featured-poster {
      width: 100%;
      height: 180px;
    }
    
    .elu-36967-featured-desc {
      -webkit-line-clamp: 2;
    }
    
    .elu-36967-desktop-only {
      display: none;
    }
    
    .elu-36967-hero-search-btn .elu-36967-search-btn-text {
      display: none;
    }
    
    .elu-36967-hero-search-btn {
      width: auto;
      padding: 0 15px;
    }
    
    .elu-36967-swipe-tip {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.5);
      margin-left: 10px;
      display: none;
      transition: opacity 0.5s ease;
    }
    
    .elu-36967-section-header {
      align-items: center;
    }
    
    .elu-36967-section-more {
      display: none;
    }
  }

  /* 平板尺寸优化 */
  @media (min-width: 769px) and (max-width: 1024px) {
    .elu-36967-featured-slider {
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .elu-36967-featured-desc {
      -webkit-line-clamp: 2;
    }
    
    .elu-36967-category-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
  }

  /* 高分辨率桌面 */
  @media (min-width: 1600px) {
    .elu-36967-container {
      max-width: 1600px;
    }
    
    .elu-36967-vod-grid {
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
  }

  /* 移动端菜单样式 */
  @media (max-width: 768px) {
    /* 添加移动端下拉菜单样式 */
    
    .elu-36967-mobile-dropdown {
      position: static;
      opacity: 0;
      visibility: hidden;
      max-height: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.8);
      border-radius: 4px;
      overflow: hidden;
      transition: all 0.3s ease;
      z-index: 10;
      display: none;
    }
    
    .elu-36967-nav-item.elu-36967-nav-dropdown.active .elu-36967-mobile-dropdown {
      opacity: 1;
      visibility: visible;
      max-height: 500px; /* 足够高以适应内容 */
      display: block;
    }
    
    /* 增强导航容器样式 */
    
    .elu-36967-nav.active .elu-36967-nav-container {
      display: flex;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
      max-height: 80vh;
      overflow-y: auto;
    }
    
    /* 下拉菜单样式增强 */
    
    .elu-36967-dropdown-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      box-shadow: none;
      background: transparent;
      transition: all 0.3s ease;
    }
    
    .elu-36967-nav-dropdown.active .elu-36967-dropdown-menu {
      display: block;
      max-height: 500px;
    }
  }

  @media (max-width: 768px) {
    .elu-36967-container {
      padding: 0 15px;
      /*padding-top: 60px;  */
      /* 移动端导航栏较小，调整上边距 */
    }
    
    .elu-36967-detail-container {
      padding: 0 10px;
      padding-top: 60px; /* 移动端导航栏较小，调整上边距 */
    }
    
    .elu-36967-show-container {
      padding: 60px 15px 30px; /* 移动端导航栏较小，调整上边距 */
    }
    
    .elu-36967-search-container {
      padding: 60px 15px 30px; /* 移动端导航栏较小，调整上边距 */
    }
    
    .elu-36967-player-container {
      padding-top: 60px; /* 移动端导航栏较小，调整上边距 */
    }
  }