.swiper-row {
  /* 弹性布局 默认水平排列 */
  display: flex;
  width: 90vw;
  /* max-width: 900px; */
  height: 400px;
  /* 溢出隐藏 */
  overflow: hidden;
}

.rowSwiper-item {
  /* 相对定位 */
  position: relative;
  width: 220px;
  margin: 20px;
  cursor: pointer;
  /* border-radius: 30px; */
  border-radius: 4px;
  /* 保持原有尺寸比例，裁切长边 */
  background-size: cover !important;
  /* 定位背景图像为正中间 */
  background-position: center !important;
  /* 过渡效果：时长 贝塞尔曲线 */
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .rowSwiper-item {
    width: 160px;
  }
}
.rowSwiper-item .shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80%;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  background: linear-gradient(
    0deg,
    var(--mainColorRGBA0) 0%,
    var(--mainColor) 100%
  );
}
.rowSwiper-item .content {
  /* display: flex; */
  position: absolute;
  left: 20px;
  right: 0;
  top: 30px;
  height: 40px;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
/* .rowSwiper-item .content .icon {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
.rowSwiper-item:nth-child(1) .fa {
  color: #fc6e51;
}
.rowSwiper-item:nth-child(2) .fa {
  color: #ffce54;
}
.rowSwiper-item:nth-child(3) .fa {
  color: #2ecc71;
}
.rowSwiper-item:nth-child(4) .fa {
  color: #5d9cec;
}
.rowSwiper-item:nth-child(5) .fa {
  color: #ac92ec;
} */
.rowSwiper-item .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
  color: #fff;
  width: 100%;
}
.rowSwiper-item .content .text div {
  /* 超出显示省略号（需要设置width） */
  width: calc(100% - 26px);
  /* text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; */
  opacity: 1;
  transition: opacity 0.5s ease-out;
}
.rowSwiper-item .content .el-divider {
  width: 40% !important;
  background: #fff;
}
.rowSwiper-item .content .text .tit {
  font-weight: bold;
  font-size: 18px;
}
.rowSwiper-item .content .text .sub {
  /* 设置过渡效果延迟时间 */
  transition-delay: 0.1s;
}
/* 选中态样式 */
.rowSwiper-item.active {
  flex: 1;
  margin: 0;
  /* border-radius: 40px; */
}
.rowSwiper-item.active .shadow {
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 65%, transparent); */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.86) 20%,
    var(--mainColor) 100%
  );
  height: 100%;
  border-radius: 4px;
}
.rowSwiper-item.active .content {
  bottom: 20px;
  left: 20px;
}
.rowSwiper-item.active .content .text div {
  opacity: 0;
}

.rowSwiper-item .content .desc {
  display: none;
}
.rowSwiper-item.active .content .desc {
  display: block;
}

.rowSwiper-item .content .desc .sub {
  /* 超出显示省略号（需要设置width） */
  width: 50%;
  /* text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; */
  opacity: 1;
  transition: opacity 0.5s ease-out;
  color: #495770;
}

.rowSwiper-item .content .desc .tip {
  font-weight: bold;
  font-size: 18px;
  padding-bottom: 10px;
}

.rowSwiper-item .content .desc .tip-sec {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 10px;
}

.rowSwiper-item .content .desc .tip-sec .tip-sec-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.rowSwiper-item .content .desc .tip-sec .tip-sec-item .el-icon-check {
  color: #18bd78;
  font-weight: bold;
  padding-right: 5px;
}
