.rcln_qs {
    width: 100%;
    position: relative;
    display: flex;
    max-width: 100%;
    overflow: hidden;
    justify-content: space-around;
}
.rcln_qs .rcbox{
	width: 45%;
	overflow: hidden;
	transition: .4s;
	border-radius: 0 50px 0 50px;
}
.rcln_qs .rcbox .rcpic_box{
	width: 100%;
	overflow: hidden;
	transition: .4s;
}
.rcln_qs .rcbox .rcpic_box img{
	width: 100%;
	overflow: hidden;
	transition: .4s;
}
.rcln_qs .rcbox:hover .rcpic_box img{
	transform: scale(1.1);
	transition: .4s;
}
.rcln_qs .rcbox .rcdesc_box{
	padding: 30px 25px 45px;
	background: #F5F5F5;
}
.rcln_qs .rcbox .rcdesc_box .rcdesc_nr p{
	font-size: 20px;
	color: #333;
	font-weight: bold;
}
.rcln_qs .rcbox .rcdesc_box .rcdesc_nr n{
	border-bottom: solid 1px #EB0022;
	width: 20px;
	padding-top: 15px;
	display: block;
}

@media screen and (max-width:1000px) {
	.rcln_qs{
		display: block;
	}
	.rcln_qs .rcbox{
		width: 100%;
	}
}