1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<template>
<div class="author">
<div class="content">
<h1 class="title">欢迎登录{{title}}</h1>
<router-view></router-view>
</div>
</div>
</template>
<script>
import { title } from "@/settings";
export default {
data(){
return {
title
}
}
};
</script>
<style lang="less" scoped>
.author {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: url("../../assets/image/login_bg.jpg") center center no-repeat;
background-size: 100% 100%;
.title {
.fs(90);
.lh(126);
.pb(90);
color: #fff;
letter-spacing: 3px;
text-align: center;
}
.login,
.forget {
width: 394px;
max-width: 90%;
// .w(394);
.bd-rd(27);
.pa(50, 47, 18, 47);
margin: 0 auto;
position: relative;
background-color: #fff;
/deep/ .ant-input-group > .ant-input {
background-color: #f8fafb;
}
/deep/ .ant-input-group-addon {
border: none;
}
}
input {
background-color: #f8fafb;
}
}
</style>