Blame view

src/assets/css/reset.css 1002 Bytes
0c49c87e   liuqimichale   微信公众号 初始化
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
  @charset "utf-8";
  /* CSS Document */
  html,body,ul,li,ol,dl,dd,dt,p,h1,h2,h3,h4,h5,h6,form,fieldset,legend,img
  {
    margin: 0;
    padding: 0;
  }
  fieldset,c
  {
    border: none;
  }
  img {
    display: block;
  }
  address,caption,cite,code,dfn,th,var
  {
    font-style: normal;
    font-weight: normal;
  }
  ul,ol,li
  {
    list-style: none;
  }
  body {
    color: #333;
    font: 14px PingFang SC, microsoft yahei, sans-serif;
    background: #FCFCFC;;
  }
  a {
    color: #fff;
    text-decoration: none;
  }
  /*清除浮动*/
  .clear {
    clear: both
  }
  * {
    box-sizing: border-box
  }
  .border-1px::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 200%;
    height: 200%;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    pointer-events: none;
  }
  body,html,#app
  {
    height: 100%;
    background: #FCFCFC;
  }
94c1e6a3   liuqimichale   微信公众号 个人页面集合
60
61
62
63
  
  .leftRightPadding{
    padding: 0 10px;
  }
5e52ed7c   刘淇   个人中心
64
65
66
67
  
  .commonPagePadding{
    padding: 0 10px;
  }