/* 帧率检测 */
#fps {
    position: fixed;
    /* 指定位置 */
    left: 10px;
    bottom: 10px;
    z-index: 100;
}

#fps {
    padding: 4px;
    border-radius: 4px;
}

[data-theme="light"] #fps {
    backdrop-filter: blur(5px) saturate(150%);
    background: rgba(255, 255, 255, 0.58);
}

[data-theme="dark"] #fps {
    background-color: rgba(0, 0, 0, 0.72);
}