-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathname_styles.css
More file actions
89 lines (78 loc) · 1.66 KB
/
name_styles.css
File metadata and controls
89 lines (78 loc) · 1.66 KB
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
/* 添加加载动画样式 */
.loading-spinner {
border: 4px solid rgba(0, 0, 0, 0.1);
width: 36px;
height: 36px;
border-radius: 50%;
border-left-color: var(--primary-blue);
animation: spin 1s linear infinite;
margin-bottom: 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* 激活按钮样式 */
.like-btn.active, .save-btn.active {
color: var(--primary-blue);
font-weight: 500;
}
/* 支付二维码样式 */
.payment-qrcode {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 30px 20px;
background-color: white;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.payment-qrcode h3 {
color: #333;
margin-bottom: 15px;
font-size: 22px;
}
.payment-qrcode p {
margin-bottom: 20px;
color: #666;
}
.qrcode-container {
margin: 20px 0;
padding: 15px;
background-color: white;
border-radius: 8px;
border: 1px solid #eee;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.qrcode-container img {
width: 200px;
height: 200px;
display: block;
}
.payment-tips {
font-size: 14px;
color: #888;
margin-top: 10px;
}
.payment-status {
font-weight: 500;
color: #ff9800;
margin-top: 15px;
font-size: 16px;
}
.retry-payment {
margin-top: 20px;
padding: 10px 20px;
background-color: var(--primary-blue);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
transition: all 0.3s ease;
}
.retry-payment:hover {
background-color: #8bc8e0;
transform: translateY(-2px);
}