From c5bf3cfc953f9865bd70f109363c2ea4e45c0c96 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 15 五月 2025 17:05:34 +0800
Subject: [PATCH] fix: 修改首页ui

---
 packages/components/src/styles/layout.scss |   33 ++++++++++++++++++++++-----------
 1 files changed, 22 insertions(+), 11 deletions(-)

diff --git a/packages/components/src/styles/layout.scss b/packages/components/src/styles/layout.scss
index a547f29..00c0689 100644
--- a/packages/components/src/styles/layout.scss
+++ b/packages/components/src/styles/layout.scss
@@ -1,20 +1,31 @@
 @use './common.scss' as *;
 
 .main-cell-container {
-  padding-top: 184px;
   .main-cell-wrapper {
-    padding: boleGetCssVar('size', 'body-padding-h');
-    padding-top: 48px;
-    border-radius: 30px;
+    padding: 18px 20px 60px;
+    border-radius: 32px;
     background: #ffffff;
-    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.05);
 
-    .main-cell-title {
-      font-size: 40px;
-      font-weight: 600;
-      text-align: center;
-      color: #000000;
-      line-height: 56px;
+    .main-cell-title-wrapper {
+      margin-left: 12px;
+      display: flex;
+      align-items: center;
+      height: 88px;
+
+      .main-cell-title-line {
+        width: 8px;
+        height: 36px;
+        background: boleGetCssVar('color', 'primary');
+        border-radius: 4px;
+        margin-right: 16px;
+      }
+
+      .main-cell-title {
+        font-size: 34px;
+        font-weight: 400;
+        color: boleGetCssVar('text-color', 'primary');
+        line-height: 44px;
+      }
     }
 
     .main-cell-icon {

--
Gitblit v1.9.1