/*
 * 修复商品详情页图片显示问题
 * 问题：图片右侧被侧边栏遮挡
 * 解决：限制图片最大宽度，使其适应容器
 */

/* 商品介绍区域的图片自适应 */
.right .detail-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* 确保商品介绍容器有足够的宽度 */
#wrapper .mc {
    width: 820px;
    overflow: hidden;
}

/* 商品介绍内容区域 */
.right .detail-content {
    padding: 10px 0px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* 商品介绍中的段落 */
.right .detail-content p {
    margin: 10px 0;
    line-height: 0;
}

/* 确保右侧快捷操作栏不遮挡内容 */
.ce_right {
    width: 160px;
    position: absolute;
    right: 0;
    top: 37px;
    background: #F5F5F5;
    z-index: 100;
}
