common.scss 499 B

123456789101112131415161718192021222324
  1. //底部按钮
  2. .hui-button-box {
  3. background-color: #ffffff;
  4. box-shadow: 0px 2px 10px rgba(3, 3, 3, 0.1);
  5. position: fixed;
  6. bottom: 0;
  7. left: 0;
  8. right: 0;
  9. height: 100rpx;
  10. display: flex;
  11. align-items: center;
  12. justify-content: flex-end;
  13. padding-bottom: 0;
  14. padding-bottom: constant(safe-area-inset-bottom);
  15. padding-bottom: env(safe-area-inset-bottom);
  16. padding-right: 40rpx;
  17. padding-left: 40rpx;
  18. }
  19. .text-flex {
  20. display: flex;
  21. justify-content: space-between;
  22. align-items: center;
  23. }