/* ============================投資人專區 - 共用樣式 主色: #EC6C00 (特力屋橘)============================*/

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Microsoft JhengHei", "PingFang TC", "Noto Sans TC", sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

a:hover {
    color: #EC6C00;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Header / Top Bar ---------- */
.site-header {
    background: #fff;
    border-bottom: 3px solid #EC6C00;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: #EC6C00;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

.header-logo .logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #333;
}

.header-logo .logo-text span {
    color: #EC6C00;
}

.header-nav {
    display: flex;
    gap: 28px;
}

.header-nav a {
    font-size: 15px;
    color: #555;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #EC6C00;
    transition: width 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a.active {
    color: #EC6C00;
}

/* ---------- Breadcrumb ---------- */
/* .breadcrumb-bar 原本為空，已清理 */

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 13px;
    color: #888;
}

.breadcrumb-inner a {
    color: #888;
}

.breadcrumb-inner a:hover {
    color: #EC6C00;
}

.breadcrumb-inner .sep {
    margin: 0 3px;
    color: #6c757d;
}

.breadcrumb-inner .current {
    color: #EC6C00;
    font-weight: 500;
}

/* ---------- Page Layout ---------- */
.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 60px;
    display: flex;
    gap: 40px;
    min-height: 600px;
}

/* ---------- Sidebar ---------- */
.sidebar {
    width: 220px;
    flex-shrink: 0;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #575757;
    padding: 8px 0 8px 0;
    margin-bottom: 0;
    border-top: 0px solid #EC6C00;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.sidebar-title .toggle-arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sidebar-title.collapsed .toggle-arrow {
    transform: rotate(-135deg);
}

.sidebar-title:hover {
    color: #EC6C00;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    /* border-top: 1px solid #eee; */
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.sidebar-menu.collapsed {
    max-height: 0;
    border-top: none;
}

/* .sidebar-menu li 原本為空，已清理 */

.sidebar-menu li a {
    display: block;
    padding: 3px 12px;
    font-size: 16px;
    color: #575757;
    line-height: 2;
    transition: all 0.2s ease;
}

.sidebar-menu li a:hover {
    color: #EC6C00;
    /*background: #f4f4f4;*/
    border-left-color: #EC6C00;
}

.sidebar-menu li.active a {
    color: #EC6C00;
    font-weight: 600;
    background: #fff;
    border-left-color: #EC6C00;
}

/* ---------- Content Area ---------- */
.content-area {
    flex: 1;
    min-width: 0;
    min-height: fit-content;
}

.content-header {
    margin-bottom: 20px;
    /*padding-bottom: 20px;*/
    border-bottom: 1px solid #f4f2eb;
}

.content-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #2d2d2d;
}

/* 8px 正方形已移除 */

.content-body h3 {
    font-size: 18px;
    font-weight: 500;
    color: #575757;
    line-height: 1.5;
}

.content-body {
    padding: 10px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    min-height: 400px;
}

.content-body .placeholder-text {
    text-align: center;
    color: #ccc;
    font-size: 16px;
    padding-top: 120px;
}

.btn-box {
    margin-right: -1.5rem;
    display: flex;
    flex-wrap: wrap;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

a.border-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 400;
    color: #fff;
    background-color: #ec6c00;
    /* border: 1px solid #ec6c00; */
    border-radius: 100px;
    padding: .75rem 1.25rem;
    transition: all .3s;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 7%;
}

a.border-link:hover {
    background-color: #2d2d2d;
}

.dot_1 {
    margin-left: -19px;
    margin-bottom: -33px;
}

.dot_orange {
    background-color: #ec6c00;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 1px;
    margin-bottom: 10px;
}

.text_h2 {
    font-size: 24px;
    font-weight: 600;
    color: #575757;
    text-align: left;
    line-height: 1.5em;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 23px;
}

.text_h2_1 {
    font-size: 24px;
    font-weight: 600;
    color: #575757;
    text-align: left;
    line-height: 1.5em;
    padding-top: 20px;
    padding-bottom: 10px;
    padding-left: 23px;
}

a.text_h2_1 {
    color: #ec6c00;
    margin-left: -1.3rem;
}
a.text_h2_1:hover {
    color: #575757;
    text-decoration: underline;
}

.text_h3 {
    font-size: 18px;
    font-weight: 500;
    color: #575757;
    line-height: 150%;
    padding-top: 10px;
    padding-left: 0%;
    padding-bottom: 10px;
}

.text_h3_1 {
    font-size: 18px;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 150%;
    padding-top: 10px;
    padding-left: 0%;
    padding-bottom: 10px;
}

.text_h4 {
    font-size: 15px;
    font-weight: 400;
    color: #575757;
    line-height: 150%;
    padding-top: 10px;
    padding-left: 0%;
    padding-bottom: 10px;
}



ul.text_h4_ul {
    margin-left: 20px;
    margin-top: 15px;
}

.container-csr1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.container-csr1 .text-column {
    flex: 1;
}

.container-csr1 .image-column {
    flex: 0 0 300px;
}

.container-csr1 .image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.container-intro1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding: 20px 20px 20px 0px;
}

.container-intro1 .text-column {
    flex: 1;
}

.container-intro1 .image-column {
    flex: 0 0 500px;
}

.container-intro1 .image-column img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn_group2 {
    display: flex;
    justify-content: space-evenly;
    
    padding: 25px;
    gap: 2rem;

}



@media (max-width: 991px) {

    .text_h2 {
        font-size: 20px;
        font-weight: 600;
        color: #575757;
        text-align: left;
        line-height: 1.5em;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 23px;
    }

    .text_h2_1 {
        font-size: 20px;
        font-weight: 600;
        color: #575757;
        text-align: left;
        line-height: 1.5em;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 23px;
    }


    .text_h3 {
        font-size: 16px;
        font-weight: 500;
        color: #575757;
        line-height: 150%;
        padding-top: 10px;
        padding-left: 0%;
        padding-bottom: 10px;
    }

    .text_h3_1 {
        font-size: 16px;
        font-weight: 500;
        color: #2d2d2d;
        line-height: 150%;
        padding-top: 10px;
        padding-left: 0%;
        padding-bottom: 10px;
    }

    .dot_1 {
        margin-left: -19px;
        margin-bottom: -29px;
    }

    .container-csr1 {
        flex-direction: column;
        gap: 20px;
    }

    .container-csr1 .image-column {
        flex: 1;
        width: 100%;
        margin-top: 10px;
    }

    .container-csr1 .text-column {
        width: 100%;
    }

    .container-intro1 {
        flex-direction: column;
        gap: 20px;
    }

    .container-intro1 .image-column {
        flex: 1;
        width: 100%;
        margin-top: -25px;
    }

    .container-intro1 .text-column {
        width: 100%;
    }
}



/* ---------- 表格 ---------- */

/* ---------- 主要所營業務 ---------- */

.module-table-wrap {
    margin: 24px 0 32px 0;
    padding: 0 4px;
}

.module-table-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
}

.module-table-card {
    border-radius: 10px;
    overflow: hidden;
    /*box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);*/
    background: #fff;
    border: 1px solid #efefef;
}



.module-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    color: #333;
}

.module-table thead tr th {
    background-color: #5a5a5a;
    color: #fff;
    text-align: center;
    padding: 16px 12px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0rem;
    border: none;
}

.module-table tbody tr td {
    text-align: justify;
    padding: 17px 24px;
    /*border: 1px solid #eee;*/
    color: #444;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0rem;
}

.module-table tbody tr td ol {
    margin-bottom: 0rem;
    margin-left: 1rem;
}

.module-table td:first-child {
    border-right: 1px solid #efefef;
}

.module-table tbody tr:last-child td {
    border-bottom: none;
}

.module-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.module-table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

/* .module-table tbody tr:hover 原本為內容註解且為空，已清理 */

@media (max-width: 768px) {
    .module-table-title {
        font-size: 15px;
    }

    .module-table {
        font-size: 15px;
    }

    .module-table tbody tr td {
        font-size: 13px;
        padding: 12px 18px;
        text-align: justify;
    }

    .module-table thead tr th {
        font-size: 13px;
    }



}


/* ---------- 基本資料表格 ---------- */

*[data-ts] {
    display: none;
}

/* 圖片表格專用樣式 */
.custom-info-table-wrapper {
    margin: 0 0 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.custom-info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.custom-info-table tr {
    border-bottom: 1px solid #eee;
}

.custom-info-table tr:last-child {
    border-bottom: none;
}

.custom-info-table td {
    padding: 14px 20px;
    vertical-align: middle;
}

/* 標籤欄位：淺灰色背景 */
.custom-info-table td.label-cell {
    background-color: #f8f8f8;
    color: #444;
    width: 20%;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0rem;
}

/* 數值欄位：白色背景 */
.custom-info-table td.value-cell {
    background-color: #fff;
    color: #444;
    width: 30%;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0rem;
}


@media (max-width: 768px) {
    .custom-info-table td {
        padding: 10px 12px;
        font-size: 14px;
    }

    .custom-info-table td.label-cell {
        width: 30%;
    }

    .custom-info-table td.value-cell {
        width: 70%;
    }

    /* 標籤欄位：淺灰色背景 */
    .custom-info-table td.label-cell {
        background-color: #f8f8f8;
        color: #444;

        font-weight: 400;
        font-size: 13px;
        letter-spacing: 0rem;
    }

    /* 數值欄位：白色背景 */
    .custom-info-table td.value-cell {
        background-color: #fff;
        color: #444;

        font-size: 13px;
        font-weight: 400;
        letter-spacing: 0rem;
    }

    /* 行動端若太擠可以考慮改為兩欄一列 */

    .custom-info-table tr {
        display: flex;
        flex-wrap: wrap;
    }

    .custom-info-table td {
        flex: 0 0 50%;
        border-bottom: 1px solid #eee;
    }

    .custom-info-table td:nth-child(odd) {
        border-right: 1px solid #eee;
    }
}

/* ---------- Footer ---------- */
.site-footer {
    background: #333;
    color: #aaa;
    padding: 30px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-inner .copyright {
    font-size: 13px;
}

.footer-inner .footer-links {
    display: flex;
    gap: 20px;
}

.footer-inner .footer-links a {
    font-size: 13px;
    color: #aaa;
}

.footer-inner .footer-links a:hover {
    color: #EC6C00;
}

/* ---------- RWD ---------- */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .header-nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 20px 16px 40px;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar-menu {
        display: block;
        border-top: none;
    }

    .sidebar-menu li {
        border-right: none;
    }

    .sidebar-menu li:last-child {
        /* border-bottom: 1px solid #eee; */
    }

    .sidebar-menu li a {
        padding: 5px 12px;
        font-size: 14px;
        /*border-left: 3px solid transparent;*/
        border-bottom: none;
    }

    .sidebar-menu li a:hover,
    .sidebar-menu li.active a {
        border-left-color: #EC6C00;
        border-bottom-color: transparent;
    }

    .content-header h1 {
        font-size: 24px;
    }

    .content-body h3 {
        font-size: 16px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    aside.sidebar {
        margin-top: -20px;
    }

    .sidebar-title {
        padding: 4px 0 4px 0;

    }


}

/* ---------- 特力屋管家橫幅 (Butler Banner) ---------- */
.butler-banner {
    /*background-color: #f4f4f4;*/
    border-radius: 8px;
    padding: 4px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 改為置中 */
    gap: 60px;
    /* 文字塊與按鈕之間的間距 */
    margin: 5px;
    color: #fff;
}

.butler-content {
    display: flex;
    flex-direction: column;
    /* 改為垂直排列 */
    align-items: flex-start;
    /* 圖示靠左置於文字上方 */
    gap: 8px;
}

.butler-icon {
    width: 8px;
    height: 8px;
    background-color: #ec6c00;
    flex-shrink: 0;
}

.butler-text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #575757;
}

.butler-btn {
    background-color: #ec6c00;
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.butler-btn:hover {
    background-color: #2d2d2d;
    color: #fff;
}

.butler-btn:focus {
    background-color: #2d2d2d;
    color: #fff;
}


/* ---------- 特力屋管家橫幅 (Butler Banner)按鈕群組 ---------- */

.btn_group1 {
    display: flex;
    gap: 0.5rem;

}



@media (max-width: 991px) {
    .butler-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .butler-content {
        flex-direction: column;
        gap: 10px;
    }

    .butler-text {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .butler-text {
        font-size: 16px;
    }

    .butler-banner {
        padding: 12px 15px;
    }

    .butler-btn {
        margin-top: -15px;
    }
}

/* ---------- 線上預約區塊 (Reservation Section) ---------- */
.reservation-section {
    background-color: #f9f9f9;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    margin: 20px 0;
}

.reservation-title {
    font-size: 18px;
    font-weight: 500;
    color: #575757;
    margin-bottom: 8px;
    letter-spacing: 0;
    line-height: 150%;
}

.reservation-desc {
    font-size: 15px;
    color: #777777;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 150%;

}

.reservation-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ec6c00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 5%;
    line-height: 160%;
    margin-top: 8px;
}

.reservation-btn:hover {
    background-color: #2d2d2d;
    color: #fff;
    /*transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 108, 0, 0.2);*/
}

.reservation-btn:focus {
    background-color: #2d2d2d;
    color: #fff;

}


.reservation-btn .arrow {
    font-size: 20px;
}

@media (max-width: 768px) {
    .reservation-title {
        font-size: 16px;
    }

    .reservation-desc {
        font-size: 15px;
    }

    .reservation-btn {
        padding: 6px 25px;
        font-size: 14px;
        letter-spacing: 7%;
    }
}

.container-feature-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
}

/* ---------- 夢想居家特寫區塊 (Feature Card) ---------- */
.feature-card {
    background-color: #efefef;
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: visible;
    margin: 0px 12px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /*box-shadow: 0 10px 30px rgba(236, 108, 0, 0.2);*/
    width: calc(50% - 15px);
    max-width: 350px;
}

.feature-card h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0;
    color: #000;
    line-height: 1.5;
}

.feature-card p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0;
    color: #666;
    font-weight: 500;
}

.feature-card .btn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #333;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.feature-card .btn-more:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.feature-card .decorations {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    pointer-events: none;
}

.feature-card .decor-square {
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
}

.feature-card .decor-square.large {
    width: 65px;
    height: 30px;
    bottom: 78px;
    right: -18px;
    /*box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.03);*/
}

.feature-card .decor-square.small {
    width: 30px;
    height: 32px;
    bottom: 43px;
    right: 45px;
    /*box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.03);*/

}

@media (max-width: 991px) {
    .feature-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 30px 20px;
        width: 100%;
        max-width: 90%;
    }

    .feature-card h2 {
        font-size: 24px;
    }

    .feature-card p {
        font-size: 16px;
    }

    .feature-card .decorations {
        width: 100px;
        height: 100px;
    }

    .feature-card .decor-square.large {
        width: 65px;
        height: 30px;
        bottom: 50px;
        right: -15px;
    }

    .feature-card .decor-square.small {
        width: 25px;
        height: 25px;
        bottom: 20px;
        right: 49px;
    }
}

/* ---------- 營收報表表格 (Revenue Report Table) ---------- */

.revenue-report-container {
    margin: 20px 0;
}

.revenue-report-controls {
    padding-left: 1.7rem;
}

.container_revenue_year {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: end;
}

.revenue-year-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.revenue-year-custom-wrapper {
    position: relative;
    width: 120px;
}

.revenue-year-custom-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.revenue-year-custom-select:hover {
    border-color: #EC6C00;
}

.revenue-year-custom-select::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #888;
    border-bottom: 2px solid #888;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -4px;
}

.revenue-year-custom-wrapper.open .revenue-year-custom-select::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.revenue-year-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.revenue-year-options li {
    padding: 8px 15px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: background 0.2s;
}

.revenue-year-options li:hover {
    background-color: #fef0e6;
    color: #EC6C00;
}

.revenue-year-options li.active {
    background-color: #EC6C00;
    color: #fff;
}

.revenue-year-select {
    display: none;
    /* 隱藏原生的 select 但保留在 DOM 中以防萬一 */
}

.revenue-unit {
    font-size: 13px;
    color: #888;
    padding: 9px 0px;
}

.revenue-section {
    margin-bottom: 40px;
}

.revenue-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-left: 5px;
}

.revenue-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.revenue-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.revenue-table th {
    background-color: #575757;
    /* 淺青綠色表頭 */
    color: #fff;
    font-weight: 400;
    padding: 15px 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    font-size: 15px;
    line-height: 150%;
}

.revenue-table td {
    padding: 15px 10px;
    border-right: 1px solid #e0e0e0;
    text-align: center;
    color: #555;
    font-size: 15px;
    line-height: 150%;
}

.revenue-table td:last-child {

    border-right: none;

}

.revenue-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.revenue-table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}


/* PDF 按鈕樣式 */
/* 已清理末尾空白規則集 */
.pdf-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: #007B83;
    border: 1.5px solid #007B83;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.pdf-download-btn:hover {
    background-color: #007B83;
    color: #fff;
}

.pdf-download-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .revenue-report-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .revenue-section-title {
        font-size: 18px;
    }

    .revenue-table th,
    .revenue-table td {
        padding: 10px 5px;
        font-size: 14px;
    }

    .revenue-unit {
    font-size: 13px;
    color: #888;
    padding: 9px 0px;
    margin-right: 10px;
}
}


/* ===== 公司沿革 Timeline ===== */
.tlw-timeline {
    position: relative;
    padding-left: 28px;
}

.tlw-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ec6c00, #FFB366);
    /*background: #ec6c00;*/
}

.tlw-timeline-item {
    position: relative;
    margin-bottom: 28px;
}

.tlw-timeline-item::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #ec6c00;
    z-index: 1;
}

.tlw-timeline-year {
    font-size: 13px;
    font-weight: 700;
    color: #ec6c00;
    background: #fff3e8;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.tlw-timeline-text {
    font-size: 14px;
    color: var(--tlw-text-dark);
    line-height: 1.7;
}