| 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
 | |   |  |   |  | image { |  |   position: fixed; |  |   left: 0; |  |   bottom: 0; |  |   display: block; |  |   width: 100%; |  |   height: 100%; |  |   z-index: -999; |  | } |  | .container { |  |   display: flex; |  |   flex-direction: column; |  |   justify-content: flex-end; |  |   height: 80vh; |  |   width: 100%; |  | } |  |   |  | .title { |  |   font-size: 24px; |  |   margin-bottom: 300rpx; |  |   color: #1890FF; |  | } |  |   |  | .login-btn { |  |   width: 200px; |  |   height: 40px; |  |   line-height: 40px; |  |   text-align: center; |  |   background-color: #4CAF50; |  |   color: white; |  |   border-radius: 20px; |  | } |  |   |  | .user-info { |  |   margin-top: 20px; |  |   display: flex; |  |   align-items: center; |  | } |  |   |  | .avatar { |  |   width: 50px; |  |   height: 50px; |  |   border-radius: 50%; |  |   margin-right: 10px; |  | } |  |   |  | .nickName { |  |   font-size: 16px; |  | } |  |   |  |   |  | .login-btn-clicked  { |  |   background-color: #45a049; /* 点击时的背景色 */ |  | } |  | .login-btn:hover { |  |   background-color: #45a049; /* 鼠标悬停时的背景色 */ |  | } | 
 |