.ts-swiper{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}
/* 大图展示 */
.ts-swiper-big{
    flex:2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ts-swiper-big-can{
    position: relative;
}
.ts-swiper-bigimg{
    position: unset;
    opacity: 1;
    width: 100%;
    transition: all .5s ease-in-out 0s;
}
.ts-swiper-bigimg2{
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: all .5s ease 0s;
}
/* 缩略图区域 */
.ts-swiper-text{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ts-swiper-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom:1rem;
}
.ts-swiper-content-title{
    margin-top: 0.7rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #575757;
}
.ts-swiper-content-text{
    margin-top: 0.7rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #cecece;
}
/* 缩略图模块（包含箭头） */
.ts-swiper-slt{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}
/* 箭头 */
.ts-swiper-pre,.ts-swiper-next{
    margin:0 .3rem;
    font-size: 1.2rem;
}
/* 缩略图展示 */
.ts-swiper-slt-show{
    flex:1;
    overflow: hidden;
    position: relative;
}
/* 缩略图容器 */
.ts-swiper-slt-container{
    position: absolute;
    /* width: max-content; */
    display: inline-flex;
    transition: all .5s ease 0s;
}
/* 缩略图单个块 */
.ts-swiper-slt-item{
    padding:1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* 缩略图图片 */
.ts-swiper-slt-img{
    width: 100%;
    transition: all .5s ease 0s;
    opacity: .5;
}
/* 缩略图文本 */
.ts-swiper-slt-text{
    font-size: 1rem;
    font-weight: 600;
    color: #575757;
    margin-top:1rem;
    word-break: keep-all;
}
/* 圆点容器 */
.ts-swiper-point{
    display: flex;
    margin-top: 1rem;
}
/* 圆点单个 */
.ts-swiper-point-item{
    width: .5rem;
    height:.5rem;
    margin-right:.3rem;
    border-radius: 50%;
    background-color:#ccc;
}
.ts-swiper-slt-selected{
    transform: scale(1.2);
    box-shadow: 0 0 10px 2px #ccc;
    opacity: 1;
}