yuanhao
2025-05-19 cc610ef597a4b600b4c48c80026f3a99be171f3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.page-box{
    padding-bottom: 220rpx;
}
.box{
    margin: 32rpx;
    background-color: white;
    border-radius: 10rpx;
    padding: 24rpx;
    
    .form-item{
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 30rpx;
        border-bottom: 2rpx solid #F4F4F4;
        padding-bottom: 24rpx;
        margin-bottom: 24rpx;
        .label{
            color: #7E8596;
        }
        
    }
    .form-input-item{
        margin-bottom: 24rpx;
    }
    .form-input-item:last-child{
        margin-bottom: 0;
    }
    .form-item:last-child{
        margin: 0;
        padding: 0;
        border: none;
    }
    .form-label{
        margin-bottom: 16rpx;
        color: #4A4E60;
    }
    .require::after{
        content: '*';
        color: #FF7500;
    }
    ::v-deep .u-textarea{
        background-color: #F4F4F4;
        border: none;
        .u-textarea__count{
            background: none !important;
        }
    }
 
}
    .down{
        position: fixed;
        background: white;
        width: 100%;
        bottom: 0;
        padding: 32rpx 22rpx 40rpx;
        text-align: center;
        box-sizing: border-box;
        .button{
            border-radius: 20rpx;
            border: 2rpx solid #1171E0;
            background: #1171E0;
            color: white;
            padding: 20rpx 0;
        }
    }
    .show-hint{
        color: #FE7B32;
        padding: 14rpx 16rpx;
        font-size: 24rpx;
        background: #fea0320d;
        border-radius: 8rpx;
        margin: 24rpx 0;
    }