riku
2022-09-19 47e86f543415585ab1e1b2b1ed1d98830817a1be
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
/* pages/promise/promise.wxss */
.banner-bg {
  position: fixed;
  width: 100%;
  height: 50vh;
  background: linear-gradient(to bottom, #57E4CB, #bbf3eb);
}
.page__hd {
  background: linear-gradient(to bottom, #57E4CB, #bbf3eb);
  height: 30vh;
  display: flex;
  justify-content: space-between;
}
 
.page__hd .title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 8px;
}
 
.page__hd .tag {
  font-size: 12px;
  color: #55A37D;
  margin-top: 8px;
  /* background-color: red; */
  text-align: end;
}
 
.page__hd .btn {
  border-radius: 20px;
  line-height: 20px;
  background: linear-gradient(to right, #6EF0A5, #62EAD2);
  padding: 8px 4px;
  text-align: center;
  color: white;
  width: 30vw;
  margin-top: 50px;
}
 
.page__hd .file {
  width: 40vw;
  height: 25vh;
}
 
.p-cell{
  position: relative;
  padding: 8px;
}
 
.p-title{
  font-weight: 600;
  font-size: 14px;
  color: #5CE395;
}
 
.p-content{
  margin-top: 16px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}
 
.p-tag{
  color: var(--fyui-text-color_3);
  font-size: 10px;
}
 
.p-btn{
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 4px;
  background: linear-gradient(to right, #6EF0A5, #62EAD2);
  padding: 4px 16px;
  color: white;
  font-size: 14px;
}