| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /* components/shopping-cart/shopping-cart.wxss */
- /* 列表购物车 */
- .contact {
- position: fixed;
- bottom: 300rpx;
- right: 30rpx;
- background: #fff !important;
- border-radius: 50% !important;
- width: 75rpx !important;
- height: 75rpx !important;
- /* box-shadow: 0 0 10rpx rgba(86,86,86,0.36); */
- font-size: 18rpx;
- color: #555;
- z-index: 20;
- align-items: center;
- text-align: center;
- border: 1rpx solid #eee;
- }
- .contact image {
- width: 45rpx;
- height: 45rpx;
- margin: 15rpx auto;
- }
- /* 购物车 */
- .dots {
- 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%;
- }
|