common.scss 385 B

1234567891011121314151617
  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. }