/**************************************************/
.service_section{
    min-height: calc( 100vh - 100px );
    margin-top: 72px;
    display: flex;
}               
.service_section .menu_area {
    width: 230px;
    background-color: #F2F2F2;
    border: 1px solid rgba(0, 0, 0, .125);    
    border-radius: 0 0 8px 8px;
    margin-bottom: 15px;
}
.service_section .main_area {
    width: 100%;
    padding: 0px 0px 15px 30px;
}
@media screen and (max-width:992px){
    .service_section .menu_area {
        display: none;    
    }
    .service_section .main_area{
        padding: 10px 0;
    }
}
/*--------------下載專區------------*/ 
/* 頁面標題區 */
.page_header {
    text-align: center;
    margin-bottom: 20px;
}
.page_header_img {
    position: relative;
}
.page_header_text {
    position: absolute;
    top: 0;
    left: 9.5%;
    bottom: 0;
    display: flex;
    align-items: center;
}
.page_header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #373636;
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    text-align: start;
    line-height: 3.4rem;
    letter-spacing:3px;    
}
.page_header h2::after {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 45px);
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #4cd5d5 0%, #34bcbc 100%);
    /* background: linear-gradient(to right, #f76c27 0%, #ff5600 100%); */
}
.page_header hr {
    height: 1px;
    margin: 1rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: .15;
}
.page_header p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 0px;
    text-align: start;
}
.page_header_img {
    position: relative;
}
@media screen and (max-width:992px){
    .page_header h2 {
        font-size: 30px;
    }
}
@media screen and (max-width:576px){
    .page_header_text {        
        left: 3.5%;       
    }
    .page_header h2 {    
        font-size: 24px;
        line-height: 2.8rem;
        letter-spacing:0px; 
    }
}

/* 主要分類區塊 */
.category_section {
    background: #effafa; 
    border-radius: 8px;
    padding: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */
}
.content_section{
    background: #fff;
    border-radius: 0px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, .125);
}
.category_title {
    display: flex;
    align-items: center;
    color: #34bcbc;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-weight: 600;
}
.category_title_icon {
    width: 48px;
    height: 48px;
    margin-right: 6px;
    color: #34bcbc; 
}

/* 卡片網格系統 */
.card_grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
}

@media (min-width: 992px) {
    .card_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 最後一張：獨佔一整列 */
    .card_grid > .download_card:last-child {
        grid-column: 1 / -1;
    }
    .content_section{
        gap: 8px;      
    }
}

/* 單張卡片樣式 */
.download_card {
    background: #fff; /* 卡片白底 */
    border-radius: 0px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, .125);
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.06); */
    /* transition: transform 0.3s ease; */
}

.download_card_item {
    display: flex;
    gap: 15px;
}
.card_main_icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    color: #34bcbc; 
}

.card_content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card_content h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.card_content p {
    color: #666; 
    font-size: 0.95rem;
    margin-bottom: 12px;
    flex-grow: 1; /* 讓內容區撐開，使底部按鈕對齊 */
}

/* 按鈕樣式  */
.action_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    border: 2px solid transparent; 
}

.btn_icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* 實心主色按鈕 */
.action_btn_primary {
    background-color: #34bcbc;
    color: white;
    border-color: #34bcbc;
}

.action_btn_primary:hover {
    background-color: #2aa8a8; 
    border-color: #2aa8a8;
    color: #ffffff;
}

/* 線框按鈕 */
.action_btn_outline {
    background-color: transparent;
    color: #34bcbc;
    border-color: #34bcbc;
}

.action_btn_outline:hover {
    background-color: #34bcbc;
    color: white;
}

/* 手機版卡片底部區域 (QR + Badges) */
.mobile_footer {
    display: flex;
    justify-content:center ;
    gap: 15px;
    align-items: center;
    margin-top: auto; /* 推到底部 */
}
.qr_link {
    display: block;
    flex-shrink: 0;
    text-decoration: none;
    cursor: pointer;
}
.qr_img {
    width: 120px;
    height: 120px;
    border-radius: 0px;
    border: 2px solid #eee;
    background-size: cover;
    transition: all 0.3s ease;
}
/* 點擊 QR Code 的提示效果 */
.qr_link:hover .qr_img {
    border-color: #34bcbc;
    box-shadow: 0 0 10px rgba(52, 188, 188, 0.3);
}

.store_badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge_img {
    height: 50px;
    width: auto;
    display: block;
    aspect-ratio: 1000 / 312;
}

/* SVG icon 基本樣式 */
svg {
    display: block;
}
@media screen and (max-width:576px){
    .category_section {
        padding: 20px 12px;
    }
    .download_card {       
        gap: 8px;
    }

    .download_card_item {
        gap: 8px;
    }
    .qr_img {
        width: 100px;
        height: 100px;
    }
    .badge_img {
        height: 40px;
    }

}
/*--------------服務據點------------*/

.page_title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
}

/* === 卡片格狀佈局 ==== */
.branch_grid_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* === 卡片樣式 ==== */
.branch_card {
    background-color: #ffffff;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
    border: 1px solid #34bcbc;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.branch_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* --- 卡片頭 --- */
.card_header {
    padding: 20px 25px;    
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e9ecef;
    background-color: #1BBBBB;
}
.card_header h3 {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
}
/* --- 卡片內容 --- */
.card_body {
    padding: 10px 20px 20px;
    flex-grow: 1;
}
.info_row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
    font-size: 15px;
}
.info_row:last-child {
    margin-bottom: 0;
}
.icon_li {
    color: #34bcbc;
    margin-right: 6px;
    width: 20px;
    text-align: center;
    margin-top: 4px;
    flex-shrink: 0;
}

/* --- 連結樣式 --- */
.phone_link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.address_link {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.address_link:hover {
    color: #34bcbc;
    text-decoration: underline;
}
.map_hint {
    margin-left: 9px;
    /* font-size: 14px;*/
    color: #34bcbc; 
    white-space: nowrap;
}

.map_hint i {
    margin-right: 3px;
    font-size: 13px;
}

/* 桌機 */
@media (min-width: 769px) {
    .phone_link {
        pointer-events: none;
        cursor: default;
        color: #666 !important;
    }
}

/* 手機 */
@media (max-width: 768px) {
    .phone_link:not(.fax_link) {
        color: #34bcbc;
        font-weight: 500;
    }

    .address_link {
        display: block;
        /* padding: 5px 0; */
    }
}


@media (max-width: 576px) {   
    .branch_grid_container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card_header h3 {
        font-size: 18px;
    }
}
/*--------------//服務據點------------*/


/*----------------------- iframe服務據點 ----------------------*/

/* ================= 通用內容樣式================= */
.content_inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 20px 0;
}
.map_box {
    width: 60%;
    border-radius: 8px; 
    overflow: hidden;
    background: #fff;
    position: relative;
}
.map_box iframe { 
    width: 100%;
    aspect-ratio: 600 / 450;
    overflow: hidden;
}
.info_box { 
    flex: 1; 
}
.info_box h3 { 
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 0; 
    color: #34bcbc; 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    padding-bottom: 15px; margin-bottom: 20px;
}
.info_box ul { 
    list-style: none; 
    padding: 0; margin: 0; 
}
.info_box li { 
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 15px; 
    line-height: 1.6; 
    display: flex; 
}
.info_box li a { 
    color: #333;   
}
.info_box li strong { 
    min-width: 43px; 
    font-weight: 400;
    color: #666666;
    white-space: nowrap;
}
.map_overlay_btn {
    position: absolute;
    bottom: 15px; 
    right: 15px; 
    z-index: 10;     
    background-color: rgba(52, 188, 188, 0.9); 
    color: #fff;
    padding: 8px 15px;
    border-radius: 30px; 
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); 
    transition: all 0.3s ease;    
    display: flex;
    align-items: center;
    gap: 6px; 
}
a.map_overlay_btn:hover {
    color: #fff;
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
/* ================= 桌機版================= */
/* 導覽列容器 */
.desktop_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

/* 桌機按鈕 */
.desk_btn {
    flex: 1 1 auto;
    padding: 12px 10px;
    background: #fff;
    border: 1px solid #34bcbc; 
    border-radius: 8px; 
    color: #333; 
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 120px;
    outline: none;
    transition: transform .2s ease;
}
.desk_btn:hover {
    color: #34bcbc; 
    border-color: #34bcbc; 
    transform: translateY(-3px);
    box-shadow: 0 4px rgba(52, 188, 188, 0.3);
}
.desk_btn.active {
    background-color: #34bcbc; 
    color: #fff;
    border-color: #34bcbc;
    font-weight: bold;
}

/* 桌機內容容器 */
.desktop_content_wrap {
    color: #fff;
    border-radius: 8px;
    min-height: 400px;
    position: relative;
}

/* 個別內容區塊預設隱藏 */
.desk_content { display: none; }
/* 選中時顯示 */
.desk_content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}


/* ================= 手機版================= */
.content_section:has(.mobile_view_container) {
    padding: 12px;
}
.mobile_view_container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile_accordion_item {
    background: #fff;
    border-radius: 8px; 
    overflow: hidden;
}

/* 手機按鈕 */
.mobile_trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #34bcbc;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    text-align: left;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.mobile_accordion_item.active .mobile_trigger {
    background-color: #34bcbc; 
    color: #fff;
}

/* 圖標控制 */
.icon_plus, .icon_minus { font-size: 14px; }
.icon_minus { display: none; }
.mobile_accordion_item.active .icon_plus { display: none; }
.mobile_accordion_item.active .icon_minus { display: block; }

/* 手機內容區  */
.mobile_content {
    display: none;
}
.mobile_accordion_item.active .mobile_content {
    display: block;
    animation: slideDown 0.3s ease;
}
.mobile_content .info_box h3 { 
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0; 
    color: #34bcbc; 
    border-bottom: 1px solid rgba(0,0,0,0.1); 
    padding-bottom: 15px; margin-bottom: 20px;
}
/* 手機版內容內距 */
.mobile_content .content_inner {
    flex-direction: column;
    padding: 10px 0px;
    gap: 15px;
}
.mobile_content .map_box { flex: none; width: 100%; }
.mobile_content .info_box { color: #333; /* var(--text-dark) replaced */ }
.mobile_content .info_box li strong { color: #666; }


/* =============================== */

/* 顯示桌機版，隱藏手機版 */
.desktop_view_container { display: block; }
.mobile_view_container { display: none; }

@media (max-width: 768px) {
    .desktop_view_container { display: none; }
    .mobile_view_container { display: block; }
}


/* 動畫 */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
/*----------------------- //iframe服務據點 ----------------------*/




/*--------------常見問題------------*/
/* QA 主容器 */
    .qa-container {
        width: 100%;
        margin: 0 auto;
    }

    /* 每一個 QA 項目 */
    .qa-item {
        background-color: #fff;
        margin-bottom: 8px; /* 項目之間的間距 */
        border-radius: 4px;
        overflow: hidden;
        /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
    }
    .category-title {
        color: #34bcbc;
        font-size: 1.3rem;
        font-weight: 600;
        margin-top: 40px;
        margin-bottom: 20px;
        /* padding-bottom: 10px; */
        padding-left: 12px;
        padding-right: 12px;
    }
    .category-title:first-of-type {
        margin-top: 0;
    }
    /* 問題標題區域 (summary) */
    .qa-question {
        padding: 12px 20px 12px 30px;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #F2F2F2; 
        transition: background-color 0.3s ease;
        list-style: none; /* 移除 Chrome/Safari 預設的三角形 */
    }

    /* 移除 Firefox 預設的三角形 */
    .qa-question::-webkit-details-marker {
        display: none;
    }

    /* 箭頭圖標樣式 */
    .arrow-icon {
        font-size: 16px;
        color: #666;
        transition: transform 0.3s ease;
    }
   
    .qa-item[open] .qa-question {
        background-color: #1BBBBB; 
        color: #fff; 
    }

    /* 展開時箭頭旋轉並變色 */
    .qa-item[open] .arrow-icon {
        transform: rotate(180deg);
        color: #fff;
    }

    /* 答案內容區域 */
    .qa-answer {
        padding: 16px 20px;
        background-color: #fff;
        line-height: 1.8;
        color: #555;
        border: 1px solid #EEE;
    }
    
    .qa-answer p {
        margin-bottom: 1em;
    }

    /* 答案中的列表樣式 */
    .qa-answer ol, .qa-answer ul {
        padding-left: 25px;
        margin-bottom: 1em;
    }

    .qa-answer li {
        margin-bottom: 0.5em;
    }
    
    /* 連結樣式 */
    .qa-answer a {
        color: #17b1b1;
        text-decoration: none;
    }
    .qa-answer a:hover {
        text-decoration: underline;
    }
/*--------------//常見問題------------*/

/*--------------台股期貨------------*/  
    .content_card {
        background: #fff;
        border-radius: 0px;
        padding: 25px;    
        margin-bottom: 25px;
        border: 1px solid rgba(0, 0, 0, .125);
    }
    .highlight_text {
        font-weight: 600;
        color: #34bcbc;
    }
   /* .content_card_item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
   } */
    .content_card h3 {
        font-weight: 600;
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .content_card p {
        color: #666; 
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    /* --- 線上開戶連結按鈕區塊 --- */
    .branch_link_card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 1.5rem;
        background-color: #fff;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        color: #555;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .branch_name {
        font-size: 1.1rem;
    }

    .branch_location {
        font-size: 0.9rem;
        color: #888;
        font-weight: normal;
        margin-left: 0.5rem;
    }

    .link_arrow_icon {
        color: #34bcbc;
        transition: transform 0.3s ease;
    }

    /* Hover 效果 */
    .branch_link_card:hover {
        border-color: #34bcbc;
        background-color: #34bcbc;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 12px rgba(52, 188, 188, 0.2);
    }

    .branch_link_card:hover .branch_location {
        color: rgba(255,255,255,0.8);
    }

    .branch_link_card:hover .link_arrow_icon {
        color: white;
        transform: translateX(5px); /* 箭頭向右移動 */
    }


    /* --- 下單軟體 CTA 區塊 --- */
    .cta_section_wrap {
        background-color: #eefbfb; /* 極淺的主色背景 */
        border-radius: 16px;
        padding: 3rem;
        text-align: center;
        border: 1px solid rgba(52, 188, 188, 0.1);
    }

    .cta_title {
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .cta_desc {
        color: #666;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 主要 CTA 按鈕 */
    .btn_main_cta {
        background-color: #34bcbc;
        color: white;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .btn_main_cta:hover {
        background-color: #2a9a9a; 
        transform: translateY(-2px);
        color: white;
    }  

    .stock_card {
        /* display: flex;
        align-items: center;
        justify-content: space-between; */
        padding: 1.2rem 1.5rem;
        background-color: #fff;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        color: #555;
        font-weight: 600;
        height: 100%;
    }

      

    /* 卡片圖標容器 */
    .stock_card .card_stockimg {
        margin-bottom: 20px;
        text-align: center;
    } 
    .stock_card .card_title {
        font-size: 1.5rem;
        color: #333;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .stock_card p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 1rem;
        text-align: justify;
    }

/*--------------//台股期貨------------*/
/*--------------新手上路--------------*/
    .progress_wrap { margin-bottom: 0rem; }
    .progress_list {
        list-style: none; 
        padding: 0; 
        margin: 0;
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        position: relative; 
        max-width: 100%; 
        margin: 0 auto;
    }    
    .progress_list::before {
        content: ''; position: absolute; top: 18px; left: 0;
        width: 100%; height: 4px; background-color: #e0e0e0; z-index: 1;
    }
    .progress_item { text-align: center; position: relative; z-index: 2; flex: 1; }
    
    .step_circle {
        width: 40px; height: 40px; border-radius: 50%;
        background-color: #34bcbc; color: #ffffff;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 10px auto; font-weight: 700;
        border: 4px solid #fff;
    }
    .step_label { font-size: 0.95rem; color: #999; font-weight: 600; }


    /* ---大圖文卡片設計 --- */
    .illustration_card {
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        height: 100%;
        border: 2px solid #34bcbc; 
        transition: all 0.3s ease; 
        display: flex;
        flex-direction: column;
        align-items: center;
    }    
   
    @media (min-width: 768px) {
        .progress_wrap { margin-bottom: 2rem; }
        .illustration_card {
            flex-direction: row;
            align-items: flex-start; 
            text-align: left;
            padding: 20px 50px;
        }
    }

    .card_illus_wrap {
        /* width: 70%;   */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #34bcbc;
        margin-bottom: 25px;
        margin-right: 25px; 
    }  
   
    .card_content_wrap {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        width: 100%; 
    }
    
    .card_title_lg {
        font-size: 1.5rem;
        font-weight: 800;
        color: #333333;
        margin-bottom: 12px;
    }
    .card_desc {
        color: #666;
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    /* 按鈕區容器 */
    .card_btns_wrap {
        margin-top: auto; 
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }
  
    .btn_custom {
        padding: 10px 24px;
        border-radius: 50px; 
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }
    /* 實心 */
    .btn_blue_solid {
        background-color: #34bcbc; 
        color: white; 
        border: 2px solid #34bcbc;
        width: 100%; 
        padding: 10px 12px;
    }
   
 
    .btn_blue_solid:hover { 
        background-color: #2aa8a8; 
        border-color: #2aa8a8; 
        color: #ffffff;
    }
/*---- 股市新手宣導--*/
    .section_block {     
        padding: 20px;
        margin-bottom: 12px;
        /* border-bottom: 1px solid #eeeeee; */
    }

    .section_title {
        color: #34bcbc;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        border-bottom: 1px dotted gray;
    }

    .section_title::before {
        content: "";
        width: 6px;
        height: 20px;
        background: #34bcbc;
        margin-right: 12px;
        border-radius: 3px;
    }
    .section_block h6 {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 2rem;
    }
    .table_custom thead {
        background-color: #e8fdfd;
    }
    .table_custom thead th,
    .table_custom td {
        text-align: center;
     }

    .list_custom li p{
        text-indent: -6.5rem;
        margin-left: 6.5rem;
    } 
    .ol_parenthesis {
        list-style: none;
        counter-reset: item;
        padding-left: 0;
    }

    .ol_parenthesis li {
        counter-increment: item;
        text-indent: -1.5rem;
        margin-left: 1.5rem;
    }

    .ol_parenthesis li::before {
        content: "(" counter(item) ") ";
    }
    @media screen and (max-width: 576px){
        .section_block {     
            padding: 0px;
            margin-bottom: 12px;
        }
        .list_custom li p{
            text-indent: 0rem;
            margin-left: 0rem;
        } 
        .table_custom th {
            font-size: 0.9rem;
        } 
        .table_custom td {
            font-size: 0.8rem;
            padding: 3px;
        }


    }

/*---- //股市新手宣導--*/

/*--------------//新手上路--------------*/
/*------------聯絡我們+表單--------------*/
input::placeholder {
    color: #b5b5b5!important;
     /*opacity: 0.6!important;  讓顏色更透明 */
     font-size: 18px;
  }
.form_box {
   
}
.form_box .form_title {
    background: linear-gradient(transparent 56%, #d1d1d1 60%, transparent 0);
    text-align: center;
    min-height: 20px;
    margin-bottom: 32px;
    margin-top: 50px;
}
.form_box .form_title span {
    font-weight: bold;
    font-size: 22px;
    background-color: #f7f7f7;
    padding: 0 20px;
    text-align: center;
}

.form_box .flex-container {
    /* background-color: #fff;
    padding: 20px;
    border: 1px solid #D3D5D7;
    margin-bottom: 30px; */
}

.form_box .form_group{
    position: relative;
    margin-bottom: 15px;
}
.form_box .form_group .label {
    /* position: relative;
    display: block; */
    display: flex;
}
.form_box .form_group_placeholder {
    color: #34bcbc;
    font-size: 18px;
    /* margin-bottom: 10px; */
    width: 11rem;
    text-align: right;
    margin-right: 10px;
    line-height: 45px;
}

.form_box .form_group .form_group_input {
    min-width: auto;
    width: 100%;
    background-color: #fff;
    border: 1px solid #d3d5d7;
    padding: 0.4rem;
    color: #171717;
    font-size: 1.2rem;
    margin: 0;
    border-radius: 0;
}
.form_box .form-check-input {
    width: 20px;
    height: 20px;
}
.form_box .form_Apply_txt {
    font-size: 18px;
    color: #5e5e5e;
}
.form_box .inDate {
    display: flex;
    align-items: center;
    width: 100%;
}
.form_box .inDate select {
    max-width: 4rem;
}
.form_box .inDate select:first-child {
    max-width: 7rem;
    min-width: 6rem; 
}
.form_box .label_check_txt { 
    color: #34bcbc;
}
.form_box .money_info{
    margin-left: 9rem;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 28px;

}
@media screen and (max-width: 992px){
    .form_box .form_title	{
        margin-top: 85px;
    }
}
@media screen and (max-width: 576px){
    .form_box .flex-container	{
        margin: 30px 0px;
    }
    .form_box .form_group .label {        
        display: block; 
    }
    .form_box .form_group_placeholder {  
        text-align: left;
    }
    .form_box .inDate select {
        text-align: left;
     }
     .form_box .money_info{
        margin-left: 0rem;
    }
}
  
/*---客服----*/
    .contact_header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }

    .contact_header_icon {
        font-size: 1.8rem;
        color: #34bcbc;
        margin-right: 15px;
    }

    .contact_header_text {
        font-size: 1.25rem;
        font-weight: 700;
        color: #444;
        margin: 0;
    }
  
    .contact_item {
        display: flex;
        align-items: center; 
        padding: 10px;
        border-radius: 8px;
        transition: background-color 0.2s ease;
    }
    
    .contact_item:hover {
        background-color: #f9fbfb;
    }

    .item_bullet_icon {
        color: #34bcbc;
        font-size: 0.5rem; 
        margin-right: 12px;
        flex-shrink: 0;
        opacity: 0.8; 
    }

    .dept_name {
        font-weight: 500;
        color: #555;
        margin-right: 8px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* 電話連結預設樣式 */
    .contact_item .phone_link {
        text-decoration: none;
        color: #333;
        font-weight: 600;
        font-family: Roboto, sans-serif;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .contact_item .phone_link:hover {
        color: #2aa8a8;
        text-decoration: underline;
    }
    
    @media (max-width: 767.98px) {
        .contact_item {
            flex-wrap: wrap; 
            align-items: flex-start; 
            padding: 0px;
        }

        .item_bullet_icon {
            margin-top: 10px; 
        }
        
        .dept_name {
                margin-right: 0;
                min-width: auto; 
                font-weight: 700; 
        }

        .contact_item .phone_link {
            /* 強制電話連結佔滿一行 */
            flex-basis: 100%;
            width: 100%;
            margin-top: 8px; 
            padding-left: 24px; /* 內縮， */
            color: #2aa8a8; 
            font-size: 1.1rem; 
        }
               
        .contact_item .phone_link:hover {
            text-decoration: none;
        }
    }
 
    @media (min-width: 992px) {
        .contact_item .phone_link {
            pointer-events: none;
            cursor: default;
            color: #333 !important;
            text-decoration: none !important;
        }
        .contact_item:hover {
            background-color: transparent;
        }
    }
      
/*------------//聯絡我們+表單--------------*/
/*-------------永續發展-esg------------------*/
.esg_card {        
        padding: 1.2rem 1.5rem;
        background-color: #fff;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        color: #555;
        font-weight: 600;
        height: 100%;
    }  

    .esg_card .card_esgimg {
        margin-bottom: 20px;
        text-align: center;
    } 
    .esg_card .card_title {
        font-size: 1.5rem;
        color: #34bcbc;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .esg_card .card_title small {
        display: block;
        font-size: 1rem;
    }
    .esg_card p {
        color: #666;
        line-height: 1.7;
        margin-bottom: 0;
        font-size: 1rem;
        text-align: justify;
    }
    /*-------------//永續發展-esg------------------*/
    /*---------------線上E櫃台--------------------*/   
        .e_counter_card {
        background: #fff;
        border-radius: 0px;
        padding: 25px;
        margin-bottom: 25px;
        border: 1px solid rgba(0, 0, 0, .125);
        height: calc(100% - 25px);
        }
    
    /* 卡片內區塊標題 */
    .section_title_wrap {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
    }
    .section_title_icon {
        font-size: 1.5rem;
        color: #34bcbc;
        margin-right: 12px;
    }
    .section_title_text {
        font-size: 1.5rem;
        font-weight: 600;
        color: #34bcbc;
        margin: 0;
    }

    .resource_list {
        list-style: none;
        padding: 0;
        margin: 0;
        padding: 12px;
    }
    .resource_item {
        border-bottom: 1px dotted #dfdfdf;
        padding: 15px 0;
    }
    .resource_item:last-child {
        border-bottom: none;
    }    
 
    .resource_link {
        display: flex;
        align-items: flex-start;
        text-decoration: none;
        color: #333;
        transition: color 0.2s ease;
    }
    .resource_link:hover {
        color: #2aa8a8;
    }
    .resource_icon_bullet {
        color: #34bcbc;
        font-size: 1.1rem;
        margin-right: 12px;
        margin-top: 10px; 
    }
    .resource_content {
        flex-grow: 1;
    }
    .resource_title {
        font-weight: 600;
        font-size: 1.2rem;
        margin-bottom: 5px;
        display: block;
    }
    /* 資源描述/提示文字 */
    .resource_desc {
        font-size: 1rem;
        color: #888;
        margin: 0;
        display: flex;
        align-items: center;
    }
    .resource_desc i {
        margin-right: 6px;
        font-size: 0.85rem;
    }
  
    .pdf_badge {
        background-color: #fdeaea;
        color: #d9534f;
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 8px;
        font-weight: normal;
    }

    .support_contact_wrap {        
        color: #555;
    }
    .support_label {
      
    }   
 
    .contact_phone_link {
        text-decoration: none;
        color: #333;        
        transition: all 0.2s ease;      
    }
    .contact_phone_link i {
        margin-right: 8px;
        color: #34bcbc;
    }

    /* 電話連結懸停效果*/
    .contact_phone_link:hover {
        /* background-color: #34bcbc;
        color: #fff; */
    }
    .contact_phone_link:hover i {
        /* color: #fff; */
    }
    @media (min-width: 992px) {
        .contact_phone_link {
            pointer-events: none; /* 禁用滑鼠事件 */
            cursor: default;      /* 滑鼠成箭頭 */
            color: #333 !important; 
            text-decoration: none !important;
            background-color: transparent; 
            border: none; /
            padding: 0;
        }
        .contact_phone_link i {
            color: #34bcbc !important; 
        }
    }
/* 頁面標題設計 */
.page_main_title {
    color: #278e8e;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* 標題下方的裝飾線 */
.page_main_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #34bcbc, #4dd2d2);
    border-radius: 2px;
}

/* 服務卡片主體設計 */
.service_action_card {
    display: block;
    background-color: #ffffff;
    border-radius: 24px;
    text-decoration: none;
    color: #333333;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(52, 188, 188, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Q彈動畫效果 */
    height: 100%;
}

/* 卡片頂部漸層飾條 */
.service_action_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #34bcbc, #4dd2d2);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* 卡片懸停特效 */
.service_action_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 188, 188, 0.15);
    border-color: #e0f5f5;
}

.service_action_card:hover::before {
    opacity: 1;
}

/* 內容容器，創造內部留白 */
.card_inner_content {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* 圓形圖示區域設計 */
.icon_display_circle {
    width: 80px;
    height: 80px;
    background-color: #e0f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #34bcbc;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    box-shadow: 0 0 0 0 rgba(52, 188, 188, 0.2);
}

/* 滑鼠懸停時圖示的變化 */
.service_action_card:hover .icon_display_circle {
    background: linear-gradient(135deg, #34bcbc, #4dd2d2);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
    /* 擴散光圈特效 */
    box-shadow: 0 0 0 10px rgba(52, 188, 188, 0.1);
}

/* 卡片大標題 */
.card_text_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.service_action_card:hover .card_text_title {
    color: #278e8e;
}

/* 卡片輔助說明文字 */
.card_text_desc {
    text-align: center;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 懸停時右下角滑出的箭頭指示 */
.action_hover_arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #34bcbc;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s ease;
}

.service_action_card:hover .action_hover_arrow {
    opacity: 1;
    transform: translateX(0);
}

/* 畫面背景裝飾用的柔和光暈形狀 (可選) */
.bg_decoration_circle {
    position: fixed;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52,188,188,0.06) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    pointer-events: none;
}    
/*---------------//線上E櫃台--------------------*/
/*---------------最新公告--------------------*/ 
.news_table_container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #eee;
}

.news_table {
    margin-bottom: 0;
}

.news_table_head {
    background-color: #34bcbc; 
    color: #fff;
}
.news_table_head th {
    font-weight: 600;
    border-bottom: none;
    padding: 15px;
}

.news_table_body td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.news_date_col {
    text-align: center;
    white-space: nowrap;
    font-family: Roboto, sans-serif; 
}

.news_link {
    color: #333;
    font-weight: 600;
    display: block;
}
.news_link:hover {
    color: #2aa8a8; 
}

.table .news_table_body tr:hover {
    background-color: #ffffff;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.015);
}

/* 分頁樣式 */
.pagination_custom {
    margin-top: 30px;
    justify-content: center;
    gap: 5px;
}
.page_link_custom {
    border: none;
    color: #555;
    padding: 8px 16px;
    border-radius: 8px !important;
    font-weight: 600;
    border: 1px solid #34bcbc;
}
.disabled .page_link_custom {
    background-color: #e9ecef;
    border: 1px solid transparent;
}
.page_link_custom:hover {
     background-color: #34bcbc;
    color: #fff;
}
.page_item_active .page_link_custom {
    background-color: #34bcbc;
    color: #fff;
}
/*-------------------------------------------*/
.card_header_title {
    color: #34bcbc;
    padding: 0px 20px 0px;
    font-weight: 600;
    font-size: 1.5rem;
}
.card_header_title span {
    display: block;
    color: #4C4C4C;
    font-size: 0.8rem;
    font-weight: 400;
}
.card_body_content {
    padding: 20px;
    min-height: 300px;
    margin-bottom: 1rem;
}
.notice .card_body_content p {  
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;  
    margin-bottom: 20px; 
}
.content_highlight_link {
    color: #34bcbc;
    font-weight: 400;
    border-bottom: 2px solid #34bcbc;
    word-break: break-all;
}
.content_highlight_link:hover {
    color: #2aa8a8;
    border-color: #2aa8a8;
}


/* 底部導航連結 */
.bottom_nav_links {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .125);
    font-size: 1rem;
}
.bottom_nav_separator {
    margin: 0 10px;
    color: #ccc;
}
.bottom_nav_link {
    color: #34bcbc;
    font-weight: 500;
}
.bottom_nav_link:hover {
    color: #2aa8a8;
    text-decoration: underline;
}
  @media (max-width: 768px) {
    .news_table_container {
        background: #fff;
        border-radius: none;
        overflow: none;
        box-shadow: none;
        border:none;
    }
    .form_box .form_group_placeholder.news {
        width: 6rem;
    }    
    .news_table_head {
        display: none;
    }
    .news_table_body td {
        display: block;
        text-align: start;
        padding-left: 0;
        padding-right: 0;
    }
    .news_table_body td:first-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: -10px;
    }
    .card_header_title {    
        padding: 0px;
    }
    .card_body_content {
        padding: 10px 0 10px;
    }

  }
 /*----20251119----*/ 
 /* 表格自訂樣式設定 */
.custom_data_table {
    font-size: 1.1rem; /* 依需求設定字體大小 */
    text-align: left;
    margin-bottom: 0; /* 重置底部邊距 */
}

.custom_data_table th {
    color: #6c757d; /* 讓表頭顏色柔和些 */
    font-weight: normal;
    padding-bottom: 12px;
}

.custom_data_table td {
    color: #495057;
    padding: 8px 12px;
    vertical-align: middle;
}

/* 模擬圖片中的中間分隔線 (|) */
.pipe_divider {
    color: #dee2e6;
    text-align: center !important;
    width: 50px;
}

/* ==========================================
    完美 RWD (響應式) 手機版優化
    當螢幕寬度小於 768px (平板以下) 時觸發
    ========================================== */
@media (max-width: 767px) {
    .content_card {
        padding: 30px 20px; /* 手機版減少卡片內邊距 */
    }
    
    .custom_data_table thead {
        display: none; /* 手機版隱藏原本的表頭以節省空間 */
    }
    
    .custom_data_table tr {
        display: flex;
        flex-wrap: wrap; /* 允許內容折行 */
        border-bottom: 1px solid #f0f0f0;
        padding: 10px 0;
    }
    
    .custom_data_table td {
        padding: 4px 8px;
    }
    
    /* 將左右兩欄強制設定為手機上的獨立列 (代號35% / 名稱65%) */
    .custom_data_table td:nth-child(1),
    .custom_data_table td:nth-child(4) {
        width: 35% !important; 
        font-weight: 500;
        color: #278e8e; /* 手機版代號換個顏色加強辨識度 */
    }
    
    .custom_data_table td:nth-child(2),
    .custom_data_table td:nth-child(5) {
        width: 65% !important; 
    }
    
    .pipe_divider {
        display: none !important; /* 手機版完全隱藏中間的 | 分隔線 */
    }
    
    /* 隱藏右側沒有資料的空儲存格 (避免多出空白行) */
    .custom_data_table td:empty {
        display: none !important;
    }
}
/*---------------//最新公告--------------------*/ 
/*---------------資訊安全政策+網站免責聲明--------------------*/ 
.security_policy_title {
    color: #34bcbc;
    padding: 0px 20px 0px;
    font-weight: 600;
    font-size: 1.5rem;
}
.security_policy_date {
    color: #4C4C4C;
    font-size: 1rem;
    font-weight: 400;
}
.security_policy_content {
    font-size: 1.1rem;
    line-height: 2;
}
.policy {
    max-width: 900px;
}

.policy_intro {
    margin-bottom: 16px;
    line-height: 1.8;
}

.policy_item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.policy_num {
    width: 80px;
    text-align: right;
    padding-right: 12px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums; /* 超關鍵：數字對齊漂亮 */
}

.policy_txt {
    flex: 1;
    line-height: 1.6;
}
.statement {
    
}

/* 開頭說明 */
.statement_intro {
    margin-bottom: 24px;
    line-height: 1.8;
}

/* 每一條 */
.statement_item {
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 3px solid #eee;
}

/* 標題（一、二、三） */
.statement_title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 18px;
}

/* 內容 */
.statement_content {
    line-height: 1.8;
    color: #444;
}
/*---------------//資訊安全政策+網站免責聲明--------------------*/ 
/*---------------關於聯邦--------------------*/ 
.about_card {
    padding: 48px;
}
.about_title {
    font-size: 1.5rem;
    color: #34bcbc;
    font-weight: bold;
    letter-spacing: 1px;
}
.about_content P{
    font-size: 17px;
    line-height: 2; 
    color: #212529;
}

/* 段落首行縮排 */
.about_paragraph {
    text-indent: 2em;
    margin-bottom: 1rem;
}

.about_list_level_1 {
    padding-left: 0;
    margin-bottom: 0.5rem;
}

.about_list_level_2 {
    padding-left: 2em;
    margin-bottom: 0.5rem;
}

.about_list_level_3 {
    padding-left: 4em;
    margin-bottom: 0.5rem;
}
@media (max-width: 767px) {
    .about_card {
        padding: 0px;
    }
}
/*---------------//關於聯邦--------------------*/ 
/*--------------工作場所性騷擾防治措施-----------*/
.harassment_main_title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0.5rem;
}

.harassment_meta {
    text-align: right;
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.harassment_title {
    font-size: 17px;
    color: #212529;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.harassment_content p {
    font-size: 17px;
    line-height: 2;
    color: #212529;
    margin-bottom: 0rem;
}

/* 段落首行縮排 */
.harassment_paragraph {
    /* text-indent: 2em; */
    margin-bottom: 1rem;
}

/* 模擬規章文件的階層縮排 (處理 〈一〉、1、(1) 等不同階層) */
.harassment_list_level_1 {
    padding-left: 4em;
    text-indent: -3em;
    margin-bottom: 0rem;
}

.harassment_list_level_2 {
    padding-left: 5.5em;
    margin-bottom: 0rem;
    text-indent: -1.5em;
}

.harassment_list_level_3 {
    padding-left: 5.5em;
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .harassment_main_title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    .harassment {
        padding: 20px 10px;
    }

    .harassment_title {
        font-size: 1.3rem;
    }

    .harassment_text,
    .harassment_list li {
        font-size: 1rem;
    }
}
/*--------------//工作場所性騷擾防治措施-----------*/
/*--------------蒐集、處理、利用客戶個人資料告知說明-----------*/

.privacy_policy_main_title {
    font-size: 2rem;
    
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0.5rem;
}
.privacy_policy_sub_title {
    text-align: center;
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 2rem;
}

.privacy_policy_content .privacy_policy_title {
    font-size: 17px; 
    margin-bottom: 1rem;
    padding-left: 2em;
    margin-bottom: 1rem;
    text-indent: -2em;
}
.privacy_policy_content p {
    font-size: 17px; 
    color: #212529;
}
.privacy_policy_item_title {
    font-size: 1.25rem;
    color: #34bcbc;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 4px solid #34bcbc;
}


.privacy_policy_content {
    font-size: 17px;
    line-height: 2;
    color: #212529;
    text-align: justify;
}

/* 段落間距與首行縮排 */
.privacy_policy_paragraph p {
    text-indent: 2em;
    margin-bottom: 1rem;
    font-size: 17px;
    color: #212529;
}

/* 清單項目縮排 */
.privacy_policy_list_item {
    padding-left: 2em;
    margin-bottom: 0.5rem;
}

.privacy_policy_list_item_sub {
    padding-left: 4em;
    margin-bottom: 0.5rem;
}

/* 表格外觀與縮放處理 (自動縮放、無捲軸) */
.privacy_policy_table_wrapper {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.privacy_policy_table {
    width: 100%;
    border-collapse: collapse;
    border: 1.5px solid #212529; 
    word-break: break-word; 
}

.privacy_policy_table th, 
.privacy_policy_table td {
    border: 1px solid #212529;
    padding: 0.75rem 1rem;
    vertical-align: top;
    color: #212529;
}

.privacy_policy_table th {
    font-weight: bold;
    text-align: center;
}

.privacy_policy_table_center_th {
    text-align: center !important;
    font-weight: bold;
}

/* 表格內的縮排清單 (處理特定目的代號，凸排效果) */
.privacy_policy_code_item {
    padding-left: 2em;
    text-indent: -2em;
    margin-bottom: 0.25rem;
}

/* 表格內的內文段落 */
.privacy_policy_table_paragraph {
    margin-bottom: 0.5rem;
    text-align: justify;
}
@media (max-width: 767.98px) {
    .privacy_policy_main_title {
        font-size: 1.5rem;        
        text-align: left;       
    }
}


/*--------------//蒐集、處理、利用客戶個人資料告知說明-----------*/


/*---------------建置中--------------------*/ 
/* 建置中卡片主體 */
.construction_card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 550px;
    width: 100%;
    border-top: 8px solid #34bcbc;
    position: relative;
    overflow: hidden;
}

/* 頂部裝飾背景 */
.construction_card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(52, 188, 188, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* 圖示設計 (容器) */
.icon_wrapper {
    font-size: 3rem;
    color: #34bcbc;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 讓圖示本身上下浮動 */
.icon_wrapper i {
    animation: float_anim 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

/* 底部增加一個橢圓形的影子，配合浮動縮放 */
.icon_wrapper::after {
    content: "";
    display: block;
    width: 45px;
    height: 8px;
    background: rgba(0, 0, 0, 0.12);
    border-radius: 50%;
    margin-top: 15px;
    animation: shadow_anim 3s ease-in-out infinite;
}

@keyframes float_anim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes shadow_anim {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.6); opacity: 0.3; } /* 圖示飄高時，影子變小變淡 */
    100% { transform: scale(1); opacity: 1; }
}

/* 文字標題設計 */
.title_text {
    color: #278e8e;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

/* 輔助說明文字 */
.desc_text {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* 返回按鈕設計 */
.back_action_btn {
    background-color: #ffffff;
    color: #34bcbc;
    border: 2px solid #34bcbc;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.back_action_btn:hover {
    background-color: #34bcbc;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 188, 188, 0.2);
}
/*---------------//建置中--------------------*/ 