.customized1_product {
  width: 100%;
  height: 100vh; /* 占满屏幕高度 */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.customized1_product .tit {
  text-align: center;
}

.customized1_product .tit h3 {
  font-size: 72px;
  line-height: 1;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}

.customized1_product .tit h3 span {
  color: var(--color-primary);
}

.customized1_product .tit p {
  font-size: 18px;
  color: #373737;
  max-width: 920px;
  margin: 25px auto 0;
}

.customized1_product .tit .more {
  margin: 30px auto 0;
  min-width: 200px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
  background: var(--color-second);
  display: inline-block;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.customized1_product .tit .more:hover {
  background: var(--btn-hover);
}

.customized1_product .swiper-slide {
  box-sizing: border-box;
  padding: 30px 0 44px;
  position: relative;
}

.customized1_product .swiper-slide .pic {
  margin-top: -30px;
  width: 100%;
  overflow: hidden;
  height: 370px;
  background: #fff;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.customized1_product .swiper-slide .pic img {
  box-sizing: border-box;
  display: block;
  transition: all 0.5s ease 0s;
  max-width: 95%;
  max-height: 95%;
}

.customized1_product .swiper-slide h6 {
  margin: 10px 0 0;
  font-size: 19px;
  color: #0e0e0e;
  text-align: center;
  font-weight: 600;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.customized1_product .swiper-slide .more {
  width: 200px;
  display: block;
  margin: 20px auto 0;
  padding: 10px 30px;
  background: #929292;
  border-radius: 25px;
  text-align: center;
  font-size: 18px;
  color: #fff;
}

.customized1_product .swiper-slide .more:hover {
  background: #000;
}

/* 分页器和按钮容器 */
.customized1_product .all-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  position: relative;
}

/* 分页器样式 */
.customized1_product .all.swiper-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 0;
  width: 90%;
  margin-right: 10%;
  box-sizing: border-box;
  flex: 1;
  height: 3px;
  background: #aaa;
  position: relative;
}

.customized1_product .all.swiper-pagination::after {
  content: "";
  display: block;
  height: 2px;
  background: #ccc;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* 按钮样式 */
.customized1_product .swiper-buttons {
  display: flex;
  gap: 10px;
}

/* 按钮样式 */
.customized1_product .swiper-buttons button {
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-radius: 50%; /* 圆形按钮 */
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.customized1_product .swiper-buttons button i {
  font-size: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none !important; /* 隐藏默认的箭头内容 */
}

.customized1_product .swiper-buttons .swiper-button-prev {
  left: auto;
  right: 55px;
}
.customized1_product .swiper-buttons .swiper-button-next {
  color: #fff;
  background: #000;
}

.customized1_product .swiper-buttons button:hover {
  background: #555;
}

.customized1_product .all > .swiper-pagination-bullet {
  flex: 1;
  height: 3px;
  margin: 0;
  background: transparent;
  border-radius: 0;
  opacity: 1;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
  z-index: 20;
}

.customized1_product .all > .swiper-pagination-bullet-active {
  background: #000;
}

/* 第二个 slider 样式 */
.customized1_product .list p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  text-align: center;
  margin-top: 10px;
}
.customized1_product .list .pic-swiper {
  position: relative;
}

.customized1_product .list .pic-swiper .swiper-wrapper {
  display: flex;
}

.customized1_product .list .pic-swiper .swiper-slide {
  text-align: center;
}

.customized1_product .list .pic-swiper .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.customized1_product .list .pic-swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  position: relative;
  opacity: 1;
  transition: background-color 0.3s ease;
}

.customized1_product .list .pic-swiper .swiper-pagination-bullet::after {
  display: block;
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  border: 1px solid #ccc;
  border-radius: 50%;
  box-sizing: border-box;
}

.customized1_product .list .pic-swiper .swiper-pagination-bullet-active::after {
  border-color: #000;
}

@media screen and (max-width: 1500px) {
  .customized1_product .swiper-slide .pic {
    height: 300px;
  }

  .customized1_product .tit h3 {
    font-size: 48px;
  }
}

@media screen and (max-width: 1150px) {
  .customized1_product .swiper-slide {
    padding: 0;
  }
  .customized1_product .tit {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1150px) {
  .customized1_product .swiper-slide h6 {
    font-size: 17px;
  }
}

@media screen and (max-width: 768px) {
  .customized1_product {
    height: 100%;
    padding: 6px 0 30px;
  }

  .customized1_product::before {
    width: 200px;
    height: 209px;
    background-size: 200px 209px;
  }

  .customized1_product::after {
    width: 200px;
    height: 205px;
    background-size: 200px 205px;
  }
  .customized1_product .tit h2 {
    font-size: 18px;
  }
  .customized1_product .tit h3 {
    font-size: 36px;
  }

  .customized1_product .tit p {
    font-size: 8px;
    margin: 5px auto 0;
  }

  .customized1_product .tit .more {
    margin: 5px auto 0;
    width: 120px;
    min-width: 0;
    height: 20px;
    padding-left: 0;
    padding-right: 0;
    line-height: 20px;
    font-size: 8px;
  }

  .customized1_product .list {
    margin: 0;
  }

  .customized1_product .swiper-slide {
    padding: 0;
  }

  .customized1_product .swiper-slide .pic {
    margin-top: 0;
    height: auto;
  }
  .customized1_product .tit{
    margin-bottom: 5px;
  }
  .customized1_product .swiper-slide h6 {
    line-height: 24px;
    margin:  0;
    font-size: 12px;
    color: #333;
    text-align: center;
    font-weight: 300;
  }
  .customized1_product .list p{
    margin-top: 0;
    line-height: 18px;
    font-size: 8px;
  }

  .customized1_product .swiper-slide h6 a {
    line-height: 22px;
  }

  .customized1_product .swiper-slide .more {
    /* display: none; */
    margin-top: 0;
    width: 118px;
    height: 24px;
    line-height: 24px;
    padding: 0;
    font-size: 8px;
  }
  .customized1_product .swiper-buttons{
    display: none;
  }
  .customized1_product .all-controls{
    margin-top: 22px;
  }
  .customized1_product .all.swiper-pagination{
    width: 100%;
    margin-right: 0;
    bottom: 0;
  }
  .customized1_product .all > .swiper-pagination::after {
    display: none;
  }

  .customized1_product .all > .swiper-pagination-bullet {
    width: 20px;
    margin: 0 3px;
    background: #ccc;
  }

  .customized1_product .all > .swiper-pagination-bullet-active {
    background: var(--color-primary);
  }
  .customized1_product .list .pic-swiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
  }
  .customized1_product .list .pic-swiper .swiper-pagination-bullet::after{
    width: 14px;
    height: 14px;
    top: -2px;
    left: -2px;
  }
  .customized1_product .list .pic-swiper .swiper-pagination{
    gap: 5px;
  }
}

@media screen and (max-width: 560px) {
  .customized1_product .tit h3 {
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  .customized1_product .tit h3 {
    font-size: 24px;
  }

  .customized1_product .swiper-slide h6 {
    font-size: 16px;
  }

  .customized1_product .swiper-slide h6 a {
    line-height: 18px;
  }
}
