.description-text {
    white-space: pre-line;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* 产品和礼品详情页图片样式 */
.product-image-container {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.product-detail-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .product-image-container {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
        max-width: 600px;
    }
}