main.wxss 485 B

12345678910111213141516171819202122
  1. @charset "UTF-8";
  2. /*每个页面公共css */
  3. .hui-button-box {
  4. background-color: #ffffff;
  5. box-shadow: 0px 2px 10px rgba(3, 3, 3, 0.1);
  6. position: fixed;
  7. bottom: 0;
  8. left: 0;
  9. right: 0;
  10. height: 100rpx;
  11. display: flex;
  12. align-items: center;
  13. justify-content: flex-end;
  14. padding-bottom: 0;
  15. padding-bottom: constant(safe-area-inset-bottom);
  16. padding-bottom: env(safe-area-inset-bottom);
  17. padding-right: 40rpx;
  18. }
  19. page {
  20. background-color: #f3f4f6;
  21. font-size: 28rpx;
  22. }