/*/////////////////////////////////////////////////////////*/
/*-------常見問題列表--------*/
/*/////////////////////////////////////////////////////////*/


.qa_Bg {
    margin-top: 50px;
}



.qa_main_title{
	font-size: 24px;
	font-weight: 600;
	color: var(--primary_color);
	margin: 50px 0  25px;
}
.qa_list_area {
	padding: 0px;
	
}

.qa_list {
	/* border: 1px solid var(--fourth_color); */
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 30px;
	font-size: min(max(1.0vw, 14px), 18px); /*字體大小 2.5vw、最小值 12px、最大值 18px*/
    font-size: clamp(.875rem,0.9375vw,1.125rem);
	line-height: 1.2;
}

.qaL_tit {
	/* font-size: 15px; */
	font-size: inherit;
	line-height: inherit;
	color: #333;
	position: relative;
	padding: 22px 44px 22px 44px;
    padding: clamp(.6875rem,1.1458vw,1.375rem) 2.75rem;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid transparent;
	transition: 0.3s ease all;

	word-wrap: break-word;
	word-break: break-all; /*Judy修改20240425*/
}

.qaL_tit span {
	display: block;
	/* padding-bottom: 12px; */
	color: #000;	
}

.qaL_tit:before {
	/* content: '?'; */
	content: 'Q';
	position: absolute;
	font-size: 13px;
	color: #000;
	border-radius: 100%;
	background: var(--primary_color);
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	font-weight: bold;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
	box-sizing: border-box;
	padding: 0px 0px 0px 2px;
	font-family: var(--foreign_foreign2);
}

.qaL_tit:after {
	content: '+';
	position: absolute;
	font-size: 36px;
	color: var(--secondary_color);
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transition: 0.3s ease all;
	transform-origin: center center;
}

.qaL_text {
	position: relative;
	/* font-size: 14px;
	line-height: 24px; */
	font-size: inherit;
	line-height: inherit;
	color: #000;
	padding: 22px 27px 22px 44px;
    padding: clamp(.6875rem,1.1458vw,1.375rem) 1.6875rem clamp(.6875rem,1.1458vw,1.375rem) 2.75rem;
	display: none;
	background-color: var(--primary_color);
	border-radius: 0 0 5px 5px;
	overflow: hidden;

	word-wrap: break-word;
	word-break: break-all; /*Judy修改20240425*/
}

.qaL_text span {
	display: block;
	/* padding-bottom: 12px; */
}

.qaL_text:before {
	/* content: '！'; */
	content: 'A';
	position: absolute;
	border-radius: 100%;
	text-align: center;
	width: 25px;
	line-height: 25px;
	font-size: 13px;
	color: var(--secondary_color);
	background: #fff;
	box-sizing: border-box;
	padding: 0px 0px 0px 2px;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
	font-weight: bold;
	font-family: var(--foreign_foreign2);
}

/*hover*/
/* .qaL_tit:hover {
				background:#f7e9cb;
			} */
/*當前模式*/
/* .qa_list.active .qaL_tit {
				background:#f7e9cb;
				border-radius:5px;
			} */
.qa_list.active .qaL_tit:after {
	/* -webkit-transform: rotate(45deg);
	transform: rotate(45deg); */
	-webkit-transform: translateY(calc(-50% + 0px)) rotate(45deg);
	transform:translateY(calc(-50% + 0px)) rotate(45deg);
	/* top: 20px; */
	font-size: 36px;
}

.qa_list.active .qaL_tit {
	border-bottom: 1px solid var(--second_color);
}