@charset "utf-8";
/* 투어머치 전현진 2020-12-15 */

/* 제품소개 */
#productList {
	position: relative;
	padding-bottom: 8px;
	background-color: #f7f7f7;
}

#productList ul li {
	width: 100%;
	margin-top: 8px;
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
	box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
}

#productList ul li:last-child {
	-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0);
	-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0);
	box-shadow: 0px 2px 5px rgba(0,0,0,0);
}

#productList ul li a {
	display: block;
}

#productList ul li a em {
	display: block;
	font-size: 0;
}

#productList ul li a em img {
	width: 100%;
}

#productList ul li a span {
	display: block;
	padding: 4vw;
	background-color: #fff;
	text-align: center;
}

@media screen and (min-width:600px) {
	#productList ul li {
		width:49.5%;
		margin-left: 1%;
	}
	
	#productList ul li:nth-child(2n+1) {
		margin-left: 0;
	}

	#productList ul li:last-child {
		-moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
		-webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
		box-shadow: 0px 2px 5px rgba(0,0,0,0.08);
	}

	#productList ul li a span {
		overflow: hidden;
		padding: 10px 10px 20px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media screen and (min-width:767px) {
	#productList ul li {
		width: 32.6%;
	}
	
	#productList ul li:nth-child(2n+1) {
		margin-left: 1%;
	}
	
	#productList ul li:nth-child(3n+1) {
		margin-left: 0;
	}
}

@media screen and (min-width:1240px) {
	#productList {
		background-color: rgba(255,255,255,0);
	}
	
	#productList ul li,
	#productList ul li:last-child {
		width: 24.25%;
		overflow: hidden;
		margin-bottom: 1%;
		border-top: 3px solid #fff;
		border-bottom: 3px solid #fff;
		border-radius: 5px;
		-moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
		-webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
		box-shadow: 0px 0px 0px rgba(0,0,0,0.0);
	}
	
	#productList ul li:nth-child(3n+1) {
		margin-left: 1%;
	}
	
	#productList ul li:nth-child(4n+1) {
		margin-left: 0;
	}

	#productList ul li a {
		padding-top: 10px;
	}

	#productList ul li:hover {
		border-top: 3px solid #DD0B14;
		border-bottom: 3px solid #DD0B14;
		-moz-box-shadow: 0px 2px 15px rgba(0,0,0,0.15);
		-webkit-box-shadow: 0px 2px 15px rgba(0,0,0,0.15);
		box-shadow: 0px 2px 15px rgba(0,0,0,0.15);
	}

	#productList ul li:hover a span {
		color: #DD0B14;
	}
}


/* 제품소개 - 뷰 */
#productView {
	position: relative;
	padding: 0 20px;
}

#productView h3 {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 500;
}

#productView h3 em {
	display: block;
	font-family: 'S-CoreDream-8Heavy';
	letter-spacing: -.5pt;
	color: #212121;
}

#productView h3 .request-btn {
	font-size: 14px;
	margin-top: 10px;
}

#productView .pbi-slide {
	position: relative;
	overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
	border: 1px solid #dcdcdc;
	font-size: 0;
}

#productView .pbi-slide ul li img {
	width: 100%;
}

#productView .pbi-slide .swiper-arrow {
	position: absolute;
	top: 50%;
	display: block;
	width: 40px;
	height: 40px;
	line-height: 38px;
	margin-top: -20px;
	border: 1px solid rgba(0,0,0,0.1);
	background-color: rgba(255,255,255,0.7);
	text-align: center;
	font-size: 16px;
	color: #999;
	border-radius: 50%;
	z-index: 1000;
	opacity: 0.8;
}

#productView .pbi-slide .swiper-arrow.swiper-next {
	right: 10px;
}

#productView .pbi-slide .swiper-arrow.swiper-prev {
	left: 10px;
}

#productView .pbi-down {
    max-width: 480px;
	margin: 20px auto 0;
}

#productView .pbi-down h5 {
	margin-bottom: 10px;
	font-family: 'S-CoreDream-7ExtraBold';
	font-size: 16px;
	color: #212121;
}

#productView .pbi-down ul li {
	position: relative;
	border-bottom: 1px solid #dcdcdc;
}

#productView .pbi-down ul li:first-child {
	border-top: 1px solid #dcdcdc;
}

#productView .pbi-down ul li a {
	display: block;
	height: 50px;
	line-height: 50px;
	padding-left: 10px;
}

#productView .pbi-down ul li a:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 4px;
	height: 4px;
	margin-top: -2px;
	background-color: #666;
	border-radius: 50%;
	content: '';
}

#productView .pbi-down ul li a em.subject {
	display: block;
	padding-right: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#productView .pbi-down ul li a span.downbtn {
	position: absolute;
	top: 7px;
	right: 0;
	display: inline-block;
	height: 36px;
	line-height: 34px;
	padding: 0 10px;
	border: 1px solid #2F92CB;
	color: #2F92CB;
	border-radius: 5px;
}

#productView .pbi-spec {
	margin-top: 20px;
}

#productView .product-construction {
	padding-top: 40px;
	margin-top: 40px;
	border-top: 1px solid #ccc;
}

#productView .product-construction h4 {
	position: relative;
	margin-bottom: 20px;
	font-size: 18px;
}

#productView .product-construction h4 em {
	font-family: 'S-CoreDream-7ExtraBold';
	color: #212121;
}

#productView .product-construction h4 .swiper-arrow {
	position: absolute;
	top: 50%;
	margin-top: -18px;
	display: block;
	width: 36px;
	height: 36px;
	line-height: 34px;
	border: 1px solid rgba(0,0,0,0.15);
	color: #999;
	font-size: 16px;
	text-align: center;
	border-radius: 50%;
}

#productView .product-construction h4 .swiper-arrow.swiper-next {
	right: 0;
}

#productView .product-construction h4 .swiper-arrow.swiper-prev {
	right: 40px;
}

#productView .product-construction .construction-slide {
	overflow: hidden;
}

#productView .product-construction .construction-slide ul li .construction-pic em {
	display: block;
	font-size: 0;
}

#productView .product-construction .construction-slide ul li .construction-pic em img {
	width: 100%;
}

#productView .product-construction .construction-slide ul li .construction-pic span.txt {
	display: block;
	margin-top: 10px;
}

#productView .product-construction .construction-con {
	margin-top: 20px;
}

#productView .product-construction .construction-con h5 {
	position: relative;
	margin-bottom: 10px;
	font-family: 'S-CoreDream-7ExtraBold';
	font-size: 16px;
	color: #212121;
}

#productView .product-construction .construction-con h5:before {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	background-color: #dcdcdc;
	z-index: -1;
	content: '';
}

#productView .product-construction .construction-con h5 em {
	display: inline-block;
	padding-right: 10px;
	background-color: #fff;
}

#productView .product-construction .construction-con .cons-product a {
	display: block;
	margin-bottom: 20px;
	text-align: center;
}

#productView .product-construction .construction-con .cons-product a em {
	display: block;
	font-size: 0;
}

#productView .product-construction .construction-con .cons-product a span {
	display: block;
	margin-top: 5px;
}

@media screen and (min-width:639px) {
    #productView .pbi-slide {
        border-radius: 10px;
    }
}

@media screen and (min-width:767px) {
	#productView {
		padding: 0 40px;
	}

	#productView h3 {
		position: relative;
		margin-bottom: 40px;
		font-size: 30px;
        text-align: center;
	}

	#productView h3 .request-btn {
		position: absolute;
		top: 50%;
		right: 0;
		padding: 0 20px;
		margin-top: -25px;
		height: 50px;
		line-height: 50px;
		font-size: 16px;
	}

	#productView .pbi-slide .swiper-arrow {
		top: auto;
		bottom: 10px;
	}

	#productView .pbi-down {
		margin-top: 30px;
	}

	#productView .pbi-down h5 {
		margin-bottom: 20px;
		font-size: 18px;
	}

	#productView .pbi-spec {
		margin-top: 40px;
	}

	#productView .product-construction {
		padding-top: 50px;
		margin-top: 50px;
	}

	#productView .product-construction h4 {
		margin-bottom: 30px;
		font-size: 24px;
	}

	#productView .product-construction h4 em {
		font-family: 'S-CoreDream-7ExtraBold';
		color: #212121;
	}

	#productView .product-construction h4 .swiper-arrow {
		margin-top: -20px;
		width: 40px;
		height: 40px;
		line-height: 38px;
		font-size: 16px;
	}

	#productView .product-construction h4 .swiper-arrow.swiper-prev {
		right: 44px;
	}

	#productView .product-construction .construction-slide ul li .construction-pic span.txt {
		font-size: 16px;
	}

	#productView .product-construction .construction-con {
		margin-top: 30px;
	}

	#productView .product-construction .construction-con h5 {
		margin-bottom: 30px;
		font-size: 20px;
	}

	#productView .product-construction .construction-con h5 em {
		padding-right: 20px;
	}

	#productView .product-construction .construction-con .cons-product {
		font-size: 0;
	}

	#productView .product-construction .construction-con .cons-product a {
		display: inline-block;
		width: 25%;
	}

	#productView .product-construction .construction-con .cons-product a span {
		margin-top: 10px;
		font-size: 14px;
	}
}

@media screen and (min-width:1240px) {
}

@media screen and (min-width:1440px) {
}


/* 스펙박스 */
.spec-box h4 {
	position: relative;
	line-height: 20px;
	margin-bottom: 20px;
	font-size: 16px;
}

.spec-box h4 small,
.spec-box h4 strong {
	display: inline-block;
	padding-bottom: 5px;
	vertical-align: bottom;
}

.spec-box h4 small {
	padding-right: 10px;
	border-bottom: 3px solid #666;
	color: #999;
}

.spec-box h4 strong {
	border-bottom: 3px solid #212121;
	color: #000;
}

@media screen and (min-width:639px) {
	.spec-box h4 {
		margin-bottom: 30px;
		font-size: 20px;
	}
}

@media screen and (min-width:767px) {
	.spec-box h4 {
		margin-bottom: 40px;
		font-size: 24px;
		letter-spacing: -.25pt;
	}

	.spec-box h4 small,
	.spec-box h4 strong {
		padding-bottom: 10px;
	}
}


/* 제품소개 테이블 */
.spec-tbl {
	border-top: 1px solid #DD0B14;
}

.spec-tbl th,
.spec-tbl td {
	padding: 5px;
	border-bottom: 1px solid #DCDCDC;
	border-right: 1px solid #dcdcdc;
	color: #666;
	text-align: center;
	font-size: 12px;
}

.spec-tbl th:last-child,
.spec-tbl td:last-child {
	border-right: none;
}

.spec-tbl th {
	color: #212121;
	background-color: #f7f7f7;
	font-weight: 500;
}

.optionbox {
    margin-top: 20px;
}

.optionbox.nomargin {
    margin-top: 0px;
}

.optionbox h4 {
    margin-bottom: 10px;
    color: #DD0B14;
    font-size: 16px;
}

.optionbox h4 em {
    display: inline-block;
}

.optionbox h4 span {
    display: inline-block;
    margin-left: 5px;
}

.optionbox ul {
    border-top: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.optionbox ul li {
    width: 33.3333%;
    padding: 20px;
    border-right: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    text-align: center;
}

.optionbox ul li em {
    display: block;
}

.optionbox ul li span {
    display: block;
    margin-top: 5px;
}

.optionbox .comment {
    margin-top: 10px;
}

@media screen and (min-width:1440px) {
	.spec-tbl th,
	.spec-tbl td {
		padding: 10px 5px;
	}
}