| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- @charset "UTF-8";
- /**
- * 主题色配置
- * 默认在 uni.scss 全局引入:@import '@/theme.scss';
- * <script> 下使用主题变量:import x from '@/theme.scss';
- */
- .page {
- background-color: #f8f8f8;
- font-family: PingFangSC;
- }
- .safeAreaPad {
- padding-bottom: constant(safe-area-inset-bottom);
- padding-bottom: env(safe-area-inset-bottom);
- box-sizing: content-box;
- }
- .complaint-page {
- min-height: 100vh;
- background: #F8F8F8;
- padding: 20rpx;
- padding-bottom: 120rpx;
- }
- .complaint-page .form-block {
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 0 30rpx;
- margin-bottom: 20rpx;
- }
- .complaint-page .required::before {
- content: '*';
- color: #FF5B5B;
- margin-right: 4rpx;
- }
- .complaint-page .form-item {
- padding: 30rpx 0;
- }
- .complaint-page .form-item .input-wrapper {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- font-size: 28rpx;
- color: #333;
- }
- .complaint-page .form-item .input-wrapper .placeholder {
- color: #999;
- }
- .upload-image .u-list-item {
- background: #ffffff;
- }
|