123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- @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;
- }
- .color-primary {
- color: #3c9cff;
- }
- .color-success {
- color: #5ac725;
- }
- .color-warning {
- color: #f9ae3d;
- }
- .color-error {
- color: #f56c6c;
- }
- .status-tag {
- height: 52rpx;
- border-radius: 52rpx;
- line-height: 52rpx;
- padding: 0 30rpx;
- font-size: 24rpx;
- color: #fff;
- }
- .status-tag.success {
- background-color: #5ac725;
- }
- .status-tag.primary {
- background-color: #3c9cff;
- }
- .status-tag.info {
- background-color: #909399;
- }
- .status-tag.warning {
- background-color: #f9ae3d;
- }
- .status-tag.error {
- background-color: #f56c6c;
- }
- page {
- background-color: #f3f4f6;
- font-size: 28rpx;
- }
|