From 637bf08f519ebb41da83e3deb53b8261d7c27d68 Mon Sep 17 00:00:00 2001 From: sangelxiu1 <15781802@163.com> Date: Thu, 11 Sep 2025 15:45:29 +0800 Subject: [PATCH] =?UTF-8?q?##=20Opt=20-=20=E9=A6=96=E9=A1=B5=E7=BD=91?= =?UTF-8?q?=E7=AB=99=E5=A4=87=E6=A1=88=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/login/index.vue | 108 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 106 insertions(+), 2 deletions(-) diff --git a/pages/login/index.vue b/pages/login/index.vue index d0f70bb..02694b1 100644 --- a/pages/login/index.vue +++ b/pages/login/index.vue @@ -24,7 +24,7 @@ ref="uForm"> @@ -104,6 +104,27 @@ @click="toLogin">{{'登录'}} {{'忘记密码'}} + + + + +
+ +
@@ -349,4 +370,87 @@ body { .pa { padding: 7px 20rpx; } - \ No newline at end of file + + + + + +/* 备案容器 */ +.beian-container { + background-color: #ffffff; /* 深色背景 */ + padding: 16px 0; + text-align: center; + font-size: 12px; + line-height: 1.5; + margin-top: 20px; + border-radius: 8px 8px 0 0; +} + +/* 备案内容 */ +.beian-content { + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; + gap: 12px; + max-width: 1200px; + margin: 0 auto; + padding: 0 16px; +} + +/* 备案链接 */ +.beian-link { + color: #749AE3; + text-decoration: none; + padding: 4px 8px; + border-radius: 4px; + transition: all 0.3s ease; + display: inline-block; +} + +/* 悬停效果 */ +.beian-link:hover { + color: #fff; + background-color: rgba(116, 154, 227, 0.2); + transform: translateY(-1px); + box-shadow: 0 2px 8px rgba(116, 154, 227, 0.3); +} + +/* 分隔符 */ +.beian-separator { + color: #749AE3; + opacity: 0.6; +} + +/* 响应式设计 */ +@media screen and (max-width: 480px) { + .beian-content { + flex-direction: column; + gap: 8px; + } + + .beian-separator { + display: none; + } + + .beian-link { + font-size: 11px; + } +} + +/* 动画效果 */ +@keyframes fadeIn { + from { + opacity: 0; + transform: translateY(10px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +.beian-container { + animation: fadeIn 0.5s ease-out; +} +