闫增涛
2024-03-15 cd98c69ff835643f518337ee9ab532885c647efb
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* pages/bookServices/detail/components/note/note.wxss */
 
.popup {
  padding: 40rpx;
  width: 600rpx;
}
 
.note-btn {
  height: 140rpx;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #EFF0F1;
  --td-button-primary-bg-color: #fff;
  --td-button-primary-border-color: #ff6c00;
  --td-button-primary-color: #ff6c00;
  --td-button-primary-active-bg-color: #fff0e6;
}
 
.note-btn image {
  width: 28rpx;
  height: 32rpx;
  margin-top: 24rpx;
}
 
 
 
.note-title {
  width: 90%;
  height: 84rpx;
  line-height: 84rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
 
.make-note {
  margin: 0;
  margin-right: 40rpx;
}
 
.title-text {
  display: flex;
  align-items: center;
}
 
.edit-icon {
  margin-left: 10rpx;
  width: 30rpx;
  height: 30rpx;
}
 
.header {
  display: flex;
}
 
.note-icon {
  width: 44rpx;
  height: 48rpx;
  margin-right: 20rpx;
}
 
.collapse-header {
  display: flex;
}
 
.collapse-header .header-name {
  font-size: 32rpx;
  width: 500rpx;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.note-content {
  height: min-content;
  font-size: 28rpx;
  color: #949494;
  margin-bottom: 20rpx;
  max-height: 600rpx;
  text-align: justify;
  /* padding-bottom: 200rpx; */
}
 
.wrapper {
  height: 100%;
}
 
.note-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
 
.bottom-btn {
  height: 40rpx;
  display: flex;
  align-items: center;
}
 
.note-time {
  color: #D9D9D9;
}
 
.complice,
.delete {
  width: 30rpx;
  height: 30rpx;
}
 
.delete {
  margin-left: 40rpx;
}
 
.loading-box {
  width: 100%;
  min-height: 550rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}
 
.content {
  margin-top: 20rpx;
}
 
.close-btn {
  position: absolute;
  left: 50%;
  margin-left: -32rpx;
  bottom: calc(-1 * (48rpx + 64rpx));
}
 
.submit-btn {
  padding: 40rpx;
  --td-button-border-radius: 60rpx;
  --td-button-primary-bg-color: #ff6c00;
  --td-button-primary-border-color: #ff6c00;
  --td-button-primary-active-bg-color: #ff984d;
  --td-button-primary-active-border-color: #ff984d;
}
 
.bottom-box {
  display: flex;
  justify-content: center;
}