39 lines
673 B
SCSS
39 lines
673 B
SCSS
.swipperWrapper {
|
|
position: relative;
|
|
padding-bottom: 16px;
|
|
.closeIcon {
|
|
position: absolute;
|
|
top: 13px;
|
|
right: 9px;
|
|
width: 16px;
|
|
height: 16px;
|
|
cursor: pointer;
|
|
}
|
|
.swiper {
|
|
height: 120px;
|
|
}
|
|
::v-deep .uni-swiper-wrapper {
|
|
padding-bottom: 16px;
|
|
}
|
|
::v-deep .swiperItem {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
::v-deep .uni-swiper-dots-horizontal {
|
|
bottom: 0px;
|
|
}
|
|
::v-deep .uni-swiper-dot {
|
|
width: 4px;
|
|
height: 4px;
|
|
background-color: transparent;
|
|
border: 1px solid rgba(229, 229, 229, 1);
|
|
}
|
|
::v-deep .uni-swiper-dot-active {
|
|
background-color: rgba(229, 229, 229, 1);
|
|
}
|
|
.swiperItemImage {
|
|
width: 100%;
|
|
height: 120px;
|
|
}
|
|
}
|