Program.wxss
1.2 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
/* pages/Program/Program.wxss */
.line_box {
width: 100%;
height: 16rpx;
background: #e5e5e5;
}
.content_box {
padding: 0 30rpx;
}
.item_list {
display: flex;
align-items: flex-start;
font-size: 28rpx;
color: #000;
padding: 25rpx 0;
border-bottom: 1rpx solid #f5f5fa;
}
.list_input {
width: 79%;
margin-left: 30rpx;
}
.list_input input {
width: 100%;
border: 0;
outline: none;
}
.list_input textarea {
width: 100%;
min-height: 160rpx;
}
.list_btn_box {
padding: 13rpx 30rpx;
display: flex;
align-items: center;
justify-content: flex-end;
}
.list_btn {
width: 182rpx;
height: 62rpx;
border: 1rpx solid rgba(226, 226, 226, 1);
border-radius: 30rpx;
font-size: 26rpx;
color: #000;
display: flex;
align-items: center;
justify-content: center;
}
.add_btn{
border: 0;
background: #0286FF;
color: #fff;
margin-left: 20rpx;
}
.bottom_box {
width: 100%;
padding: 30rpx;
position: fixed;
bottom: 0;
left: 0;
box-sizing: border-box;
}
.save_btn {
width: 100%;
height: 88rpx;
background: #0286ff;
border-radius: 44rpx;
font-size: 32rpx;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
}