From 9337c3cf960b60078558b7f942fd27f1ab39364b Mon Sep 17 00:00:00 2001
From: 李凌 <344137771@qq.com>
Date: Tue, 16 Dec 2025 18:29:46 +0800
Subject: [PATCH] 改黑夜样式

---
 src/components/ex-input/new-input.vue |   31 +++++++++++++++++++++++++------
 1 files changed, 25 insertions(+), 6 deletions(-)

diff --git a/src/components/ex-input/new-input.vue b/src/components/ex-input/new-input.vue
index 76712d7..79077ce 100644
--- a/src/components/ex-input/new-input.vue
+++ b/src/components/ex-input/new-input.vue
@@ -115,23 +115,33 @@
 </script>
 
 <style lang="scss" scoped>
-@import "@/views/authentication/components/intl.css";
+// @import "@/views/authentication/components/intl.css";
+@import "@/assets/theme/index.scss";
 
 $inp-b: #f5f5f5;
 
 .inputBackground {
   background: $inp-b;
   border: #d5d5d5 solid 1px;
+
+  // @include themify() {
+  //   background: themed("c2c_background") !important;
+  // }
 }
 
 .textColor {
-  color: $mainBgColor;
+  @include themify() {
+    color: themed("text_color") !important;
+  }
 }
 
 .inputCom {
-  color: $mainBgColor;
   padding-bottom: 22px;
   font-size: 14px;
+
+  @include themify() {
+    color: themed("text_color") !important;
+  }
 
   .iptbox {
     height: 55px;
@@ -161,8 +171,11 @@
     height: 100%;
     border: none;
     padding-left: 10px;
-    color: $mainBgColor;
     border-radius: 20px;
+
+    @include themify() {
+      color: themed("text_color") !important;
+    }
   }
 
   .rightCon {
@@ -187,8 +200,11 @@
 
 .tips {
   font-size: 13px;
-  color: $text_color1;
   margin-top: 9px;
+  
+  @include themify() {
+    color: themed("text_color1") !important;
+  }
 }
 
 input:-webkit-autofill {
@@ -196,7 +212,10 @@
 }
 
 input::-webkit-input-placeholder {
-  color: $dark-grey;
+  
+  @include themify() {
+    color: themed("text_color1") !important;
+  }
 }
 
 .icon {

--
Gitblit v1.9.3