body > header nav>ul>li>a {
	color: #000;
}

/* ---------------------------------------------------------- */
.current-product {
	max-width: 1820px;
	width: 100%;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 80px 0px 30px 0px;
}
.current-product .default-breadcrumbs{
	padding: 100px 10px;
	padding-bottom: 0;
}
/* 商品容器，左右布局 */
.current-product-container {
    display: flex;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
	padding: 100px 0px 0px 0px;
}
/* 左侧图片展示区域 */
.current-product-images {
    width: 50%;
	position: relative;
}
.current-product-images .mySwiper .swiper-slide img{
	display: block;
	width: 100%;
	object-fit: cover;
	transition: transform 0.1s ease;
	cursor: zoom-in;
}
.current-product-images .mySwiper2{
	margin-top: 40px;
	height: 120px;
}
.current-product-images .mySwiper2 .swiper-slide{
	width: auto;
}
.current-product-images .mySwiper2 .swiper-slide img{
	height: 100%;
}
.current-product-images .mySwiper2 .swiper-slide {
  opacity: 0.4;
}
.current-product-images .mySwiper2 .swiper-slide-thumb-active {
  opacity: 1;
}
.current-product-images .swiper-next, .current-product-images .swiper-prev{
	position: absolute;
	right: 20px;
	top: 50%;
	z-index: 9;
	cursor: pointer;
	outline: none;
}
.current-product-images .swiper-next .fa, .current-product-images .swiper-prev .fa{
	font-size: 40px;
	color: #556CD6;
}
.current-product-images .swiper-prev{
	right: auto;
	left: 20px;
}


/* 主轮播图容器，设置固定宽高，溢出隐藏 */
.current-product-images .main-carousel {
    width: 100%;
    min-height: 880px;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}
/* 主轮播图的图片列表，通过 transform 控制滑动，设置 flex 让图片并排 */
.current-product-images .main-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.current-product-images .zoom-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.current-product-images .main-slides img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	flex-shrink: 0;
    transition: transform 0.3s ease;
}

.current-product-images .main-carousel:hover .main-slides img {
    transform: scale(1.5);
    cursor: zoom-in;
}

/* 主轮播图切换按钮样式 */
.current-product-images .main-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #666;
    border: 1px solid #d3d3d3;
    padding: 6px 12px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
	font-size: 20px;
    transition: background-color 0.3s ease;
}

.current-product-images .main-carousel button:hover {
    color: #888;
}

.current-product-images .prev-main {
    left: 10px;
}

.current-product-images .next-main {
    right: 10px;
}

/* 下方缩略图轮播容器 */
.current-product-images .thumbnail-carousel {
    width: 100%;
    height: 80px;
    overflow: hidden;
    position: relative;
}

/* 缩略图列表，同样用 flex 并排，transform 控制滑动 */
.current-product-images .thumbnail-carousel .thumbnail-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
	justify-content: center; 
	align-items: center; 
}

.current-product-images .thumbnail-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.current-product-images .thumbnail-carousel:active {
    cursor: grabbing;
}

.current-product-images .thumbnail-carousel::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.current-product-images .thumbnail-carousel .thumbnail-slides {
    display: inline-flex;
    height: 100%;
    padding: 0 10px;
}

.current-product-images .thumbnail-carousel .thumbnail-slides img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    border-radius: 4px;
}

/* 缩略图选中时的样式 */
.current-product-images .thumbnail-carousel .thumbnail-slides img.active {
    border-color: #d3d3d3;
}

/* 缩略图切换按钮 */
.current-product-images .thumbnail-carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.current-product-images .thumbnail-carousel button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* 右侧商品信息区域 */
.current-product-info {
    width: 40%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.current-product-info .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.current-product-info .price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.current-product-info .originalPrice {
    text-decoration: line-through; 
    margin-left: 10px; 
}

.current-product-info .note {
    color: #666;
    margin-bottom: 20px;
	font-size: 13px;
}

.current-product-info .purchase {
	padding: 20px 0px;
}
.current-product-info .purchase .purchase-title {
	margin-right: 10px;
}
.current-product-info .purchase .purchase-number {
	padding: 10px;
	border: 1px solid #d3d3d3;
	display: inline-block !important;
	text-align: center;
	width: 60px;
}
.current-product-info .shop-to-cart, .current-product-info .shop-pay-btn {
	text-align: center;
	min-height: var(--gravity-button-min-height);
	height: var(--gravity-button-height);
	width: var(--gravity-button-width, 260px);
	padding: 10px 20px;
	cursor: pointer;
	margin: 10px 0px;
}

.current-product-info .shop-to-cart{
	
}

.current-product-info .shop-pay-btn {
    padding: 10px 20px;
    border: none;
    color: #fff;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-right: 10px;
}

.current-product-info .shop-pay-btn {
    background-color: #556cd6;
}

.current-product-info .shop-pay-btn:hover {
    background-color: #4154b0;
}

.current-product-info .more-payment {
    display: block;
    margin-top: 10px;
    color: #333;
    text-decoration: underline;
    cursor: pointer;
    width: fit-content;
    transition: color 0.3s ease;
}

.current-product-info .more-payment:hover {
    color: #333;
}

.current-product-info .current-product-intro {
    margin-top: 15px;
    line-height: 1.6;
    color: #555;
}


/* ---------------------------------------------------------- */

.current-banner{
	width: 100%;
	margin: 0 auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	min-height: 792px;
}


/* ---------------------------------------------------------- */
.softwares {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.softwares .softwaresDiv{
	margin: auto;
	width: 100%;
	max-width: 1820px;
	box-sizing: border-box;
	padding: 100px 0px;
}
.softwares .softwaresDiv h3{
	max-width: 840px;
	margin-right: auto;
	margin-left: auto;
	display: block;
	font-size: 18px;
	color: inherit;
}
.softwares ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr); 
	gap: 20px; 
	margin: 100px 0 0;
	padding: 0;
	list-style: none;
}

.softwares ul li {
	position: relative;
	border-radius: 10px;
	background-color: #FFFFFF;
	padding: 35px 0;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
}

.softwares ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.softwares ul li .flex-item {
    margin: 20px;
}

.softwares ul li .flex-item .flex-item-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.softwares ul li .flex-item .flex-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

.softwares ul li .flex-item .flex-item-image img.img-first {
    opacity: 1;
}

.softwares ul li .flex-item .flex-item-image img.img-second {
    opacity: 0;
}

.softwares ul li .flex-item .flex-item-image:hover img.img-first {
    opacity: 0;
}

.softwares ul li .flex-item .flex-item-image:hover img.img-second {
    opacity: 1;
}

.softwares ul li .flex-item .flex-item-image .tip-issoldout{
	position: absolute;
	top: 10px;
	left: 10px;
	width: 52px; 
	height: 52px;
	border-radius: 50%; 
	background-color: red;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999; 
}
.softwares ul li .flex-item .flex-item-image .tip-issoldout span {
    display: block;
    text-align: center;
    line-height: 1;
	font-size: 12px;
}

.softwares ul li .flex-item .flex-item-image .btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.7);
}

.softwares ul li .flex-item .flex-item-image:hover .btn-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.softwares ul li .flex-item .flex-item-image .btn-wrapper a {
    display: block;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.softwares ul li .flex-item .flex-item-info {
    margin-top: 30px;
    text-align: center;
}

.softwares ul li .flex-item .flex-item-info h3 {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
    text-transform: capitalize;
}

.softwares ul li .flex-item .flex-item-info p {
    font-size: 14px;
    color: #333;
    margin: 8px 0;
}
