.ques-head h2{
	font-weight: 600;
	font-size: 38px;
	color: #000000;
	text-align: center;
	padding: 70px 0px 50px;
}
.step-2{
	padding: 30px 0px 70px;
	background: #ffffff;
}
.step-2 .tab-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.step-2 .tab-box .tab-left{
	width: 266px;
	background: #F8F8F8;
	border-radius: 8px;
	margin-right: 20px;
	padding:20px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-self: stretch;
}
.tab-main {
	flex: 1;
	background: #FFFFFF;
	border-radius: 8px;
	padding: 20px;
	border: 1px solid #EEEEEE;
}
.tab-main>div:not(:first-child){
	display: none;
}
.step-2 .tab-box .tab-left ul li{
	font-size: 18px;
	color: #999999;
	border-bottom: 1px solid #EEEEEE;
	padding: 10px 0px;
	margin: 10px 0px;
	font-weight: 400;
	cursor: pointer;
}
.step-2 .tab-box .tab-left ul li.active{
	color: #333333;
}

.ques-shop-top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 46px 0 60px
}
.ques-shop-bot-title{

	font-weight: 600;
	font-size: 22px;
	color: #000000;
	text-align: left;
	font-style: normal;
	margin-bottom: 20px;
}
.ques-shop-top>span {
	cursor: pointer;
	width: 140px;
	height: 50px;
	border: solid 1px #26a5ea;
	text-align: center;
	line-height: 50px;
	font-size: 18px
}

.ques-shop-top>span:first-child {
	border-radius: 4px 0 0 4px;
	border-right: 0
}

.ques-shop-top>span:last-child {
	border-radius: 0 4px 4px 0;
	border-left: 0
}

.ques-shop-top .active {
	color: #fff;
	background-image: -webkit-gradient(linear,left top,right top,color-stop(0,#29abee),to(#00cabe)),-webkit-gradient(linear,left top,left bottom,from(#c29c58),to(#c29c58));
	background-image: linear-gradient(90deg,#29abee 0,#00cabe 100%),linear-gradient(#c29c58,#c29c58);
	background-blend-mode: normal,normal
}

.ques-shop-bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border-bottom: 1px solid #EEEEEE;
}

.ques-shop-bot>span {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	margin-right:53px;
	padding:0px 7px 17px;
	cursor: pointer;
	position: relative
}
.ques-shop-bot .active::after {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	border-radius: 1px;
	left: 0;
	bottom: 0;
	background:#333333;
	transition: all .3s;
}

.ques-con {
	
	display: none
}
.ques-con li{
	padding-bottom: 22px;
	border-bottom: 1px solid #EEEEEE;
}
.ques-con li:last-child{
	border-bottom: 0px;
}
 .con-active {
	display: block
}
.ques-con .active{
	background-color: #fff;
}
.ques-con .ques-detail {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 26px 30px 0px;
	position: relative;
	font-size: 14px;
	color: #000000;
	cursor: pointer
}

.ques-con .ques-detail>label {
	margin-right: 18px
}



.ques-con .active::after {
	background-color: transparent;
	z-index: 10
}

.ques-con .ques-ans {
	padding: 14px  30px 0px;
	font-size: 14px;
	line-height: 26px;
	display: none;
	color: #555555;

}
.ques-con .ques-ans a{
	color:var(--color);
}



.tofeedback a{
	color:#999999;
}




/* 反馈表单 */
.feedback-main{
	display: flex;
	justify-content: space-between;
}

.feedback-main .feedback-from{
	width:100%;
	margin-right: 20px;
}


.feedback-main .feedback-from h2{
	font-weight: 600;
	font-size: 30px;
	color: #000000;
	margin-bottom: 21px;
}
.feedback-main .feedback-from p{
	font-weight: 600;
	font-size: 14px;
	color: #555555;
	margin-bottom: 40px;
}


.feedback-from .from-item{
	display: flex;
	flex-direction: column;
}
.feedback-from .from-item:not(:last-child){
	margin-bottom:28px ;
}
.feedback-from .from-item .lable{
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-left: 10px;
}
.feedback-from .from-item .lable:has(+input[data-required ])::before,
.feedback-from .from-item .lable:has(+textarea[data-required ])::before
{
	content: '*';
	color: red;
	position: absolute;
	left: 0;
}

.feedback-from .from-item input{
	background: #F6F6F6;
	border: 1px solid #EEEEEE;
	min-height: 40px;
	outline: none;
	padding:0px 20px;
	font-size: 14px;
	color: #555555;
	font-weight: 600;
	border-radius: 2px;
}
.feedback-from .from-item textarea{
	height: 250px;
	background: #F6F6F6;
	border: 1px solid #EEEEEE;
	outline: none;
	padding:20px;
	resize: none;
	font-size: 14px;
	color: #555555;
	font-weight: 600;
	border-radius: 2px;
}
.feedback-from  button{
	
	width:140px;
	height: 50px;
	background:#14171D;
	border-radius: 4px;
	font-weight: 400;
	font-size: 16px;
	color: var(--color);
	cursor: pointer;
	margin-bottom: 30px;
	border-radius: 6px;
}
.feedback-from  button:hover{
	opacity: 0.8;
}
