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
| .change-card {
| position: relative;
| /* background: linear-gradient(0deg, #e9c07f, #F8BD6B, #FFAC38); */
| /* padding: 8px; */
| background-color: white;
| color: var(--fyui-text-color_1);
| border-radius: 6px;
| box-shadow: 1px 1px 3px rgba(0, 0, 0, .4);
| }
|
| .change-category {
| display: flex;
| background: linear-gradient(0deg, #ffffff, #E2EFFF, #c5dfff);
| align-items: center;
| font-size: 30rpx;
| padding: 8px;
| border-radius: 6px 6px 0 0;
| }
|
| .change-item {
| display: flex;
| justify-content: space-between;
| align-items: center;
| font-size: 14px;
| padding: 8px;
| }
|
|