.shorts-intro-container {
    /* max-height: 155px; */
    /* 初始容器高度，直接寫在 html */
    overflow: hidden;
    transition: max-height 1s;
    margin: 37.3px 37.3px 16px 37.3px;
}

.custom-height-01 {
    max-height: 210px !important;
    box-sizing: content-box;
}

.custom-height-02 {
    max-height: 282px !important;
    box-sizing: content-box;
}

.shorts-intro-container.expanded {
    max-height: 810px !important;
    /* 需要設定一個定高，若高度設定 100%，
    transition 過渡動畫會有延遲的錯覺 */
    transition: max-height 1s;
}

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

.toggle-botton-wrapper {
    margin: 0 37.3px;
}

.info-toggle-botton {
    height: 64px;
    width: 100%;
    border: none;
    padding: 16px 32px;
    color: #313134;
    cursor: pointer;
    text-align: right;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 0px;
    letter-spacing: 6px;
}

.info-toggle-botton {
    background: url(https://cdn.akimia.com.tw/shopline/products/lab012/icon/expand.svg) no-repeat calc(100% - 12px) center;
    background-size: 16px 16px;
    transition: background-image 0.4s ease-in-out;
}

.info-toggle-botton.showmore {
    background: url(https://cdn.akimia.com.tw/shopline/products/lab012/icon/collapse.svg) no-repeat calc(100% - 12px) center;
    background-size: 16px 16px;
    transition: background-image 0.4s ease-in-out;
}

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

@media screen and (max-width: 768px) {
    .shorts-intro-container {
        /* max-height: 155px; */
        /* 初始容器高度，直接寫在 html */
        overflow: hidden;
        padding: 0 0 12px 0;
        transition: max-height 1s;
        margin: 7.46vw 7.46vw 12px 7.46vw;
    }

    .custom-height-01 {
        max-height: 152px !important;
        box-sizing: content-box;
    }

    .custom-height-02 {
        max-height: 170px !important;
        box-sizing: content-box;
    }

    .shorts-intro-content p {
        color: #313134;
        text-align: justify;
        font-family: 'Noto Sans', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .toggle-botton-wrapper {
        margin: 0 7.46vw;
    }

    .info-toggle-botton {
        height: 48px;
        width: 100%;
        border: none;
        padding: 16px 32px;
        color: #313134;
        cursor: pointer;

        text-align: right;
        font-family: 'Noto Sans', sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 0px;
        letter-spacing: 4px;
    }

    .info-toggle-botton {
        background: url(https://cdn.akimia.com.tw/shopline/products/lab012/icon/expand.svg) no-repeat calc(100% - 8px) center;
        background-size: 16px 16px;
        transition: background-image 0.4s ease-in-out;
    }

    .info-toggle-botton.showmore {
        background: url(https://cdn.akimia.com.tw/shopline/products/lab012/icon/collapse.svg) no-repeat calc(100% - 8px) center;
        background-size: 16px 16px;
        transition: background-image 0.4s ease-in-out;
    }

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