1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .mySwiper{
- width: 320px;
- height: 573px;
- overflow: hidden;
- border-radius: 20px;
- }
- .swiperItem{
- margin-right: 30px;
-
- }
- /* 自定义指示点容器 */
- .indicatorContainer {
- padding-top: 18px;
- display: flex;
- gap: 3px;
- justify-content: center;
- }
- /* 单个指示点 */
- .indicator {
- width: 6px;
- height: 6px;
- transition: all .3s;
- border-radius: 100%;
- background-color: rgba(#000, .15);
- border-radius: 50%;
- }
- /* 当前选中的指示点 */
- .indicatorActive{
- width: 16px;
- border-radius: 30px;
- background-color: rgba(#000, .35);
- }
- .logo{
- margin-right: 5px;
- width: 24px;
- height: 24px;
- }
- .vipTips{
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- .vipTipsFigure{
- margin-top: 48px;
- width: 135px;
- height: 96px;
- background-image: url(https://cdn.wehome.cn/cmn/png/50/META-H8UK0IWU-9NNPJOLLD1MU95DE0NMA3-DAWUHO2M-AJ.png);
- background-size: 100%;
- }
|