storageMachine.css
852 Bytes
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
/* Author XGQ
 * 2019-10-03
 */
.titles {
	color: #333333;
	background-color: #C0C0C0;
	font-size: 35upx;
	line-height: 80upx;
	height: 80upx;
	text-align: center;
}
.input-boxs {
	padding: 10upx 50upx 25upx 50upx; //上左下右
	font-size: 30upx;
}
.input-items {
	display: flex;
	background: white;
	border-bottom: 1upx solid #eeeeee;
	line-height: 100upx;
	height: 90upx;
}
.input-labels {
	width: 150upx;
}
.input-bodys {
	position: relative;
	height: 100upx;
	width: calc(100% - 150upx);
}
.inputs {
	line-height: 100upx;
	height: 100upx;
	position: relative;
	font-size: 28upx;
}
.btn-codes {
	position: absolute;
	right: 0upx;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	color: #205592;
	width: 160upx;
	font-size: 24upx;
	box-sizing: border-box;
	text-align: right;
	padding: 0;
	height: 100upx;
	line-height: 100upx;
}