海口龙华志愿者后端管理页面
zhouxiantao
8 days ago 4def10e6567cf651ae333a2a65c497e717c06403
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
/* 发布活动页面样式 */
 
/* 页面头部样式 */
.page-header {
  margin-bottom: 24px;
}
 
.page-title {
  font-size: 24px;
  font-weight: 600;
  color: #262626;
  margin: 0 0 8px 0;
}
 
.page-description {
  font-size: 14px;
  color: #8c8c8c;
  margin: 0;
}
 
/* 表单样式 */
.form-container {
  padding: 24px 0;
}
 
/* 表单行间距 */
.form-row {
  margin-bottom: 24px;
}
 
/* 表单操作按钮区域 */
.form-actions {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  margin-top: 32px;
}
 
/* 提示框样式 */
.tip-box {
  height: 100%;
  display: flex;
  align-items: flex-end;
}
 
.tip-content {
  padding: 16px;
  background-color: #f6f8fa;
  border-radius: 6px;
  border: 1px solid #e1e5e9;
  width: 100%;
  text-align: center;
}
 
.tip-title {
  font-size: 12px;
  color: #8c8c8c;
  margin-bottom: 4px;
}
 
.tip-text {
  font-size: 12px;
  color: #595959;
}
 
/* 上传组件样式 */
.upload-container {
  width: 100%;
}
 
.upload-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
 
.upload-icon {
  font-size: 24px;
  color: #8c8c8c;
}
 
.upload-text {
  margin-top: 8px;
  color: #8c8c8c;
}
 
/* 响应式布局 */
@media (max-width: 768px) {
  .form-row {
    margin-bottom: 16px;
  }
  
  .page-title {
    font-size: 20px;
  }
}