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
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
/* components/drop-down-fliter/index.wxss */
.drop-down-select {
    position: relative;
    padding: 0 var(--padding-my);
    z-index: 100;
}
 
.drop-down-select-menu {
    position: relative;
    background-color: #fff;
    padding: 24rpx 32rpx;
    border-radius: var(--border-radius-card-sm);
}
 
.menu-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
 
.active .menu-title {
    color: var(--main-color);
}
 
.arrow {
    transition: transform 1s;
    transform: rotate(90deg);
}
 
.active .arrow {
    transform: rotate(-90deg);
    color: var(--main-color);
}
 
.drop-down-select-submenu {
    position: absolute;
    left: var(--padding-my);
    right: var(--padding-my);
    top: 89rpx;
    padding: 24rpx 32rpx 0;
    background-color: #fff;
    animation: move 0.5s 0s;
    z-index: 99;
    border-radius: var(--border-radius-card-sm);
    margin-top: 16rpx;
  max-height: 800rpx;
  overflow-y: auto;
}
 
@keyframes move {
    0% {
        top: 0;
    }
    100% {
        top: 89rpx;
    }
}
 
.submenu-item {
    margin-bottom: 24rpx;
}
 
.active .submenu-title {
    color: var(--main-color);
}
 
.submenu-title-h5 {
    font-weight: 600;
}
 
.tick {
    display: none;
    margin-left: 12rpx;
    color: var(--main-color);
}
 
.active .tick {
    display: inline;
}
 
.cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-7);
    opacity: 0.4;
    z-index: 99;
    animation: covermove 0.5s 0s;
}
 
@keyframes covermove {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}