/* 产品详情页面特有样式 */

/* 返回图标样式 */
.back-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: white;
    cursor: pointer;
    z-index: 1001;
}


/* 产品信息板块样式 */
.product-info-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.product-price {
    color: #ff6b35;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-sales {
    color: #999;
    font-size: 12px;
    margin-bottom: 10px;
}

/* 产品详情富文本板块样式 */
.product-details-section {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 70px; /* 为底部购买按钮留出空间 */
}

.product-details-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.product-details-content {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 底部购买按钮样式 */
.purchase-button {
    position: fixed;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background-color: #336df3;
    color: white;
    border: none;
    padding: 15px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
