马宇豪
2025-05-14 c533e456515a9af7fc4bca098f7cf48b9a660e21
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
@import '/static/iconfont/fonts.wxss';
.box{
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
 
.topContainer {
  position: relative;
  width: 100%;
}
 
.topImg{
  width: 100%;
}
.topPic{
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 3s ease-in-out infinite;
}
 
@keyframes float {
  0%, 100% {
    transform: translate(-50%, -50%)
  }
  50% {
    transform: translate(-50%, calc(-50% + 15rpx))
  }
}
 
.main{
  width: 100%;
  margin-top: 24rpx;
  display: flex;
  flex-direction: column;
  justify-content: left;
}
 
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer{
  width: 100%;
  position: fixed;
  bottom: 24rpx;
  text-align: center;
  font-size: 22rpx;
  color: #999;
}
.titleFirst{
  width: 80%;
  font-size: 34rpx;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px;
  color: #333;
}
 
.form{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40rpx;
}
 
.u-input{
  border-color: #f5f5f5 !important;
  border-radius: 99px;
  background: #f5f5f5;
  padding: 15px 20px !important;
  box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.1)!important;
  transition: box-shadow .1s ease !important;
  margin-bottom: 30rpx;
}
 
.u-input:active{
  box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.1),0px 3px 6px rgba(0, 0, 0, 0.1) inset !important;
}
 
.isFocused{
  background: #fff;
  border-width: 2px !important;
  border-color: #fff !important;
  box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.1),0px 3px 6px rgba(0, 0, 0, 0.1) inset !important;
}
 
.pswInput{
  position: relative;
}
 
.iconfont {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  color: #ccc
}
 
.loginBtn{
  height: 96rpx !important;
  line-height: 92rpx;
  border: 2rpx solid rgba(255,255,255,.8);
  letter-spacing: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  background-image: linear-gradient(#41a2ff,#0f7ff9);
  transition: box-shadow .15s ease !important;
  font-size: 30rpx;
}
 
.loginBtn:active{
  box-shadow: 0 2px 4px rgba(0,0,0,0);
  background-image: linear-gradient(#0f7ff9,#41a2ff);
}