index.wxss 631 B

123456789101112131415161718192021222324252627282930313233343536
  1. .cart {
  2. position: fixed;
  3. left: 30rpx;
  4. bottom: 80rpx;
  5. width: 120rpx;
  6. height: 120rpx;
  7. border-radius: 50%;
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: center;
  11. align-items: center;
  12. line-height: 1;
  13. font-size: 24rpx;
  14. background: linear-gradient(45deg, #fdd225 0%, #feb600 100%);
  15. color: #000;
  16. z-index: 100;
  17. }
  18. .cart .img {
  19. width: 54rpx;
  20. height: 54rpx;
  21. }
  22. .cart .num {
  23. color: #fff;
  24. background-color: #ff5041;
  25. position: absolute;
  26. top: -15rpx;
  27. right: -15rpx;
  28. min-width: 54rpx;
  29. height: 54rpx;
  30. line-height: 54rpx;
  31. border-radius: 54rpx;
  32. text-align: center;
  33. font-size: 26rpx;
  34. }