index.css 854 B

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