html body {
	width: 100%;
	margin: 0;
	padding: 0;
}

.app {
	width: 100%;
	margin: 0;
	padding: 0;
	background-color: #E3F1FF;
  	padding-top: 80px;
  	position: relative;
}

.product-tabs {
	width: 80%;
	padding: 0 20px;
	height: 50px;
	margin: 20px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #C6E2FF;
	border-radius: 5px;
}

.product-item {
	padding: 5px 20px;
	color: #666;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;

}

.product-active {
	padding: 5px 20px;
	color: #274AFF;
	text-align: center;
	border-radius: 5px;
	background-color: #fff;
	font-weight: bold;
}

.product-list {
	padding: 20px;
	overflow: auto;
}

.product-list a{
	display: flex;
    justify-content: center;
    align-content: start;
    flex-wrap: wrap;
}

.product-list-item {
	width: 90%;
	height: 150px;
	display: flex;
	background-color: #fff;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
	margin-bottom: 15px;
}

.product-list-item img {
}

.product-list-item-right {
	margin-left: 20px;
}

.product-list-item-right .label {
	font-size: 22px;
	font-weight: bold;
	margin: 20px 0;
}

.product-list-item-right .value {
	font-size: 14px;
	color: #666;
}

.product-list-item  .type-box{
	display: flex;
	position: absolute;
	top: 20px;
	right: 20px;
}
.product-list-item .type-one {
	background-color: #E5E9FF;
	padding: 4px 8px;
	color: #274AFF;
	border-radius: 4px;
	margin-left: 5px;
}

.product-list-item .type-two {
	background-color: #FFF3E0;
	padding: 4px 8px;
	color: #FD9900;
	border-radius: 4px;
	margin-left: 5px;
}

.product-list-item .type-three {
	background-color: #E0F8F1;
	padding: 4px 8px;
	color: #26CE99;
	border-radius: 4px;
	margin-left: 5px;
}

.product-list-item .type-four {
	background-color: #EAE5FF;
	padding: 4px 8px;
	color: #533AFF;
	border-radius: 4px;
	margin-left: 5px;
}


