.basic {
    width: 100%;
    margin-top: 64px;
}

.basic .basic-container {
    margin: 0 auto;
    padding-top: 20px;
    border-bottom: 1px solid #eeeeee;
}

.basic-container .product-left,
.basic-container .product-right {
    padding: 20px;
    padding-top: 0px;
}

.basic-container .product-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /* 关键属性，允许换行 */
}

.product-left .product-covers {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
    /* padding: 10px; */
    /* border: 1px solid #eee; */

    border-top: 1px solid #eeeeee;
    /* border-bottom: 1px solid #eeeeee; */
    padding: 5px 0px;
}

.product-covers .product-cover-item {
    width: 100%;
    height: auto;
    font-size: 0;
}

.product-cover-item img {
    width: 100%;
/*    height: auto;*/
    max-height: 300px;
    border-radius: 4px;
}

.product-covers .product-next,
.product-covers .product-prev {
    width: 30px;
    height: 30px;
    top: 55%;
    /* background-color: #2c88cb; */
}

.product-covers .product-next {
    right: -42px;
}

.product-covers .product-prev {
    left: -42px;
}

.product-covers .product-next:after,
.product-covers .product-prev:after {
    font-size: 20px;
    color: #0420B2;
}


.product-left .product-cover {
    width: 100%;
    height: auto;
    text-align: center;
}

.product-cover img {
    width: 100%;
    max-height: 400px;
    padding-top: 2px;
    border-radius: 4px;
}

/* 放大镜效果样式 */
.magnifier-container {
    position: relative;
    display: inline-block;
    cursor: crosshair;
}

.product-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.magnifier {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 900px 900px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    display: none;
    pointer-events: none;
    z-index: 1000;
    transform: translate(-50%, -50%);
}

/* 移动端隐藏放大镜 */
@media (max-width: 768px) {
    .magnifier {
        display: none !important;
    }
}

/* 小图片样式 - 移除放大镜效果 */
.magnifier-container-small {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
}

.product-image-small {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.product-image-small:hover {
    transform: scale(1.1);
}


.product-right .product-breadcrumb {
    font-size: 12px;
    color: #cccccc;
    margin-left: -2px;
}

.product-breadcrumb span {
    color: #0420B2;
    display: inline-block;
    margin-right: 2px;
}

.product-breadcrumb a {
    color: #666666;
    display: inline-block;
    margin: 0px 2px;
}

.product-right .product-name {
    color: #3b3939;
    display: block;
    font-size: 30px;
    font-weight: 800;
    line-height: 38px;
    padding: 10px 0px;
}

.product-right .product-code {
    color: #AAAAAA;
    font-size: 13px;
    padding-bottom: 8px;
    font-style: italic;
}


.product-right .product-star {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.product-star img {
    width: 15px;
    height: 15px;
}
.product-star span{
    margin-left: 8px;
    padding-top: 2px;
    font-size: 12px;
    color: #333;
}

.product-right .product-price{
    padding: 15px 0px;
    letter-spacing: 1px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
}

.product-price .price-real{
    color: #AAAAAA;
    font-size: 30px;
    font-weight: bold;
}

.product-price .price-org{
    color: #202a4e;
    font-size: 24px;
    font-weight: bold;
    text-decoration: line-through;
}

.product-right .product-action{
    margin-top: 20px;
}

.btn-anchor{

}

    .btn-anchor:hover{
        color: #ffffff;
    }



    .desc {
        width: 100%;
    }

.desc .desc-container {
    margin: 0 auto;
    padding-top: 20px;
}

.desc-container .desc-title{
    color: #0420B2;
    font-size: 28px;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
}

.desc-container .desc-content{
    padding-bottom: 20px;
    line-height: 24px;
    font-size: 13px;
}

.desc-item{
    background-color: #f1f1f1;
    padding: 5px 10px;
    font-size: 13px;
    color: #555555;
}
.desc-item-even{
    background-color: #ffffff;
}

.desc .tableWrapper {
    width: 100%;
    padding: 0px !important
    line-height: 1;
}

    .desc .tableWrapper table {
        width: 100% !important;
        color: ##555555;
    }

    .desc .tableWrapper table tr {
        background-color: #f1f1f1 !important;
    }

        .desc .tableWrapper table tr td {
            padding: 8px 10px !important;
            vertical-align: top !important;
        }
    .desc .tableWrapper p {
        padding: 0px !important;
        margin: 0px !important;
    }