137 lines
2.4 KiB
SCSS
137 lines
2.4 KiB
SCSS
.sidebar,
|
|
.sidebar a {
|
|
font-size: 12px;
|
|
color: #999;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.sidebar {
|
|
@media (max-width: 767px) {
|
|
display: none;
|
|
}
|
|
position: absolute;
|
|
top: 150px;
|
|
right: 0;
|
|
z-index: 20;
|
|
transition: top .6s ease-out;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.sidebar,
|
|
.sidebar a {
|
|
font-size: 12px;
|
|
color: #999;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.sidebar.hidden {
|
|
position: fixed !important;
|
|
top: 150px !important;
|
|
transition: right .5s ease-in !important;
|
|
}
|
|
|
|
.sidebar {
|
|
position: absolute;
|
|
z-index: 30;
|
|
top: 150px;
|
|
right: 0;
|
|
z-index: 999999999999;
|
|
}
|
|
|
|
.show_btn {
|
|
width: 0;
|
|
height: 192px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
display: block;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
}
|
|
|
|
.side_content {
|
|
width: 166px;
|
|
height: auto;
|
|
overflow: hidden;
|
|
float: left;
|
|
}
|
|
|
|
.side_content .side_list {
|
|
width: 140px;
|
|
overflow: hidden;
|
|
border: 1px solid #dadada;
|
|
border-radius: 8px;
|
|
position: relative;
|
|
background: #FFF;
|
|
}
|
|
|
|
.side_content .side_list .hd img {
|
|
width: 100%;
|
|
border-bottom: 1px solid #dadada;
|
|
}
|
|
|
|
.side_content .side_list .cont li {
|
|
height: 40px;
|
|
line-height: 40px;
|
|
border-bottom: 1px solid #dadada;
|
|
list-style: none;
|
|
position: relative;
|
|
}
|
|
|
|
.side_content .side_list .cont li i {
|
|
margin-right: 10px;
|
|
font-size: 18px;
|
|
color: #A72027
|
|
}
|
|
|
|
.side_content .side_list .cont li a {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0 0 0 10px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.side_content .side_list .cont li a:before {
|
|
content: "";
|
|
position: absolute;
|
|
display: block;
|
|
overflow: hidden;
|
|
top: 0;
|
|
left: 10px;
|
|
width: 25px;
|
|
height: 40px;
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
}
|
|
|
|
|
|
.side_content .side_list .t-code {
|
|
padding: 10px 10px 7px;
|
|
border-bottom: 1px solid #dadada;
|
|
}
|
|
|
|
.side_content .side_list .t-code img {
|
|
width: 100%;
|
|
}
|
|
|
|
.side_content .side_list .side_title {
|
|
height: 30px;
|
|
line-height: 30px;
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.side_content .side_list .side_title .close_btn {
|
|
background: url("/img/close.png") no-repeat center center;
|
|
width: 12px;
|
|
height: 30px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.side_content .side_list .side_title .close_btn span {
|
|
display: none;
|
|
}
|