xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* pages/messageCenter/index.wxss */
.messageCenter {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
 
.messageCenter-tabs {
    padding: 40rpx 0;
}
 
.messageCenter-scroll {
    flex: 1;
    overflow: hidden;
}
 
.msg-item {
    position: relative;
    display: flex;
    padding: 32rpx 20rpx;
    background-color: #ffffff;
}
 
.msg-item::after {
    content: '';
    position: absolute;
    border-top: 2rpx solid var(--border-color);
    bottom: 0;
    left: 20rpx;
    right: 20rpx;
}
 
.msg-item-last::after {
    border: none;
}
 
.msg-item-read {
    color: rgba(0, 0, 0, 0.5);
}
 
.msg-item-content {
    flex: 1;
    padding-left: 16rpx;
}
 
.msg-item-content-header {
    flex: 1;
    display: flex;
    align-items: center;
}
 
.msg-item-content-title {
    font-weight: 600;
    flex: 1;
}
 
.msg-item-content-time {
    font-size: 24rpx;
    color: rgba(0, 0, 0, 0.5);
}
 
.msg-item-content-text {
    font-size: 24rpx;
    line-height: 40rpx;
    margin-top: 8rpx;
}
 
.popup {
    padding: 0 32rpx;
}
 
.popup-header {
    display: flex;
    align-items: center;
    padding: 32rpx 0;
}
 
.popup-header-content {
    margin-left: 16rpx;
}
 
.popup-header-content-title {
    font-weight: 600;
}
 
.popup-header-content-text {
    font-size: 24rpx;
    line-height: 40rpx;
    color: rgba(0, 0, 0, 0.5);
}
 
.popup-button {
    padding: 32rpx 0;
    margin: 0 32rpx;
    border-top: 2rpx solid var(--border-color);
}
 
.popup-content {
    margin-bottom: 32rpx;
}