@charset "utf-8";


#quandi_product{
	width:auto;
	height:auto;
	overflow:hidden;
	display:block;
	margin:auto;
}
.product_item{
	width:auto;
	height:auto;
	overflow:hidden;
	display:block;
	margin:auto;
	padding:10px;
	padding-top:50px;
	padding-bottom:50px;
	
}
.product_item:nth-child(odd){
	background-color:#f5f5f5;
	
}

.product_item:nth-child(odd)>.product_tb{
	flex-direction: row-reverse;
}
.product_tb{
	width:auto;
	height:auto;
	overflow:hidden;
	display:flex;
	display:-webkit-flex;
	align-items:center;
	column-gap:50px;
	max-width:1100px;
	margin:auto;
}
.product_item:nth-child(even)>.product_tb{
	flex-direction:row;
}
@media (max-width:767px){
	.product_tb{
		flex-direction:column;
		align-items:unset;
	}
	.product_item:nth-child(odd)>.product_tb{
	flex-direction:column;
  }
	.product_item:nth-child(even)>.product_tb{
		flex-direction:column;
	}
}
.product_pic{
	width:45%;
	height:auto;
	overflow:hidden;
	display:block;
	position:relative;
	flex-shrink:1;
	max-width:100%;
	
}
@media (max-width:767px){
	.product_pic{
		width:auto;
	}
}
.product_left{
	width:calc(60% - 50px);
	height:auto;
	overflow:hidden;
	margin:auto;
	display:block;
}
@media (max-width:767px){
	.product_left{
		width:auto;
	}
}
.product_name{
	width:auto;
	height:auto;
	overflow:hidden;
	margin:auto;
	display:block;
	text-align:center;
	font-size:1rem;
}
.new_tb{
	width:auto;
	height:auto;
	overflow:hidden;
	display:grid;
	grid-template-columns:auto 60px;
	margin:auto;
	margin-top:20px;
	border:1px solid #4e42d3;
	max-width:1200px;
	border-radius:40px;
	padding:10px;
	margin-bottom:50px;
}
.new{
	padding:15px;
	font-size:1.4rem;
	color:#4e42d3;
	height:20px;
	line-height:20px;
	font-weight:bold;
}
#bt_new{
	width:60px;
	height:60px;
	overflow:hidden;
	display:flex;
	display:-webkit-flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	font-size:1.8rem;
	background-color:#4e42d3;
	color:#fff;
	border-radius:50%;
}