unknown
2022-08-16 edd35a251b58b1fad17015deda92324f74458434
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
/* pages/home/home.wxss */
.page__hd {
  background: linear-gradient(to bottom right, #D9FDFB, white);
}
 
.top-card {
  position: relative;
  border-radius: 4px;
  background-color: #5bf0d6;
  /* background: linear-gradient(to bottom right, #a5f5e9, #62EAD2); */
  color: white;
  padding: 8px;
  width: 26vw;
  /* text-shadow: 1px 1px rgb(0, 0, 0, 0.4); */
}
 
.top-card>image{
  width: 13vw;
  height: 14vw;
  position: absolute;
  bottom: -2px;
  right: -2px;
}
 
.top-card .top-card__time {
  /* text-align: end; */
  font-size: 12px;
  color: #ffffffde;
}
 
.top-card .top-card__score {
  font-size: 12px;
  /* text-align: center; */
  /* margin: 16px; */
}
 
.top-card .top-card__num {
  font-size: 20px;
  font-weight: 600;
}
 
.top-card .top-card__tag{
  font-size: 10px;
  width: 12vw;
  color: #ffffff5e;
}
 
.top-card .top-card__items {
  display: flex;
  justify-content: space-around;
}
 
.top-card__items .top-card__item {
  text-align: center;
}
 
.top-card__items .top-card__item view {
  color: #ffffffde;
  font-size: 12px;
}
 
.top-card__items .top-card__item text {
  font-weight: 600;
}
 
.title {
  padding: 8px;
}
 
.title::after {
  height: 1px;
  background-color: var(--fyui-text-color_2);
}
 
.notice-read {
  width: 12px;
  height: 12px;
  background-color: #CECECE;
  border-radius: 50%;
}
 
.notice-not-read {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
}
 
.notice {
  color: var(--fyui-text-color_2);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.image-btn {
  position: relative;
}
 
.image-btn>image {
  width: 46vw;
  height: 90px;
}
 
.image-btn .image-btn_title {
  position: absolute;
  left: 8px;
  top: 4px;
  color: white;
  font-size: 15px;
}
 
.image-btn .image-btn_abstract {
  position: absolute;
  left: 8px;
  top: 28px;
  color: white;
  font-size: 10px;
}
 
.image-btn .image-btn_goto {
  position: absolute;
  left: 8px;
  top: 48px;
  width: 24px;
  height: 24px;
  background-color: white;
  text-align: center;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2.454%206.58l1.06-1.06%205.78%205.779a.996.996%200%20010%201.413l-5.78%205.779-1.06-1.061%205.425-5.425-5.425-5.424z%22%20fill%3D%22%23B2B2B2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E)
}
 
/* .image-btn .image-btn_goto>image {
  width: 14px;
  height: 20px;
  src: url();
} */