From 07d73df3d817d01ce47f6c7b7a8d8514cd389295 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 13 三月 2025 10:19:44 +0800
Subject: [PATCH] release: @life-payment/core v0.0.3

---
 packages/components/src/styles/card.scss |   74 +++++++++++++++++++++++++++++++++++++
 1 files changed, 74 insertions(+), 0 deletions(-)

diff --git a/packages/components/src/styles/card.scss b/packages/components/src/styles/card.scss
new file mode 100644
index 0000000..c5f3f12
--- /dev/null
+++ b/packages/components/src/styles/card.scss
@@ -0,0 +1,74 @@
+@use './common.scss' as *;
+
+.account-add-card {
+  border-radius: 16px;
+  min-height: 120px;
+  border: 1px solid #e8e8e8;
+  display: flex;
+  align-items: center;
+  justify-content: center;
+  font-size: 32px;
+  color: boleGetCssVar('color', 'primary');
+}
+
+.account-card {
+  border-radius: 16px;
+  border: 1px solid #e8e8e8;
+  padding: 28px;
+
+  .account-card-top {
+    display: flex;
+    font-size: 28px;
+    line-height: 32px;
+    align-items: center;
+    margin-bottom: 32px;
+
+    .account-card-title {
+      flex: 1;
+      min-width: 0;
+      @include ellipsis;
+      color: boleGetCssVar('text-color', 'primary');
+    }
+
+    .account-card-actions {
+      display: flex;
+      align-items: center;
+
+      .account-card-action {
+        color: boleGetCssVar('color', 'primary');
+      }
+
+      .account-card-action + .account-card-action {
+        margin-left: 10px;
+      }
+    }
+  }
+
+  .account-card-content {
+    font-size: 36px;
+    font-weight: bold;
+    line-height: 48px;
+    align-items: center;
+    margin-bottom: 32px;
+    color: boleGetCssVar('text-color', 'primary');
+    @include ellipsis;
+  }
+
+  .account-card-remark {
+    font-size: 28px;
+    line-height: 32px;
+    color: boleGetCssVar('text-color', 'secondary');
+    @include ellipsis;
+  }
+}
+
+.par-account-list {
+  .nut-radio--button {
+    margin-bottom: 20px !important;
+
+    &:last-child {
+      margin-right: 20px !important;
+      margin-bottom: 20px !important;
+    }
+  }
+}

--
Gitblit v1.9.1