.locationNav {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
}
.locationNav a {margin: 0 4px;}

.projectTitle {
	width: 100%;
	height: 50px;
	text-align: center;
	font-size: 30px;
	display: none;
}
.projectSub {
	width: 1200px;
	font-size: 16px;
	margin-bottom: 25px;
	display: none;
}

.projectOption {
	width: 320px;
	height: 50px;
	display: flex;
	margin: 40px 0 20px;
}
.projectOption .projectOptionBtn {
	width: 160px;
	height: 100%;
	background: #FFFFFF;
	border: 1px solid #BFBFBF;
	border-left: none;
	box-sizing: border-box;
	font-size: 16px;
	color: #404040;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.projectOption .projectOptionBtn:first-child {border-left: 1px solid #BFBFBF;}
.projectOption .projectOptionBtn.active {background: #2662A2;border: none;color: #FFFFFF;transition: all .2s ease-in}

.productList {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.productItem {
	width: 285px;
	height: 300px;
	background: #FFFFFF;
	border: 1px solid #EDECEC;
	position: relative;
	cursor: pointer;
	margin-right: 15px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
.productItem:nth-child(4n){margin-right: 0}
.productItem:hover {box-shadow: 0 0 10px 8px #EEEEEE;transition: all .2s ease-in;}
.productItemTitle {
	width: 100%;
	height: 60px;
	text-align: center;
	line-height: 60px;
	font-size: 16px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.productItemImg {width: 100%;height: 240px}
