/* 轮播图：图片上方，文字下方，简洁可复用样式 */
.gczs-carousel {
  width: 100%;
  max-width: 5.3125rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  margin-top: 0.0781rem;
}
.gczs-carousel .viewport {
  position: relative;
  width: 100%;
  height: auto;
  overflow: visible;
}
.gczs-carousel .slides {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  list-style: none;
  margin: 0;
  padding: 0;
}
.gczs-carousel .slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}
.gczs-carousel .slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 2.3438rem;
  object-fit: cover;
}
.gczs-carousel .caption {
  background: #fff;
  padding: 0.043rem 0.0508rem; /* 0.7rem 0.8rem -> approx .043rem .0508rem */
  text-align: center;
  font-size: 0.0977rem;
  color: #222;
  border-top: 0.0039rem solid #eee;
}
.gczs-carousel .nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.3125rem;
  display: flex;
  gap: 0.4rem;
  z-index: 20;
}
.gczs-carousel .dot {
  width: 0.0547rem;
  height: 0.0547rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: 0.0039rem solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.gczs-carousel .dot.active {
  background: #1c7ed6;
}
.gczs-carousel .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2031rem;
  height: 0.2031rem;
  border-radius: 0.0234rem;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.0859rem;
}
.gczs-carousel .arrow.left {
  left: 0.0313rem;
}
.gczs-carousel .arrow.right {
  right: 0.0313rem;
}
@media (max-width: 2.8125rem) {
  .gczs-carousel .slide img {
    max-height: 0.8594rem;
  }
  .gczs-carousel .caption {
    font-size: 0.0586rem; /* 0.95rem -> ~.0586rem */
    padding: 0.0273rem 0.0391rem; /* 0.45rem 0.6rem -> ~.0273rem .0391rem */
  }
  .gczs-carousel .arrow {
    width: 0.1719rem;
    height: 0.1719rem;
    font-size: 0.0703rem;
  }
  .gczs-carousel .nav {
    bottom: 0.0313rem;
  }
}
