.loadImage {
    float: left;
    width: 110px;
    height: 80px;
    overflow: hidden;
    background: center center / cover no-repeat;
    cursor: pointer;
    margin-bottom: 2px;
}
.loadVideo {
    float: left;
    width: 110px;
    height: 80px;
    overflow: hidden;
    background: center center / cover no-repeat;
    cursor: pointer;
    margin-bottom: 2px;
    position: relative;
}

#mediaMain {
    width: 100%;
    height: 340px;
    margin-bottom: 3px;
    overflow: hidden;
}
#mediaContent {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mediaList {
    width: 100%;
    float: right;
    order: 2;
    display: flex;
    gap: 3px;
}
#accessMedia {
    float: left;
    width: 100%;
    order: 1;
}

@media only screen and (min-width: 944px) {
    .loadImage {
        width: 160px;
        height: 120px;
        overflow: hidden;
        background: center center / cover no-repeat;
        cursor: pointer;
        margin-bottom: 2px;
    }
    .loadVideo {
        width: 160px;
        height: 120px;
        overflow: hidden;
        background: center center / cover no-repeat;
        cursor: pointer;
        margin-bottom: 2px;
    }
    #mediaContent {
        display: flex;
        flex-direction: row;
    }
    #mediaMain {
        height: 380px;
    }
    .mediaList {
        width: 160px;
        float: left;
        order: 1;
        grid: flex;
        gap: 3px;
        flex-direction: column;
    }
    #accessMedia {
        float: left;
        width: 540px;
        order: 2;
        flex-shrink: none;
    }
}

#mediaBG {
    width: 100%;
    height: 100%;
    background: #f9f9f9;
}
