/* 所有圖片設定 */
img{
	width: 100%;
    vertical-align: bottom;
}
/* 所有連結裝飾消失 */
a{
    text-decoration: none;
	color: rgb(237, 109, 0);
}
/* 所有p行高 */
p{
	line-height: 1.3;
}
/* 背景遮色 */
.activity_bgc{
	height: 100%;
	width: 100%;
	display: flex;
	background-color: rgb(0, 0, 0, 0.80);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
}
/* popup外觀 */
.activity_popup{
	width: 90%;
	margin: auto;
	border-radius: 12px;
	background-color: rgb(245, 245, 245);
	border:8px solid #EA8D2D;
}
.activity_popup_wrap{
	width: 85%;
	padding: 24px 0;
	margin: auto;
}
/* 活動詳情title */
.activity_title{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgb(200, 200, 200);
	margin-bottom: 5%;
	padding-bottom: 5%;
}
.activity_popup_wrap .activity_title h3{
	font-size: 1.5rem;
	font-weight: bold;
}
/* close游標改變 */
.close{
	cursor: pointer;
}
/* 注意事項 */
.activity_popup_wrap ol{
	list-style:decimal
}
.activity_popup_wrap ol li{
	margin-left: 1em;
	line-height: 150%;
	letter-spacing: 1px;
	margin-bottom: 12px;
}
.activity_popup_wrap ol li span{
	font-weight: 600;
	color: #EA8D2D;
}
/* 點我查看活動詳情 */
.side_open_btn{
	max-height: 30vh;
	padding: 8px 12px;
	/* 文字間隔 */
	letter-spacing: 3px;
	/* 文字置中 */
	text-align: center;
	color: rgb(245, 245, 245);
	background-color: rgb(237, 109, 0);
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	/* 直向文字排列 */
	writing-mode: vertical-lr;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.56);
	/* 游標樣式改變 */
	cursor: pointer;
	opacity: 0.5;
	font-size: 1em;
	/* 定位在中右 */
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	z-index: 9;
}
/* 點我查看活動詳情hover */
.side_open_btn:hover{
	opacity: 1;
}
@media only screen and (min-width: 480px) {
		/* popup外觀 */
		.activity_popup{
			width: 25%;
			min-width: 470px;
		}
		/* 活動詳情開始 */
		.activity_popup .activity_all{
			height: 50vh;
		}
	}