* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: #f6f6f6;
}

a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

img {
	display: block;
	width: 100%;
}

span {
	display: inline-block;
	vertical-align: middle;
}

/* 头部 */
.header-navBar {
	width: 100%;
	height: 44px;
	background-color: transparent;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: transparent;
}

.header-center {
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	width: 64%;
	height: 44px;
	line-height: 44px;
	margin: 0 3%;
	text-align: center;
}

.header-navBar .header-center p {
	width: 100%;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 0.4rem;
	font-weight: bold;
	color: #fff;
}

.header-navBar-item {
	display: block;
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	width: 15%;
	height: 44px;
	line-height: 44px;
	text-align: center;
	color: #333;
}

.header-navBar .icon-return {
	display: inline-block;
	width: 0.4rem;
	height: 0.4rem;
	vertical-align: middle;
	background: url(../images/back-white.png) no-repeat center center;
	background-size: 100%;
}

.header-navBar .icon-share {
	display: inline-block;
	width: 0.4rem;
	height: 0.4rem;
	vertical-align: middle;
	background: url(../images/share-white.png) no-repeat center center;
	background-size: 100%;
}

.header-navBar-bg {
	background-color: #fff;
}

.header-navBar-bg .header-center p {
	width: 100%;
	height: 44px;
	line-height: 44px;
	text-align: center;
	font-size: 18px;
	font-weight: 100;
	color: #333;
}

.header-navBar-bg .icon-return {
	display: inline-block;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	background: url(../images/icon-back.png) no-repeat center center;
	background-size: 100%;
}

.header-navBar-bg .icon-share {
	display: inline-block;
	width: 22px;
	height: 22px;
	vertical-align: middle;
	background: url(../images/share-icon.png) no-repeat center center;
	background-size: 100%;
}
/* 头部 end */



#bgcolor-container {
	width: 100%;
	background-color: #eee;
	padding-bottom: 15px;
}


/* 模块一 */
.title-wrapper {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.title-wrapper .title-img {
	display: block;
	width: 100%;
}

.product-list-title {
	display: inline-block;
	width: auto;
	height: 35px;
	line-height: 35px;
	padding: 0px 30px;
	font-size: 18px;
	font-weight: bold;
	background: url(../images/title-bg.png) no-repeat center center;
	background-size: 100% 100%;
	color: #bd292c;
}

.container1,
.container2 {
	margin-top: 30px;
}

.product-list-one {
	width: 6rem;
	margin: 0 auto;
	margin-top: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.product-list-one-item {
	width: 2.95rem;
	margin: 0 0 0.1rem 0;
	background-color: #fff;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
	overflow: hidden;
}

.product-list-one-item:nth-child(odd) {
	margin-right: 0.1rem;
}

.item-one-img img {
	width: 2.95rem;
	height: 2.95rem;
}

.product-name {
	width: 100%;
	height: 30px;
	line-height: 15px;
	margin-top: 5px;
	padding: 0 5px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -moz-box;
	-moz-line-clamp: 2;
	-moz-box-orient: vertical;
	word-break: break-all;
	font-size: 14px;
	font-weight: 100;
}

.product-price-wrapper {
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 0 5px;
	color: #ff262b;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.product-price-wrapper span {
	display: inline-block;
}

.product-price {
	font-size: 16px;
}

.button {
	padding: 0px 3px;
	text-align: center;
	color: #fff;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	background-color: #f90e0a;
}


/* 模块二 */
.adv-module-list {
	margin-top: 20px;
}

.adv-module-item {
	width: 6rem;
	margin: 0 auto;
	background-color: #fff;
	margin-bottom: 5px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	border-radius: 8px;
}

.adv-module-item:last-child {
	margin-bottom: 0;
}

.adv-module-item-link {
	display: block;
	width: 100%;
	padding: 0.1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.adv-img-wrapper {
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.1rem;
}

.adv-img-wrapper img {
	width: 2.5rem;
	height: 2.5rem;
	/* -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px; */
}

.adv-product-info-wrapper {
	-webkit-flex-shrink: 0;
	-moz-flex-shrink: 0;
	-ms-flex-shrink: 0;
	flex-shrink: 0;
	width: 3.2rem;
	height: 2.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: start;
	justify-content: flex-start;
}

.adv-module-item .product-title {
	width: 100%;
	text-align: left;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -moz-box;
	-moz-line-clamp: 2;
	-moz-box-orient: vertical;
	word-break: break-all;
}

.product-description {
	margin-top: 5px;
}

.product-discount-wrapper {
	text-align: left;
	margin-top: 5px;
	padding-left: 10px;
}

.product-discount {
	display: inline-block;
	width: auto;
	height: 26px;
	padding: 0px 5px;
	font-size: 14px;
	background: url(../images/discount-bg.png) no-repeat center center;
	background-size: 100% 100%;
	color: #fff;
}

.adv-module-item .product-price-wrapper {
	margin-top: 5px;
	padding: 0 5px;
	color: #ff262b;
	font-size: 14px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}



/* 积分金额展示 */
.adv-module-item .integral-price-wrapper {
	margin-top: 5px;
}

.adv-module-item .integral-price {
	line-height: 16px;
	font-size: 12px;
	color: #da0303;
}

.adv-module-item .integral-price b {
	font-size: 16px;
}

.adv-module-item .integral-price b:nth-child(2) {
    word-break: break-all;
}

.adv-module-item .integral-price-wrapper .button {
	display: block;
	width: 70px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	background-color: #da0303;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
	border-radius: 6px;
	color: #ffffff;
	margin-top: 5px;
	float: right;
	margin-right: 3px;
}


.product-list-one-item .item-info {
	height: 69px;
}

.product-list-one-item .integral-price-wrapper {
	margin-top: 3px;
	margin-bottom: 5px;
	padding: 0 5px;
}

.product-list-one-item .integral-price {
	line-height: 15px;
	font-size: 12px;
	color: #da0303;
}

.product-list-one-item .integral-price b {
	font-size: 16px;
}

.product-list-one-item .integral-price b:nth-child(2) {
    word-break: break-all;
}