.elementor-3157 .elementor-element.elementor-element-685ac9dd{--display:flex;--background-transition:0.3s;}/* Start custom CSS for container, class: .elementor-element-685ac9dd *//* 表格容器 */
.table-container {
    width: 100%;
    overflow-x: auto; /* 使表格在小屏幕上可以滚动 */
}

/* 表格基本样式 */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 15px 0;
    font-size: 14px;
    text-align: left;
    color: #666; /* 字体颜色 */
}

table thead th {
    background-color: #F2F2F2; /* 表头背景色 */
    padding: 10px;
    font-weight: bold;
    text-align: left;
    border: 1px solid #DDD; /* 表头边框 */
}

table tbody td {
    padding: 10px;
    border: 1px solid #DDD; /* 单元格边框 */
}

/* 隔行换色 */
table tbody tr:nth-child(odd) td {
    background-color: #FFFF; /* 奇数行背景色 */
}

table tbody tr:nth-child(even) td {
    background-color: #E9E9E9; /* 偶数行背景色 */
}

/* 链接颜色 */
table tbody td a {
    color: #337AB7; /* 链接颜色 */
    text-decoration: none;
}

table tbody td a:hover {
    text-decoration: underline;
}

/* 超小屏幕下的表格样式 */
@media (max-width: 576px) {
    table {
        font-size: 12px;
    }

    table tbody td {
        padding: 8px;
    }
}

/* 基本表格樣式 */
.et_pb_blurb_description table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* 自動調整列寬 */
    word-wrap: break-word; /* 自動換行 */
}

.et_pb_blurb_description table th,
.et_pb_blurb_description table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 16px; /* 預設字體大小 */
    word-break: break-word; /* 自動換行 */
}

/* 表格標題行樣式 */
.et_pb_blurb_description table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/* 手機模式：調整字體大小與內邊距 */
@media screen and (max-width: 768px) {
    .et_pb_blurb_description table th,
    .et_pb_blurb_description table td {
        font-size: 14px; /* 縮小字體 */
        padding: 8px; /* 減少內邊距 */
    }
}

/* 更小的裝置 (例如手機) 顯示效果 */
@media screen and (max-width: 480px) {
    .et_pb_blurb_description table th,
    .et_pb_blurb_description table td {
        font-size: 12px; /* 進一步縮小字體 */
        padding: 6px; /* 減少內邊距 */
    }
}/* End custom CSS */