.zoomImg {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.zoomImg:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  opacity: .6;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.zoomImg img {
  width: 100%;
}

.zoomImg:hover:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

.zoomImg:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

a:hover .zoomImg:before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

a:hover .zoomImg img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}


.index-characters {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.index-characters .list {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 60px;
}

.index-characters .list-wrapper {
  position: relative;
  overflow: hidden;
}
.index-characters .list
.index-characters .swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.index-characters .list li {
    background: #fff;
}
.index-characters .swiper-slide {
  width: ; 
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              opacity 0.3s ease;
  transform-origin: center center;
  position: relative;
  flex-shrink: 0;
  opacity: 1;
  will-change: transform, opacity;
}

.index-characters .swiper-slide a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.index-characters .zoomImg {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  padding-top: 125%;
}

.index-characters .zoomImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: #fff;
    position: absolute;
    top: 0;
}

.index-characters .swiper-slide:hover .zoomImg img {
  transform: scale(1.1);
}

.index-characters .bd {
  padding: 20px 15px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.index-characters .bd h5 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.index-characters .bd p {
  margin: 0;
  font-size: 13px;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* å·¦ä¾§å¡ç‰‡æ ·å¼ */
.index-characters .swiper-slide.left-slide .bd {
  transform: translateY(5px);
}

/* ä¸­å¿ƒå¡ç‰‡é«˜äº® */
.index-characters .swiper-slide-active {
  z-index: 1000;
}

.index-characters .swiper-slide-active .bd {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

/* å¯¼èˆªç®­å¤´æ ·å¼ */
.index-characters .arrow {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.index-characters .arrow a {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
  z-index: 10;
  text-decoration: none;
}

.index-characters .arrow a:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: scale(1.1);
}

.index-characters .arrow a.prev {
  left: 1rem;
}

.index-characters .arrow a.next {
  right: 1rem;
}

.index-characters .arrow a:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
}

.index-characters .arrow a.prev:before {
  transform: translateX(2px) rotate(45deg);
}

.index-characters .arrow a.next:before {
  transform: translateX(-2px) rotate(-135deg);
}

/* å“åº”å¼æ ·å¼ */
@media (max-width: 992px) {
  .index-characters .list {
    padding: 0 50px;
  }
  
  .index-characters .swiper-slide {
    width: 200px;
  }
  
  .index-characters .bd {
    padding: 15px 12px;
  }
  
  .index-characters .bd h5 {
    font-size: 15px;
  }
.index-characters .arrow a.prev {
    left: 0.2rem;
}
.index-characters .arrow a.next {
    right: 0.2rem;
}
}

@media (max-width: 768px) {
  .index-characters .list {
    padding: 0 40px;
  }
  
  .index-characters .swiper-slide {
    width: 180px;
  }
  
  .index-characters .zoomImg {
    height: 140px;
  }
  
  .index-characters .bd h5 {
    font-size: 14px;
  }
  
  .index-characters .bd p {
    font-size: 12px;
  }
  
  .index-characters .arrow a {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 576px) {
  
  .index-characters .list {
    padding: 0 30px;
  }
  
  .index-characters .swiper-slide {
    width: 160px;
  }
  
  .index-characters .zoomImg {
    height: 120px;
  }
  
  .index-characters .bd {
    padding: 12px 10px;
  }
}