种子列表优化、添加用户充值
Change-Id: I602e9eef78efe3527c320352d4522244d41ae807
diff --git a/src/pages/NewUserGuide/NewbieTasks.css b/src/pages/NewUserGuide/NewbieTasks.css
new file mode 100644
index 0000000..4d64389
--- /dev/null
+++ b/src/pages/NewUserGuide/NewbieTasks.css
@@ -0,0 +1,64 @@
+.newbie-tasks {
+ font-size: 16px;
+ line-height: 1.6;
+}
+
+.task-list ul {
+ list-style: none;
+ padding: 0;
+}
+
+.task-card {
+ background-color: #f9f9f9;
+ border-radius: 12px;
+ padding: 15px;
+ margin-bottom: 15px;
+ box-shadow: 0 2px 5px rgba(0,0,0,0.05);
+}
+
+.task-btn-group {
+ display: flex;
+ gap: 10px;
+ margin-top: 10px;
+}
+
+.task-btn-group button {
+ padding: 6px 12px;
+ border: none;
+ border-radius: 6px;
+ background-color: #0057ff;
+ color: white;
+ cursor: pointer;
+ transition: background-color 0.3s;
+}
+
+.task-btn-group button:hover {
+ background-color: #003fcc;
+}
+
+.status-completed {
+ color: green;
+}
+.status-pending {
+ color: orange;
+}
+.status-failed {
+ color: red;
+}
+.newbie-tasks {
+ max-width: 800px;
+ margin: 0 auto;
+ padding: 20px;
+ background-color: #fff;
+ border-radius: 12px;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
+}
+
+.task-card {
+ background-color: #f9f9f9;
+ border-radius: 12px;
+ padding: 15px;
+ margin-bottom: 20px;
+ box-shadow: 0 1px 3px rgba(0,0,0,0.05);
+ border: 1px solid #eee;
+}