xusd
7 days ago 998218675eb243d43912c203174a6b72b299c0f8
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
/* pages/myMediate/index.wxss */
@import '../../styles/public_components.wxss';
 
.myMediate {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
}
 
.myMediate-fixed {
    background-color: var(--bg-color, #f0f2f5);
    padding-top: 28rpx;
}
 
.myMediate-scroll {
    flex: 1;
    overflow: hidden;
    padding-top: 32rpx;
}
 
.myMediate-scroll-loading {
    text-align: center;
}
 
.divide-div {
    position: relative;
    height: 32rpx;
    background-color: var(--bg-color, #f0f2f5);
    z-index: 99;
}
 
.card-box {
    padding: 0 var(--padding-my, 20rpx) 32rpx;
}
 
.card-box-active {
    background-color: var(--red-1);
}