@charset "utf-8";
/* CSS Document */

/*浮動廣告*/
.ad-float {
	display: block;
	margin: 0px;
	padding: 10px;
	height: auto;
	width: 230px;
	z-index: 30;
	right: 20px;
	bottom: 200px;
	position: fixed;
	border: 1px solid #E5E5E5;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 2px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 5px;
	background-color: #FFF;
}
@media (max-width:767px) {
	.ad-float {
		display:none;
		}
	}
.ad-float img {
	height: auto;
	width: 100%;
}
.ad-float span {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-family: verdana;
	text-align: center;
	border-radius: 50%;
	color: #FFF;
	background-color: #333;
	float: right;
	margin: -20px -20px 0px;
	z-index: 3;
	position: relative;
	cursor: pointer;
}
.ad-float span:hover {
	background-color: #000;
}
