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
| /*
| * @Author: 李磊
| * @Date: 2018-11-14 14:59:16
| * @Last Modified by: 李磊
| * @Last Modified time: 2018-11-26 14:47:26
| */
| /*宽度转换vw*/
| @function vww($number) {
| @return ($number / 375)*750+rpx;
| }
| .plate-popup {
| position: fixed;
| z-index: 999;
| background-color: #E3E2E7;
| -webkit-box-shadow: 0 0 30upx rgba(0, 0, 0, 0.1);
| box-shadow: 0 0 30upx rgba(0, 0, 0, 0.1);
| bottom: 0;
| width: 100%;
| overflow: hidden;
| text-align: center;
| $height: vww(50);
|
| //关闭
| .plate-close {
| width: 100%;
| background: #FFFFFF;
| line-height: vww(30);
| font-size: vww(12);
| text-align: right;
| padding-right: vww(10);
| box-sizing: border-box;
| color: #0bbf71;
| }
|
| //键盘主体内容-单行
| .plate-popup-item {
| margin: 0 auto;
| overflow: hidden;
| display: inline-block;
| display: table;
|
| &:last-child {
| margin-bottom: 2vw;
| }
| }
|
| //键盘主体内容-单个
| .plate-popup-item-list {
| float: left;
| font-size: vww(14);
| width: 8vw;
| margin: 0 1vw;
| margin-top: 2vw;
| height: $height;
| line-height: $height;
| background: #FFFFFF;
| border-radius: 5px;
| color: #4A4A4A;
|
| //删除键
| &.del {
| width: 14vw;
| background: #C2CACC;
| display: flex;
|
| //删除键图片
| image {
| width: 50%;
| height: 50%;
| margin: 0 auto;
| display: block;
| vertical-align: middle;
| align-self: center;
| }
| }
|
| //特殊字符(港澳学)
| &.special {
| background: #EAECF8;
| }
| }
| }
|
|