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
| /*basic.css - Written by douchaoyang in September 2015*/
| body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;}
| body,button,input,select,textarea{font-size: 16px; font-family:"Microsoft Yahei",arial;}
| body {
| overflow: hidden;
| }
| em,strong,th,i{font-style:normal;font-weight:normal;}
| h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
| a{text-decoration:none;cursor:pointer;outline:none;}
| table{border-collapse:collapse;border-spacing:0;}
| ol,ul,li{list-style:none;}
| fieldset,img{border:0;}
| .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
| .clearfix{*zoom:1;}
| /*basic end*/
|
| div::-webkit-scrollbar {
| /* 滚动条整体样式 */
| width: 0.03rem;
| height: 0.1rem;
| }
| div::-webkit-scrollbar-thumb {
| /* 滚动条里面小方块 */
| border-radius: 0.1rem;
| -webkit-box-shadow: inset 0 0 0.05rem rgba(0,0,0,0.2);
| background: #f9fafa;
| }
| div::-webkit-scrollbar-track {
| /* 滚动条里面轨道 */
| -webkit-box-shadow: inset 0 0 0.05rem rgba(0,0,0,0.2);
| border-radius: 0.1rem;
| background: #003d64;
| }
|
|