From a734d98fa4f5371c650f59b7ea161e291c7d2c20 Mon Sep 17 00:00:00 2001 From: zoujing Date: Tue, 26 May 2026 22:13:23 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/ChatMain/NoticeMessage/index.vue | 8 ++++---- src/pages/login/components/AgreePopup/styles/index.scss | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/pages/ChatMain/NoticeMessage/index.vue b/src/pages/ChatMain/NoticeMessage/index.vue index 3223f23..218b476 100644 --- a/src/pages/ChatMain/NoticeMessage/index.vue +++ b/src/pages/ChatMain/NoticeMessage/index.vue @@ -90,10 +90,10 @@ const clickItem = (item) => { .swiper-item { display: block; height: 46px; - background: #EBEFFF; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); border-radius: 12px; - border: 1px solid #C7D2FE; + border: 1px solid $theme-color-200; + background: $theme-color-100; } .text-color { @@ -108,10 +108,10 @@ const clickItem = (item) => { display: inline-flex; margin-top: 8px; padding: 4px 12px; - background: #EBEFFF; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); border-radius: 8px; - border: 1px solid #C7D2FE; + border: 1px solid $theme-color-200; + background: $theme-color-100; width: fit-content; max-width: 100%; box-sizing: border-box; diff --git a/src/pages/login/components/AgreePopup/styles/index.scss b/src/pages/login/components/AgreePopup/styles/index.scss index 421c4b5..63662d5 100644 --- a/src/pages/login/components/AgreePopup/styles/index.scss +++ b/src/pages/login/components/AgreePopup/styles/index.scss @@ -60,7 +60,7 @@ .confirm-btn { width: 148px; height: 44px; - background: linear-gradient(90deg, #22a7ff 0%, #2567ff 100%); + background: linear-gradient(90deg, $theme-color-400 0%, $theme-color-500 100%); display: flex; align-items: center; justify-content: center; @@ -71,11 +71,11 @@ transition: all 0.3s ease; &:hover { - background: #0056cc; + background: $theme-color-700; } &:active { - background: #004499; + background: $theme-color-800; transform: scale(0.98); } }