  .main-content {
    padding: 30px 130px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        font-size: 16px;
  }

  #coverImgList {
    margin-top: 15px;
  }
.currentCoverImgBox {
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* 隐藏溢出，使得放大的图片部分不可见 */
}

.currentCoverImgBox img {
    width: 400px;
    height: 400px;
    transition: transform 0.5s ease;
    /* 过渡效果，0.5秒完成缩放，ease函数让动画更平滑 */
}

/* 鼠标悬停时应用放大的变换 */
.currentCoverImgBox:hover img {
    transform: scale(2);
    /* 图片放大1.1倍 */
}

.productInfo-container {
    padding-left: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
}

.productInfo {
    margin-left: 25px;
}

.part {
    font-size: 14px;
    font-weight: 700;
    color: #777;
}

.product_meta {
    padding: 10px;
    border-top: 1px solid #e3e3e3;
    border-bottom: 1px solid #e3e3e3;
    margin: 25px 0;
    font-size: 12px;
}

.productName {
    font-size: 20px;
    color: #404040;
    font-weight: 700;
    margin-bottom: 10px;
}

.relatedProduct-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.relatedProduct-container .product-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-item {
    margin: 0 15px;
    animation: fadeIn 0.5s;
}

.product-item .product-name {
    font-weight: bold;
    color: #2e2e2e;
    margin-top: 15px;
    width: 250px;

}
.product-item .product-covertImg {
    width: 255px;
    height: 255px;
    object-fit: cover;
}

.relatedProduct-wrapper {
    margin-top: 40px;
}

.product-item img {
    height: 270px;
    width: 270px;
    object-fit: cover;
}

.product-item .product-price {
    color: #777777;
    font-size: 26px;
}

.product-itme .product-name :hover {
    color: #f97352;
}

.skuPrice {
    margin-top: 20px;
}

.cleanPart {
    font-size: 12px;
    padding: 5px 3px;
    font-style: italic;
    color: #999;
    display: none;
}

.price {
    font-size: 26px;
    color: #f97352;
    font-weight: 700;
    line-height: 1;
}

.coverImgItem {
    margin-right: 8px;
}

.productDesc {
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff;
    background-color: #F97352;
}