@charset "utf-8";

/*--------------------------------------------------------------
# 商城
--------------------------------------------------------------*/
.product-box {
	padding: 100px 0;
	background: #ffffff;
}

.product-box .bar-bigtitle {
	color: #000;
	font-size: 36px;
	font-weight: bolder;
	margin-bottom: 21px;
	text-align: center;
}

.product-box .bar-tips {
	color: #58595B;
	font-size: 24px;
	text-align: center;
}

.product-box .floor-title {
	margin-bottom: 15px;
	margin-top: 60px;
}

.product-box .bar-title {
	color: #000;
	font-size: 36px;
}

.product-box .link-more {
	display: inline-block;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	background: #fff;
	color: #000;
	border: 1px solid #000;
	font-size: 14px;
	padding: 7px 17px;
	margin-top: 10px;

}

.product-box .link-more:hover {
	color: #000;
	background: #f7f7f7;
}

.goodslist {
	display: flex;
	flex-wrap: wrap;
	margin-right: -10px;

}

.goodslist .goodsitem {
	width: 25%;
	padding-right: 10px;
	box-sizing: border-box;
	margin-bottom: 15px;
}


.goodslist .goodsitem .goods {
	width: 100%;
	/* padding: 10px; */
	position: relative;
	background: #f4f4f4;
	/* box-shadow: 0px 0px 26px 0px rgb(215 212 212); */
}


.goodslist .goodsitem .goods .imgbox {
	width: 100%;
	position: relative;
	overflow: hidden;
	/* border: 3px solid #fff; */
}

.goodslist .goodsitem .goods .imgbox:hover {
	/* border: 3px solid #626262; */

}

.goodslist .goodsitem .goods .imgbox img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	transition: transform 0.4s ease-in-out;
}

.goodslist .goodsitem .goods:hover .imgbox img {
	/* opacity: .7 */
	transform: scale(1.1);
}

/* 
.goodslist .goodsitem .foo::before,
.goodslist .goodsitem .foo::after {
	width: 100%;
	height: 100%;
	z-index: 3;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	-webkit-transform: scale(0);
	transition: .5s
}

.goodslist .goodsitem .foo::before {
	border-bottom: 3px solid #fff;
	border-left: 3px solid #fff;
	-webkit-transform-origin: 0 100%
}

.goodslist .goodsitem .foo::after {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform-origin: 100% 0%
}

.goodslist .goodsitem .foo:hover::after,
.goodslist .goodsitem .foo:hover::before {
	-webkit-transform: scale(1)
} */

.goodslist .goodsitem .info {
	padding: 10px;
}

.goodslist .goodsitem .name {
	width: 100%;
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: 600;
	color: #000;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.goodslist .goodsitem .intro {
	width: 100%;
	height: 37px;
	font-size: 13px;
	font-weight: 400;
	color: #58595B;
	margin-top: 6px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
}

.goodslist .goodsitem .price {
	width: 100%;
	font-size: 18px;
	font-weight: bold;
	color: #000;
	margin-top: 15px;
}

.goodslist .goodsitem .btns {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.goodslist .goodsitem .btns .ant-btn {
	height: 34px;
	padding-right: 50px;
	font-size: 13px;
	border: 1px solid #85714d;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 10px;
	box-sizing: border-box;
	transition: all .3s;
	margin-top: 12px;
	cursor: pointer;
	background: transparent;
	white-space: nowrap;
}

/* .goodslist .goodsitem .btns .ant-btn:hover {
	color: #fff;
	background: #85714d;

} */

.goodslist .goodsitem .btns .add_cart {
	border: 1px solid #85714d;
	color: #85714d;
}

.goodslist .goodsitem .btns .buyNow {
	background: #85714d;
	border: 1px solid #85714d;
	color: #fff;
}

.goodslist .goodsitem .btns .add_cart:hover {

	background: #f4f4f4;

}

.goodslist .goodsitem .btns .add_cart em {
	width: 18px;
	height: 18px;
	background: url('../images/icon/car.png') no-repeat;
	background-size: 18px 18px;
}

.goodslist .goodsitem .btns .buyNow em {
	width: 18px;
	height: 18px;
	background: url('../images/icon/yjtwhite.png') no-repeat;
	background-size: 18px 18px;
}

/* .goodslist .goodsitem .btns .add_cart:hover em {
	width: 18px;
	height: 18px;
	background: url('../images/icon/carwhite.png') no-repeat;
	background-size: 18px 18px;
}

.goodslist .goodsitem .btns .buyNow:hover em {
	width: 18px;
	height: 18px;
	background: url('../images/icon/yjtwhite.png') no-repeat;
	background-size: 18px 18px;
} */

/* ===============
商品详情
 ==================*/
.product-intro {
	width: 100%;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

.product-intro .preview-wrap {
	float: left;
	width: 50%;
	padding-right: 40px;
}

/* 图片轮播*/
.product-intro .preview-wrap .slick-banner {
	position: relative;
	display: block;
	-ms-touch-action: pan-y;
	touch-action: pan-y;

	-webkit-tap-highlight-color: transparent;
}

.product-intro .preview-wrap .slick-banner .img-fluid {
	width: 100%;
	height: auto;
}

.product-intro .preview-wrap .slick-banner .slick-prev,
.product-intro .preview-wrap .slick-banner .slick-next {
	position: absolute;
	top: 50%;
	margin-top: -10px;
	z-index: 10;
	display: block;
	line-height: 0;
	font-size: 0;
	cursor: pointer;
	color: transparent;
	padding: 0;
	border: none;
	outline: none;
	width: 20px;
	height: 20px;
	background: url("../images/icon/big-arrow.png");
	background-size: 100% 100%;
}

.product-intro .preview-wrap .slick-banner .slick-prev .slick-disabled:before,
.product-intro .preview-wrap .slick-banner .slick-next .slick-disabled:before {
	opacity: 0.25;
}

.product-intro .preview-wrap .slick-banner .slick-next {
	transform: rotate(180deg);
	right: 10px;
}

.product-intro .preview-wrap .slick-banner .slick-prev {
	left: 10px;
}

.product-intro .itemInfo-wrap {
	float: left;

	width: 50%;

	min-height: 440px;
}



.product-intro .itemInfo-wrap .product-name {
	margin-bottom: 16px;
	font-size: 24px;
}

.product-intro .itemInfo-wrap .intro {
	margin-bottom: 36px;
	font-size: 13px;
	color: #58595B;
}

.product-intro .itemInfo-wrap .product-price {
	margin: 30px 0;
	font-size: 22px;
}

.product-intro .itemInfo-wrap .product-price .origin-price {
	color: #9b9b9b;
	text-decoration: line-through;
}

.product-intro .itemInfo-wrap .product-price .sell-price {
	color: #000;
	font-weight: bold;
}

.product-intro .itemInfo-wrap .btns {
	/* display: flex;
	align-items: center; */
	margin-top: 50px;
}

.product-intro .itemInfo-wrap .btns .ant-btn {
	width: 100%;
	height: 50px;
	padding-right: 50px;
	font-size: 15px;
	border: 1px solid #58595B;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 50px;
	box-sizing: border-box;
	transition: all .3s;
	margin-top: 12px;
	cursor: pointer;
	background: transparent;
	white-space: nowrap;

}

.product-intro .itemInfo-wrap .btns .ant-btn:hover {}

.product-intro .itemInfo-wrap .btns .add_cart {
	margin-right: 20px;
	border: 1px solid #85714d;
	color: #85714d;
}

.product-intro .itemInfo-wrap .btns .add_cart:hover {
	background: rgba(127, 127, 127, .05);
}

.product-intro .itemInfo-wrap .btns .buyNow {

	background: #85714d;
	border: 1px solid #85714d;
	color: #fff;
}

.product-intro .itemInfo-wrap .btns .add_cart em {
	width: 24px;
	height: 24px;
	background: url('../images/icon/car.png') no-repeat;
	background-size: 24px 24px;
}

.product-intro .itemInfo-wrap .btns .buyNow em {
	width: 24px;
	height: 24px;
	background: url('../images/icon/yjtwhite.png') no-repeat;
	background-size: 24px 24px;
}

/* .product-intro .itemInfo-wrap .btns .add_cart:hover em {
	width: 24px;
	height: 24px;
	background: url('../images/icon/carwhite.png') no-repeat;
	background-size: 24px 24px;
}

.product-intro .itemInfo-wrap .btns .buyNow:hover em {
	width: 24px;
	height: 24px;
	background: url('../images/icon/yjtwhite.png') no-repeat;
	background-size: 24px 24px;
}
 */

/* 商品介绍 */
.product-intro .goodsdetail {
	background: #fff;
	border-top: 3px solid #F4F4F4;
	padding-top: 60px;
	margin-top: 60px;
}

.product-intro .goodsdetail .title {
	height: 30px;
	line-height: 30px;
	margin-bottom: 60px;
	position: relative;
	font-size: 32px;
	color: #000;
	background: #FFFFFF;
	padding-left: 30px;
}

.product-intro .goodsdetail .title:before {
	content: "";
	position: absolute;
	left: 0;
	width: 6px;
	height: 30px;
	background-color: #000;
}

/* 商品详情 */
.product-intro .goodsdetail .description {
	font-size: 14px;
	background: #fff;
}

.product-intro .goodsdetail .description .content {}

.product-intro .goodsdetail .description .content img {
	width: 100%;
}

/* ==============加减数量=========== */
.choose-amount {
	position: relative;
}

.choose-amount .jian {
	width: 35px;
	line-height: 35px;
	font-size: 18px;
	float: left;
	border: 1px solid #f4f4f4;
	text-align: center;
	color: #686868;
	background: #fff;
	cursor: pointer;
	border-radius: 3px 0 0 3px;
}

.choose-amount .jian.disable {
	cursor: default;
	color: #d5d5d5;
}

.choose-amount .jia {
	width: 35px;
	line-height: 35px;
	font-size: 18px;
	float: left;
	border: 1px solid #f4f4f4;
	text-align: center;
	color: #686868;
	background: #fff;
	cursor: pointer;
	border-radius: 0 3px 3px 0;
}

.choose-amount .num {
	width: 60px;
	float: left;
	line-height: 35px;
	font-size: 14px;
	outline: none;
	border: 0;
	border-top: 1px solid #f4f4f4;
	border-bottom: 1px solid #f4f4f4;
	color: #000;
	text-align: center;
	background: transparent;
}

/* ==================购物车============= */

.page-cart {
	background: #fff;
	padding-bottom: 10px;
}

/* tab切换 */
.page-cart .cartab {
	width: 100%;
	border-radius: 10px 10px 0 0;
	background-color: #f4f4f4;
}

.page-cart .cartab .tabitem {
	width: 100%;

	padding: 10px 15px;

	color: #000;
	font-size: 14px;
	cursor: pointer;
	font-weight: bold;
	text-align: center;
}

.page-cart .cartab .tabitem:hover {
	text-decoration: none;
}

.page-cart .cartab .tabitem.active {
	background-color: #000;
	color: #fff;
	border-radius: 10px 10px 0 0;
}

.page-cart .cartab-box {
	margin-bottom: 60px;
}

.page-cart .nonenothing {
	padding-top: 20%;
	padding-bottom: 20%;
	text-align: center;

}

.page-cart .nonenothing .txt {
	color: #999;
	font-size: 14px;
}

.page-cart .nonenothing img {
	width: 20%;
	margin: 0 auto;
}

/* 左边 */
.page-cart .left-box {
	float: left;
	width: 58%;
	margin-right: 2%;
	background: #ffffff;
}


/* 右边 */
.page-cart .right-box {
	float: left;
	width: 40%;
	padding: 20px;
	background: #ffffff;
}

.page-cart label {
	cursor: pointer;
	display: flex;
	align-items: center;
	font-size: 16px;
}

.page-cart .right-box label {
	cursor: pointer;
	display: flex;
	align-items: flex-start;
}

/* 购物车列表 */
.page-cart .cartlist {}

.page-cart .cartlist.tabcon {
	display: none;
}

.cartlist .cart-item {
	overflow: hidden;
	position: relative;
	margin: 0 auto;

	padding: 15px 10px;
	border-bottom: 1px solid #f4f4f4;
}

.cartlist .cart-item:last-child {
	border-bottom: 0;
}

.cartlist .cart-item .shopimg {
	margin: 0 10px;
}

.cartlist .cart-item .shopimg .goods_img {
	width: 140px;
	height: 140px;
	border: 1px solid #f4f4f4;
	border-radius: 5px;
}

.cartlist .cart-item .product_info {
	overflow: hidden;
	font-size: 16px;
}

.cartlist .cart-item .product_info .product-name {
	font-size: 14px;
	/* font-weight: bold; */
	display: block;
	color: #222;
	text-decoration: none;
	margin-right: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cartlist .cart-item .del-icon {
	font-size: 20px;
	color: #ccc;
	text-decoration: none;
	padding-right: 10px;
}

.cartlist .cart-item .del-icon .icon {
	width: 18px;
	height: 18px;
}

.cartlist .cart-item .intro {
	font-size: 12px;
	color: #999;
	margin-top: 5px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cartlist .cart-item .product_info .pricesbox {
	color: #000;
	font-size: 14px;
	margin-top: 5px;

}

.cartlist .cart-item .product_info .pricesbox em {
	color: #000;
	font-size: 14px;
	/* font-weight: bold; */
}

.cartlist .cart-item .product_info .pricesbox .prices {
	color: #000;
	font-size: 14px;
	/* font-weight: bold; */
}

.cartlist .cart-item .product_info .pricesbox .pv {
	color: #000;
	font-size: 14px;
	/* font-weight: bold; */
}

.cartlist .cart-item .product_info .pricessale {
	margin-left: 5px;
	font-size: 12px;
	color: #C5C5C5;
	text-decoration: line-through;

}

.cartlist .cart-item .pvShopTotal {
	display: none;
}

.cartlist .cart-item .ShopTotal {
	display: none;
}



/*优惠券*/
.coupon-default {
	position: relative;
	width: 18px;
	height: 18px;
}

.coupon-default:before {
	content: '';
	display: inline-block;
	left: 0;
	top: 0px;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	text-align: center;
	position: absolute;
	background-color: #fff;
	border: 1px #bfbfbf solid;
}

.coupon-default:after {
	position: absolute;
	content: '';
	background-color: #000;
	border: 1px solid #000;
	width: 12px;
	height: 12px;
	top: 3px;
	left: 3px;
	border-radius: 100%;
}

/* 付款方式 */
.payment-method {
	border: 1px solid #F4F4F4;
	margin-bottom: 30px;
	position: relative;
}

.payment-method .biaoti {
	background: rgb(254, 254, 254);
	font-size: 16px;
	padding: 0 10px;
	position: absolute;
	top: -12px;
	left: 6px;
}

.payway {
	background: #FFFFFE;
	width: 100%;
	margin: 0 auto;
	padding-top: 20px;
	font-size: 14px;
	border-radius: 5px;
}

.payway .type-item {
	position: relative;
	padding: 15px;

	color: #000;
	cursor: pointer;
}

.payway .type-item:before {
	content: " ";
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	height: 1px;
	border-bottom: 1px solid #F4F4F4;
	color: #3333;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform: scaleY(.5);
	transform: scaleY(.5);
}

.payway .type-item:last-child:before {
	border-bottom: 0 solid #F4F4F4;
}

.payway .type-item {
	overflow: hidden;
	font-size: 16px;
	color: #000;
}

.payway .type-item .icon_img {
	width: 25px;
	height: 25px;
	vertical-align: middle;
}


.page-cart input[type="checkbox"] {
	display: none;
}

.page-cart .custom-checkbox {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: solid 1px #ddd;
	position: relative;
	cursor: pointer;
	margin-right: 10px;
	border-radius: 3px;
}

.page-cart input[type="checkbox"]:checked+.custom-checkbox {
	background: #000 url("../images/icon/check.png") no-repeat center;
	background-size: 14px auto;
	border: solid 1px #000;
	text-align: center;

	background-clip: padding-box;
}

.page-cart .custom-checkbox::after {
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: var(--checkbox-checkmark);
	position: absolute;
	top: 4px;
	left: 6px;
	transform: rotate(45deg);
	display: none;
}

.page-cart input[type="checkbox"]:checked+.custom-checkbox::after {
	display: block;
}

.page-cart .radio {
	border-radius: 0;
	border-radius: 3px;
}


.zhifu.active .radio {
	background: #000 url("../images/icon/check.png") no-repeat center;
	background-size: 14px auto;
	border: solid 1px #000;
	text-align: center;

	background-clip: padding-box;
}

/* 邮件地址 */
.choose-adr {
	position: relative;
	border: 1px solid #F4F4F4;
	margin-top: 30px;

	padding-left: 20px;
	padding-right: 20px;
	padding-top: 30px;
}

.choose-adr .biaoti {
	background: rgb(254, 254, 254);
	font-size: 16px;
	padding: 0 10px;
	position: absolute;
	top: -12px;
	left: 6px;

}

.choose-adr .btn-addr {
	min-width: 100px;
	color: #000;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	padding: 10px 20px;
	line-height: 1;
	background-color: #fff;
	border: 1px solid #646565;
	white-space: nowrap;

}

.choose-adr .btn-addr:hover {
	color: #fff;
	background-color: #000;
	cursor: pointer;
	text-decoration: none;
}

.choose-adr .txt-tip {
	color: rgba(0, 0, 0, .45);
	font-size: 14px;
	padding: 10px 0;
}

.choose-adr .addrtxt {
	color: #000;
	padding: 10px 0;
}

.choose-adr .addrtxt label {
	color: #000;
	padding: 10px 0;
}

.choose-adr .addrtxt .addresstop {
	width: 100%;
}

.choose-adr .addrtxt .addresstop .form-label,
.choose-adr .addrtxt .addressinfo .infoli .form-label {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	line-height: 21px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.choose-adr .addrtxt .addresstop input,
.choose-adr .addrtxt .addressinfo .infoli input {
	margin-bottom: 16px;
	font-size: 14px;
	font-family: SourceHanSansCN-Normal, SourceHanSansCN;
	font-weight: 400;
	color: #000;
	padding-left: 0;
	border: none;
	border-bottom: 1px solid #EBEBEB;
	display: block;
	width: 100%;
	padding: 10px 0;
	line-height: 1.5;
	background: transparent;
	box-sizing: border-box;
}

.choose-adr .addrtxt .addresstop input::placeholder,
.choose-adr .addrtxt .addressinfo .infoli input::placeholder {
	color: #999;
}

.choose-adr .addrtxt .addressinfo {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.choose-adr .addrtxt .addressinfo .infoli {
	width: 48%;
}

.choose-adr .addrtxt .tishi {
	font-size: 14px;
	font-weight: 400;
	color: #aa3131;
	line-height: 18px;
}

/* 结算 */
.cartab-box .setBox {
	margin-top: 15px;
	position: relative;
	border: 1px solid #F4F4F4;
	margin-top: 30px;

	padding-left: 20px;
	padding-right: 20px;
	padding-top: 15px;
}

.cartab-box .setBox .biaoti {
	background: rgb(254, 254, 254);
	font-size: 16px;
	padding: 0 10px;
	position: absolute;
	top: -12px;
	left: 6px;

}

.cartab-box .setBox .setleft-item {
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;

}

.cartab-box .setBox .setleft-item .tit {
	font-size: 14px;
	color: rgba(0, 0, 0, .65);
}

.cartab-box .setBox .setleft-item .num {
	font-size: 14px;
	color: #000;
	/* font-weight: bold; */
}

.cartab-box .setBox .pv_box {
	font-size: 16px;
	font-weight: 700;
	color: #000;
}

.cartab-box .setBox .pricenum {
	font-size: 16px;
	font-weight: 700;
	color: #000;
}

/* ===================d订单详情================ */

.goodsbox .topnav {
	display: flex;
	color: rgba(0, 0, 0, 0.88);
	font-weight: 600;
	background: #fafafa;
	border-bottom: 1px solid #f0f0f0;
	text-align: center;
}

.goodsbox {
	border: 1px solid #f0f0f0;
	margin-bottom: 30px;
}

.goodsbox .topitem {
	width: 25%;
	text-align: center;
	padding: 18px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.goodsinfo {
	display: flex;
	background: #fff;
}

.goodsbox .topitem img {
	width: 50px;
	height: 50px;
}

.orderinfo {
	display: flex;
	justify-content: space-between;
}

.orderinfo .left,
.orderinfo .right {
	width: 48%;
	border: 1px solid #000;
}

.orderinfo p {
	font-size: 14px;
	font-weight: 400;
	color: #000;
	margin-bottom: 16px;
	display: flex;
	flex-wrap: wrap
}

.orderinfo p span {
	display: block;
	width: 50%;
	box-sizing: border-box;
}

.orderinfo .card-body .pay {
	width: 100%;
	height: 36px;
	background: #F4F4F4;
	border-radius: 4px;
	margin: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 16px;
	box-sizing: border-box;
}

.orderBtn {
	margin: 30px auto;
	text-align: center;
}

button {
	cursor: pointer;
}

@media (max-width: 1024px) {}

@media (max-width:768px) {

	/* 商品列表 */
	.product-box {
		padding: 50px 0;
		background: #f8fafe;
	}

	.goodslist {
		padding: 0 15px;
	}

	.goodslist .goodsitem .goods:hover .imgbox img {
		opacity: 1;
	}

	.product-box .bar-bigtitle {
		color: #000;
		font-size: 36px;
		margin-bottom: 16px;
	}

	.product-box .bar-tips {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.product-box .floor-title {
		padding: 0 15px;
		margin-top: 10px;
	}

	.product-box .bar-title {
		font-size: 24px;
	}

	.product-box .link-more {
		font-size: 14px;
		padding: 5px 14px;
	}

	.goodslist .goodsitem {
		width: 100%;
	}

	/*  =============商品详情==============*/
	.product-intro {
		padding-top: 0;
		padding-bottom: 0;
	}

	.product-intro .preview-wrap {
		float: none;
		width: 100%;
		padding-right: 0px;
	}

	.product-intro .itemInfo-wrap {
		float: left;
		width: 100%;
		min-height: auto;
	}

	.product-intro .itemInfo-wrap {
		padding: 16px;
	}

	.product-intro .itemInfo-wrap .product-name {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.product-intro .itemInfo-wrap .intro {
		margin-bottom: 10px;
		font-size: 12px;
		color: #58595B;
	}

	.product-intro .itemInfo-wrap .product-price {
		margin: 20px 0;
		font-size: 22px;
	}

	.product-intro .itemInfo-wrap .btns {
		margin-top: 20px;
	}

	/* =========== */
	/* 商品介绍 */
	.product-intro .goodsdetail {
		border-top: 10px solid #F4F4F4;
		padding-top: 30px;
		margin-top: 10px;
	}

	.product-intro .goodsdetail .title {
		height: 20px;
		line-height: 20px;
		margin-bottom: 30px;
		font-size: 24px;
		padding-left: 20px;
	}

	.product-intro .goodsdetail .title:before {
		content: "";
		position: absolute;
		left: 0;
		width: 6px;
		height: 20px;
		background-color: #000;
	}

}

@media (max-width: 576px) {

	.page-cart .cartab-box {
		margin-bottom: 0px;
	}

	/* 左边 */
	.page-cart .left-box {

		width: 100%;
		margin-right: 0;

	}

	/* 右边 */
	.page-cart .right-box {

		width: 100%;
		padding: 20px;
		background: #ffffff;
	}

}