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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@import '../common/index.wxss';
.van-popup {
    -webkit-overflow-scrolling: touch;
    animation: ease both;
    background-color: var(--popup-background-color, #fff);
    box-sizing: border-box;
    max-height: 100%;
    overflow-y: auto;
    position: fixed;
    transition-timing-function: ease;
}
.van-popup--center {
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.van-popup--center.van-popup--round {
    border-radius: var(--popup-round-border-radius, 16px);
}
.van-popup--top {
    left: 0;
    top: 0;
    width: 100%;
}
.van-popup--top.van-popup--round {
    border-radius: 0 0 var(--popup-round-border-radius, var(--popup-round-border-radius, 16px))
        var(--popup-round-border-radius, var(--popup-round-border-radius, 16px));
}
.van-popup--right {
    right: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}
.van-popup--right.van-popup--round {
    border-radius: var(--popup-round-border-radius, var(--popup-round-border-radius, 16px)) 0 0
        var(--popup-round-border-radius, var(--popup-round-border-radius, 16px));
}
.van-popup--bottom {
    bottom: 0;
    left: 0;
    width: 100%;
}
.van-popup--bottom.van-popup--round {
    border-radius: var(--popup-round-border-radius, var(--popup-round-border-radius, 16px))
        var(--popup-round-border-radius, var(--popup-round-border-radius, 16px)) 0 0;
}
.van-popup--left {
    left: 0;
    top: 50%;
    transform: translate3d(0, -50%, 0);
}
.van-popup--left.van-popup--round {
    border-radius: 0 var(--popup-round-border-radius, var(--popup-round-border-radius, 16px))
        var(--popup-round-border-radius, var(--popup-round-border-radius, 16px)) 0;
}
.van-popup--bottom.van-popup--safe {
    padding-bottom: env(safe-area-inset-bottom);
}
.van-popup--safeTop {
    padding-top: env(safe-area-inset-top);
}
.van-popup__close-icon {
    color: var(--popup-close-icon-color, #969799);
    font-size: var(--popup-close-icon-size, 18px);
    position: absolute;
    z-index: var(--popup-close-icon-z-index, 1);
}
.van-popup__close-icon--top-left {
    left: var(--popup-close-icon-margin, 16px);
    top: var(--popup-close-icon-margin, 16px);
}
.van-popup__close-icon--top-right {
    right: var(--popup-close-icon-margin, 16px);
    top: var(--popup-close-icon-margin, 16px);
}
.van-popup__close-icon--bottom-left {
    bottom: var(--popup-close-icon-margin, 16px);
    left: var(--popup-close-icon-margin, 16px);
}
.van-popup__close-icon--bottom-right {
    bottom: var(--popup-close-icon-margin, 16px);
    right: var(--popup-close-icon-margin, 16px);
}
.van-popup__close-icon:active {
    opacity: 0.6;
}
.van-scale-enter-active,
.van-scale-leave-active {
    transition-property: opacity, transform;
}
.van-scale-enter,
.van-scale-leave-to {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.7);
}
.van-fade-enter-active,
.van-fade-leave-active {
    transition-property: opacity;
}
.van-fade-enter,
.van-fade-leave-to {
    opacity: 0;
}
.van-center-enter-active,
.van-center-leave-active {
    transition-property: opacity;
}
.van-center-enter,
.van-center-leave-to {
    opacity: 0;
}
.van-bottom-enter-active,
.van-bottom-leave-active,
.van-left-enter-active,
.van-left-leave-active,
.van-right-enter-active,
.van-right-leave-active,
.van-top-enter-active,
.van-top-leave-active {
    transition-property: transform;
}
.van-bottom-enter,
.van-bottom-leave-to {
    transform: translate3d(0, 100%, 0);
}
.van-top-enter,
.van-top-leave-to {
    transform: translate3d(0, -100%, 0);
}
.van-left-enter,
.van-left-leave-to {
    transform: translate3d(-100%, -50%, 0);
}
.van-right-enter,
.van-right-leave-to {
    transform: translate3d(100%, -50%, 0);
}
.van-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24rpx 32rpx 0;
    font-weight: 600;
    font-size: 32rpx;
    line-height: 48rpx;
    z-index: 999;
}
.van-popup__main {
    margin-top: 96rpx;
    position: relative;
}