| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /* components/shopping-cart/shopping-cart.wxss */
- /* 列表购物车 */
- .contact {
- position: fixed;
- bottom: 300rpx;
- right: 30rpx;
- background:#FE0419 !important;
- border-radius: 50% !important;
- width: 88rpx !important;
- height: 88rpx !important;
- box-shadow: 0 6rpx 10rpx 1rpx rgba(255,0,0,0.16);
- font-size: 18rpx;
- color: #555;
- z-index: 20;
- align-items: center;
- text-align: center;
- }
- .contact image {
- width: 45rpx;
- height: 45rpx;
- margin: 0 auto;
- }
- /* 购物车 */
- .dots-cart {
- display: block;
- height: 30rpx;
- border-radius: 30rpx;
- padding: 0 7rpx;
- font-size: 24rpx;
- color: #fff;
- line-height: 30rpx;
- background: #F51A1A;
- min-width: 30rpx;
- box-sizing: border-box;
- align-items: center;
- justify-content: center;
- border: none;
- position: absolute;
- top: -10rpx;
- right: -10%;
- }
|