.content .left {
	width: 750px;
}
/*banner*/
.content .left .slider .swiper {
	position: relative;
	width: 750px;
	overflow: hidden;
	--swiper-theme-color: #B6000C;
}
.content .left .slider .swiper .swiper-wrapper {
	width: 750px;
	height: 500px;
}
.content .left .slider .swiper .swiper-wrapper .swiper-slide {
	width: 750px;
	height: 500px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
/* 缩略图导航样式 */
.content .left .thumbnail-navigation {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: none;
}
.content .left .thumbnail-container {
    overflow-x: hidden;
    padding: 10px 0;
    background-color: #F9F6F4;
    border-radius: 10px;
}
.content .left .thumbnail-wrapper {
    display: flex;
    gap: 15px;
    min-width: max-content;
}
.content .left .thumbnail-item {
    flex: 0 0 auto;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    opacity: 0.7;

    width: 80px;
    height: 60px;
    margin: 0 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.content .left .thumbnail-item:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}
.content .left .thumbnail-item.active {
    border-color: #B6000C;
    opacity: 1;
    box-shadow: none;
}
/*属性*/
.content .left .attribute {
	padding: 2rem 0;
	display: flex;
	flex-wrap: wrap;
}
.content .left .attribute .attr {
	border-collapse: collapse;
	width: 750px;
}
.content .left .attribute .attr td {
	border: 1px solid #ddd;
	padding: 4px 8px;
	word-break: break-all;
	line-height: 1.8;
}
.content .left .attribute .attr .key {
	background-color: #F9F6F4;
	width: 125px;
	text-align: right;
}
.content .left .attribute .attr .val {
	width: 250px;
}
/*详情*/
.content .left .detail {

}
.content .left .detail img {
	width: 750px;
}

.content .right {
	display: none;
	z-index: 9;
	position: fixed;
	top: 100px;
	width: 400px;
}
.content .right .cont {
	background-color: #F9F6F4;
	padding: 2em;
	flex: 1;
}
.content .right .cont .tit {
	font-weight: bold;
	font-size: 1.5em;
}
.content .right .cont .price {
	padding: 1rem 0;
}
.content .right .cont .price span {
	font-size: 1.2em;
	font-weight: bold;
}
.content .right .cont .contact {

}
.content .right .cont .contact a {
	display: inline-block;
	padding: 1em 2em;
	margin: 1em 0;
	background-color: #512F1F;
	color: #fff;
	border-radius: 5px;
}
.content .right .cont .contact a:hover {
	background-color: #B6000C;
}