 /* 第一行：天气 */
        .weather-row {
            height: 20px;
            min-height: 20px;
            max-height: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            /* background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%); */
            overflow: hidden;
        }

        .weather-box {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-width: 0;
            overflow: hidden;
            white-space: nowrap;
        }

        .weather-icon {
            font-size: 14px;
            line-height: 1;
            flex: 0 0 auto;
        }

        .weather-city {
            font-size: 14px;
            color: var(--muted);
            line-height: 1;
        }

        .weather-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            line-height: 1;
        }

        .status {
            font-size: 12px;
            color: var(--muted);
            white-space: nowrap;
            line-height: 1;
            flex: 0 0 auto;
            margin-left: 10px;
        }