From 02678dabad78baa4a1b5745cdc5cdc907f219c02 Mon Sep 17 00:00:00 2001
From: Tevin <tingquanren@163.com>
Date: Tue, 09 Nov 2021 13:58:33 +0800
Subject: [PATCH] 删除代理请求模式

---
 common/custom.scss |   78 +++++++++++++++++++++++++++++++-------
 1 files changed, 63 insertions(+), 15 deletions(-)

diff --git a/common/custom.scss b/common/custom.scss
index f56f960..9043603 100644
--- a/common/custom.scss
+++ b/common/custom.scss
@@ -5,29 +5,34 @@
 
 @import "./sassMixin";
 
-.taro-tabbar__container {
-    font-size: 0.65rem;
+.taro_page,
+page {
+    font-size: 30px;
     color: #333;
     textarea {
         font-size: inherit;
         font-family: -apple-system-font, Helvetica Neue, sans-serif;
-    }
-    .at-nav-bar {
-        .at-nav-bar__title {
-            font-size: 0.9rem;
-        }
     }
     .at-button {
         display: inline-block;
         &.at-button--full {
             display: flex;
         }
+        &.at-button--primary {
+            color: #FFF;
+            border: 1PX solid #2093df;
+            background: #2093df;
+            &.btn-danger {
+                border: 1PX solid #FF5722;
+                background: #FF5722;
+            }
+        }
     }
     .at-input-number {
         .weui-input {
             height: 100%;
             border: none;
-            font-size: 0.65rem;
+            font-size: 30px;
         }
     }
     .at-float-layout {
@@ -45,7 +50,7 @@
                 width: 100%;
                 height: calc(100% - 84px);
                 max-height: 100%;
-                font-size: 0.65rem;
+                font-size: 30px;
                 box-sizing: border-box;
                 &:first-child {
                     height: 100%;
@@ -61,23 +66,66 @@
         position: unset;
     }
     .weui-picker {
-        font-size: 0.65rem;
+        font-size: 30px;
         .weui-picker__hd {
-            font-size: 0.65rem;
+            font-size: 30px;
         }
     }
     .at-tabs.at-tabs--horizontal {
         height: 100%;
         .at-tabs__header {
-            height: 1.9rem;
-            line-height: 1.15rem;
+            height: 90px;
+            line-height: 52px;
         }
         .at-tabs__body {
-            height: calc(100% - 1.9rem);
+            height: calc(100% - 90px);
+            font-size: 0;
             .at-tabs-pane {
                 height: 100%;
-                margin-right: 1%;
+                font-size: 30px;
             }
         }
     }
+    .at-radio {
+        .at-radio__option {
+            padding-left: 0;
+        }
+        .at-radio__option-wrap {
+            padding-left: 32px;
+        }
+        .at-radio__icon {
+            visibility: visible;
+            &.at-radio__icon--checked {
+                .at-icon {
+                    background: #2093df;
+                    border-color: #2093df;
+                }
+            }
+            .at-icon {
+                color: #fff;
+                border: #bbb 1px solid;
+                border-radius: 50%;
+                padding: 5px;
+            }
+        }
+        &::before,
+        &::after {
+            display: none;
+        }
+    }
+}
+
+page {
+    .at-tabs.at-tabs--horizontal {
+        .at-tabs__body {
+            .at-tabs-pane {
+                margin-right: 0;
+            }
+        }
+    }
+}
+
+.taro__toast,
+.taro__modal {
+    word-break: break-word;
 }
\ No newline at end of file

--
Gitblit v1.9.1