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
| * {
| margin: 0;
| top: 0;
| /* 不允许复制 */
| -moz-user-select: none;
| /* Firefox私有属性 */
| -webkit-user-select: none;
| /* WebKit内核私有属性 */
| -ms-user-select: none;
| /* IE私有属性(IE10及以后) */
| -khtml-user-select: none;
| /* KHTML内核私有属性 */
| -o-user-select: none;
| /* Opera私有属性 */
| user-select: none;
| /* CSS3属性 */
| /* IOS点击阴影 */
| -webkit-tap-highlight-color: transparent;
| /* 禁止长按图片保存 */
| -webkit-touch-callout: none;
| }
|
| body {
| background-color: white;
| font-family: Arial, "Microsoft YaHei";
| }
|
| .container {
| position: absolute;
| bottom: 30px;
| padding: 10px;
| text-align: center;
| }
|
| .container p {
| font-family: "微软雅黑";
| color: #888;
| }
|
| .div_codeBG {
| display: flex;
| justify-content: center;
| background-color: white;
| margin-top: 1.3rem;
| margin-left: -0.8rem;
| }
|
| .input {
| -webkit-user-select: auto;
| width: 0.6rem;
| height: 0.66rem;
| border: none;
| outline: medium;
| color: #000000;
| caret-color: #0E96FF;
| margin-top: 0;
| text-align: center;
| font-size: 0.36rem;
| /* background-color: red; */
| border-bottom: #007AFF solid 1px;
| }
|
|