﻿#wrap_lnb {
	position:relative; 
	width:100%;
	z-index:99;
	border-bottom:1px solid #dddddd;
}


#wrap_lnb::after {
	display:block;
	clear:both;
	content:'';
}


#wrap_lnb > div {
	max-width:120rem; 
	margin:0 auto; 
	height:6rem;
	display:flex;
}
#wrap_lnb > div::after {
	display:block; 
	content:''; 
	clear:Both;
}

.lnb_home {
	display:flex;
	align-items:center;
	margin-right:2rem;
}

.lnb_home img {
	width:2.2rem;
	
}

.lnb_select {
	float:left; 
	position:relative; 
	width:20rem;
}
.lnb_select::before {
	position:absolute; 
	content:''; 
	top:1.8rem; 
	left:0; 
	width:1px; 
	height:2.5rem; 
	background:rgba(221,221,221,0.4);
}
.lnb_select:last-child::after {
	position:absolute; 
	content:''; 
	top:1.8rem;  
	right:0; 
	width:1px; 
	height:2.5rem; 
	background:rgba(221,221,221,0.4);
}

.lnb_select > button {
	width:100%; 
	position:relative; 
	height:6rem;
	display:flex;
	align-items:Center;
	padding-left:1.8rem;
	box-sizing:border-box; 
	cursor:pointer; 
	color:#666666; 
	font-weight:500;  
	background:none; 
	border:0; 
	text-align:left;
	font-size:1.7rem;
}

.lnb_select:last-child > button {
	font-weight:500;
	color:#222222;
}

.lnb_select > button::after {
	position:Absolute; 
	content:''; 
	top:46%; 
	transform:translateY(-50%) rotate(-135deg); 
	width:0.7rem; 
	height:0.7rem; 
	right:2rem; 
	border:0; 
	border-top:0.2rem solid #9c9c9c; 
	border-left:0.2rem solid #9c9c9c; 
	opacity:0.8; 
}

.lnb_select:last-child > button::after {
	border-top:0.2rem solid #000; 
	border-left:0.2rem solid #000; 
}


.lnb_select > ul {
	display:none; 
	position:absolute; 
	top:6rem; 
	width:100%;
	background:#f6f6f6; 
	border-top:1px solid #ddd;
}
.lnb_select > ul li {
	color:#fff; 
	box-sizing:border-box; 
	width:100%; 
	border-top:0.1rem solid #eee; 
	cursor:pointer;
}
.lnb_select > ul li a{
	color:#444; 
	display:block; 
	padding:1.6rem 2rem; 
	box-sizing:border-box;
	font-size:1.6rem;
}
.lnb_select > ul li:hover,
.lnb_select > ul li.on {
	background:#666;
	
}

.lnb_select > ul li:hover a,
.lnb_select > ul li.on a {
	color:#fff;
}

.lnb_select > ul li:first-child {
	border-top:0;
}

@media screen and (max-width:1260px){
	#wrap_lnb > div {
		width:100%;
	}
}


@media screen and (max-width:767px){
	.lnb_home {
		display:none;
	}
	.lnb_select {
		width:100%;
	}
	.lnb_select:not(:last-child) {
		display:none;
	}
	.lnb_select:last-child::after,.lnb_select::before {
		display:none;
	}

	
}