/* 桌機版寬度為 750px，手機版寬度為 375px */
/* 所有參數大小桌機版均為手機版的2倍 */
body {
    background-image: url(../img/lab013_background.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-color: #E3EDF9 !important;
}

.lab-content-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #E3EDF9;
    line-height: 0;
    /* 避免圖片出現空白間隙 */
}

.lab-content-summary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    /* margin: 24px 56px 48px 56px; */
    margin: 16px 37.3px 32px 37.3px;
}

.lab-content-summary p {
    font-family: 'Noto Sans', sans-serif;
    color: #313134;
    text-align: justify;
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
    letter-spacing: 2px;
}

.lab-content-summary img {
    width: 40px;
    height: auto;
}

.lab-empty-space {
    /* Shorts 空白填充區塊 */
    height: 100px;
    width: 100%;
}

.shorts-wrapper {
    position: relative;
    /* safari 不支援 aspect-ratio */
    /* aspect-ratio: 16/9;     */
    padding-top: 100%;
    margin: 0;
    /* background-color: #e9e9e9; */
}

.shorts-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56.25%;
    height: 100%;
    /* top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
}

.voted-block {
    display: none;
}

.vote-botton {
    display: block;
}

.vote-notice {
    margin-top: 45px;
    color: #313134;
    text-align: center;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
    .lab-content-summary {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 12px 7.46vw 28px 7.46vw;
    }

    .lab-content-summary p {
        font-family: 'Noto Sans', sans-serif;
        color: #313134;
        text-align: justify;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 22px;
        letter-spacing: 1px;
    }

    .lab-content-summary img {
        width: 8vw;
        height: auto;
    }

    .lab-empty-space {
        /* Shorts 空白填充區塊 */
        height: 70px;
        width: 100%;
    }

    .shorts-wrapper {
        position: relative;
        /* safari 不支援 aspect-ratio */
        /* aspect-ratio: 16/9;     */
        padding-top: 177.77%;
        margin: 0;
        /* background-color: #e9e9e9; */
    }
    
    .shorts-wrapper iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85% !important;
        height: 100% !important;
        /* top: 0;
        left: 0;
        width: 100%;
        height: 100%; */
    }

    .vote-notice {
        margin-top: 45px;
        color: #313134;
        text-align: center;
        font-family: 'Noto Sans', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 1px;
    }
}