/**
 * 产品规格参数样式
 */

.product-specification-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.spec-row {
    display: flex;
    align-items: center;
}

.spec-label {
    flex: 0 0 40%;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    color: #555555;
}

.spec-value {
    flex: 1;
    font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 140%;
    letter-spacing: 0em;
    font-variation-settings: "opsz" auto;
    color: #555555;
    text-align: right;
}

/* 无数据状态 */
.spec-row.no-data {
    justify-content: center;
    padding: 40px 24px;
}

.spec-no-data {
    color: #999999;
    font-size: 14px;
}

/* 错误提示 */
.spec-error {
    padding: 20px;
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    border-radius: 4px;
    margin: 20px 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .spec-label {
        flex: 0 0 50%;
        font-size: 14px;
    }
    
    .spec-value {
        flex: 1;
        font-size: 14px;
    }
}

/* 打印样式 */
@media print {
    .spec-row {
        page-break-inside: avoid;
    }
}
