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
| /* columns 列 缩写 col */
| /* 一行一列 */
| .one-col {
| width: 100%;
| height: 0;
| padding-bottom: 100%;
| background-color: #FFF;
| display: inline-block;
| float: left;
| }
| /* 一行两列 */
| .two-cols {
| width: 50%;
| height: 0;
| padding-bottom: 50%;
| background-color: #FFF;
| display: inline-block;
| float: left;
| }
| /* 一行三列 */
| .three-cols {
| width: 33.33%;
| height: 0;
| padding-bottom: 33.33%;
| background-color: #FFF;
| display: inline-block;
| float: left;
| }
|
| /* 条码扫描框 */
| .search-box {
| width: 100%;
| /* height: 100rpx; */
| }
| .search-box-title {
| display: inline-block;
| float: left;
| border-bottom: 1px solid #909399;
| width: 30%;
| height: 100rpx;
| line-height: 100rpx;
| text-align: right;
| text-indent: -10rpx;
|
| }
| .search-box-input {
| display: inline-block;
| float: left;
| border-bottom: 1px solid #909399;
| width: 60%;
| height: 100rpx;
| /* line-height: 150rpx; */
| margin-left: 10rpx;
| text-indent: 10rpx;
| placeholder-style {
| color: #eaeff8;
| }
| }
| .placeholder-style {
|
| }
|
|