riku
2025-04-21 0746b7bbe6aa3d9f02e03654a2cd4fde2081c335
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
.notice-list-wrap {
  background-color: var(--td-bg-color);
}
 
.notice-list-item {
  padding: var(--td-spacer-1);
  padding-bottom: 0;
  margin-bottom: var(--td-spacer);
  background-color: var(--td-bg-color-block);
  display: flex;
  /* align-items: center; */
  gap: 4px;
}
 
.notice-list-type {
  font-size: var(--td-font-size-m);
  margin-bottom: var(--td-spacer-2);
}
 
.notice-list-title {
  font-size: var(--td-font-size-m);
  margin-bottom: var(--td-spacer);
}
 
.notice-list-content {
  font-size: var(--td-font-size-base);
  color: var(--td-text-color-secondary);
}
 
.notice-list-time {
  font-size: var(--td-font-size-s);
  color: var(--td-text-color-secondary);
  text-align: end;
  margin-top: var(--td-spacer);
}
 
.limit-line {
  /* background-color: aqua; */
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.long-content {
  max-height: 60vh;
  margin-top: 16rpx;
  margin-bottom: 16rpx;
  font-size: 30rpx;
  color: #888;
}
 
.long-content .content-container {
  white-space: pre-line;
}