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
75
76
77
78
79
80
81
| .UserTag {
| display: inline-flex;
| align-items: center;
| padding: 0 8px;
| height: 36px;
| background: #f2f2f6;
| border-radius: 4px;
| margin-top: 8px;
| font-size: 14px;
| &-name {
| font-size: 14px;
| color: #333;
| margin-right: 4px;
| }
|
| &-close {
| color: #999;
| }
| }
|
| .user-detail {
| padding: 16px;
| background: #fff;
| border-radius: 8px 8px 0 0;
|
| &-title {
| font-size: 16px;
| font-weight: 500;
| color: #333;
| margin-bottom: 12px;
| text-align: left;
| position: relative;
| padding-bottom: 12px;
|
| &::after {
| content: '';
| position: absolute;
| left: 0;
| right: 0;
| bottom: 0;
| height: 1px;
| background: #F2F2F2;
| }
| }
|
| &-item {
| margin-bottom: 16px;
| }
|
| &-label {
| font-size: 14px;
| color: #999;
| margin-bottom: 8px;
| }
|
| &-value {
| font-size: 15px;
| color: #333;
| }
|
| &-footer {
| margin-top: 32px;
| }
|
| &-btn {
| height: 44px;
| line-height: 44px;
| text-align: center;
| background: #1A6FB8;
| border-radius: 8px;
| color: #fff;
| font-size: 16px;
| }
| }
|
| // 修改抽屉样式
| :global {
| .dtm-drawer {
| border-radius: 8px 8px 0 0;
| }
| }
|
|