body {
    padding: 0;
    margin: 0
}
#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}
#unity-canvas {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1024px;
    height: 100%;
    background: url('bg.png') no-repeat center;
    background-size: 100% 100%;
}
#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none
}
#unity-logo {
    margin-left: auto;
    margin-right: auto;
    width: 249.79px;
    height: 44.41px;
    background: url('logo.png') no-repeat center;
    background-size: 100% 100%;
}
#unity-progress-bar-empty {
    margin-left: auto;
    margin-right: auto;
    width: 251px;
    height: 15px; 
    margin-top: 25px; /* 與logo間格距離 */
    border: 2px solid transparent; /* 邊框尺寸、形式、顏色（透明以利顯示漸層） */
    border-image: linear-gradient(90deg, rgba(0, 77, 160, 1) 0%, rgba(40, 183, 235, 1) 100%) 1; /* 漸層邊框 */
    border-radius: 0px; /* 圓角 */
    background-color: #FFFF; /* 底色*/
}
#unity-progress-bar-full {
    width: 0%;
    height: 15px; /* 與empty設定值一樣 */
    border-radius: 0px; /* 圓角 */
    background: linear-gradient(90deg,rgba(0, 77, 160, 1) 0%, rgba(40, 183, 235, 1) 100%); /* 底色*/
    /* 漸層色工具 => https://cssgradient.io/ */
}
#video {
    position: absolute;
    top: 50%;
    left: 50%; /* 向左上方對齊，定位點在正中心的X座標 / 1170 */
    transform: translate(-50%, -50%);
    height: 35%; /* 相機畫面尺寸，範圍高度 / 1977 */
    border-radius: 7%; /* 圓角 */
    aspect-ratio: 1/1;
    object-fit: cover;
    display: none;
}
#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none
}
