40 lines
485 B
CSS
40 lines
485 B
CSS
|
/* 删除: 之前的样式 */
|
||
|
/* 添加重置CSS样式 */
|
||
|
html,
|
||
|
body,
|
||
|
div,
|
||
|
span,
|
||
|
h1,
|
||
|
h2,
|
||
|
h3,
|
||
|
h4,
|
||
|
h5,
|
||
|
h6,
|
||
|
p,
|
||
|
live-player {
|
||
|
font-family: '宋体';
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
border: 0;
|
||
|
font-size: 14px;
|
||
|
line-height: 1;
|
||
|
vertical-align: baseline;
|
||
|
box-sizing: border-box;
|
||
|
user-select: none; /* 添加: 禁止文字选中 */
|
||
|
}
|
||
|
html,
|
||
|
body {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
ol,
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
html::-webkit-scrollbar {
|
||
|
display: none;
|
||
|
}
|
||
|
|