.xx-intro-section {
    max-width: 850px;
    margin: auto auto auto 5px;
}



/* 標題 */
.xx-intro-title {
    padding-bottom: 5px;
    margin: 50px auto 30px auto;
    font-size: 2em;
}



/* 段落 */
.xx-intro-paragraph {
    /* text-indent: 2em; 縮排 */
    margin-bottom: 25px;
    font-size: 1em;
}        



/* 策略圖佈局 */
.xx-strategy-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 兩欄佈局 */
    gap: 30px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.xx-strategy-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: bold;
}
.xx-strategy-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    font-size: 1em;
}
.xx-strategy-cnotent {
    text-align: justify;
}
/* 不顯示格線，由各網頁自行設定
.xx-strategy-item:nth-child(3), .xx-strategy-item:nth-child(4) {
    border-bottom: none;
}
*/



/* 圖檔 */
.xx-intro-chart img {
    width: 95%;
    height: auto;
    min-height: 250px; /* 確保佔位符可見 */
    object-fit: contain;
    margin-bottom: 50px;
}



/* 下載按鈕 */
.xx-download-container {
    max-width: 850px;
    margin-bottom: 20px;
    font-size: 1em;
}
.xx-download-btn {
    padding: 10px 6px;
    color: #000000;
    text-decoration: none;
}
.xx-download-btn:hover {
    color: #008cf0;
}
/* 下載圖示 */
.xx-download-icon {
    height: 1.3em;
    width: 1.3em;
    vertical-align: top;
}

.xx-url-btn {
    color: #000000;
    text-decoration: none;
}
.xx-url-btn:hover {
    color: #008cf0;
}



/* 列表 */
.xx-list-title {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1em;
}
.xx-list {
    list-style-type: disc; /* 實心圓點 */
    margin-left: 20px;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 35px;
}
.xx-list li {
    margin-bottom: 8px;
}


/* 無框表格 */
.xx-table-2 {
    width: 100%;
    max-width: 850px;
    border-collapse: collapse; /* 合併邊框 */
    /* font-family: 'Microsoft JhengHei', Arial, sans-serif; */
    color: #333;
    margin: 20px 0;
}
/* 無框表格-標題行 */
.xx-table-2 th {
    background-color: #ffede1;
    color: #303030;
    border-bottom: 3px solid #e59374;
    padding: 12px 15px;
    font-weight: bold;
    vertical-align: middle;
}
/* 無框表格-內容行 */
.xx-table-2 td {
    padding: 12px 15px;
    border-bottom: 1px solid #d0d0d0;
    vertical-align: middle;
}
/* 無框表格-第一列
.xx-table-2 td:nth-child(1),
.xx-table-2 td:nth-child(2) {
    font-weight: normal;
    color: #333;
    width: 30%;
}
 */
/* 無框表格-數據文字 */
/* .xx-table-2 td:not(:first-child) { */
.xx-table-2 td:nth-child(n+3) {
    td:nth-child(2)
    text-align: center;
}



/* 報表 */
.xx-report-link {
    display: inline-block; 
    text-decoration: none;
    color: #303030;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 5px;
    margin: 50px;
}
/* 報表縮圖 */
.xx-report-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    border-radius: 5px 5px 0 0;
}
/* 報表標題 */
.xx-report-caption {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: bold;
    text-align: center;
}
/* 報表縮圖光暈效果 */
.xx-report-link:hover {
    box-shadow: 0 0 15px rgba(56, 125, 36, 0.7);
    transform: translateY(-5px); 
}
