@charset "utf-8";
.owl-thumbnail-slider-container {
	max-width: 100%;
	margin: 0 auto 30px;
}

.main-carousel {
	width: 100%;
	margin-bottom: 10px;
}

.main-carousel .item {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;

	background: #edaeb4 url(/images/pattern-damask.png) center;
	overflow: hidden;
}

.main-carousel .item img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.owl-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	padding: 10px;
	font-size: 14px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.main-carousel .item:hover .owl-caption {
	opacity: 1;
}

.main-carousel .owl-prev,
.main-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.main-carousel .owl-prev {
	left: 10px;
}

.main-carousel .owl-next {
	right: 10px;
}

.main-carousel .owl-prev-icon:before {
	content: "\2039";
	/* 左矢印 */
}

.main-carousel .owl-next-icon:before {
	content: "\203A";
	/* 右矢印 */
}

.thumbnail-carousel {
	width: 100%;
}

.thumbnail-carousel .owl-stage {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	transform: none !important;
	width: 100% !important;
}

.thumbnail-carousel .owl-item {
	width: auto !important;
	max-width: 20%;
	flex: 0 0 auto;
}

.thumbnail-carousel .item {
	padding: 2px;
	cursor: pointer;
}

.thumbnail-carousel .item img {
	width: 100%;
	height: 80px;
	object-fit: cover;
	border: 2px solid transparent;
	transition: border-color 0.3s;
}

.thumbnail-carousel .active-thumbnail img {
	border-color: rgb(115, 99, 87);
}

.thumbnail-carousel .owl-prev,
.thumbnail-carousel .owl-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.5) !important;
	border-radius: 50% !important;
	color: white !important;
	font-size: 18px !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.thumbnail-carousel .owl-prev {
	left: 0;
}

.thumbnail-carousel .owl-next {
	right: 0;
}

@media (max-width: 992px) {
	.thumbnail-carousel .owl-item {
		max-width: 25%;
	}
}

@media (max-width: 768px) {
	.thumbnail-carousel .item img {
		height: 60px;
	}

	.thumbnail-carousel .owl-item {
		max-width: 33.333%;
	}

}

@media (max-width: 480px) {
	.thumbnail-carousel .item img {
		height: 50px;
	}

	.thumbnail-carousel .owl-item {
		max-width: 25%;
	}
}

.owl-theme .owl-nav [class*='owl-']:hover {
	background-color: transparent
}

.owl-nav span {
	position: relative;
	display: inline-block;
	cursor: pointer;
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
	text-align: center;
	background-color: #fff;
	color: #bd9472;
	box-shadow: 0 0 5px rgba(97, 75, 75, .15);
	transition: box-shadow .2s ease-in-out
}

.owl-theme .owl-nav [class*='owl-']:hover span {
	box-shadow: 0 0 15px rgba(97, 75, 75, .5)
}

.owl-nav span::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 1px;
	border-radius: 50%;
	width: calc(2rem - 2px);
	height: calc(2rem - 2px);
	border: 1px solid #bd9472
}

.owl-theme .owl-dots {
	margin-top: 11px
}

.owl-theme .owl-dots .owl-dot span {
	margin: 5px 5px;
	background-color: #eee4dc;
	transition: background-color .2s ease-in-out
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background-color: #efb0b6
}

.owl-nav {
	position: absolute;
	top: calc(50% - 1.75rem);
	left: 0;
	width: 100%;
	margin-top: 0
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
	position: absolute;
	top: 0;
	padding: 0;
	background-color: transparent;
	margin: 0
}
.owl-nav .owl-prev {
	left: 0;
	transform: translateX(-50%)
}
.owl-nav .owl-next {
	right: 0;
	transform: translateX(50%)
}

