.wenti {
	width: 1440px;
	padding: 0 24px;
	margin: 100px auto 60px auto;
	box-sizing: border-box;
}

.wenti h3 {
	font-size: 40px;
	line-height: 48px;
	text-align: center;
	/* font-weight: 600; */
	color: #19ce67;
}

.wenti .search {
	padding: 12px 24px;
	border: 2px solid #57606c;
	border-radius: 50px;
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}

.wenti span {
	display: inline-block;
	width: 35px;
	height: 35px;
}

.wenti span img {
	width: 100%;
}

.wenti input {
	width: 100%;
	height: 30px;
	font-size: 16px;
	font-weight: 600;
	color: #888;
}



.faq-item {
	padding: 20px 0;
	border-bottom: 1px solid #eaeaea;

}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	padding: 10px 0px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.3s ease;
}
.faq-question h4 {
	font-size: 24px;
	color: #57606c;
	font-weight: 400;
}

.faq-icon {
	color: #000;
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.faq-answer p {
	color: #555;
	font-size: 16px;
	/* font-weight: 600; */
	line-height: 28px;
	color: #888;
	text-align: justify;
}

.faq-answer ul {
	padding-left: 20px;
	margin: 15px 0;
}

.faq-answer li {
	margin-bottom: 10px;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-item.active .faq-answer {
	max-height: 1000px;
	transition: max-height 0.3s ease;
}

@media all and (max-width:1440px){
	.wenti {
		width: 94%;
	}
}
@media all and (max-width:1100px) {
	.wenti{
		margin-top: 50px;
	}
	.wenti h3{
		font-size: 30px;
	}
}
@media all and (max-width:856px) {
	.wenti {
		width: 96%;
		padding: 0 5px;
	}
}