.faq .list {
    margin-top: 30px;
}
.faq .list .item {
	position: relative;
    border-bottom: 1px solid #e4e4e4;
    padding: 0 20px;
    box-sizing: border-box;
}
.faq .list .item .ques_btn {
	position: relative;
	width: 100%;
	padding: 20px 40px 20px 0;
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	box-sizing: border-box;
}
.faq .list .item .ques_btn:after {
	content: '';
	position: absolute;
	top: 20px;
	right: 0;
	display: block;
	width: 24px;
	height: 24px;
	background: url("../images/arrow-right.svg")no-repeat 50% 50%;
    transform: rotate(90deg);
}
.faq .list .item .answer {
	display: none;
	padding: 10px 0px 15px;
	line-height: 1.5;
    color: #555;
	box-sizing: border-box;
}
.faq .list .item.active {
    background: #fbfbfb;
}
.faq .list .item.active .ques_btn:after {
	transform: rotate(270deg);
}
.faq .list .item.active .answer {
	display: block;
}



.cs_center {
    margin-top: 80px;
}
.cs_center .box {
    max-width: 475px;
    border: 1px solid #e4e4e4;
    border-radius: 20px;
    gap: 16px;
    padding: 24px 40px;
    margin-top: 30px;
    cursor: pointer;
    box-sizing: border-box;
}
.cs_center .box .info {
    gap: 8px;
}
.cs_center .box .info p {
    font-size: 20px;
    font-weight: 500;
    color: #555;
}
.cs_center .box .info strong {
    font-size: 24px;
    color: #333;
}
.cs_center .box .icon img {
    width: 45px;
}




@media screen and (max-width: 1240px) {
}
@media screen and (max-width: 1024px) {
    .faq .list .item {
        padding: 0 10px;
    }
    .faq .list .item .ques_btn {
        font-size: 16px;
    }
	.faq .list .item .ques_btn:after {
	}
	.faq .list .item .answer {
        padding: 10px 0 20px;
        font-size: 14px;
    }


    .cs_center {
        margin-top: 40px;
    }
    .cs_center .box {
        padding: 14px 28px;
        gap: 8px;
    }
    .cs_center .box .info p {
        font-size: 16px;
    }
    .cs_center .box .info strong {
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 380px) {
}