样式调整

dev
dengjia 2025-08-28 16:51:52 +08:00
parent 958d65455c
commit 0ba8c26a53
2 changed files with 14 additions and 5 deletions

View File

@ -78,7 +78,7 @@ const verificationSuccess = () => {
.mi-captcha { .mi-captcha {
width: 100%; width: 100%;
flex: 1; flex: 1;
height: 40px; height: 58px;
font-family: "Pingfang SC", "Microsoft YaHei", "Monospaced Number", font-family: "Pingfang SC", "Microsoft YaHei", "Monospaced Number",
"Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Chinese Quote", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial,
@ -167,7 +167,7 @@ const verificationSuccess = () => {
flex-direction: row; flex-direction: row;
height: 2.625rem; height: 2.625rem;
padding-left: 0.125rem; padding-left: 0.125rem;
font-size: 0.875rem; font-size: 16px;
color: #fff; color: #fff;
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;

View File

@ -39,7 +39,9 @@
<verification v-model:verification-pass="verificationPass" /> <verification v-model:verification-pass="verificationPass" />
</el-form-item> </el-form-item>
<el-form-item class="button"> <el-form-item class="button">
<el-button native-type="submit">登录</el-button> <el-button native-type="submit" style="font-size: 18px"
><span>登录</span>
</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
<!-- <div class="tips"> <!-- <div class="tips">
@ -196,20 +198,27 @@ const fnSubmitLogin = async () => {
.el-form-item { .el-form-item {
.el-input { .el-input {
height: 40px; height: 58px;
font-size: 18px;
} }
} }
.button { .button {
position: absolute; position: absolute;
bottom: 30px; bottom: 30px;
// height: 58px;
width: 445px; width: 445px;
font-size: 18px;
.el-button { .el-button {
background: #0a7dfe; background: #0a7dfe;
height: 45px; height: 58px;
width: 100%; width: 100%;
color: #ffffff; color: #ffffff;
margin-top: 10px; margin-top: 10px;
font-size: 18px;
span {
font-size: 18px;
}
} }
} }