.active{
    color:#fa0f56!important;
}


/* 轮播标题 - 两行省略（根据需求调整） */
.text-line2{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 固定显示2行 */
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5; /* 行高可根据你的设计调整 */
  max-height: 3em; /* 行高×行数 = 1.5×2=3，防止高度溢出 */
}

/* 轮播描述文本 - 两行省略 */
.text-line3{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 固定显示2行 */
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5; /* 行高可根据你的设计调整 */
  max-height: 4.5em; /* 行高×行数 = 1.5×2=3，防止高度溢出 */
}


