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
| /* pages/gradedetail/gradedetail.wxss */
| .page__bd {
| font-size: 14px;
| }
| .banner-bg {
| position: fixed;
| width: 100%;
| height: 5vh;
| background-color: #57E4CB;
| }
|
| .fyui-panel {
| padding: 8px;
| display: flex;
| flex-direction: column;
| justify-content: space-between;
| }
|
| .fyui-panel .flex-h {
| margin-top: 6px;
| }
|
| .fyui-panel .first {
| border-top: 1px rgba(214, 214, 214, 0.308) solid;
| }
|
| .fyui-panel .last {
| border-bottom: 0px rgba(214, 214, 214, 0.308) solid;
| }
|
|