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
| :host {
| background-color: #f5f5f5;
| }
| page view {
| box-sizing: border-box;
| }
| .person-info {
| padding-top: 20rpx;
| }
|
| .person-info__btn {
| width: 100%;
| border: 2rpx solid #ddd;
| border-radius: 48rpx;
| padding: 18rpx 0;
| display: flex;
| align-self: center;
| justify-content: center;
| }
| .person-info__wrapper {
| width: 100%;
| padding: 0 32rpx;
| padding-bottom: calc(env(safe-area-inset-bottom) + 20rpx);
| position: absolute;
| bottom: 0;
| left: 0;
| }
|
| .avatarUrl {
| width: 80rpx;
| height: 80rpx;
| border-radius: 50% !important;
| overflow: hidden;
| }
|
| .t-class-confirm {
| color: #fa550f !important;
| }
|
| .person-info .order-group__left {
| margin-right: 0;
| }
| .person-info .t-cell-class {
| height: 112rpx;
| }
|
|