From 866879aaf4b209e4820d21d11f9569e72dd6e0a5 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 10 三月 2025 18:00:26 +0800 Subject: [PATCH] fix: 二期需求 --- packages/components/src/styles/components.scss | 180 +++++++++++++++++++++++++++++++++++++++++++++++++++++++----- 1 files changed, 165 insertions(+), 15 deletions(-) diff --git a/packages/components/src/styles/components.scss b/packages/components/src/styles/components.scss index 9d54699..0499287 100644 --- a/packages/components/src/styles/components.scss +++ b/packages/components/src/styles/components.scss @@ -1,47 +1,47 @@ -/*postcss-pxtransform disable*/ @use './common.scss' as *; .recharge-tips-view { - padding: 16px; - border-radius: 12px; + padding: 32px; + border-radius: 24px; background: linear-gradient(0deg, rgba(10, 90, 255, 0.04), rgba(10, 90, 255, 0.04)), #fff; .recharge-tips-title { color: #1f2229; - font-size: 14px; + font-size: 24px; font-weight: 700; - line-height: 18px; - padding: 4px 0 12px 0; + line-height: 36px; + padding: 8px 0 24px 0; border-bottom: 1px solid boleGetCssVar('color', 'primary'); } .recharge-tips-content { color: boleGetCssVar('text-color', 'regular'); - font-size: 13px; + font-size: 26px; font-weight: 400; - line-height: 21px; - padding-top: 16px; + line-height: 42px; + padding-top: 32px; .recharge-tips-top { color: #e03e2d; - font-size: 18px; + font-size: 36px; } } } .confirm-dialog-content { .confirm-dialog-content-tips { - margin-bottom: 16px; + margin-bottom: 32px; } .confirm-dialog-content-info { - padding: 12px; - border-radius: 8px; + padding: 24px; + border-radius: 16px; background: #f0f3fa; + margin-bottom: 16px; .confirm-dialog-content-info-item { display: flex; - margin-bottom: 10px; + margin-bottom: 20px; &:last-child { margin-bottom: 0; @@ -49,7 +49,8 @@ .confirm-dialog-content-info-item-label { color: boleGetCssVar('text-color', 'regular'); - margin-right: 6px; + margin-right: 12px; + text-align: left; } .confirm-dialog-content-info-item-content { @@ -67,4 +68,153 @@ } } } + + .confirm-dialog-content-warning { + color: boleGetCssVar('color', 'danger'); + text-align: left; + font-size: 32px; + line-height: 40px; + } +} + +.select-pay-type-view { + .select-pay-type-view-item-icon { + width: 64px; + height: 64px; + margin-right: 24px; + } + + .select-pay-type-view-item { + padding-left: 40px; + display: flex; + align-items: center; + height: 160px; + border: 1px solid #e2e5eb; + border-radius: 16px; + background-color: #fff; + margin-bottom: 32px; + cursor: pointer; + font-size: 32px; + color: boleGetCssVar('text-color', 'primary'); + } +} + +.recharge-result-view { + // padding:; + + .recharge-result-view-title { + font-size: 36px; + color: boleGetCssVar('text-color', 'primary'); + font-weight: 600; + margin-bottom: 24px; + text-align: center; + 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; + color: boleGetCssVar('color', 'danger'); + line-height: 40px; + } + + .recharge-result-view-warning { + 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-btn-wrapper { + display: flex; + justify-content: center; + + .recharge-result-view-btn { + padding: 0 40px; + font-size: 32px; + color: boleGetCssVar('color', 'primary'); + line-height: 32px; + } + } +} + +.loading-more-tips { + color: boleGetCssVar('text-color', 'primary'); + padding: 18px 10px; + width: auto; + font-size: 24px; + text-align: center; +} + +.infinite-list-inner { + // padding: 30px 30px 0; + + &.hasPaddingTop { + padding-top: 20px; + } + + &.noShowMoreText { + padding-bottom: 30px; + } +} + +.infiniting-tips { + color: boleGetCssVar('text-color', 'primary'); + padding: 18px 10px; + width: auto; + font-size: 24px; + display: flex; + align-items: center; + justify-content: center; + + .infiniting-tips-icon { + margin-right: 10px; + } +} + +.back-top-wrapper { + width: 92px; + height: 92px; + background: #ffffff; + box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.18); + position: fixed; + border-radius: 50%; + right: boleGetCssVar('size', 'body-padding-h'); + bottom: 390px; + + .back-top-img { + width: 44px; + height: 44px; + margin: 12px auto 2px; + } + + .back-top-text { + font-weight: 400; + font-size: 16px; + color: boleGetCssVar('text-color', 'regular'); + line-height: 22px; + text-align: center; + } +} + +.common-choose-input-icon { + // width: 13px; + // height: 23px; + margin-left: 18px; + color: boleGetCssVar('text-color', 'primary'); } -- Gitblit v1.9.1