/* 终极测试：红色导演 + 灰色背景 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

:root {
    --bg: #f5f5f7;
}

body {
    background-color: var(--bg) !important;
    font-family: 'Inter', sans-serif;
}

.info-item label {
    color: #ff0000 !important; /* 强制红色 */
    font-size: 0.65rem !important;
    text-transform: uppercase;
}

.info-item p {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #000 !important;
}

#infoDetails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
