| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- @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 .status-block {
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .complaint-page .status-block .status-title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222;
- }
- .complaint-page .status-block .divider {
- height: 2rpx;
- background: #EEEEEE;
- margin: 20rpx 0;
- }
- .complaint-page .status-block .status-info .info-row {
- display: flex;
- font-size: 28rpx;
- line-height: 48rpx;
- }
- .complaint-page .status-block .status-info .info-row .label {
- color: #333;
- min-width: 140rpx;
- }
- .complaint-page .status-block .status-info .info-row .value {
- color: #333;
- flex: 1;
- }
- .complaint-page .status-block .status-info .info-row .status-text {
- color: #FF5B5B;
- }
- .complaint-page .complaint-records .complaint-item {
- background: #FFFFFF;
- border-radius: 12rpx;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- .complaint-page .complaint-records .complaint-item .complaint-header {
- margin-bottom: 24rpx;
- }
- .complaint-page .complaint-records .complaint-item .complaint-header .header-main {
- display: flex;
- flex-direction: column;
- gap: 8rpx;
- }
- .complaint-page .complaint-records .complaint-item .complaint-header .header-main .title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .complaint-page .complaint-records .complaint-item .complaint-header .header-main .time {
- font-size: 26rpx;
- color: #999;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .info-row {
- display: flex;
- margin-bottom: 16rpx;
- font-size: 28rpx;
- line-height: 1.5;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .info-row .label {
- color: #333;
- white-space: nowrap;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .info-row .value {
- color: #333;
- flex: 1;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .image-list .label {
- display: block;
- font-size: 28rpx;
- color: #333;
- margin-bottom: 16rpx;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .image-list .images {
- display: flex;
- flex-wrap: wrap;
- gap: 20rpx;
- }
- .complaint-page .complaint-records .complaint-item .complaint-content .image-list .images image {
- width: 140rpx;
- height: 140rpx;
- border-radius: 8rpx;
- }
- .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 !important;
- }
|