index.wxss 625 B

123456789101112131415161718192021222324252627282930313233
  1. .cart-empty {
  2. padding: 64rpx 0rpx;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. box-sizing: border-box;
  7. height: calc(100vh - 100rpx);
  8. background-color: #f5f5f5;
  9. }
  10. .cart-empty .cart-img {
  11. width: 160rpx;
  12. height: 160rpx;
  13. margin-bottom: 24rpx;
  14. }
  15. .cart-empty .tip {
  16. font-size: 28rpx;
  17. line-height: 40rpx;
  18. color: #999;
  19. margin-bottom: 24rpx;
  20. }
  21. .cart-empty .btn {
  22. width: 240rpx;
  23. height: 72rpx;
  24. border-radius: 36rpx;
  25. text-align: center;
  26. line-height: 72rpx;
  27. border: 2rpx solid #fa4126;
  28. color: #fa4126;
  29. background-color: transparent;
  30. font-size: 28rpx;
  31. font-weight: bold;
  32. }