Blame view

css/libCss/common.css 2.76 KB
35ad5bba   liuqimichale   init
1
2
  body{
      position: relative;
dc1e71af   liuqimichale   首页 头部
3
      background-color: #eef1f5;
35ad5bba   liuqimichale   init
4
5
  }
  body,html{
989939f7   liuqimichale   首页 main
6
      /*overflow: hidden;*/
35ad5bba   liuqimichale   init
7
8
9
      width: 100%;
      height: 100%;
  }
dc1e71af   liuqimichale   首页 头部
10
11
12
13
14
  ul,li,ol{
      padding-left: 0;
      margin-bottom: 0!important;
      list-style: none;
  }
989939f7   liuqimichale   首页 main
15
16
17
18
19
20
21
22
23
24
25
26
  .display-none{
      display: none;
  }
  .float-left{
      float: left;
  }
  .float-right{
      float: right;
  }
  .marginright32{
      margin-right: 32px;
  }
dc1e71af   liuqimichale   首页 头部
27
  /*头部--------------------------------------------------*/
35ad5bba   liuqimichale   init
28
  header{
989939f7   liuqimichale   首页 main
29
      min-width: 1400px;
dc1e71af   liuqimichale   首页 头部
30
      height: 80px;
35ad5bba   liuqimichale   init
31
      width: 100%;
dc1e71af   liuqimichale   首页 头部
32
      background-color: #fff;
989939f7   liuqimichale   首页 main
33
      box-shadow: 0 1px 10px 0 rgba(50,50,50,.2);
35ad5bba   liuqimichale   init
34
  }
bb52347d   liuqimichale   首页 头部
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
  .java-logo{
      height: 80px;
      display: inline-block;
      background: url("../../image/java-logo.png") no-repeat 47px center;
  }
  .java-title{
      display: inline-block;
      height: 80px;
      width: 167px;
      margin-left: 101px;
      background: url("../../image/java-title.png") no-repeat 0px center;
  }
  .java-loginout{
      cursor: pointer;
      float: right;
      width: 27px;
      height: 28px;
      background: url("../../image/pladata_close.png") no-repeat;
      margin-top: 26px;
      margin-right: 32px;
  }
dc1e71af   liuqimichale   首页 头部
56
  /*左侧栏--------------------------------------------------*/
35ad5bba   liuqimichale   init
57
  nav{
dc1e71af   liuqimichale   首页 头部
58
      width: 200px;
35ad5bba   liuqimichale   init
59
      height: 100%;
dc1e71af   liuqimichale   首页 头部
60
61
  }
  .nav-ul{
989939f7   liuqimichale   首页 main
62
      box-shadow: 1px 0 10px 0 rgba(50,50,50,.2);
dc1e71af   liuqimichale   首页 头部
63
      background-color: #fff;
e676363c   liuqimichale   首页 头部
64
      height: 100%;
35ad5bba   liuqimichale   init
65
  }
989939f7   liuqimichale   首页 main
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  .nav-ul li{
      height: 120px;
      line-height: 120px;
      text-align: center;
      color: #1f2b3d;
      font-size: 20px;
  }
  .nav-ul li:nth-of-type(1){
      box-shadow: 0 1px 10px 0 rgba(50,50,50,.2);
      background-color: #f9f9f9;
  }
  .nav-ul li:nth-of-type(2){
      background-color: #fff;
  }
  .nav-ul li:nth-of-type(3){
      background-color: #f9f9f9;
  }
  .nav-ul li:nth-of-type(4){
      background-color: #fff;
  }
  .nav-ul li:hover{
      background-color: rgba(38,190,150,.1);
  }
  .nav-ul li.visitActive{
      background-color: #2abb9b;
      color: #fff;
  }
dc1e71af   liuqimichale   首页 头部
93
  /*内容--------------------------------------------------*/
35ad5bba   liuqimichale   init
94
  section{
989939f7   liuqimichale   首页 main
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
  
      overflow-x: auto;
      overflow-y: auto;
      height: calc(100% - 80px);
      height: -webkit-calc(100% - 80px);
      height: -moz-calc(100% - 80px);
      width:calc(100% - 200px);
      width:-webkit-calc(100% - 200px);
      width:-moz-calc(100% - 200px);
  }
  .section-wrap{
      padding: 18px 32px 0;
  }
  .link-div{
      margin-left: -10px;
  }
  .link-div span{
      width: 176px;
      height: 57px;
      display: inline-block;
      text-align: center;
      line-height: 42px;
      font-size: 18px;
      color: #fff;
      cursor: pointer;
  }
  .link-div span:nth-of-type(1){
      background:url("../../image/link-div-1.png");
  }
  .link-div span:nth-of-type(2){
      background:url("../../image/link-div-2.png");
  }
  .link-con-left{
      padding-right: 32px;
      width: 734px;
      box-sizing: content-box;
  }
  .link-con-left-wrap{
      width: 351px;
      height: 245px;
      background-color: #fff;
      float: left;
  }
  .link-con-right{
      width: 336px;
35ad5bba   liuqimichale   init
140
  }