﻿.index上方捷徑列5 {
    --title-align: left;

    /* --For simpleBar Start-- */
    --content-height-without-heading: auto;
    --whole-block-height: auto;
    /* --For simpleBar End-- */

    height: var(--whole-block-height);
}

    /* 內容方塊標題 */
    .index上方捷徑列5 .blockTitle {
        text-align: var(--r-index-block-title-align, --title-align);
    }

        .index上方捷徑列5 .blockTitle h2 {
        }

    /* 活動容器，每個活動都放在裡面 */
    .index上方捷徑列5 .loopElementList {
        height: var(--content-height-without-heading);
    }

    .index上方捷徑列5 .shortcutList {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: flex-start;
        padding: var(--r-container-padding, 1em);
    }

    .index上方捷徑列5 .eachShortcut {
    }

    .index上方捷徑列5 .innerShell {
        width: 250px;
        height: 70px;
        margin: 0 0 10px 0;
        position: relative;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        border-radius: 20px;
        padding: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        background: linear-gradient(to bottom, #67bed9 50%);
        /* 2024-11-02 */
        transition: all .5s;
    }

    .index上方捷徑列5 .eachShortcut:has(.absoluteCoverLinks:hover) .innerShell {
        transform: scale(1.02);
    }

    .index上方捷徑列5 .title {
        font-size: 20px;
        font-weight: 900;
        color: #FFFFFF;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        flex-shrink: 1;
        margin-right: 1em;
    }

        .index上方捷徑列5 .icon {
            width: 50px;
            height: 50px;
            border-radius: 20px;
            overflow: hidden;
            border: solid 2px #FFFFFF;
            flex-shrink: 0;
        }

@media (max-width: 480px) {
    .index上方捷徑列5 .title {
        font-size: 10px;
        font-weight: 700;
    }

    .index上方捷徑列5 .icon {
        width: 25px;
        height: 25px;
        border-radius: 10px;
        border: solid 1px #FFFFFF;
    }

    .index上方捷徑列5 .innerShell {
        width: 150px;
        height: 30px;
        border-radius: 10px;
        padding: 10px;
        margin: 0 0 10px 0;
    }
}

@media (min-width: 481px) and (max-width: 767px) {
    .index上方捷徑列5 .title {
        font-size: 15px;
        font-weight: 700;
    }

    .index上方捷徑列5 .icon {
        width: 35px;
        height: 35px;
        border-radius: 10px;
        border: solid 2px #FFFFFF;
    }

    .index上方捷徑列5 .innerShell {
        width: 200px;
        height: 40px;
        border-radius: 15px;
        padding: 10px;
        margin: 0 0 10px 0;
    }
}
