body,
html {
	background: #F8FAFE;
}

/* 商品详情 */
.product_wrap {
	/* height: 406px; */
	

}

.product {
	display: flex;
	width: 100%;
	height: 100%;
	margin-top: 112px;
	background: #FFFFFF;
}

.master_img {
	width: 300px;
	height: 300px;
	margin: 21px 20px 0 20px;
}

.product_detail {
	margin: 21px 20px 20px 0;
}

.item_name {
	font-size: 20px;
	font-weight: 500;
	color: #333333;
}

.item_brief {
	font-size: 14px;
	font-weight: 500;
	color: #999999;
	margin-top: 10px;
}

.product_price {
	display: flex;
	align-items: center;
	width: 840px;
	height: 80px;
	background: #F8F8F8;
	margin-top: 20px;
}

.item_sale {
	width: 75px;
	height: 28px;
	position: relative;
	margin: 0 5px 0 26px;
}
.item_sale img{
	/* width: 100%; */
	height: 100%;
}

.item_sale .sale {
	position: absolute;
	top: 0;
	left: 0;
}

.item_sale .sale_title {
	position: absolute;
	top: 4px;
	left: 9px;
	font-size: 14px;
	font-weight: 500;
	color: #FFFFFF;
}

.item_price {}

.item_price_label {
	font-size: 14px;
	font-weight: 500;
	color: #333333;
}

.item_new_price {
	font-size: 22px;
	font-weight: 500;
	color: #FE5938;
	margin-left: 10px;
}

.item_old_price {
	font-size: 14px;
	font-weight: 500;
	color: #999999;
	text-decoration: line-through;
	margin-left: 10px;
}

.product_pay_wrap {
	display: flex;
	margin-top: 23px;
	width: 100%;
}

.product_pay_type {
	/* margin-left: 17px; */
	width: 100%;
}

label {
	width: 70px;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	margin-right: 10px;
}

/* 服务地区 */
.service_area_wrap {
	display: flex;
	flex-grow: 1;
	/* align-items: center; */
}

.service_area_wrap label {
	flex-shrink: 0;
}
.service_all_area{
	width: 100%;
	flex-grow: 1;
}
.service_area {
	display: grid;
	grid-template-columns: repeat(9, 11.11%);
	grid-row-gap: 20px;
	/* grid-column-gap: 5px; */
	
}
.load_more{
	display: none;
}
.service_more_area {
	
	display: grid;
	grid-template-columns: repeat(9, 11.11%);
	grid-row-gap: 20px;
	flex-grow: 1;
	margin-top: 20px;
	/* display: none; */
}

.service_area li,
.service_more_area li {
	width: 64px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #DFE1E7;
	opacity: 1;
	border-radius: 3px;
	font-size: 14px;
	font-family: PingFang SC;
	font-weight: 500;
	color: #333333 ;
	margin-right: 10px;
}
.service_more_area li.select_active{
	border: 1px solid #1E80FD;
	color: #1E80FD;
}
.service_area li.select_active{
	border: 1px solid #1E80FD;
	color: #1E80FD;
}
/* 鼠标悬浮 */
.service_more_area li:hover ,.service_area li:hover,.more_area:hover{
	border: 1px solid #1E80FD;
	color: #1E80FD;
	cursor: pointer;
}

.more_area {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 30px;
	border: 1px solid #DFE1E7;
	border-radius: 3px;
	flex-shrink: 0;
	margin:0 30px 0 10px;
}
.downbox{
	display: inline-block;
	/* 可以设置宽高 */
	width: 16px;
	height: 16px;
	background-size: 100% 100%;
	background-image:url(./images/down_arrow.png);
}
.downbox.uparrow{
	background-image:url(./images/up_arrow.png);
}
/* 支付方式 */
.pay_type {
	margin-top: 26px;
}

.pay_type span {
	font-size: 14px;
	font-weight: 500;
	color: #333333;

}

/* 数量 */
.service_number {
	display: flex;
	align-items: center;
	margin-top: 21px;
}

.number {
	width: 72px;
	height: 30px;
	line-height: 30px;
	border: 1px solid #DFE1E7;
	opacity: 1;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	text-align: center;
	cursor: pointer;
}

/* 立刻购买 */
.product_buy_wrap {
	display: flex;
	align-items: center;
	margin-top: 24px;
}

.product_buy {
	display: flex;
	align-items: center;
}

.buy_btn {
	width: 120px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #0070FE;
	opacity: 1;
	border-radius: 3px;
	border: none;
	outline: none;
	font-size: 14px;
	color: #FFFFFF;
	margin-right: 50px;
}

.product_buy>.product_collect {
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_collect span {
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	margin-left: 8px;

}

.product_collect .collectbox {
	display: flex;
	/* 可以设置宽高 */
	width: 20px;
	height: 20px;
	background-size: 100% 100%;
	background-image: url(images/uncollect.png);
}

.product_collect>.collectbox.collect {
	background-image: url(images/collect.png);
}



/* 详情介绍 */
.introduct {
	background-color: #fff;
	/* margin-top: 20px; */
}

.introduct>.layui-tab>.layui-tab-title {
	margin: 23px 20px;
}

.introduct>.layui-tab-brief>.layui-tab-title .layui-this {
	font-size: 14px;
	font-weight: 500;
	color: #0070FE;
}

.introduct>.layui-tab-brief>.layui-tab-title .layui-this:after {
	border-bottom: 2px solid #0070FE
}

.layui-tab-item>img {
	width: 100%;
	/* height: 100%; */
}

.foo-wrapper {
	margin-top: 20px;
}
