From 186ee157af7a5584d384d887db63b52673cabc94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A4=A7=E8=84=8F=E7=8B=BC?= <786316265@qq.com> Date: Fri, 29 Aug 2025 10:41:50 +0800 Subject: [PATCH] =?UTF-8?q?=E7=99=BB=E5=BD=95=E9=A1=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/MyLogin.vue | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/views/MyLogin.vue b/src/views/MyLogin.vue index 0873de5..a07ba06 100644 --- a/src/views/MyLogin.vue +++ b/src/views/MyLogin.vue @@ -388,6 +388,36 @@ const handleRememberMe = () => { font-size: 14px; } +.icp-info { + text-align: center; + margin-top: 20px; + padding-top: 15px; + border-top: 1px solid rgba(224, 224, 230, 0.3); +} + +.icp-item { + display: flex; + align-items: center; + justify-content: center; + gap: 6px; +} + +.icp-icon { + flex-shrink: 0; +} + +.icp-link { + color: #909399; + font-size: 12px; + text-decoration: none; + transition: color 0.3s ease; +} + +.icp-link:hover { + color: #409eff; + text-decoration: underline; +} + .quick-login { margin-top: 20px; }