2018-10-26 11:33:25 +08:00
|
|
|
/*页面统一样式*/
|
|
|
|
|
html,
|
|
|
|
|
body {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 14px !important;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
font-family: "Roboto", sans-serif !important;
|
|
|
|
|
background-color: #1190d6 !important;
|
|
|
|
|
}
|
|
|
|
|
/*添加手形*/
|
|
|
|
|
a[href],
|
|
|
|
|
input[type="submit"],
|
|
|
|
|
input[type="image"],
|
|
|
|
|
label[for],
|
|
|
|
|
select,
|
|
|
|
|
button,
|
|
|
|
|
.c-pointer {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
2018-11-07 14:09:52 +08:00
|
|
|
|
2018-10-26 11:33:25 +08:00
|
|
|
/*整体部分*/
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
|
width: 10px;
|
|
|
|
|
height: 10px;
|
|
|
|
|
}
|
|
|
|
|
/*滑动轨道*/
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
|
background: rgba(0, 0, 0, 0.06);
|
|
|
|
|
}
|
|
|
|
|
/*滑块*/
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
|
background: rgba(0, 0, 0, 0.08);
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(0, 0, 0, 0.15);
|
|
|
|
|
}
|
|
|
|
|
}
|