.banner-text ul {
    margin: 0;
    padding: 0;
}

.banner-text ul li {
    display: inline-block;
    padding: 0px 5px;
    color: #fff;
    position: relative;
    font-size: 20px;
    font-family: "Futura PT";
}

.banner-text ul li:not(:last-child)::after {
    content: "/";
    position: relative;
    left: 7px;
}

/* 图片蒙版层 */
.banner-mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-text ul li a {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s;
}

.banner-text ul li a:hover {
    color: #5ea4ff;
    text-decoration: underline;
}

.banner-text ul li a:active {
    color: #5ea4ff;
    text-decoration: underline;
}

.banner-text p {
    color: #ffffff;
}

/*============ 列表==================*/
/* 外层容器 */
.list-service-section {
    padding: 48px 0;
    background-color: #f9fafb;
}

.list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 顶部标题 */
.list-header {
    margin-bottom: 32px;
}

.list-header-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-header-text span:first-child {
    color: #6b7280;
    font-size: 16px;
}

.list-header-number {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.list-header-text span:last-child {
    color: #6b7280;
    font-size: 16px;
}

/* 网格布局 */
.list-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

/* 卡片样式 */
.list-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.list-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* 卡片图片区域 */
.list-card-image-wrapper {
    position: relative;
    height: 192px;
    overflow: hidden;
}

.list-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.list-card:hover .list-card-image {
    transform: scale(1.05);
}

.list-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.list-badge {
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.list-badge.hot {
    background-color: #ef4444;
}

.list-badge.tag {
    background-color: #3b82f6;
}

/* 卡片内容区域 */
.list-card-content {
    padding: 20px;
}

.list-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.list-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.4;
    margin-right: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-card-title:hover {
    color: #2563eb;
}

.list-card-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.list-btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.list-btn.primary {
    background-color: #eff6ff;
    color: #2563eb;
}

.list-btn.primary:hover {
    background-color: #dbeafe;
}

.list-btn.secondary {
    background-color: #f3f4f6;
    color: #374151;
}

.list-btn.secondary:hover {
    background-color: #e5e7eb;
}

.list-card-subtitle {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.list-card-desc {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.list-tag {
    padding: 4px 8px;
    font-size: 12px;
    color: #1d4ed8;
    background-color: #eff6ff;
    border-radius: 4px;
}

.list-card-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
}

.list-original-price {
    font-size: 14px;
    color: #f87171;
    text-decoration: line-through;
    margin-right: 8px;
}

.list-sale-price {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
}

/* 响应式适配 */
@media (min-width: 768px) {
    .list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 分页控件样式 */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}

.pagination-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.pagination-wrapper .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.pagination-wrapper .pagination li {
  display: inline-block;
}

.pagination-wrapper .pagination li a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-width: 40px !important;
  height: 40px;
  padding: 0 12px !important;
  border-radius: 4px;
  background-color: #f5f7fa;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  width: auto !important;
}

.pagination-wrapper .pagination li.active a,
.pagination-wrapper .pagination li a:hover {
  background-color: #3757f7;
  color: #fff;
}

.pagination-wrapper .pagination li.disabled a {
  opacity: 0.5;
  cursor: not-allowed;
}