login.css
2.0 KB
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
body{
background-color: #F4F5F9;
}
*{
margin: 0;
padding: 0;
}
.container{
width: 7.5rem;
line-height: 1;
display: flex;
flex-flow: column;
align-items: center;
}
.head{
width: 7.5rem;
height: 4.91rem;
display: flex;
background: url("../images/18.png");
background-size: cover;
position: relative;
}
.head_pic{
width: 1.45rem;
height: 1.45rem;
background:rgba(244,245,249,1);
border: 0.04rem solid rgba(255,255,255,1);
border-radius:50%;
position: absolute;
bottom: -0.8rem;
left: 3.02rem;
}
.head_pic img{
width: 100%;
height: 100%;
border-radius:50%;
}
.mid{
width: 5rem;
margin-top: 1.12rem;
display: flex;
justify-content: space-between;
}
.mid_item{
width: 2rem;
font-size: 0.3rem;
font-family:MicrosoftYaHei;
font-weight:400;
color:rgba(102,102,102,1);
line-height:32px;
position: relative;
display: flex;
justify-content: center;
}
.item_color{
color: red;
/*background:linear-gradient(-85deg,rgba(110,15,119,1) 0%, rgba(3,24,165,1) 100%);*/
/*-webkit-background-clip:text;*/
/*-webkit-text-fill-color:transparent;*/
}
.item_color:before{
content: "";
width: 1.52rem;
height: 0.02rem;
background:linear-gradient(-85deg,rgba(110,15,119,1),rgba(3,24,165,1));
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
position: absolute;
bottom: 0;
}
.bottom{
display: flex;
flex-flow: column;
}
.bottom_item{
width: 6.16rem;
height: 0.9rem;
border:1px solid rgba(112,112,112,1);
border-radius: 0.08rem;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 0 0.2rem;
margin-top: 0.4rem;
}
.bottom_item input{
width: 100%;
height: 0.6rem;
box-sizing: border-box;
padding: 0.2rem;
font-size: 0.3rem;
outline: none;
border: none;
background-color: transparent;
}
.bottom_item input::placeholder{
color: #b3b3b3;
}