From 60b9c62a3165f304a933cbac304ac3d43a24f722 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期四, 17 四月 2025 09:25:09 +0800 Subject: [PATCH] fix: 优化 --- packages/components/src/styles/components.scss | 90 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 89 insertions(+), 1 deletions(-) diff --git a/packages/components/src/styles/components.scss b/packages/components/src/styles/components.scss index 4a4951f..0a06f6d 100644 --- a/packages/components/src/styles/components.scss +++ b/packages/components/src/styles/components.scss @@ -50,6 +50,7 @@ .confirm-dialog-content-info-item-label { color: boleGetCssVar('text-color', 'regular'); margin-right: 12px; + text-align: left; } .confirm-dialog-content-info-item-content { @@ -110,6 +111,14 @@ line-height: 48px; } + .recharge-result-view-subtitle { + font-size: 28px; + color: boleGetCssVar('text-color', 'primary'); + margin-bottom: 24px; + text-align: center; + line-height: 32px; + } + .recharge-result-view-tips { margin-bottom: 24px; font-size: 32px; @@ -118,10 +127,25 @@ } .recharge-result-view-warning { - margin-bottom: 40px; + margin-bottom: 24px; font-size: 24px; color: boleGetCssVar('color', 'warning'); line-height: 32px; + } + + .recharge-result-view-customerService { + margin-bottom: 40px; + font-size: 24px; + color: boleGetCssVar('text-color', 'primary'); + line-height: 32px; + } + + .recharge-result-view-remark { + margin-bottom: 40px; + font-size: 24px; + color: boleGetCssVar('text-color', 'primary'); + line-height: 32px; + text-align: center; } .recharge-result-view-btn-wrapper { @@ -202,3 +226,67 @@ margin-left: 18px; color: boleGetCssVar('text-color', 'primary'); } + +.select-pay-type-view-form-item-radio { + .nut-radio__button--active { + // &::after { + // background-color: transparent; + // } + } + + .select-pay-type-view-form-item { + display: flex; + align-items: center; + color: #1d1e1e !important; + .select-pay-type-view-form-item-icon { + width: 32px; + height: 32px; + margin-right: 8px; + } + } +} + +.preview-image-wrapper { + width: 100%; + height: 100%; + overflow: hidden; +} + +.auto-width-image-wrapper { + width: auto !important; + height: auto !important; +} + +.rich-edit-content { + .rich-content-item { + margin-bottom: 10px; + + &:last-child { + margin-bottom: 0; + } + } + + .rich-content-image-item { + display: block; + } + + .rich-content-text-item { + word-break: break-all; + white-space: pre-line; + font-size: 30px; + line-height: 50px; + color: boleGetCssVar('text-color', 'primary'); + } + + .rich-content-video-item { + width: 100%; + height: 300px; + } + + &.small { + .rich-content-text-item { + font-size: 24px; + line-height: 36px; + } + } +} -- Gitblit v1.9.1