.productCenter2205191604 {
    max-width: 1200px;
    margin: 0 auto;
}

.productCenter2205191604 * {
    box-sizing: border-box;
}

.productCenter2205191604 .swiper-slide a {
    display: block;
    text-decoration: none;
    color: #000;
    margin: 0 auto;
    text-align: center;
    border-bottom: 2px solid #000;
    position: relative;
    padding-bottom: 20px;
    background: #fff;
    /* 新增：限制每个产品卡片的宽度，适配6列布局 */
    width: 96%; /* 留少量间距，避免挤在一起 */
    height: 88%;
}

/* 核心调整1：修改轮播容器高度，适配小尺寸产品 */
.productCenter2205191604 .swiper-container {
    height: 280px; /* 从440px降低，适配缩小后的产品 */
    padding: 0 10px; /* 左右留边距 */
}

/* 核心调整2：控制swiper-slide宽度，实现6列布局 */
.productCenter2205191604 .swiper-slide {
    width: calc(100% / 6) !important; /* 强制每列占1/6宽度 */
    flex-shrink: 0; /* 禁止收缩 */
}

/* 调整按钮位置和大小，适配小容器 */
.productCenter2205191604 .swiper-slide .moreBtn {
    display: inline-block;
    width: 80%; /* 加宽按钮占比，适配小卡片 */
    position: absolute;
    left: 10%;
    bottom: -15px; /* 上移按钮，适配小高度 */
}

.productCenter2205191604 .swiper-slide .btnIcon {
    padding: 4px 8px; /* 缩小按钮内边距 */
    height: 30px; /* 降低按钮高度 */
    line-height: 30px;
    background: #000;
    color: #fff;
    border-radius: 15px; /* 适配小按钮的圆角 */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px; /* 缩小字体 */
    transition: all 0.3s linear;
}

.productCenter2205191604 .swiper-slide a .proContent {
    padding: 6px; /* 缩小内边距 */
}

.productCenter2205191604 .swiper-slide a .proContent .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 12px; /* 缩小标题字体 */
    margin-bottom: 8px; /* 减少间距 */
    height: 14px; /* 适配小字体高度 */
    line-height: 1.2;
}

.productCenter2205191604 .swiper-slide a .proContent .dec {
    height: 14px; /* 缩小描述高度 */
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-size: 10px; /* 缩小描述字体 */
    margin-bottom: 6px; /* 减少间距 */
}

.productCenter2205191604 .swiper-slide a:hover {
    transition: all 0.3s linear;
    border-bottom: 2px solid #fd6e27;
    box-shadow: 3px 6px 30px rgb(0 0 0 / 10%);
}

.productCenter2205191604 .swiper-slide a:hover .moreBtn .btnIcon {
    background: #fd6e27;
}

/* 核心调整3：缩小产品图片容器尺寸 */
.productCenter2205191604 .swiper-slide a .proImg {
    overflow: hidden;
    width: 100%;
    height: 160px; /* 从286px降低，适配小卡片 */
    position: relative;
    transition: background 0.5s linear;
}

.productCenter2205191604 .swiper-slide a .proImg img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
    transition: all 0.4s ease-in-out;
}

.productCenter2205191604 .swiper-slide a:hover .proImg:before {
    opacity: 1;
}

.productCenter2205191604 .swiper-slide a:hover .proImg img {
    transform: scale(1.05); /* 缩小缩放比例，适配小图片 */
}

.productCenter2205191604 .swiper-slide a:hover .btnIcon {
    background: #000;
}

.productCenter2205191604 .swiper-slide a:hover .btnIcon svg path {
    fill: #fff;
}

/* 调整轮播箭头大小和位置，适配小容器 */
.productCenter2205191604 .swiper-button-next,
.productCenter2205191604 .swiper-button-prev {
    background: rgba(51, 51, 51, .3);
    width: 36px; /* 缩小箭头宽度 */
    height: 36px; /* 缩小箭头高度 */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: 45%; /* 调整箭头垂直位置 */
}

.productCenter2205191604 .swiper-button-next {
    right: 10px; /* 右移箭头，避免遮挡产品 */
}

.productCenter2205191604 .swiper-button-prev {
    left: 10px; /* 左移箭头，避免遮挡产品 */
}

.productCenter2205191604 .swiper-button-prev svg {
    transform: rotate(180deg);
    width: 16px; /* 缩小箭头图标 */
    height: 16px;
}

.productCenter2205191604 .swiper-button-next svg {
    width: 16px; /* 缩小箭头图标 */
    height: 16px;
}

.productCenter2205191604 .swiper-button-next:hover,
.productCenter2205191604 .swiper-button-prev:hover {
    background: rgba(51, 51, 51);
}

/* 补充：确保swiper的wrapper布局正确 */
.productCenter2205191604 .swiper-wrapper {
    display: flex;
    align-items: stretch; /* 让所有slide高度一致 */
}