From 39815dbd2f74e80c0d734ef620af0c1ffab0973e Mon Sep 17 00:00:00 2001 From: czm <2192718639@qq.com> Date: Wed, 22 Feb 2023 15:02:08 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(=E7=99=BB=E5=BD=95=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2=E5=BC=80=E5=8F=91):?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/index.module.scss | 52 +++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/src/pages/login/index.module.scss b/src/pages/login/index.module.scss index e69de29..a3a835a 100644 --- a/src/pages/login/index.module.scss +++ b/src/pages/login/index.module.scss @@ -0,0 +1,52 @@ +.main { + padding-top: 165px; + .login_image { + width: 100%; + display: flex; + flex-direction: column; + align-items: center; + image { + width: 261px; + max-height: 189px; + } + text { + font-size: 32px; + font-weight: 400; + color: #424c6f; + margin-top: 25px; + } + } + .login_btn { + display: flex; + justify-content: center; + margin-top: 160px; + .btn_con { + width: 612px; + height: 86px; + background: linear-gradient(90deg, #4581ff 0%, #0d56fa 100%); + border-radius: 43px; + display: flex; + justify-content: center; + align-items: center; + color: #fff; + text { + margin-left: 18px; + } + } + } + .regulations { + display: flex; + justify-content: center; + margin-top: 32px; + color: rgba(0, 0, 0, 0.6); + font-size: 22px; + align-items: center; + .regulations_text { + margin-left: 10px; + } + text { + color: #1245b0; + font-size: 22px; + } + } +}