lin
2026-05-07 2f23322d1450993b6cdd20a71cad1ce5735adda6
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
152
153
154
155
156
157
158
159
160
161
162
page{
    font-size: 26upx;
}
.edu-icon{
    width: 120upx;
    height: 120upx;
    display: block;
    margin: 200upx auto 10upx;
}
.edu-desc{
    margin-top: 20upx;
    color: #666666;
    text-align: center;
}
.edu-loading{
    display: block;
    width: 300upx;
    height: 280upx;
    margin: -100upx auto 0;
}
.popup-content{
    position: relative;
}
.edu-close {
    width: 70upx;
    height: 70upx;
    position: absolute;
    right: -20upx;
    top: -20upx;
}
.edu-icon-1{
    width: 300upx;
    height: 100upx;
    display: block;
    margin: 0 auto 30upx;
}
.edu-icon-2 {
    width: 80%;
    height: 34upx;
    display: block;
    margin: 30upx auto;
}
.edu-view{    
    padding: 40upx 0 10upx;
    width: 560upx;
    border-radius: 50upx;
    background-color: #ffffff;
    background-size: 100% 100%;
}
.edu-view-desc{
    display: block;
    text-align: center;
    color: #666666;
    font-size: 24upx;
}
.edu-icon-3{
    width: 90%;
    display: block;
    height: 260upx;
    margin: 0 auto;
}
.edu-check{
    width: 90%;
    margin: 30upx 5% 10upx;
    display: flex;
    justify-content: center;
}
.edu-check image{
    width: 46upx;
    height: 46upx;
    display: block;
    margin-right: 10upx;
}
.edu-check view{
    width: 90%;
    color: #666666;
    font-size: 24upx;
    line-height: 40upx;
}
.edu-check view text{
    color: cornflowerblue;
}
.edu-btn{
    width: 500upx;
    height: 230upx;
    margin: 0 auto;
}
.edu-btn image{
    width: 100%;
    height: 100%;
}
.edu-over{
    width: 50%;
    margin: -20upx auto;
    height: 80upx;
    background-color: #e3b400;
    color: #ffffff;
    letter-spacing: 10upx;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 28upx;
    border-radius: 50upx;
}
 
@keyframes floatUp {
  from {
    transform: translateY(100%); /* 从元素原始位置向下移动100% */
    opacity: 0; /* 初始透明度为0 */
  }
  to {
    transform: translateY(0); /* 移动到原始位置 */
    opacity: 1; /* 完全不透明 */
  }
}
.popup-content {
  animation: floatUp 1s ease-out; /* 应用动画,持续时间为1秒,缓动函数为ease-out */
}
.edu-view2{
    border-radius: 30upx !important;
}
.edu-icon-succ{
    width: 140upx;
    height: 125upx;
    display: block;
    margin: 50upx auto;
}
.edu-icon-fail{
    width: 200upx;
    height: 100upx;
    display: block;
    margin: 50upx auto;
}
.edu-view-desc2{
    font-size: 36upx;
    font-weight: 700;
    text-align: center;
}
.edu-view-desc3{
    width: 80%;
    margin: 30upx auto;
    text-align: center;
    font-size: 26upx;
    color: #666666;
    line-height: 40upx;
}
.edu-btns{
    width: 94%;
    border-radius: 50upx;
    margin: 30upx auto 30upx;
    z-index: 99;
    height: 90upx;
    background-color: #e3b400;
    color: #ffffff;
    letter-spacing: 10upx;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 28upx;
}