/*logo區*/
.logo {
	position: absolute;
	/*logo圖寬高*/
	overflow: hidden;
	width: 84px;
	height: 25px;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
/*logo連結*/
.logo__link{
	display: block;
	/*推走logo內文字*/
	text-indent: 100%;
	white-space: nowrap;
}
/*網站圖片*/
.logo__img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-height: 100%;
}
/*網站名稱*/
.logo__name{

}
@media screen and (min-width: 1024px) {
	/*logo區*/
	.logo {
		width: 148px;
		height: 42px;
		top: auto;
		left: auto;
		position: static;
		/* transform: translateX(0); */
		transform: none;
		margin: 36px auto 30px;
		position: relative;
	}
	/*logo連結*/
	.logo__link{
		width: 100%;
		height: 100%;
		
	}
	/*網站圖片*/
	.logo__img{
	}
}