@charset "utf-8";

.tabs {
	margin: 8px;
	font-size: 18px;
	margin-bottom: 50px;
	display: flex;
	justify-content: space-between;
	cursor: pointer;
}
.tabs .tab {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 30px;
	background-color: #EEEEEE;
	color: #000000;
	font-weight: 700;
	border-radius:20px
}
.tabs .active {
	background-color: #707070;
	color: #FFFFFF;
}
.menu {
	padding-bottom: 50px;
	text-align: center;
}
.menu li {
	display: inline-block;
	border-right:1px solid #CCCCCC;
	padding: 20px;
	height: 5px;
  }
.menu li:first-child {
    border-left: 1px solid #CCCCCC;
}
.brandList {
	display: flex;
	flex-wrap: wrap;
}
.brandList li {
	flex: 0 1 180px;
	font-size: 15px;
	padding-bottom: 20px;
}
