@charset "utf-8";
.accordion_in {
	margin: 20px 0;
	font-family: "微軟正黑體";
	font-size: 13px;
}
.acc_head {
	display: block;
	padding: 8px 0 10px 40px;
	position: relative;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 18px;
	border-radius: 50px;
	background-color: #239320;
	cursor: pointer;
	-webkit-transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-ms-transition: all 0.5s ease 0s;
	-o-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.acc_head:before {
	position: absolute;
	top: 11px;
	left: 15px;
	color: #FFCC33;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0a9";
}
.acc_content ul {
	margin-left: 20px;
}
.acc_content ul li {
	margin: 20px 0;
	color: #023869;
	line-height: 25px;
	text-align: justify;
	letter-spacing: 1px;
	list-style-type: disc;
}
.acc_content p {
	color: #023869;
	line-height: 25px;
	text-align: justify;
	letter-spacing: 1px;
}
.acc_content strong, .acc_content a {
	padding: 0 5px;
	color: #CC00FF;
	text-decoration: underline;
}
.acc_content a:hover {
	color: #000000;
	text-decoration: none;
	background-color: #FFCC33;
}