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
| * {
| 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";
| }
|
| .div_PhoneBG {
| display: -webkit-flex;
| width: 100%;
| align-items: center;
| height: 0.86rem;
| background-color: white;
| margin-top: 0.6rem;
| }
|
| .input {
| -webkit-user-select: auto;
| margin-right: 0.27rem;
| font-size: 0.34rem;
| height: 0.7rem;
| width: 5rem;
| border: none;
| outline: medium;
| color: #000000;
| caret-color: #0E96FF;
| text-align: left;
| line-height: 0.7rem;
| }
|
| .input::-webkit-input-placeholder {
| color: #CCCCCC;
| }
|
| .div_button {
| color: #FFFFFF;
| font-size: 0.34rem;
| background-color: #0E96FF;
| height: 0.86rem;
| text-align: center;
| line-height: 0.86rem;
| border-radius: 0.43rem;
| margin-left: 0.7rem;
| width: 5.8rem;
| margin-top: 1.24rem;
| }
|
|