@import url('https://fonts.googleapis.com/css2?family=Gentium+Basic&display=swap');

.figure-container-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 180px; 固定寬度以便對齊 */
}

.figure-container-small img {
    height: 300px; /* 統一圖片高度 */
    object-fit: contain; /* 保持比例，不裁切 */
    width: 100%;
}

.figure-container-small figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

.figure-container-table {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    position: relative;
    flex-direction: column;
    flex: 1;
    width: 0;
    height: 100%;
    flex-basis: 200px;
}

.figure-container-table img {
    width: 100%;
}

.figure-container-table figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

.figure-container-small-table {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    position: relative;
    flex-direction: column;
    flex: 1;
    width: 0;
    height: 100%;
    flex-basis: 200px;
}

.figure-container-small-table img {
    width: 80%;
}

.figure-container-small-table figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

.figure-container-half-table {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    position: relative;
    flex-direction: column;
    flex: 1;
    width: 0;
    height: 100%;
    flex-basis: 200px;
}

.figure-container-half-table img {
    width: 50%;
}

.figure-container-half-table figcaption {
    text-align: center;
    margin-top: 8px;
    font-size: 16px;
    font-weight: bold;
}

.figures-table {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: auto;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    flex-direction: row;
    width: 100%;
}


.table-info {
    border: 1px solid transparent;
    padding: 0 1em;
    margin: 0;
    margin-left: 0;
    list-style-type: disc;
}

.table-info ul {
    margin-left: 1em; /* 子清單保留些微縮排 */
}
