阳菜,放晴! | 7e1e3a5 | 2025-06-05 23:00:51 +0800 | [diff] [blame] | 1 | .uploadContainer { |
2 | display: flex; | ||||
3 | flex-direction: column; | ||||
4 | align-items: center; | ||||
5 | justify-content: center; | ||||
6 | border: 2px dashed #1890ff; | ||||
7 | padding: 40px; | ||||
8 | border-radius: 8px; | ||||
9 | background-color: #f0f5ff; | ||||
10 | transition: border-color 0.3s; | ||||
11 | } | ||||
12 | |||||
13 | .uploadContainer:hover { | ||||
14 | border-color: #40a9ff; | ||||
15 | } | ||||
16 | |||||
17 | .uploadLabel { | ||||
18 | font-size: 16px; | ||||
19 | margin-bottom: 10px; | ||||
20 | color: #333; | ||||
21 | } | ||||
22 | |||||
23 | .uploadInput { | ||||
24 | display: none; | ||||
25 | } | ||||
26 | |||||
27 | .uploadButton { | ||||
28 | padding: 8px 16px; | ||||
29 | background-color: #1890ff; | ||||
30 | color: white; | ||||
31 | border: none; | ||||
32 | border-radius: 4px; | ||||
33 | cursor: pointer; | ||||
34 | font-size: 14px; | ||||
35 | } | ||||
36 | |||||
37 | .uploadButton:hover { | ||||
38 | background-color: #40a9ff; | ||||
39 | } |