@media screen and (min-width:700px) {
	
.vsidebar{
    display: none;
}
}
@media screen and (max-width:700px) {
	

.header-search {
    display: none;
}
.header-top-right {
    display: none;
}

}
.vsidebar{
    position: fixed;
    left: 0;
    bottom: 100px;
	z-index:999999;
}
.vsidebar ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.vsidebar li{
    margin-bottom: 1px;
    height: 50px;
}
.vsidebar li a{
    display: block;
    position: relative;
}
.vsidebar li .icon{
    display: block;
    width: 50px;
    height: 50px;
    background: #000;
	opacity:0.5;
    overflow: hidden;
}
.vsidebar li .txt{
    display: none;
    position: absolute;
    left: 50px;
    height: 50px;
    line-height: 50px;
    top: 0;
    white-space: nowrap;
    color: #fff;
    border-right: 4px solid #30d5c8;
    padding: 0 20px;
    font-size: 14px;
    -moz-border-radius: 0px 5px  5px 0px;
    -webkit-border-radius: 0px   5px  5px 0px;
    border-radius: 0px   5px 5px 0px;
    background: #149c92;
}
.vsidebar li:hover .txt{
    width: auto;
    padding: 0 20px;
    border-right: 1px solid #000;
}
.vsidebar li:hover .icon{
    background: #30d5c8;
}
.vsidebar li:hover .icon:before{
    border-right: 1px solid #000;
    content: '';
    position: absolute;
    height: 100%;
    width: 0;
    right: 0;
    top: 0
}