/**
██   ██ ██    ██ ██████  ██  ██████ ███    ███ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ████  ████ ██      
███████ ██    ██ ██   ██ ██ ██      ██ ████ ██ ███████ 
██   ██ ██    ██ ██   ██ ██ ██      ██  ██  ██      ██ 
██   ██  ██████  ██████  ██  ██████ ██      ██ ███████ 
            ===========================================
 * @Sign
================================
        Keep calm and get rich.
                    Is the best huudi.
 */
/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul, li {
    list-style: none;
  }
  
  /* 冲击感顶部导航样式 */
  .wldw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  }
  
  .wldw-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .wldw-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
  }
  
  /* Logo样式 */
  .wldw-logo {
    display: flex;
    align-items: center;
    padding-right: 20px;
  }
  
  .wldw-site-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(35,72,131,0.8);
    transform: skewX(-5deg);
    transition: all 0.3s ease;
  }
  
  .wldw-site-title:hover {
    transform: skewX(-10deg) scale(1.05);
  }
  
  /* 导航菜单 */
  .wldw-main-nav {
    flex: 1;
    margin: 0 20px;
  }
  
  .wldw-nav-list {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .wldw-nav-item {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .wldw-nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #ccc;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .wldw-nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .wldw-nav-item:hover .wldw-nav-link {
    color: #fff;
    transform: translateY(-3px);
  }
  
  .wldw-nav-item:hover .wldw-nav-link:before {
    width: 100%;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-active .wldw-nav-link {
    color: #fff;
  }
  
  .wldw-active .wldw-nav-link:before {
    width: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  /* 搜索框 */
  .wldw-search {
    position: relative;
    width: 250px;
  }
  
  .wldw-search-inner {
    display: flex;
    align-items: center;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    transition: all 0.3s ease;
  }
  
  .wldw-search-inner:hover,
  .wldw-search-inner:focus-within {
    background: rgba(95, 112, 171, 0.9);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 20px;
    color: #fff;
    font-size: 14px;
    width: 100%;
  }
  
  .wldw-search-input::placeholder {
    color: rgba(15,72,131,0.95);
  }
  
  .wldw-search-btn {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .wldw-search-btn span {
    font-size: 18px;
    line-height: 1;
  }
  
  .wldw-search-btn:hover {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  }
  
  /* 移动设备导航切换按钮 */
  .wldw-nav-toggle {
    display: none;
    cursor: pointer;
    width: 35px;
    height: 30px;
    position: relative;
    z-index: 1001;
  }
  
  .wldw-nav-icon {
    position: relative;
    width: 35px;
    height: 3px;
    background: #fff;
    display: block;
    top: 13px;
    transition: all 0.3s ease;
  }
  
  .wldw-nav-icon:before,
  .wldw-nav-icon:after {
    content: '';
    position: absolute;
    width: 35px;
    height: 3px;
    background: #fff;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .wldw-nav-icon:before {
    top: -10px;
  }
  
  .wldw-nav-icon:after {
    top: 10px;
  }
  
  /* 响应式样式 */
  @media (max-width: 991px) {
    .wldw-nav-toggle {
      display: block;
    }
    
    .wldw-main-nav {
      position: fixed;
      top: 0;
      right: -300px;
      width: 300px;
      height: 100vh;
      background: #000;
      padding: 80px 20px 20px;
      transition: all 0.4s ease;
      z-index: 1000;
      overflow-y: auto;
    }
    
    .wldw-nav-open .wldw-main-nav {
      right: 0;
      box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    }
    
    .wldw-nav-list {
      flex-direction: column;
      gap: 5px;
    }
    
    .wldw-nav-link {
      padding: 15px;
      border-bottom: 1px solid rgba(95, 132, 191, 0.9);
    }
    
    .wldw-nav-open .wldw-nav-icon {
      background: transparent;
    }
    
    .wldw-nav-open .wldw-nav-icon:before {
      transform: rotate(45deg);
      top: 0;
    }
    
    .wldw-nav-open .wldw-nav-icon:after {
      transform: rotate(-45deg);
      top: 0;
    }
    
    .wldw-search {
      width: 200px;
    }
  }
  
  @media (max-width: 767px) {
    .wldw-header-wrap {
      height: 60px;
    }
    
    .wldw-logo {
      padding-right: 10px;
    }
    
    .wldw-site-title {
      font-size: 22px;
    }
    
    .wldw-search {
      width: 150px;
    }
    
    .wldw-search-input {
      padding: 10px 15px;
    }
    
    .wldw-search-btn {
      padding: 10px 15px;
    }
  }
  
  /* === 视频列表页样式 === */
  .wldw-main {
    background: #5f84bf;
    color: #fff;
    padding-bottom: 50px;
  }
  
  .wldw-videos-section {
    padding: 30px 0;
  }
  
  /* 筛选条件样式 */
  .wldw-filter-container {
    background: rgba(95, 112, 171, 0.9);
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    overflow: hidden;
    border: 1px solid rgba(95, 132, 191, 0.9);
    position: relative;
  }
  
  .wldw-filter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-filter-row {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(95, 132, 191, 0.9);
    flex-wrap: wrap;
  }
  
  .wldw-filter-row:last-child {
    border-bottom: none;
  }
  
  .wldw-filter-label {
    width: 60px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-right: 15px;
  }
  
  .wldw-filter-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 15px;
    width: 1px;
    background: rgba(95, 112, 171, 0.9);
    transform: translateY(-50%);
  }
  
  .wldw-filter-options {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .wldw-filter-option {
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(95, 112, 171, 0.9);
    color: #ccc;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid transparent;
  }
  
  .wldw-filter-option:hover {
    background: rgba(95, 112, 171, 0.9);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-filter-option.wldw-active {
    background: rgba(95, 112, 171, 0.9);
    border: 1px solid rgba(95, 132, 191, 0.9);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .wldw-filter-option.wldw-active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent, rgba(95, 132, 191, 0.9));
    animation: wldw-active-shine 2s infinite;
  }
  
  @keyframes wldw-active-shine {
    0% {
      background-position: -100% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  .wldw-update-count {
    margin-left: auto;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(95, 112, 171, 0.9);
    font-size: 14px;
    color: rgba(15,72,131,0.95);
  }
  
  .wldw-count-num {
    font-weight: bold;
    color: #f00;
    margin: 0 2px;
  }
  
  /* 视频网格布局 */
  .wldw-videos-container {
    position: relative;
  }
  
  .wldw-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
  }
  
  /* 视频卡片样式 */
  .wldw-video-item {
    position: relative;
    transition: all 0.4s ease;
    transform-origin: center bottom;
  }
  
  .wldw-video-item:hover {
    transform: translateY(-10px) scale(1.03);
    z-index: 1;
  }
  
  .wldw-video-card {
    background: rgba(95, 112, 171, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
  }
  
  .wldw-video-item:hover .wldw-video-card {
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-thumb-container {
    position: relative;
    overflow: hidden;
    padding-top: 140%;
  }
  
  .wldw-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .wldw-thumb-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .wldw-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.2; /* 未加载完成时的透明度 */
  }
  
  .wldw-poster.loaded {
    opacity: 1;
  }
  
  .wldw-video-item:hover .wldw-poster {
    transform: scale(1.1);
  }
  
  .wldw-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%) 100%);
    z-index: 1;
  }
  
  .wldw-video-item:hover .wldw-thumb-overlay {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), rgba(95, 132, 191, 0.9) 100%);
  }
  
  .wldw-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-video-item:hover .wldw-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .wldw-video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
  }
  
  .wldw-video-remarks {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: inline-block;
  }
  
  .wldw-score {
    background: rgba(95, 112, 171, 0.9);
    color: #5f84bf;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
  }
  
  .wldw-score-high {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
  }
  
  .wldw-score-icon {
    margin-right: 3px;
    font-style: normal;
  }
  
  .wldw-video-meta {
    padding: 15px;
  }
  
  .wldw-video-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
  
  .wldw-video-title a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .wldw-video-item:hover .wldw-video-title a {
    color: #5f84bf;
  }
  
  .wldw-video-tags {
    display: flex;
    font-size: 12px;
    color: rgba(15,72,131,0.95);
    gap: 8px;
  }
  
  .wldw-year, .wldw-area {
    position: relative;
    display: inline-block;
  }
  
  .wldw-year::after {
    content: '|';
    position: absolute;
    right: -5px;
    color: rgba(15,72,131,0.95);
  }
  
  /* 分页样式 */
  .wldw-pagination {
    text-align: center;
    margin-top: 40px;
  }
  
  .wldw-pagination-wrapper {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 50px;
    padding: 5px 15px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    border: 1px solid rgba(95, 132, 191, 0.9);
    overflow: hidden;
    position: relative;
  }
  
  .wldw-pagination-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-pagination-inner {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .wldw-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    background: rgba(95, 112, 171, 0.9);
    color: rgba(15,72,131,0.95);
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
  }
  
  .wldw-page-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .wldw-page-btn:hover {
    color: #fff;
    background: rgba(95, 112, 171, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-page-btn:hover::after {
    opacity: 1;
  }
  
  .wldw-page-current {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    position: relative;
    overflow: hidden;
  }
  
  .wldw-page-current::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    animation: wldw-pagination-shine 2s infinite;
  }
  
  @keyframes wldw-pagination-shine {
    0% { left: -100%; }
    100% { left: 100%; }
  }
  
  .wldw-page-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
  }
  
  .wldw-page-first, .wldw-page-last, .wldw-page-prev, .wldw-page-next {
    font-size: 16px;
  }
  
  .wldw-page-icon {
    font-style: normal;
  }
  
  .wldw-page-info {
    margin-left: 15px;
    color: rgba(15,72,131,0.95);
    font-size: 14px;
    display: flex;
    align-items: center;
  }
  
  .wldw-page-current-text {
    color: #f00;
    font-weight: bold;
    margin: 0 2px;
  }
  
  .wldw-page-total-text {
    margin: 0 2px;
  }
  
  /* 响应式分页样式 */
  @media (max-width: 767px) {
    .wldw-pagination-wrapper {
      padding: 3px 10px;
      border-radius: 25px;
    }
    
    .wldw-page-btn {
      min-width: 32px;
      height: 32px;
      font-size: 13px;
    }
    
    .wldw-pagination-inner {
      gap: 3px;
    }
    
    .wldw-page-info {
      margin-left: 10px;
      font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    .wldw-page-btn {
      min-width: 28px;
      height: 28px;
      padding: 0 5px;
      font-size: 12px;
    }
    
    .wldw-page-first, .wldw-page-last {
      display: none;
    }
    
    .wldw-pagination-wrapper {
      padding: 2px 8px;
    }
  }
  
  /* === 筛选页特有样式 === */
  .wldw-videos-header {
    margin-bottom: 30px;
    position: relative;
  }
  
  .wldw-section-title {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .wldw-title-icon {
    width: 6px;
    height: 24px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    margin-right: 12px;
    border-radius: 3px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    animation: wldw-pulse 2s infinite;
  }
  
  @keyframes wldw-pulse {
    0% {
      box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    }
    50% {
      box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    }
    100% {
      box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    }
  }
  
  .wldw-title-text {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .wldw-title-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    margin-left: 15px;
  }
  
  .wldw-filter-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    max-width: 600px;
    padding: 10px 0;
  }
  
  .wldw-active-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), rgba(95, 132, 191, 0.9));
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-active-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    animation: wldw-tag-shine 2s infinite;
  }
  
  @keyframes wldw-tag-shine {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }
  
  .wldw-tag-icon {
    font-style: normal;
    margin-right: 5px;
    opacity: 0.7;
  }
  
  /* 字母筛选特殊处理 */
  .wldw-filter-letters .wldw-filter-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
    gap: 8px;
  }
  
  .wldw-filter-letters .wldw-filter-option {
    text-align: center;
    padding: 5px 8px;
  }
  
  /* 响应式调整 */
  @media (max-width: 1200px) {
    .wldw-videos-grid {
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 20px;
    }
    
    .wldw-filter-letters .wldw-filter-options {
      grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    }
  }
  
  @media (max-width: 991px) {
    .wldw-filter-label {
      width: 50px;
      font-size: 14px;
    }
    
    .wldw-filter-option {
      padding: 4px 12px;
      font-size: 13px;
    }
    
    .wldw-videos-grid {
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 15px;
    }
    
    .wldw-video-title {
      font-size: 14px;
    }
    
    .wldw-video-meta {
      padding: 10px;
    }
    
    .wldw-filter-letters .wldw-filter-options {
      grid-template-columns: repeat(auto-fill, minmax(30px, 1fr));
    }
  }
  
  @media (max-width: 767px) {
    .wldw-videos-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
    }
    
    .wldw-filter-row {
      padding: 10px 15px;
    }
    
    .wldw-filter-options {
      gap: 6px;
    }
    
    .wldw-filter-option {
      padding: 3px 10px;
      font-size: 12px;
    }
    
    .wldw-update-count {
      margin-left: 0;
      width: 100%;
      margin-top: 10px;
      text-align: center;
    }
    
    .wldw-filter-letters .wldw-filter-options {
      grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
      gap: 5px;
    }
    
    .wldw-filter-letters .wldw-filter-option {
      padding: 3px 5px;
    }
    
    .wldw-section-title {
      font-size: 20px;
    }
    
    .wldw-title-icon {
      height: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .wldw-videos-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    
    .wldw-filter-label {
      width: 100%;
      margin-bottom: 8px;
      padding-right: 0;
    }
    
    .wldw-filter-label::after {
      display: none;
    }
    
    .wldw-active-tag {
      font-size: 12px;
      padding: 3px 8px;
    }
  }
  
  /* === 底部样式 === */
  .wldw-footer {
    position: relative;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
  }
  
  /* 波浪动画效果 */
  .wldw-footer-wave-container {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
  }
  
  .wldw-footer-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg"><path d="M0 120 600 0 1200 120" fill="%23000" fill-opacity="0.8"/></svg>') repeat-x;
    background-position: 0px 0px;
    animation: wldw-wave-animation 20s linear infinite;
  }
  
  .wldw-footer-wave-2 {
    bottom: 5px;
    opacity: 0.5;
    animation: wldw-wave-animation 15s linear infinite reverse;
  }
  
  .wldw-footer-wave-3 {
    bottom: 10px;
    opacity: 0.2;
    animation: wldw-wave-animation 25s linear infinite;
  }
  
  @keyframes wldw-wave-animation {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* 底部内容布局 */
  .wldw-footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 15px 40px;
  }
  
  /* 底部标题样式 */
  .wldw-footer-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(35,72,131,0.8);
    margin-bottom: 15px;
    transform: skewX(-5deg);
  }
  
  .wldw-footer-heading {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 12px;
    display: inline-block;
  }
  
  .wldw-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  /* 底部描述文字 */
  .wldw-footer-desc {
    color: rgba(15,72,131,0.95);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* 社交图标 */
  .wldw-footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .wldw-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
  }
  
  .wldw-social-icon:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  /* 微信二维码弹出框 */
  .wldw-qrcode-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(95, 112, 171, 0.9);
    border-radius: 8px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    border: 1px solid rgba(95, 132, 191, 0.9);
    z-index: 100;
  }
  
  .wldw-qrcode-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: rgba(15,72,131,0.95) transparent transparent transparent;
  }
  
  .wldw-social-wechat:hover .wldw-qrcode-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  
  .wldw-qrcode-inner {
    text-align: center;
  }
  
  .wldw-qrcode-box {
    width: 120px;
    height: 120px;
    background: #fff;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
  }
  
  .wldw-qrcode-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="10" y="10" width="30" height="30" rx="3" fill="%23000"/><rect x="60" y="10" width="30" height="30" rx="3" fill="%23000"/><rect x="10" y="60" width="30" height="30" rx="3" fill="%23000"/><rect x="45" y="45" width="10" height="10" fill="%23000"/></svg>') center/80% no-repeat;
  }
  
  /* 链接列表 */
  .wldw-footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .wldw-footer-link-list li {
    margin-bottom: 12px;
  }
  
  .wldw-footer-link-list a {
    color: rgba(15,72,131,0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
    display: inline-block;
  }
  
  .wldw-footer-link-list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .wldw-footer-link-list a:hover {
    color: #fff;
    transform: translateX(5px);
  }
  
  .wldw-footer-link-list a:hover::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  /* 订阅表单 */
  .wldw-subscribe-form {
    display: flex;
    margin-bottom: 20px;
  }
  
  .wldw-subscribe-input {
    flex: 1;
    background: rgba(95, 112, 171, 0.9);
    border: none;
    outline: none;
    padding: 12px 15px;
    border-radius: 25px 0 0 25px;
    color: #fff;
    font-size: 14px;
  }
  
  .wldw-subscribe-input::placeholder {
    color: rgba(15,72,131,0.95);
  }
  
  .wldw-subscribe-btn {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 0 20px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .wldw-subscribe-btn:hover {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  /* 搜索引擎链接 */
  .wldw-footer-search-engines {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
  }
  
  .wldw-engine-item {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 15px;
    color: rgba(15,72,131,0.95);
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .wldw-engine-item:hover {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    transform: translateY(-3px);
  }
  
  /* 底部分隔线 */
  .wldw-footer-divider {
    height: 1px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    margin: 0 15px 20px;
  }
  
  /* 底部版权区 */
  .wldw-footer-bottom {
    padding: 20px 15px 30px;
    text-align: center;
  }
  
  .wldw-copyright {
    color: rgba(15,72,131,0.95);
    font-size: 13px;
    line-height: 1.8;
  }
  
  .wldw-site-link {
    color: rgba(15,72,131,0.95);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .wldw-site-link:hover {
    color: #f00;
  }
  
  .wldw-icp-info {
    font-size: 12px;
    margin-top: 5px;
  }
  
  /* 返回顶部按钮 */
  .wldw-back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-back-to-top span {
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1px); /* 微调箭头位置 */
  }
  
  .wldw-back-to-top.wldw-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .wldw-back-to-top:hover {
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-back-to-top:hover span {
    animation: wldw-arrow-bounce 1s infinite;
  }
  
  @keyframes wldw-arrow-bounce {
    0%, 100% {
      transform: translateY(-1px);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  
  .wldw-progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
  
  .wldw-progress-circle-bg {
    stroke: rgba(95, 132, 191, 0.9);
    stroke-width: 2px;
    fill: none;
  }
  
  .wldw-progress-circle-fg {
    stroke: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    stroke-width: 2px;
    fill: none;
    stroke-dasharray: 113;
    stroke-dashoffset: 113;
    transition: stroke-dashoffset 0.3s ease;
  }
  
  /* 响应式设计 */
  @media (max-width: 1200px) {
    .wldw-footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 40px;
    }
  }
  
  @media (max-width: 767px) {
    .wldw-footer {
      padding-top: 80px;
    }
    
    .wldw-footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
      padding-bottom: 30px;
    }
    
    .wldw-footer-column {
      text-align: center;
    }
    
    .wldw-footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .wldw-footer-socials {
      justify-content: center;
    }
    
    .wldw-footer-link-list a {
      padding-left: 0;
    }
    
    .wldw-footer-link-list a::before {
      display: none;
    }
    
    .wldw-back-to-top {
      right: 20px;
      bottom: 20px;
      width: 40px;
      height: 40px;
    }
  }
  
  @media (max-width: 480px) {
    .wldw-footer-search-engines {
      justify-content: center;
    }
    
    .wldw-footer-wave-container {
      height: 40px;
      top: -40px;
    }
    
    .wldw-footer-wave {
      height: 40px;
    }
    
    .wldw-footer {
      padding-top: 60px;
    }
  }
  
  /* === 视频详情页样式 === */
  .wldw-breadcrumb-section {
    padding: 15px 0;
    background: rgba(95, 112, 171, 0.9);
    border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  }
  
  .wldw-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: rgba(15,72,131,0.95);
    font-size: 14px;
  }
  
  .wldw-breadcrumb-item {
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
  }
  
  .wldw-breadcrumb-item:hover {
    color: #f70;
  }
  
  .wldw-breadcrumb-item.wldw-active {
    color: #f70;
    font-weight: bold;
  }
  
  .wldw-breadcrumb-divider {
    margin: 0 8px;
    color: rgba(15,72,131,0.95);
  }
  
  .wldw-detail-section {
    padding: 30px 0 50px;
  }
  
  .wldw-detail-container {
    background: rgba(95, 112, 171, 0.9);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    border: 1px solid rgba(95, 132, 191, 0.9);
    position: relative;
  }
  
  .wldw-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-detail-header {
    display: flex;
    padding: 30px;
    border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  }
  
  .wldw-detail-poster {
    width: 260px;
    flex-shrink: 0;
    margin-right: 30px;
  }
  
  .wldw-poster-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    padding-top: 140%;
  }
  
  .wldw-poster-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    opacity: 0.2;
  }
  
  .wldw-poster-img.loaded {
    opacity: 1;
  }
  
  .wldw-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%) 100%);
    z-index: 1;
  }
  
  .wldw-detail-remarks {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 2;
  }
  
  .wldw-detail-score {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(95, 112, 171, 0.9);
    color: #5f84bf;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
    display: flex;
    align-items: center;
  }
  
  .wldw-detail-score.wldw-score-high {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
  }
  
  .wldw-play-button {
    margin-top: 15px;
  }
  
  .wldw-detail-play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    color: #000;
    font-weight: bold;
    padding: 12px 0;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-detail-play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  }
  
  .wldw-detail-play-btn i {
    margin-right: 8px;
    font-size: 18px;
  }
  
  .wldw-detail-info {
    flex: 1;
  }
  
  .wldw-detail-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
  }
  
  .wldw-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-detail-meta {
    margin-bottom: 25px;
  }
  
  .wldw-meta-item {
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .wldw-meta-label {
    color: rgba(15,72,131,0.95);
    margin-right: 5px;
    font-size: 14px;
  }
  
  .wldw-meta-value {
    color: #fff;
  }
  
  .wldw-meta-value a {
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .wldw-meta-value a:hover {
    color: #f70;
  }
  
  .wldw-detail-blurb {
    margin-top: 5px;
    color: rgba(15,72,131,0.95);
    line-height: 1.8;
    font-size: 14px;
  }
  
  .wldw-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .wldw-detail-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(95, 112, 171, 0.9);
    border: 1px solid rgba(95, 132, 191, 0.9);
    border-radius: 20px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
  }
  
  .wldw-detail-tag:hover {
    background: rgba(95, 112, 171, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  }
  
  .wldw-detail-actions {
    display: flex;
    gap: 15px;
  }
  
  .wldw-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(95, 112, 171, 0.9);
  }
  
  .wldw-action-btn i {
    margin-right: 5px;
  }
  
  .wldw-action-btn:hover {
    background: rgba(95, 112, 171, 0.9);
    transform: translateY(-2px);
  }
  
  .wldw-btn-fav:hover {
    color: #f00;
  }
  
  .wldw-action-share-container {
    position: relative;
  }
  
  .wldw-share-popup {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: rgba(95, 112, 171, 0.9);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(65,102,161,0.3);
    border: 1px solid rgba(95, 132, 191, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
  
  .wldw-share-popup::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent rgba(95, 132, 191, 0.9) transparent;
  }
  
  .wldw-share-popup.wldw-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
  }
  
  .wldw-share-inner {
    display: flex;
    gap: 15px;
  }
  
  .wldw-share-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    background: rgba(95, 112, 171, 0.9);
  }
  
  .wldw-share-item:hover {
    transform: translateY(-3px);
  }
  
  .wldw-share-item[data-type="weixin"]:hover {
    background: #5f84bf;
  }
  
  .wldw-share-item[data-type="weibo"]:hover {
    background: #5f84bf;
  }
  
  .wldw-share-item[data-type="qq"]:hover {
    background: #5f84bf;
  }
  
  /* 选项卡样式 */
  .wldw-detail-tabs {
    padding: 0 30px 30px;
  }
  
  .wldw-tabs-header {
    margin: 30px 0 20px;
    border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  }
  
  .wldw-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: -1px;
  }
  
  .wldw-tab-item {
    padding: 10px 25px;
    color: rgba(15,72,131,0.95);
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .wldw-tab-item:hover {
    color: #fff;
  }
  
  .wldw-tab-item.wldw-active {
    color: #f70;
    border-bottom: 2px solid #f70;
    font-weight: bold;
  }
  
  .wldw-tabs-body {
    min-height: 200px;
  }
  
  .wldw-tab-pane {
    display: none;
  }
  
  .wldw-tab-pane.wldw-active {
    display: block;
    animation: huFadeIn 0.5s ease;
  }
  
  @keyframes huFadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 播放源选项卡 */
  .wldw-play-source-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .wldw-source-tab {
    padding: 8px 15px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
  }
  
  .wldw-source-tab:hover {
    background: rgba(95, 112, 171, 0.9);
  }
  
  .wldw-source-tab.wldw-active {
    background: rgba(95, 112, 171, 0.9);
    border: 1px solid rgba(95, 132, 191, 0.9);
    color: #fff;
    position: relative;
    font-weight: bold;
  }
  
  .wldw-play-episodes {
    position: relative;
  }
  
  .wldw-episodes-list {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
  }
  
  .wldw-episodes-list.wldw-active {
    display: grid;
  }
  
  .wldw-episode-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 5px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 5px;
    color: rgba(15,72,131,0.95);
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .wldw-episode-item:hover {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    transform: translateY(-2px);
  }
  
  .wldw-episode-item.active {
    background: rgba(95, 112, 171, 0.9);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  
  .wldw-episode-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
    animation: wldw-shine 2s infinite;
  }
  
  /* 剧情简介样式 */
  .wldw-detail-content {
    color: rgba(15,72,131,0.95);
    line-height: 1.8;
  }
  
  .wldw-content-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    position: relative;
    padding-left: 15px;
  }
  
  .wldw-content-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
    border-radius: 2px;
  }
  
  .wldw-content-text {
    text-indent: 2em;
    padding: 0 15px;
  }
  
  /* 分集剧情样式 */
  .wldw-plot-list {
    margin-top: 20px;
  }
  
  .wldw-plot-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(95, 132, 191, 0.9);
  }
  
  .wldw-plot-item:last-child {
    border-bottom: none;
  }
  
  .wldw-plot-episode {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(95, 112, 171, 0.9);
    border-radius: 3px;
    color: #fff;
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .wldw-plot-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .wldw-plot-detail {
    color: rgba(15,72,131,0.95);
    line-height: 1.8;
    text-indent: 2em;
  }
  
  /* 相关推荐 */
  .wldw-related-section {
    padding: 30px 0 50px;
  }
  
  .wldw-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  /* 响应式适配 */
  @media (max-width: 991px) {
    .wldw-detail-header {
      flex-direction: column;
      padding: 20px;
    }
    
    .wldw-detail-poster {
      width: 100%;
      max-width: 300px;
      margin: 0 auto 30px;
    }
    
    .wldw-detail-title {
      font-size: 24px;
      text-align: center;
    }
    
    .wldw-detail-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .wldw-detail-actions {
      justify-content: center;
    }
    
    .wldw-episodes-list {
      grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
  }
  
  @media (max-width: 767px) {
    .wldw-detail-section,
    .wldw-related-section {
      padding: 20px 0 30px;
    }
    
    .wldw-detail-tabs {
      padding: 0 15px 15px;
    }
    
    .wldw-tab-item {
      padding: 8px 15px;
      font-size: 14px;
    }
    
    .wldw-episodes-list {
      grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
      gap: 8px;
    }
    
    .wldw-episode-item {
      padding: 6px 3px;
      font-size: 13px;
    }
    
    .wldw-detail-title {
      font-size: 20px;
    }
    
    .wldw-content-title {
      font-size: 16px;
    }
  }
  
  @media (max-width: 480px) {
    .wldw-play-source-tabs {
      gap: 8px;
    }
    
    .wldw-source-tab {
      padding: 6px 10px;
      font-size: 13px;
    }
    
    .wldw-episodes-list {
      grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
      gap: 6px;
    }
    
    .wldw-episode-item {
      padding: 5px 3px;
      font-size: 12px;
    }
    
    .wldw-detail-actions {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  .wldw-player-section {
  padding: 20px 0;
  position: relative;
}

.wldw-player-container {
  position: relative;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  border: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-player-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  z-index: 2;
}

.wldw-player-wrap {
  position: relative;
  width: 100%;
  background-color: #000;
}

.wldw-player-area {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9比例 */
  overflow: hidden;
}

#playerCnt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wldw-player-title {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(95, 112, 171, 0.9);
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-player-title h1 {
  color: #fff;
  font-size: 18px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wldw-player-title .wldw-player-info {
  display: flex;
  align-items: center;
}

.wldw-player-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 10px;
  background: rgba(95, 112, 171, 0.9);
  color: #fff;
}

.wldw-breadcrumb-section {
  padding: 15px 0;
  background: rgba(95, 112, 171, 0.9);
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(15,72,131,0.95);
  font-size: 14px;
}

.wldw-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.wldw-breadcrumb-item:hover {
  color: #f70;
}

.wldw-breadcrumb-item.wldw-active {
  color: #f70;
  font-weight: bold;
}

.wldw-breadcrumb-divider {
  margin: 0 8px;
  color: rgba(15,72,131,0.95);
}

.wldw-play-tabs-section {
  padding: 30px 0;
}

.wldw-play-tabs-container {
  background: rgba(95, 112, 171, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  border: 1px solid rgba(95, 132, 191, 0.9);
  position: relative;
}

.wldw-play-tabs-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-play-tabs-header {
  display: flex;
  align-items: center;
  padding: 0 20px;
  background: rgba(95, 112, 171, 0.9);
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-play-tab {
  padding: 15px 20px;
  color: rgba(15,72,131,0.95);
  font-size: 16px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.wldw-play-tab:hover {
  color: #fff;
}

.wldw-play-tab.active {
  color: #f70;
  font-weight: bold;
}

.wldw-play-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-play-tabs-body {
  padding: 20px;
}

.wldw-play-sources {
  margin-bottom: 20px;
}

.wldw-play-sources-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wldw-play-source-item {
  padding: 8px 15px;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.wldw-play-source-item:hover {
  background: rgba(95, 112, 171, 0.9);
  transform: translateY(-2px);
}

.wldw-play-source-item.active {
  background: rgba(95, 112, 171, 0.9);
  border: 1px solid rgba(95, 132, 191, 0.9);
  color: #fff;
  position: relative;
  font-weight: bold;
}

.wldw-play-episodes-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.wldw-play-episode-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 5px;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 5px;
  color: rgba(15,72,131,0.95);
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.wldw-play-episode-item:hover {
  background: rgba(95, 112, 171, 0.9);
  color: #fff;
  transform: translateY(-2px);
}

.wldw-play-episode-item.active {
  background: rgba(95, 112, 171, 0.9);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wldw-play-episode-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
  animation: wldw-shine 2s infinite;
}

.wldw-play-info-section {
  padding: 0 0 30px;
}

.wldw-play-info-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.wldw-play-poster {
  width: 200px;
  flex-shrink: 0;
}

.wldw-play-poster-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-play-details {
  flex: 1;
  min-width: 300px;
}

.wldw-play-meta {
  margin-bottom: 20px;
}

.wldw-play-meta-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.wldw-play-meta-label {
  color: rgba(15,72,131,0.95);
  margin-right: 5px;
  font-size: 14px;
}

.wldw-play-meta-value {
  color: #fff;
}

.wldw-play-meta-value a {
  color: #fff;
  transition: color 0.3s ease;
}

.wldw-play-meta-value a:hover {
  color: #f70;
}

.wldw-play-content {
  color: rgba(15,72,131,0.95);
  line-height: 1.8;
}

.wldw-play-content-title {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  position: relative;
  padding-left: 15px;
}

.wldw-play-content-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  border-radius: 2px;
}

.wldw-play-content-text {
  text-indent: 2em;
}

.wldw-related-section {
  padding: 30px 0 50px;
}

.wldw-section-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.wldw-title-icon {
  width: 6px;
  height: 24px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  margin-right: 12px;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-title-text {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.wldw-title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
  margin-left: 15px;
}

@keyframes wldw-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@media (max-width: 991px) {
  .wldw-player-title h1 {
    font-size: 16px;
  }
  
  .wldw-play-tabs-header {
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 10px;
  }
  
  .wldw-play-tab {
    padding: 15px 15px;
    font-size: 15px;
  }
  
  .wldw-play-episodes-list {
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  }
  
  .wldw-play-info-container {
    flex-direction: column;
  }
  
  .wldw-play-poster {
    width: 160px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .wldw-player-title {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .wldw-player-title h1 {
    margin-bottom: 10px;
  }
  
  .wldw-play-tab {
    padding: 12px 10px;
    font-size: 14px;
  }
  
  .wldw-play-episodes-list {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 8px;
  }
  
  .wldw-play-episode-item {
    padding: 6px 3px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .wldw-player-section {
    padding: 10px 0;
  }
  
  .wldw-play-sources-list {
    gap: 8px;
  }
  
  .wldw-play-source-item {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .wldw-play-episodes-list {
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 6px;
  }
  
  .wldw-play-episode-item {
    padding: 5px 3px;
    font-size: 12px;
  }
  
  .wldw-play-content-title {
    font-size: 16px;
  }
}
.wldw-search-section {
  padding: 30px 0;
}

.wldw-breadcrumb-section {
  padding: 15px 0;
  background: rgba(95, 112, 171, 0.9);
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(15,72,131,0.95);
  font-size: 14px;
}

.wldw-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.wldw-breadcrumb-item:hover {
  color: #f70;
}

.wldw-breadcrumb-item.wldw-active {
  color: #f70;
  font-weight: bold;
}

.wldw-breadcrumb-divider {
  margin: 0 8px;
  color: rgba(15,72,131,0.95);
}

.wldw-search-container {
  background: rgba(95, 112, 171, 0.9);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  border: 1px solid rgba(95, 132, 191, 0.9);
  position: relative;
}

.wldw-search-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-search-header {
  padding: 20px;
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  background: rgba(95, 112, 171, 0.9);
}

.wldw-search-title {
  font-size: 18px;
  color: #fff;
  margin: 0;
  line-height: 1.5;
}

.wldw-highlight {
  color: #f70;
  font-weight: bold;
  margin: 0 5px;
}

.wldw-search-count {
  margin-left: 5px;
  background: rgba(95, 112, 171, 0.9);
  color: #fff;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 14px;
  display: inline-block;
}

.wldw-search-filters {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wldw-search-filter {
  padding: 6px 15px;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.wldw-search-filter:hover {
  background: rgba(95, 112, 171, 0.9);
  transform: translateY(-2px);
}

.wldw-search-filter.active {
  background: rgba(95, 112, 171, 0.9);
  border: 1px solid rgba(95, 132, 191, 0.9);
  color: #fff;
}

.wldw-search-body {
  padding: 20px;
}

.wldw-search-tips {
  color: rgba(15,72,131,0.95);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.wldw-search-tip-item {
  display: inline-block;
  margin-right: 15px;
}

.wldw-search-tip-icon {
  color: #f70;
  margin-right: 5px;
}

.wldw-no-results {
  padding: 50px 0;
  text-align: center;
  color: rgba(15,72,131,0.95);
}

.wldw-no-results-icon {
  font-size: 48px;
  color: rgba(15,72,131,0.95);
  margin-bottom: 20px;
  display: block;
}

.wldw-no-results-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.wldw-no-results-tips {
  font-size: 14px;
  color: rgba(15,72,131,0.95);
  max-width: 500px;
  margin: 0 auto;
}

.wldw-search-related {
  margin-top: 30px;
}

.wldw-related-title {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.wldw-related-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  border-radius: 2px;
}

@media (max-width: 767px) {
  .wldw-search-section {
    padding: 20px 0;
  }
  
  .wldw-search-header {
    padding: 15px;
  }
  
  .wldw-search-title {
    font-size: 16px;
  }
  
  .wldw-search-body {
    padding: 15px;
  }
  
  .wldw-search-filter {
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .wldw-search-header {
    padding: 12px;
  }
  
  .wldw-search-title {
    font-size: 15px;
  }
  
  .wldw-search-body {
    padding: 12px;
  }
  
  .wldw-search-filters {
    gap: 8px;
  }
  
  .wldw-search-filter {
    padding: 4px 10px;
    font-size: 12px;
  }
}

.wldw-search-body {
  margin-top: 20px;
  position: relative;
}

/* 确保搜索页面的分页居中显示 */
.wldw-search-section .wldw-pagination-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.wldw-search-section .wldw-pagination {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
}

.wldw-search-tips {
  margin-bottom: 20px;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* === 首页视频列表样式 === */
.wldw-home-page .wldw-new-hot-up {
  padding: 40px 0;
  position: relative;
}

.wldw-home-page .wldw-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.wldw-home-page .wldw-new-up.wldw-card-wrap {
  background: rgba(95, 112, 171, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  border: 1px solid rgba(95, 132, 191, 0.9);
  position: relative;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  contain: content; /* 添加容器包含，防止内容溢出 */
}

.wldw-home-page .wldw-new-up.wldw-card-wrap:hover {
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  transform: translateY(-5px);
}

.wldw-home-page .wldw-new-up.wldw-card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-home-page .wldw-title {
  padding: 25px;
  border-bottom: 1px solid rgba(95, 132, 191, 0.9);
  display: flex;
  align-items: center;
  position: relative;
}

.wldw-home-page .wldw-title::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 25px;
  width: 100px;
  height: 1px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
}

.wldw-home-page .wldw-title h2.wldw-theme {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  margin-right: 12px;
  position: relative;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(35,72,131,0.8);
}

.wldw-home-page .wldw-title span {
  color: rgba(15,72,131,0.95);
  font-size: 14px;
  font-style: italic;
}

.wldw-home-page .wldw-content {
  padding: 25px;
  position: relative;
  overflow: hidden;
}

.wldw-home-page .wldw-new-up-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
  transition: max-height 0.5s ease;
  will-change: max-height; /* 优化动画性能 */
  position: relative;
  z-index: 1;
  contain: layout; /* 优化布局计算 */
}

.wldw-home-page .wldw-new-up-list .wldw-video-item {
  transition: all 0.4s ease-out;
  transform-origin: center bottom;
  break-inside: avoid;
  page-break-inside: avoid;
  transform: translateZ(0); /* 硬件加速 */
}

.wldw-home-page .wldw-new-up-list .wldw-video-item:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 5;
}

.wldw-home-page .wldw-new-up-list .wldw-video-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
  transition: all 0.3s ease;
  height: 100%;
  background: rgba(95, 112, 171, 0.9);
}

.wldw-home-page .wldw-new-up-list .wldw-video-item:hover .wldw-video-card {
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-home-page .wldw-more {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.wldw-home-page .wldw-openall-button {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* 添加淡出遮罩，提示可以展开更多 */
.wldw-home-page .wldw-new-up-list::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), rgba(95, 132, 191, 0.9));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

/* 展开后隐藏遮罩 */
.wldw-home-page .wldw-new-up-list[style*="max-height: none"]::after {
  opacity: 0;
}

.wldw-home-page .wldw-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background: rgba(95, 112, 171, 0.9);
  border-radius: 30px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(95, 132, 191, 0.9);
}

.wldw-home-page .wldw-more a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), transparent);
  transition: all 0.6s ease;
}

.wldw-home-page .wldw-more a:hover {
  background: linear-gradient(135deg, #5f84bf 0%, #5f84bf 100%), rgba(95, 132, 191, 0.9));
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(65,102,161,0.3);
}

.wldw-home-page .wldw-more a:hover::before {
  left: 100%;
}

.wldw-home-page .wldw-more i {
  margin-right: 8px;
  font-size: 16px;
}

/* 兼容clearfix类 */
.wldw-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.wldw-clearfix {
  zoom: 1;
}

/* 响应式调整 */
@media (max-width: 1200px) {
  .wldw-home-page .wldw-new-up-list {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .wldw-home-page .wldw-new-up-list {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
  }
  
  .wldw-home-page .wldw-title h2.wldw-theme {
    font-size: 20px;
  }
  
  .wldw-home-page .wldw-title {
    padding: 20px;
  }
  
  .wldw-home-page .wldw-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .wldw-home-page .wldw-new-up-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
  }
  
  .wldw-home-page .wldw-title {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .wldw-home-page .wldw-title::after {
    left: 15px;
    width: 80px;
  }
  
  .wldw-home-page .wldw-title h2.wldw-theme {
    margin-bottom: 5px;
    font-size: 18px;
  }
  
  .wldw-home-page .wldw-content {
    padding: 15px;
  }
  
  .wldw-home-page .wldw-more {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .wldw-home-page .wldw-more a {
    width: 100%;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .wldw-home-page .wldw-new-up-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .wldw-home-page .wldw-new-up.wldw-card-wrap {
    margin-bottom: 30px;
  }
}