#
mrzhssss
2022-04-28 864e0c81c00683dff6d942d3f5ec7f838f125429
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
60
61
62
63
64
65
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
93
94
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
* {
    margin: 0;
    overflow: hidden;
}
html,body {
    height: 100%;
}
.nav {
    width: 100%;
    height: 90px;
    line-height: 90px;
    list-style: none;
    color: #fff;
    position: fixed;
    text-align: center;
    letter-spacing:3px;
 
}
.right {
    float: right;
    margin-right: 1%;
    margin-top: 1%;
 
}
#about {
    width: 47px;
    height: 47px;
    display: inline-block;
    background-image: url(../images/cancellation.png);
}
 
.sidebar {
    width: 8%;
    height: 40%;
    line-height: 90px;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
}
/* Effect 1: Brackets */
.cl-effect-1 a::before,
.cl-effect-1 a::after {
    display: inline-block;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
    -moz-transition: -moz-transform 0.3s, opacity 0.2s;
    transition: transform 0.3s, opacity 0.2s;
}
 
.cl-effect-1 a::before {
    margin-right: 10px;
    content: '[';
    -webkit-transform: translateX(20px);
    -moz-transform: translateX(20px);
    transform: translateX(20px);
}
 
.cl-effect-1 a::after {
    margin-left: 10px;
    content: ']';
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    transform: translateX(-20px);
}
 
.cl-effect-1 a:hover::before,
.cl-effect-1 a:hover::after,
.cl-effect-1 a:focus::before,
.cl-effect-1 a:focus::after {
    opacity: 1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    transform: translateX(0px);
}
/* Effect 1: Brackets 👆*/
.sidebar ul {
    font-size: 20px;
    font-weight: 500;
    padding-left: 5%;
 
}
.sidebar a {
    text-decoration: none;
    /*color: #cbcbcb;*/
}
 
.sidebar a:hover {
    color: rgb(255, 148, 111);
}
 
 
 
.nav-unselect {
    color: #FFFFFF;
}
.nav-select {
    font-weight: 900;
    color: rgb(255, 148, 111);
}
 
 
 
 
/* 主体 */
iframe {
    width: 100%;
    height: 100%;
    border-width: 0;
}
/* 底部 */
footer {
    /* border-top: 1px solid #e3e3e3; */
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    font: 14px Helvetica Neue,Helvetica,PingFang SC,\5FAE\8F6F\96C5\9ED1,Tahoma,Arial,sans-serif;
    box-shadow: 0 -1px 2px 0 rgba(0,0,0,.0);
    box-sizing: border-box;
    background-color: rgba(255,255,255,.05);
    z-index: 999;
    height: 20px;
    font-size: 13px;
    line-height: 20px;
}
footer a {
    color: #3573ab;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
}