﻿@charset "utf-8";
* {
	padding:0;
	border:0;
	margin:0;
	outline:0;
	box-sizing:border-box;
}

/*Side*/
.side {
	position:fixed;
	width:54px;
	height:275px;
	right:0;
	top:350px;
	z-index:10000;
}
.side ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.side ul li {
	width:54px;
	height:54px;
	float:left;
	position:relative;
	margin-bottom:2px;
}
.side ul li .sidebox {
	position:absolute;
	width:54px;
	height:54px;
	top:0;
	right:0;
	font-family:"微软雅黑";
	color:#fff;
	line-height:54px;
	font-size:14px;
	overflow:hidden;
	border-radius:5px 0 0 5px;
}
.side ul li .sidetop {
	width:54px;
	height:54px;
	line-height:54px;
	display:inline-block;
	border-radius:5px 0 0 5px;
}
.side ul li .sidetop:hover {
	opacity:1;
	filter:Alpha(opacity=100);
}
.side ul li img {
	float:left;
}

@media (max-width: 900px) {
  .side {
	top:305px;
}
}