main.wxss 597 B

12345678910111213141516171819202122232425262728
  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. padding-left: 40rpx;
  19. }
  20. .text-flex {
  21. display: flex;
  22. justify-content: space-between;
  23. align-items: center;
  24. }
  25. page {
  26. background-color: #f3f4f6;
  27. font-size: 28rpx;
  28. }