@charset "UTF-8";
/* CSS Document */
.orderTable .productSetItem select, .productList .Img img, .productList .Img {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.productList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 -20px;
}
.productList .productItem {
	width: 33.3333333333%;
	padding: 0 20px 30px;
}
@media (max-width: 1400px) {
	.productList .productItem {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.productList .productItem {
		width: 100%;
	}
}
.productList .item {
	position: relative;
	overflow: hidden;
}
@media (min-width: 1201px) {
	.productList .item:hover .Img {
		border-color: #1C689C;
	}
	.productList .item:hover .Img img {
		-webkit-transform: scale(1.08);
		        transform: scale(1.08);
	}
	.productList .item:hover .Txt .text:after {
		width: 100%;
	}
}
.productList .Img {
	position: relative;
	background-color: #f2f2f2;
	border: 1px solid #dadada;
	overflow: hidden;
}
.productList .Img::before {
	color: #fff;
	display: block;
	line-height: 1;
	letter-spacing: 0.5px;
	padding: 4px 29px;
	font-size: 18px;
	line-height: 1;
	letter-spacing: 0.9px;
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	text-align: center;
	font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
	border-radius: 3px;
}
.productList .Img.statusNew::before {
	content: "NEW";
	background-color: #2f2f2f;
	border: 1px solid #2f2f2f;
}
.productList .Img.statusHot::before {
	content: "HOT";
	background-color: #1C689C;
	border: 1px solid #1C689C;
}
.productList .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.productList .Txt {
	position: relative;
	padding: 12px 0;
}
@media (max-width: 1180px) {
	.productList .Txt {
		padding: 10px 0 0px;
	}
}
.productList .topBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.productList .topBox .model {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-column-gap: 7px;
	   -moz-column-gap: 7px;
	        column-gap: 7px;
}
.productList .topBox .model p {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.7px;
	color: #1C689C;
}
.productList .topBox .model p:nth-child(2) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.productList .topBox .model p:nth-child(2):before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 1px;
	background-color: #1C689C;
	margin-right: 7px;
}
.productList .topBox .brand {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	font-size: 14px;
	line-height: 1.5;
	letter-spacing: 0.7px;
	color: #2f2f2f;
	font-weight: 500;
}
.productList .topBox .brand .tag {
	font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}
.productList .topBox .brand .classTitle {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
}
.productList .topBox .brand .classTitle:before {
	content: "/";
	display: inline-block;
	margin-left: 6px;
}
@media (max-width: 1400px) {
	.productList .topBox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
	}
	.productList .topBox .brand {
		margin-right: 0;
	}
}
.productList .bottomBox {
	padding-top: 10px;
	color: #2f2f2f;
}
.productList .bottomBox .title {
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.9px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 700;
}
.productList .bottomBox .text {
	border-top: 1px solid #dadada;
	margin-top: 7px;
	padding-top: 4px;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	/*height: 50px;*/
}
.productList .bottomBox .price {
	padding-top: 10px;
	font-family: "Oswald", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
	font-weight: 600;
	color: #1c689c;
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: 0px;
}
.productList .btnBox {
	margin-top: 28px;
}
.productList .btnBox .btn {
	padding: 12px 20px;
}

.normal {
	text-decoration: line-through;
}

.discount b {
	font-size: 18px;
	font-style: italic;
	color: #1C689C;
}

.insIntroBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 767px) {
	.insIntroBox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
}
.insIntroBox .introBox {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
@media (max-width: 767px) {
	.insIntroBox .introBox {
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
	}
}
.insIntroBox .introBox .articleTitle {
	margin-bottom: 15px;
	padding: 0 0 15px 0;
}
.insIntroBox .introBox .code {
	color: #666;
	display: block;
	font-size: 14px;
	font-weight: 400;
	padding: 3px 0;
	margin-bottom: 10px;
}

/*訂購規格區*/
.orderTable {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px dashed #e1e1e1;
}
.orderTable th {
	padding: 10px;
	font-size: 15px;
	color: #6c6c6c;
}
.orderTable td {
	padding: 10px;
	color: #6c6c6c;
}
.orderTable select {
	padding: 4px;
}
.orderTable tr:nth-child(odd) {
	background-color: #f1f1f1;
}
.orderTable b {
	font-weight: 400;
	font-size: 15px;
	color: #6c6c6c;
}
.orderTable .productSetItem {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-column-gap: 20px;
	   -moz-column-gap: 20px;
	        column-gap: 20px;
}
@media (max-width: 400px) {
	.orderTable .productSetItem {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		row-gap: 10px;
	}
}
.orderTable .productSetItem .spec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-column-gap: 10px;
	   -moz-column-gap: 10px;
	        column-gap: 10px;
	position: relative;
	width: 100%;
}
.orderTable .productSetItem .spec::before {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #626262;
	border-bottom: 2px solid #626262;
	pointer-events: none;
	position: absolute;
	bottom: 20px;
	right: 14px;
	z-index: 1;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.orderTable .productSetItem label {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.orderTable .productSetItem select {
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	background-color: transparent;
	font-size: 16px;
	outline: none;
	padding: 5px 25px 5px 10px;
	margin: 0;
	width: 100%;
	height: 45px;
	border: 1px solid #dadada;
	border-radius: 3px;
	color: #737373;
	font-weight: 500;
	position: relative;
}
.orderTable .productSetItem select:focus {
	border-color: #1C689C;
}
.orderTable .productSetItem select:disabled {
	background-color: #e5e5e5 !important;
	color: #737373 !important;
}
.orderTable .priceBox {
	padding: 10px 0;
}
.orderTable .priceBox .priceItem {
	line-height: 1.2;
	letter-spacing: 0.5px;
}
.orderTable .priceBox .priceItemOriginal, .orderTable .priceBox .priceItemSelling, .orderTable .priceBox .priceItemDefault {
	font-size: 17px;
	font-weight: 500;
	padding: 5px 0;
}
.orderTable .priceBox .priceItemOriginal span, .orderTable .priceBox .priceItemSelling span, .orderTable .priceBox .priceItemDefault span {
	display: inline-block;
}
.orderTable .priceBox .priceItemOriginal span:first-child, .orderTable .priceBox .priceItemSelling span:first-child, .orderTable .priceBox .priceItemDefault span:first-child {
	margin-right: 3px;
}
.orderTable .priceBox .priceItemOriginal, .orderTable .priceBox .priceItemSelling {
	/*display: none;*/
}
.orderTable .priceBox .priceItemOriginal {
	color: #bbb;
}
.orderTable .priceBox .priceItemOriginal span {
	position: relative;
}
.orderTable .priceBox .priceItemOriginal span::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #9f9f9f;
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
}
.orderTable .priceBox .priceItemSelling {
	color: #1C689C;
}
.orderTable .countBox {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 10px 0;
}
.orderTable .countBox b {
	margin-right: 20px;
	font-size: 14px;
	color: #434343;
	letter-spacing: 0.1em;
}
.orderTable .countBox .countItemBox {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	width: 130px;
	height: 30px;
	border: 1px solid #e1e1e1;
}
.orderTable .countBox .countItemBox .countBtn {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	background-color: #1C689C;
}
.orderTable .countBox .countItemBox .count {
	width: calc(100% - 60px);
	height: 30px;
	line-height: 30px;
	border: 1px solid #e1e1e1;
	border-top: none;
	border-bottom: none;
	font-size: 15px;
	color: #959595;
	text-align: center;
	letter-spacing: 0.1em;
}
.orderTable .countBox .countItemBox .countLess::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -1px;
	width: 6px;
	height: 2px;
	background-color: #fff;
}
.orderTable .countBox .countItemBox .countAdd::before, .orderTable .countBox .countItemBox .countAdd:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #fff;
}
.orderTable .countBox .countItemBox .countAdd::before {
	margin-left: -6px;
	margin-top: -1px;
	width: 12px;
	height: 2px;
}
.orderTable .countBox .countItemBox .countAdd::after {
	margin-left: -1px;
	margin-top: -6px;
	width: 2px;
	height: 12px;
}
.orderTable .btnBox {
	margin-top: 30px;
}

.promotionArea .moduleWrap {
	max-width: 480px;
}
.promotionArea .promotionBox {
	margin: 30px 0;
}
.promotionArea .promotionBox .btn1 {
	margin-top: 20px;
}


.textEditor img {
	width: 100%;
}