diff --git a/src/pages/login/index.module.less b/src/pages/login/index.module.less
index 3d22836..c56b537 100644
--- a/src/pages/login/index.module.less
+++ b/src/pages/login/index.module.less
@@ -28,18 +28,36 @@
.left-box {
width: 440px;
height: 100%;
- .icon{
-
+ box-sizing: border-box;
+ padding: 80px 10px 80px 30px;
+ .icon {
+ width: 400px;
+ height: 400px;
}
}
.right-box {
width: 440px;
height: 100%;
- .captcha {
+ box-sizing: border-box;
+ padding: 50px 30px;
+ display: flex;
+ flex-direction: column;
+ .title {
width: 120px;
- height: 48px;
- margin-left: 10px;
- cursor: pointer;
+ height: auto;
+ font-size: 30px;
+ font-weight: 600;
+ color: #333333;
+ line-height: 30px;
+ border-bottom: 4px solid #ff4d4f;
+ box-sizing: border-box;
+ padding-bottom: 10px;
+ }
+ .captcha {
+ width: 125px;
+ height: 54px;
+ margin-left: 15px;
+ border: none;
cursor: pointer;
}
}
diff --git a/src/pages/login/index.tsx b/src/pages/login/index.tsx
index 9d36d08..63fd591 100644
--- a/src/pages/login/index.tsx
+++ b/src/pages/login/index.tsx
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import styles from "./index.module.less";
-import { Typography, Spin, Input, Button, message } from "antd";
+import { Spin, Input, Button, message } from "antd";
import { login, system } from "../../api/index";
import { setToken } from "../../utils/index";
import { useDispatch } from "react-redux";
@@ -91,33 +91,31 @@ export const Login: React.FC = () => {