@charset "utf-8";

.product{
	width:100vw;
	height: 100vh;
	display: flex;
	background-size: cover;
	overflow: hidden;
}
.product-left{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width:240px;
	height: 100vh;
	background: #2e3035;
}
.prod-item{
	width:240px;
	height:65px;
	line-height:65px;
	border-top:1px solid #3c3d40;
	margin-bottom:1px;
	background:#2e3035 no-repeat 30px center;
	color:#fff;
	font-size:16px;
	text-align:center;
	cursor:pointer;
}
.prod-item.active,.prod-item:hover{
	background-color:#27282c;
	color:#80ed99;
}

.product-main{
	position:relative;
	width:calc(100% - 240px);
	height:100vh;
}
.product-detail{
	display:none;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.product-detail.active{
	display:block;
}
.product-detail img{
	width: 100%;
}
