index.css 831 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* components/shopping-cart/shopping-cart.wxss */
  2. /* 列表购物车 */
  3. .contact {
  4. position: fixed;
  5. bottom: 300rpx;
  6. right: 30rpx;
  7. background:#FE0419 !important;
  8. border-radius: 50% !important;
  9. width: 88rpx !important;
  10. height: 88rpx !important;
  11. box-shadow: 0 6rpx 10rpx 1rpx rgba(255,0,0,0.16);
  12. font-size: 18rpx;
  13. color: #555;
  14. z-index: 20;
  15. align-items: center;
  16. text-align: center;
  17. }
  18. .contact image {
  19. width: 45rpx;
  20. height: 45rpx;
  21. margin: 0 auto;
  22. }
  23. /* 购物车 */
  24. .dots-cart {
  25. display: block;
  26. height: 30rpx;
  27. border-radius: 30rpx;
  28. padding: 0 7rpx;
  29. font-size: 24rpx;
  30. color: #fff;
  31. line-height: 30rpx;
  32. background: #F51A1A;
  33. min-width: 30rpx;
  34. box-sizing: border-box;
  35. align-items: center;
  36. justify-content: center;
  37. border: none;
  38. position: absolute;
  39. top: -10rpx;
  40. right: -10%;
  41. }