
/* ==================== 基层风采模块样式 ==================== */

/* Swiper容器 */
.choices-swiper {
  width: 100%;
  padding: 0;
}

.choices-swiper .swiper-wrapper {
  align-items: stretch;
}

/* 每个slide卡片 - 保持原有左图右文布局 */
.choices-swiper .swiper-slide {
  display: block;
  height: auto;
  overflow: hidden;
}

/* 重置slide内部的左右布局 */
.choices-swiper .swiper-slide::after {
  content: "";
  display: table;
  clear: both;
}

/* 保持原有的左图右文布局 */
.choices-swiper .swiper-slide .Choices_left {
  width: 70% !important;
  height: 399px !important;
  float: left !important;
  overflow: hidden;
}

.choices-swiper .swiper-slide .Choices_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.choices-swiper .swiper-slide:hover .Choices_left img {
  transform: scale(1.05);
}

.choices-swiper .swiper-slide .Choices_right {
  width: 30% !important;
  height: 399px !important;
  float: left !important;
  background-color: #e7e8fc !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

.choices-swiper .swiper-slide .Choices_right h1 {
  width: 100% !important;
  height: auto !important;
  line-height: 1.4 !important;
  text-align: left !important;
  font-size: 28px !important;
  margin-top: 0 !important;
  color: #000 !important;
  float: none !important;
}

.choices-swiper .swiper-slide .Choices_right h2 {
  width: 100% !important;
  height: auto !important;
  line-height: 1.4 !important;
  text-align: left !important;
  font-size: 24px !important;
  margin-top: 15px !important;
  color: #000 !important;
  padding-left: 0 !important;
  float: none !important;
}

.choices-swiper .swiper-slide .Choices_right p {
  width: 100% !important;
  /*! height: auto !important; */
  float: none !important;
  margin-left: 0 !important;
  text-align: left !important;
  font-size: 16px !important;
  color: #000 !important;
  margin-top: 15px !important;
  line-height: 1.6 !important;
  height: 100px;
  overflow: hidden;
}

.choices-swiper .swiper-slide .Choices_right .Choicesbut {
  width: 150px !important;
  height: 48px !important;
  float: none !important;
  border: 1px solid #bfbfbf !important;
  background-color: rgba(255,255,255,0.7) !important;
  text-align: center !important;
  line-height: 48px !important;
  color: #606060 !important;
  font-size: 18px !important;
  margin-left: 0 !important;
  margin-top: 20px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 40px;
}

.choices-swiper .swiper-slide .Choices_right .Choicesbut:hover {
  background-color: rgba(255,255,255,0.9) !important;
  border-color: #ED2C25 !important;
  color: #ED2C25 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 分页器样式 */
.choices-swiper-pagination {
  position: relative;
  text-align: center;
  margin-top: 30px;
  width: 100%;
  height: auto;
  max-height: 50px;
  overflow: hidden;
}

.choices-swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  margin: 0 8px;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.choices-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  transform: scale(1.2);
}

.choices-swiper-pagination .swiper-pagination-bullet:hover {
  background-color: #fff;
}

/* 导航按钮 */
.Choicesnext {
  cursor: pointer;
  transition: all 0.3s ease;
}

.Choicesnext:hover {
  transform: scale(1.1);
}

.Choicesnext i {
  transition: all 0.3s ease;
}

.Choicesnext:hover i {
  background: rgba(237, 44, 37, 0.2);
}

/* 响应式适配 - 平板端 */
@media (max-width: 1199px) {
  .choices-swiper .swiper-slide .Choices_left,
  .choices-swiper .swiper-slide .Choices_right {
    height: 350px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right h2 {
    font-size: 22px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right p {
    font-size: 15px !important;
  }
}

@media (max-width: 991px) {
  .choices-swiper .swiper-slide .Choices_left,
  .choices-swiper .swiper-slide .Choices_right {
    height: 300px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right {
    padding: 0 20px;
  }
  
  .choices-swiper .swiper-slide .Choices_right h2 {
    font-size: 20px !important;
    margin-top: 10px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right p {
    font-size: 14px !important;
    margin-top: 10px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right .Choicesbut {
    width: 120px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 16px !important;
    margin-top: 15px !important;
  }
  
  .choices-swiper-pagination {
    margin-top: 20px;
  }
}

/* 响应式适配 - 移动端 */
@media (max-width: 767px) {
  .choices-swiper {
    padding: 0;
  }
  
  .choices-swiper .swiper-slide .Choices_left,
  .choices-swiper .swiper-slide .Choices_right {
    width: 100% !important;
    height: auto !important;
    float: none !important;
  }
  
  .choices-swiper .swiper-slide .Choices_left {
    height: 200px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_left img {
    height: 100%;
  }
  
  .choices-swiper .swiper-slide .Choices_right {
    padding: 20px !important;
    min-height: 200px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right h2 {
    font-size: 18px !important;
    margin-top: 5px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right p {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-top: 10px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right .Choicesbut {
    width: 100px !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 14px !important;
    margin-top: 15px !important;
  }
  
  .choices-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
  }
  
  .choices-swiper-pagination {
    margin-top: 15px;
  }
}

/* 响应式适配 - 小屏手机 */
@media (max-width: 575px) {
  .choices-swiper .swiper-slide .Choices_left {
    height: 180px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right {
    padding: 15px !important;
    min-height: 180px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right h2 {
    font-size: 16px !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  
  .choices-swiper .swiper-slide .Choices_right .Choicesbut {
    width: 90px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 13px !important;
    margin-top: 10px !important;
  }
  
  .choices-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
  }
}
