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
| .no-page {
| position: relative;
| width: 990px;
| height: 440px;
| left: 50%;
| margin-left: -495px;
| margin-top: 5%;
| background:url('../image/404.jpg');
| }
|
| .no-page .btn:before, .no-page .btn:after {
| display: table;
| content: " ";
| }
| .no-page .btn:after {
| clear:both;
| }
| .no-page .btn {
| position: absolute;
| top: 330px;
| left: 180px;
| }
| .no-page .btn .btn-list {
| float: left;
| margin-right: 40px;
| }
|
| .no-page .btn .btn-list a{
| display: block;
| text-decoration: none;
| color: #000000;
| border: 1px solid #bbb;
| padding: 10px 18px;
| border-radius: 14px;
| }
| .no-page .btn .btn-list a:hover {
| background-color:#76a7f1;
| color: #fff;
| }
|
|