-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.acss
114 lines (98 loc) · 1.67 KB
/
app.acss
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
page {
background-color: #F7F7F7;
border: 1px solid rgba(0,0,0,0);
box-sizing: border-box;
}
.page {
font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif;
font-size: 24rpx;
padding: 20rpx;
flex: 1;
}
.page-description {
margin-bottom: 32rpx;
}
.page-section {
background: #fff;
margin-bottom: 32rpx;
}
.page-section-title {
padding: 16rpx 32rpx;
}
.page-section-demo {
padding: 20rpx;
}
.page-section-btns {
border-top: 1px solid #ddd;
display: flex;
justify-content: space-around;
align-items: center;
}
.page-section-btns > view {
flex: 1;
height: 84rpx;
display: flex;
align-items: center;
justify-content: space-around;
color: #49a9ee;
}
.page-section-btns > view + view {
border-left: 1px solid #ddd;
}
.form-row {
display: flex;
align-items: center;
padding: 0 30rpx;
height: 88rpx;
align-items: center;
}
.form-row-label {
width: 180rpx;
font-size: 34rpx;
margin-right: 10rpx;
text-align: left;
color: #000;
}
.form-row-content {
flex: 1;
font-size: 34rpx;
}
.form-line {
height: 1px;
background-color: #ddd;
margin-left: 30rpx;
}
.input {
color: #000;
font-size: 34rpx;
width: 100%;
padding: 4rpx 0;
border: 0;
line-height: 1;
}
/* 选中行背景色 */
.selected-row {
background-color: #49a9ee;
}
/* form表单 标题输入框样式 */
.section{
line-height: 60rpx;
height: 60rpx;
display: flex;
align-items: center;
margin-bottom: 40rpx;
margin-top: 40rpx;
}
/* 标题 */
.section__title{
display:inline;
margin-right: 10rpx;
width: 200rpx;
text-align: right;
padding: 10rpx;
font-size: 18px;
}
.section__input {
padding: 15rpx;
width: 450rpx;
}