From 8cd15fe62691a0b03853b0124e8bec233012aa8b Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Thu, 04 Jan 2024 15:03:25 +0800
Subject: [PATCH] 本地存储工具,优化读取数组

---
 forms/form/cForm.scss |   48 ++++++++++++++++++++++++++++++++++--------------
 1 files changed, 34 insertions(+), 14 deletions(-)

diff --git a/forms/form/cForm.scss b/forms/form/cForm.scss
index 97e2028..23d53af 100644
--- a/forms/form/cForm.scss
+++ b/forms/form/cForm.scss
@@ -5,9 +5,21 @@
 
 @import "../../common/sassMixin";
 
+.c-form-outer.auto-scroll {
+    height: 100%;
+    .c-form-scroller {
+        height: 100%;
+    }
+}
+
 .c-form {
+    display: block;
     width: 100%;
+    background-color: #fff;
     .c-form-item {
+        .at-input {
+            background-color: transparent;
+        }
         .at-input__title {
             margin-right: 20px;
         }
@@ -24,15 +36,14 @@
         .title {
             display: inline;
             .icon {
-                @include flexbox(inline, center center);
-                margin-top: 4px;
+                display: inline-block;
                 margin-right: 14px;
                 width: 40px;
-                min-width: 40px;
                 height: 40px;
+                vertical-align: middle;
+                text-align: center;
+                line-height: 36px;
                 color: transparent;
-                font-size: 24px;
-                line-height: 1;
                 border: 2px solid rgba(97, 144, 232, .2);
                 border-radius: 50%;
                 background-color: #fff;
@@ -43,25 +54,31 @@
                     border: none;
                     background-color: #6190e8;
                 }
+                .at-icon {
+                    font-size: 24px;
+                    line-height: 1;
+                }
             }
             .tips {
+                vertical-align: middle;
                 color: rgb(117, 117, 117);
                 ;
             }
         }
         .protocol {
             display: inline;
-            color: #2b69de;
-            font-size: 30px;
+            color: #2093df;
+            font-size: 36px;
+            vertical-align: middle;
         }
     }
     .c-form-submit {
         margin-top: 37px;
         padding: 0 20px 30px;
         [type=primary] {
-            height: 80px;
-            font-size: 33px;
-            line-height: 78px;
+            height: 90px;
+            font-size: 36px;
+            line-height: 88px;
             border: 1PX solid #2093df;
             background: #2093df;
             &:not([disabled]):active {
@@ -74,13 +91,16 @@
             }
         }
         &.c-form-submit-fixed {
-            height: 80px;
+            margin: -3px 0 140px;
+            padding: 1px 0 0;
             .c-form-submit-inner {
                 @include position(fixed, n 0 0 n, 10);
                 width: 100%;
-                padding: 20px 20px 30px;
-                box-sizing: border-box;
-                background-color: #fff;
+            }
+            [type=primary] {
+                height: 100px;
+                line-height: 98px;
+                border-radius: 0;
             }
         }
     }

--
Gitblit v1.9.1