12345678910111213141516171819202122232425262728 |
- @charset "UTF-8";
- /*每个页面公共css */
- .hui-button-box {
- background-color: #ffffff;
- box-shadow: 0px 2px 10px rgba(3, 3, 3, 0.1);
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- height: 100rpx;
- display: flex;
- align-items: center;
- justify-content: flex-end;
- padding-bottom: 0;
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- padding-right: 40rpx;
- padding-left: 40rpx;
- }
- .text-flex {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- page {
- background-color: #f3f4f6;
- font-size: 28rpx;
- }
|