From 1910e9f27373b8b4da75f076762025ceb3419965 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 12 六月 2025 15:40:50 +0800
Subject: [PATCH] fix: 暂时隐藏电信充值通道
---
packages/components/src/styles/layout.scss | 71 +++++++++++++++++++++++++++++------
1 files changed, 58 insertions(+), 13 deletions(-)
diff --git a/packages/components/src/styles/layout.scss b/packages/components/src/styles/layout.scss
index 04cd800..0b903dd 100644
--- a/packages/components/src/styles/layout.scss
+++ b/packages/components/src/styles/layout.scss
@@ -1,27 +1,72 @@
-/*postcss-pxtransform disable*/
@use './common.scss' as *;
.main-cell-container {
- padding-top: 92px;
.main-cell-wrapper {
- padding: boleGetCssVar('size', 'body-padding-h');
- padding-top: 24px;
- border-radius: 15px;
+ padding: 18px 20px 60px;
+ border-radius: 32px;
background: #ffffff;
- box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
- .main-cell-title {
- font-size: 20px;
- font-weight: 600;
- text-align: center;
- color: #000000;
- line-height: 28px;
+ .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 {
display: flex;
justify-content: center;
- margin-top: 20px;
+ margin-top: 40px;
+ }
+ }
+}
+
+.lp-chunk-wrapper {
+ padding: 0 26px;
+ border-radius: 32px;
+ background: #ffffff;
+ margin-bottom: 32px;
+
+ &:last-child {
+ margin-bottom: 0;
+ }
+
+ &.hasPaddingBottom {
+ padding-bottom: 48px;
+ }
+
+ &.borderRadiusSmall {
+ border-radius: 20px;
+ }
+
+ .lp-chunk-title {
+ height: 88px;
+ background: #ffffff;
+ font-weight: 500;
+ font-size: 34px;
+ color: boleGetCssVar('text-color', 'primary');
+ line-height: 88px;
+ }
+
+ .lp-chunk-content {
+ .nut-cell.bole-form-item {
+ padding: 0;
+ padding-bottom: 48px;
}
}
}
--
Gitblit v1.9.1