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
| * {
| margin: 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;
| /* IOS点击阴影 */
| -webkit-tap-highlight-color: transparent;
| /* 禁止长按图片保存 */
| -webkit-touch-callout: none;
| }
|
| body {
| background-color: #F3F3F3;
| font-family: Arial, "Microsoft YaHei";
| }
|
| .baleneceName {
| color: #888888;
| font-size: 0.2rem;
| }
|
|