flowerBox.wxss 655 B

123456789101112131415161718192021222324252627282930313233
  1. .flower-alert {
  2. width: 290rpx;
  3. height: 100rpx;
  4. background: rgba(255, 255, 255, 1);
  5. box-shadow: 0 0 20rpx 0rpx rgba(0, 0, 0, 0.3);
  6. border-radius: 40rpx;
  7. position: fixed;
  8. bottom: -100rpx;
  9. left: 0;
  10. right: 0;
  11. margin: 0 auto;
  12. display: flex;
  13. align-items: center;
  14. align-content: center;
  15. background: #fff;
  16. padding-left: 49rpx;
  17. box-sizing: border-box;
  18. }
  19. .flower-title{
  20. display: flex;
  21. align-items: center;
  22. text-align: center;
  23. font-size: 24rpx;
  24. font-weight: 800;
  25. color: #393939;
  26. }
  27. .flower-icon{
  28. width: 32rpx;
  29. height: 38rpx;
  30. display: block;
  31. margin-left: 7rpx;
  32. }