123
gaoshp
21 分钟以前 4c2a27b9d7604287c4f94c88a84a1f10a44ad39c
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@keyframes loginErrorAnimation {
    0% {
        margin-left: -30px;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0;
    }
}
 
.login {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-top: -100px;
    z-index: 99999;
    backdrop-filter: blur(20px);
}
 
.head {
    padding: 3px;
    background-size: 40% auto;
    background-position: center center;
    height: 150px;
    width: 150px;
    border-radius: 100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
    margin-top: -50px;
    overflow: hidden;
}
 
.head img {
    border-radius: 100%;
    width: 100%;
    height: 100%;
}
 
.message {
    margin-top: 20px;
    font-size: 20px;
    text-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.3);
    color: #eee;
    margin-bottom: 50px;
}
 
.password {
    transition: width 0.3s;
}
 
.password-in {
    width: 155px;
}
 
.login-button {
    position: absolute;
    top: 5px;
    right: -50px;
    transition: right 0.3s;
}
 
.click-enable {
    right: 0;
}
 
.error {
    animation: loginErrorAnimation 0.2s ease 3;
}
 
::-webkit-input-placeholder {
    color: #fff;
}
 
::-moz-placeholder {
    color: #fff;
}
 
:-ms-input-placeholder {
    color: #fff;
}
 
.form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
.item {
    position: relative;
    width: 280px;
    display: flex;
    align-items: center;
}
 
.item input {
    color: white;
    outline: none;
    border: none;
    margin: 5px 0;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 8px 24px;
    border-radius: 20px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
}
 
.item .iconfont {
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: 18px;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    cursor: pointer;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
 
.item .iconfont:hover {
    background-color: rgba(255, 255, 255, 0.5);
}