﻿/* 整個內容方塊 */
.index下方捷徑列8 {
    --title-align: left;

    /* --For simpleBar Start-- */
    --content-height-without-heading: auto;
    --whole-block-height: auto;
    /* --For simpleBar End-- */

    height: var(--whole-block-height);
}

    /* 內容方塊標題 */
    .index下方捷徑列8 .blockTitle {
        text-align: var(--r-index-block-title-align, --title-align);
    }

        .index下方捷徑列8 .blockTitle h2 {
        }

    /* 捷徑容器，每個捷徑都放在裡面 */
    .index下方捷徑列8 .loopElementList {
        height: var(--content-height-without-heading);
    }

    .index下方捷徑列8 .shortcutList {
        padding: 1rem;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
        align-items: flex-start;
        padding: var(--r-container-padding, 1em);
    }

    .index下方捷徑列8 .eachShortcut {
        display: block;
    }

    .index下方捷徑列8 img {
        height : auto;
        /* 2024-11-02 */
        transition: all .5s;
    }

        .index下方捷徑列8 img:hover {
            transform: scale(1.02);
        }
@media (max-width: 480px) 
{
  .index下方捷徑列8 img {
      width : 150px;  
    }
}
@media (min-width: 481px) and (max-width: 767px) 
{
  .index下方捷徑列8 img {
      width : 170px;  
    }
}
@media (min-width: 768px) and (max-width: 979px) 
{
  .index下方捷徑列8 img {
      width : 170px;  
    }
}
@media (min-width: 980px) and (max-width:1199px) 
{
  .index下方捷徑列8 img {
      width : 180px;  
    }
}
@media (min-width: 1200px) and (max-width:1919px) 
{
  .index下方捷徑列8 img {
      width : 190px;  
    }
}
@media (min-width: 1920px) 
{
  .index下方捷徑列8 img {
      width : 200px;  
    }
}
