/* 圖片輪播 */
.img-slider{
}
.img-slider__imgbox{
	width: 100%;
	overflow: hidden;
}
.img-slider__imgbox:after {
	content: " ";
	padding-top: 100%;
	display: block;
}
/* 輪播主圖 */
.img-slider__list {
	position: relative;
	width: 100%;
	padding: 0;
	list-style: none;
	margin: 0;
}
/* 輪播主圖-項目 */
.img-slider__item {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}
/* 輪播主圖-當前 */
.img-slider__item--active {
	opacity: 1;
	z-index: 1;
}
.img-slider__img{
	/* position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	max-width: 100%;
	margin: auto; */
}
/*縮圖*/
.thumblist {
	font-size: 0;
	letter-spacing: -4px;
	word-spacing: 0;
	margin: -4px -4px 0;
	padding: 0;
	list-style: none;
	white-space: nowrap;
	overflow: auto;
	text-align: center;
}
/*縮圖-項目*/
.thumblist__item{
	display: inline-block;
	*display: inline;
	font-size: 16px;
	letter-spacing: normal;
	margin: 4px;
	vertical-align: middle;
	word-spacing: normal;
	width: calc(20% - 8px);
	zoom: 1;
	/* max-width: 80px; */
	border: 1px solid #e1e1e1;
}
/* 連結 */
.thumblist__link {
	display: block;
	background: #fff;
	border: 1px solid transparent;
	position: relative;
	overflow: hidden;
}
/*縮圖-active、hover、current*/
/* .thumblist__item:active .thumblist__link, */
/* .thumblist__item:hover .thumblist__link, */
.thumblist__item--current .thumblist__link{
	border-color: #074d97;
	border-color: var(--blue-lighter, #074d97);
	box-shadow: 0 2px 5px rgba(0,0,0,.152);
}
/* 縮圖-圖片 */
.thumblist__img{
	pointer-events: none;
}
@media screen and (min-width: 768px) {
	/*產品圖片框 productinfo__slider-圖片按鈕 thumblist*/
	.thumblist {
		margin: -4px;
	}
	.thumblist__item{
		margin: 4px;
	}
}
@media screen and (min-width: 1024px) {
	/*產品圖片框 productinfo__slider-圖片按鈕 thumblist*/
	.thumblist {
		margin: -7px;
	}
	.thumblist__item{
		margin: 7px;
		width: calc(20% - 14px);
	}
	.thumblist__item:active .thumblist__link,
	.thumblist__item:hover .thumblist__link {
		border-color: #074d97;
		border-color: var(--blue-lighter, #074d97);
		box-shadow: 0 2px 5px rgba(0,0,0,.152);
	}
}
@media screen and (min-width: 1230px) {
	/*產品圖片框 productinfo__slider-圖片按鈕 thumblist*/
	.thumblist {
		margin: -10px;
	}
	.thumblist__item{
		margin: 10px;
		width: calc(20% - 20px);
	}
}