/* 变量统一 */
:root {
  --rightint2-radius: 8px;
  --rightint2-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  --rightint2-transition: all 0.35s ease;
}

.indexF-rightint2 {
  padding: clamp(30px, 4.166667vw, 80px) 0;
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}
.indexF-rightint2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: -1;
}

/* 标题区域美化 */
.indexF-rightint2 .tit {
  text-align: center;
  color: #fff;
}
.indexF-rightint2 .tit em {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  font-style: normal;
  margin-bottom: 12px;
  opacity: 0.9;
  display: none;
}
.indexF-rightint2 .tit h3 {
  font-size: clamp(24px, 1.88vw, 36px);
  line-height: 1.1;
  color: #fff;
  font-weight: 700;
  margin: 0;
}

/* 轮播列表 */
.indexF-rightint2 .list {
  margin: 80px 0 0;
  position: relative;
}
.indexF-rightint2 .swiper-slide {
  position: relative;
}

/* 图片卡片核心美化 */
.indexF-rightint2 .swiper-slide .pic {
  height: 101px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--rightint2-radius);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--rightint2-transition);
  box-shadow: var(--rightint2-shadow);
  overflow: hidden;
}
.indexF-rightint2 .swiper-slide .pic img {
  display: block;
  max-width: 85%;
  max-height: 85%;
  transition: transform 0.5s ease;
  object-fit: contain;
}

/* 悬浮效果 */
.indexF-rightint2 .swiper-slide:hover .pic {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: #fff;
}
.indexF-rightint2 .swiper-slide:hover .pic img {
  transform: scale(1.08);
}

/* 分页器 */
.indexF-rightint2 .swiper-pagination-bullets {
  position: static;
  margin-top: 40px;
  width: 100%;
}
.indexF-rightint2 .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  border-radius: 50%;
  opacity: 1;
  transition: var(--rightint2-transition);
}
.indexF-rightint2 .swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.1);
}

/* 左右箭头 */
.indexF-rightint2 .swiper-button-prev,
.indexF-rightint2 .swiper-button-next {
  color: #fff;
  transition: var(--rightint2-transition);
}
.indexF-rightint2 .swiper-button-prev:hover,
.indexF-rightint2 .swiper-button-next:hover {
  color: #fff;
  opacity: 0.7;
  transform: scale(1.1);
}
.indexF-rightint2 .swiper-button-prev:after,
.indexF-rightint2 .swiper-button-next:after {
  font-size: 30px;
}

/* 轮播平滑 */
.indexF-rightint2 .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* =======================================
   响应式优化
======================================= */
@media screen and (max-width:1680px) {
}
@media screen and (max-width:1441px) {
  .indexF-rightint2 .list { margin: 70px 0 0; }
}

@media screen and (max-width:992px) {
  .indexF-rightint2 .list { margin: 40px 0 0; }
}
@media screen and (max-width:768px) {
  .indexF-rightint2 .tit em { font-size: 16px; letter-spacing: 2px; }
  .indexF-rightint2 .swiper-slide .pic { height: 90px; }
}
@media screen and (max-width:576px) {
  .indexF-rightint2 .swiper-slide .pic { height: 80px; }
}
@media screen and (max-width:480px) {
  .indexF-rightint2 .swiper-slide .pic { height: 70px; }
}