@charset "utf-8";
/* CSS Document */
/*【default】*/
/*---超連結---*/
	a{
		color: #000;
	}
/*---清除浮動---*/
	.cf{
		zoom:1;
	}
	.cf:before,.cf:after{
		content:'';
		display:table;
	}
	.cf:after{
		clear:both;
	}
	input,button,select,textarea{outline:none}
	*:focus { outline: none; }

/*---取消選取---*/
	.unSelected {
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

/*---btn---*/
	.btn{
		cursor:pointer;
		width: 80px;
		height: 80px;
		line-height: 80px;
		border-radius: 50%;
		margin: 10px auto;
		background-color: #a0a0a0;
		border: 1px solid #a0a0a0;
		transition: background-color 0.3s ease;
	}
	.btn p{
		color: #fff;
		transition: color 0.3s ease;
		margin: 0;
	}
	.btn:hover{
		background-color:#000;
		border: 1px solid #000;
	}
	.btn:hover p{
		color: #ffff15;
	}

/*熒幕尺寸【小於】481時頁面顯示---手機*/
@media (max-width: 480px) {
/*---btn---*/
	.btn{
		width: 60px;
		height: 60px;
		line-height: 60px;
	}
}
