    .poster-container {
      transition: transform 0.3s ease;
      aspect-ratio: 3/4;
    }
    .poster-container:hover {
      transform: scale(1.05);
    }
    .ellipsis {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      overflow: hidden;
    }
    /* 分页样式 */
    .pagination {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      justify-content: center;
      flex-wrap: wrap;
    }
    .pagination li {
      margin: 0.25rem;
    }
    .pagination a,
    .pagination span {
      display: block;
      padding: 0.5rem 0.75rem;
      border-radius: 0.375rem;
      text-decoration: none;
      transition: all 0.2s ease;
      min-width: 2.5rem;
      text-align: center;
    }
    .pagination a {
      background-color: #ffffff;
      border: 1px solid #e5e7eb;
      color: #374151;
    }
    .pagination a:hover {
      background-color: #f3f4f6;
      border-color: #d1d5db;
      color: #1f2937;
    }
    .pagination .active span {
      background-color: #3b82f6;
      border-color: #3b82f6;
      color: white;
    }
    .pagination .disabled span {
      background-color: #f9fafb;
      border: 1px solid #e5e7eb;
      color: #9ca3af;
      cursor: not-allowed;
    }
    .pagination .disabled span:hover {
      background-color: #f9fafb;
    }
    /* 左侧信息标签样式 */
    .info-tag {
      display: inline-block;
      padding: 0.125rem 0.5rem;
      border-radius: 0.25rem;
      font-size: 0.75rem;
      font-weight: 500;
      margin-bottom: 0.25rem;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    /* 海报底部片名遮罩 - 50%透明度背景 */
    .poster-title-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7); /* 50%透明度黑色背景 */
      padding: 0.75rem;
      color: white;
      text-align: center;
    }
    .poster-title-text {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      font-size: 0.875rem;
      line-height: 1.25rem;
    }