myInfo.wxss
1.1 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
/* pages/my/myInfo/myInfo.wxss */
.box {
padding: 40rpx 30rpx;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
}
.head_box {
font-size: 30rpx;
font-weight: bold;
color: #333;
text-align: center;
}
.box image {
width: 160rpx;
height: 160rpx;
border-radius: 50%;
box-shadow: 0 10rpx 30rpx 0 #a0a5ac;
margin-bottom: 30rpx;
}
.content_box {
width: 100%;
padding: 0 100rpx;
box-sizing: border-box;
margin-top: 120rpx;
}
.item_list {
padding: 10rpx 0;
border-bottom: 1rpx solid #e8e8e8;
font-size: 26rpx;
margin-bottom: 30rpx;
}
.list_title {
font-size: 30rpx;
font-weight: bold;
color: #333;
}
.pl_style {
color: #e8e8e8;
}
.submit_btn {
width: 92%;
height: 80rpx;
background: linear-gradient(27deg, rgba(255, 128, 128, 1), rgba(255, 140, 140, 1));
box-shadow: 4rpx 19rpx 92rpx 0rpx rgba(247, 94, 94, 0.39);
border-radius: 10rpx;
font-size: 32rpx;
font-weight: bold;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
margin-top: 60rpx;
position: fixed;
left: 50%;
bottom: 45rpx;
transform: translate(-50%);
}