-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpopup.css
More file actions
65 lines (59 loc) · 1.29 KB
/
Copy pathpopup.css
File metadata and controls
65 lines (59 loc) · 1.29 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
.notification {
background-color: #d4edda; /* 绿色背景 */
color: #155724; /* 深绿色文字 */
border: 1px solid #c3e6cb; /* 边框颜色 */
padding: 12px;
border-radius: 4px;
position: fixed;
top: 16px;
right: 16px;
z-index: 10000;
transition: opacity 0.3s ease;
}
.status-message {
color: #666;
font-size: 12px;
margin: 5px 0;
min-height: 20px;
}
.collect-btn {
width: 100%;
height: 80px;
border: none;
border-radius: 8px;
background: #2E6BE6;
color: white;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
margin-bottom: 16px;
}
.collect-btn:hover {
background: #1D4FC9;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.collect-btn:active {
transform: translateY(0);
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
/* 添加禁用状态样式 */
.collect-btn:disabled {
cursor: not-allowed;
opacity: 0.7;
background: #2E6BE6;
transform: none;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.status-message {
margin: 8px 0;
color: #666;
font-size: 14px;
}