body {
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
    background-color: #f8f9fa;
    padding: 0px;
    margin: 0;
}

.specs-list {
    list-style: none;
    padding: 0;
    font-size: 12px;
    line-height: 1;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.spec-item {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid #f1f5f9;
    padding: 8px 0;
}

.specs-list .spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: normal;
    color: #64748b;
    margin-right: 8px;
    min-width: 100px;
    display: flex;
    align-items: center;
    font-size: 12px;
}

.spec-value {
    font-weight: normal;
    color: #1e293b;
    font-size: 12px;
}

.spec-icon {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    font-size: 10px;
    /* 统一设置所有图标为同一个颜色（这里选用清新蓝，可自行修改十六进制色值） */
    color: #1890ff;
}

.highlight {
    background: #e6f7ff;
    color: #1890ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: normal;
}

.divider {
    height: 12px;
    width: 1px;
    background: #cbd5e1;
    margin: 0 8px;
}

.traffic-note {
    /* 保留样式但隐藏（因已删除备注文字，无需显示） */
    font-weight: normal;
    color: #666666;
    font-size: 10px;
    margin-left: 8px;
    display: none;
}