/* packageA/mycomponent/goodsComponent/plugin/guessLike/guessLike.wxss */ /* 自定义轮播指示点样式 */ .indication { width: 400rpx; height: 36rpx; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; flex-direction: row; align-items: center; justify-content: center; } /* 未选中指示点样式 */ .spot { width: 12rpx; height: 10rpx; border-radius: 50%; margin-right: 26rpx; background-color: #c2c2c2; } /* 选中指示样式 */ .spot.active { width: 22rpx; height: 10rpx; border-radius: 6rpx; background-color: #f14e4e; } .text-overHide { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .guess-like { margin: 20rpx; border-radius: 20rpx; background-color: #fff; padding: 20rpx; position: relative; } .guess-like .guess-like-title { text-align: left; font-size: 14px; font-weight: bold; margin: 14rpx 0; } .guess-like .guess-like-goods-swiper .wx-swiper-dots .wx-swiper-dots-horizontal { margin-bottom: 2rpx; } .guess-like .guess-like-goods { display: flex; flex-wrap: wrap; } .guess-like .guess-like-goods .guess-like-goods-item { width: 200rpx; height: 200rpx; margin: 10rpx; } .guess-like .guess-like-goods .guess-like-goods-item image { width: 100%; height: 100%; } .guess-like .guess-like-goods .guess-like-goods-item .guess-like-goods-title { width: 100%; text-align: left; } .guess-like .guess-like-goods .guess-like-goods-item .guess-like-goods-price { text-align: left; color: #f14e4e; }