.section-wrap .title {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.section-wrap .title h1,
.section-wrap .title h1 a,
.section-wrap .title h2,
.section-wrap .title h2 a,
.section-wrap .title h3,
.section-wrap .title h3 a,
.section-wrap .title h4,
.section-wrap .title h4 a,
.section-wrap .title h5,
.section-wrap .title h5 a {
  font-size: 36px;
  letter-spacing: 2px;
  color: #000009;
}

.section-wrap .title b {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 17px;
  font-family: var(--font-family);
  letter-spacing: 0;
}

.section-wrap .title p {
  margin-top: 20px;
}

.section-wrap {
    padding: 10px 0 90px 0;
}

.goods-advanced {
  background-attachment: fixed;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
}

.goods-advanced .title h3,
.goods-advanced .title p {
  color: #000000;
  font-size: clamp(24px, 2.87vw, 55px);
  line-height: 1.6;
  font-weight: 700;
  text-transform: capitalize;
}


.goods-advancedcon {
  margin-top: 60px;
  position: relative; /* 箭头定位父级 */
  padding: 3px 0;
}

.goods-advancedcon li {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.goods-advancedcon li span {
  display: block;
  overflow: hidden;
}

.goods-advancedcon li img {
  width: 74%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.goods-advancedcon li:hover img {
  transform: scale(1.05);
}

/* 标题默认样式 */
.goods-advancedcon li div {
  padding: 10px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 6px;
  border: 1px solid #ff6723;
}
.goods-advancedcon li h3 {
  color: #ff6723;

  margin: 0;
  font-size: clamp(14px, 1vw, 19px);
}
.goods-advancedcon li h3 a {
  font-family: var(--font-family);
  color: #ff6723;
  transition: color 0.3s ease;
}

/* ========== 核心 hover 效果：图片/卡片 hover → 橙底白字 ========== */
.goods-advancedcon li:hover div {
  background: #ff6723;
}
.goods-advancedcon li:hover h3,
.goods-advancedcon li:hover h3 a {
  color: #ffffff;
}

.goods-advancedcon li p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 20px;
}

.goods-advancedbt {
  margin-top: 10px;
  text-align: center;
  position: relative;
}

/* Swiper 基础样式 */
.section-wrap .swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.section-wrap .swiper-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.section-wrap .swiper-slide {
  flex-shrink: 0;
  position: relative;
  transition-property: transform;
}

/* 隐藏分页器 */
.section-wrap .swiper-pagination {
  display: none;
}

/* 箭头按钮样式 */
.section-wrap .swiper-button-prev,
.section-wrap .swiper-button-next {
  z-index: 10;
  opacity: 0;
  top: 35%;
  position: absolute;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: transparent;
  outline: none;
  margin-top: 0;
}

/* hover 显示箭头 */
.goods-advancedcon:hover .swiper-button-prev,
.goods-advancedcon:hover .swiper-button-next {
  opacity: 1;
  visibility: visible;
}

/* 左箭头 */
.section-wrap .swiper-button-prev {
  left: 0;
  border: 1px solid #d9d9d9;
}
.section-wrap .swiper-button-prev:after {
  display: none;
}
.section-wrap .swiper-button-prev:before {
  content: '';
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #d9d9d9;
  border-right: 2px solid #d9d9d9;
  display: inline-block;
  transform: rotate(135deg) translateX(-3px);
  transition: all 0.3s ease;
}
.section-wrap .swiper-button-prev:hover {
  background-color: #ff6723;
  border-color: #ff6723;
}
.section-wrap .swiper-button-prev:hover:before {
  border-color: #fff;
}

/* 右箭头 */
.section-wrap .swiper-button-next {
  right: 0;
  background-color: #ff6723;
  border: 1px solid #ff6723;
}
.section-wrap .swiper-button-next:after {
  display: none;
}
.section-wrap .swiper-button-next:before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  display: inline-block;
  transform: rotate(135deg);
  margin-left: -4px;
  transition: all 0.3s ease;
}



@media screen and (max-width: 960px) {
  .section-wrap {
    padding: 30px 0;
  }
  .section-wrap .swiper-button-prev,
  .section-wrap .swiper-button-next {
    width: 44px;
    height: 44px;
    line-height: 44px;
  }
}