﻿@charset "utf-8";

/* ==========================================================
   ESG / Download
   下載專區專用樣式

   共用版型仍由以下檔案負責：
   - esg.css
   - esg-rwd.css
   - CustomStyle.css
   - esg-rwd.js

   本檔只處理：
   1. ESG 報告書搜尋區
   2. ESG 報告書列表
   3. download_more 詳細頁
   4. 附件區
   5. Download 專屬 RWD
   ========================================================== */


/* ==========================================================
   共用 Download 內容區
   ========================================================== */

.download-page {
    width: 95%;
    margin: 0 auto;
}


/* ==========================================================
   Index.aspx
   ESG 報告書搜尋區
   ========================================================== */

.download-toolbar {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}


/* 左側 ESG 報告書標題 */
.download-toolbar-title {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}


    .download-toolbar-title img {
        width: 18px;
        height: 18px;
    }


/* 搜尋表單 */
.download-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}


.download-search-label {
    color: #666666;
    font-size: 13px;
}


/* 年度 */
.download-search-year {
    width: 88px;
    height: 30px;
    box-sizing: border-box;
}


/* 關鍵字 */
.download-search-keyword {
    width: 180px;
    height: 30px;
    padding: 3px 7px;
    box-sizing: border-box;
}


/* 搜尋按鈕 */
.download-search-button {
    height: 30px;
    padding: 0 14px;
    border: 1px solid #2e3289;
    border-radius: 3px;
    background-color: #2e3289;
    color: #ffffff;
    cursor: pointer;
    font-family: "微軟正黑體", Arial, Helvetica, sans-serif;
    font-size: 13px;
}


    .download-search-button:hover,
    .download-search-button:focus {
        border-color: #636bda;
        background-color: #636bda;
        outline: 0;
    }


/* ==========================================================
   Index.aspx
   ESG 報告書列表
   ========================================================== */

.download-list-wrap {
    width: 100%;
    overflow: hidden;
}


/*
   表格本體

   不再使用深藍色整條表頭，
   改回較接近原網站的淡藍漸層樣式。
*/
.download-list-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    border-top: 0;
    border-bottom: 2px solid #adcfef;
    background-color: #ffffff;
}


    /* ==========================================================
   列表表頭
   ========================================================== */

    .download-list-table thead th {
        height: 36px;
        padding: 7px 10px;
        border-top: 1px solid #c2dbef;
        border-right: 1px solid rgba(255, 255, 255, 0.75);
        border-bottom: 1px solid #9fbdd8;
        background-color: #dceefa;
        background-image: linear-gradient( to bottom, #f7fbff 0%, #edf7fd 30%, #dceefa 65%, #c7e1f1 100% );
        color: #2e3289;
        font-size: 13px;
        font-weight: bold;
        line-height: 22px;
        text-align: center;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 2px 2px rgba(0, 0, 0, 0.15);
    }


        /* 左側圓角 */
        .download-list-table thead th:first-child {
            border-left: 1px solid #c2dbef;
            border-radius: 7px 0 0 7px;
        }


        /* 右側圓角 */
        .download-list-table thead th:last-child {
            border-right: 1px solid #c2dbef;
            border-radius: 0 7px 7px 0;
        }


/* ==========================================================
   列表欄位寬度
   ========================================================== */

.download-col-no {
    width: 90px;
}


.download-col-date {
    width: 130px;
}


.download-col-title {
    width: auto;
}


/* ==========================================================
   列表內容
   ========================================================== */

.download-list-table tbody td {
    padding: 10px 10px;
    border-bottom: 1px dotted #d0d0d0;
    background-color: #ffffff;
    color: #555555;
    font-size: 13px;
    line-height: 1.6;
    vertical-align: middle;
}


/* 最後一列 */
.download-list-table tbody tr:last-child td {
    border-bottom: 0;
}


/* 滑鼠移入資料列 */
.download-list-table tbody tr:hover td {
    background-color: #f7fbff;
}


/* 編號 */
.download-list-no {
    color: #444444;
    text-align: center;
}


/* 日期 */
.download-list-date {
    color: #636bda !important;
    text-align: center;
    white-space: nowrap;
}


/* 檔案名稱 */
.download-list-title {
    text-align: left;
    overflow-wrap: break-word;
    word-break: break-word;
}


    /* 檔案連結 */
    .download-list-title a,
    .download-list-title a:link,
    .download-list-title a:visited {
        color: #222222;
        text-decoration: none;
    }


        .download-list-title a:hover,
        .download-list-title a:focus {
            color: #636bda;
            text-decoration: underline;
        }


/* NEW 圖示 */
.download-new {
    margin-left: 6px;
    vertical-align: middle;
}


/* 無資料 */
.download-empty {
    padding: 28px 10px !important;
    color: #777777;
    text-align: center;
}


/* ==========================================================
   分頁
   ========================================================== */

.download-pager {
    margin-top: 15px;
    text-align: center;
}


    /* 分頁內 table 不要跑版 */
    .download-pager table {
        max-width: 100%;
    }


/* ==========================================================
   download_more.aspx
   詳細頁
   ========================================================== */

.download-detail-page {
    padding-top: 2px;
}


/* 標題及日期 */
.download-detail-head {
    margin-bottom: 8px;
}


.download-detail-title {
    margin: 0 0 3px;
    line-height: 1.6;
}


/* 日期 / 公告字號 */
.download-detail-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    line-height: 1.7;
}


.download-detail-meta-separator {
    color: #cccccc;
}


/* 詳細頁分隔線 */
.download-detail-line {
    height: 1px;
    margin: 10px 0 14px;
}


/* ==========================================================
   詳細頁文章內容
   ========================================================== */

.download-detail-content {
    width: 100%;
    min-height: 32px;
    line-height: 1.85;
    overflow-wrap: break-word;
    word-break: normal;
}


    .download-detail-content p {
        margin: 0 0 8px;
    }


    /* 後台內容圖片避免超出版面 */
    .download-detail-content img {
        max-width: 100%;
        height: auto;
    }


    /* 後台內容 table */
    .download-detail-content table {
        max-width: 100%;
    }


/* ==========================================================
   相關連結
   ========================================================== */

.download-related-row {
    display: flex;
    margin-top: 20px;
    align-items: flex-start;
    gap: 6px;
    line-height: 20px;
    overflow-wrap: anywhere;
}


    .download-related-row img {
        margin-top: 3px;
        flex: 0 0 auto;
    }


    .download-related-row a {
        overflow-wrap: anywhere;
    }











/* ==========================================================
   Back

   實際圖示與樣式沿用 esg.css 中的 .back，
   這裡只控制上下距離。
   ========================================================== */

.download-back {
    margin-top: 28px;
    text-align: center;
}


/* ==========================================================
   Tablet / Mobile
   768px
   ========================================================== */

@media screen and (max-width: 768px) {

    /* -------------------------
       內容
       ------------------------- */

    .download-page {
        width: 100%;
        margin: 0;
    }


    /* -------------------------
       搜尋區
       ------------------------- */

    .download-toolbar {
        display: block;
        width: 100%;
    }


    .download-toolbar-title {
        margin-bottom: 12px;
    }


    .download-search {
        width: 100%;
        justify-content: flex-start;
    }


    .download-search-keyword {
        width: min(220px, 45vw);
    }


    /* -------------------------
       列表
       ------------------------- */

    .download-list-wrap {
        width: 100%;
        overflow: hidden;
    }


    .download-list-table {
        width: 100% !important;
        table-layout: fixed;
    }


        /* 表頭 */
        .download-list-table thead th {
            height: 34px;
            padding: 6px 5px;
            font-size: 12px;
            line-height: 20px;
        }


        /* 資料 */
        .download-list-table tbody td {
            padding: 8px 5px;
            font-size: 12px;
        }


    /* 編號欄縮小 */
    .download-col-no {
        width: 52px;
    }


    /* 日期欄縮小 */
    .download-col-date {
        width: 105px;
    }


    .download-list-title {
        overflow-wrap: anywhere;
        word-break: break-word;
    }


    /* -------------------------
       詳細頁
       ------------------------- */

    .download-detail-content {
        width: 100%;
    }


    /* 日期改為上下排列 */
    .download-detail-meta {
        display: block;
    }


    .download-detail-meta-separator {
        display: none;
    }


    .download-detail-meta > span {
        display: block;
    }


    /* 相關連結 */
    .download-related-row {
        width: 100%;
        flex-wrap: wrap;
    }
}


/* ==========================================================
   Mobile
   500px
   ========================================================== */

@media screen and (max-width: 500px) {

    /* -------------------------
       搜尋區
       ------------------------- */

    .download-toolbar-title {
        margin-bottom: 10px;
    }


    .download-search {
        display: grid;
        width: 100%;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 8px;
    }


    .download-search-year,
    .download-search-keyword {
        width: 100%;
        max-width: none;
    }


    .download-search-button {
        grid-column: 2;
        width: 90px;
    }


    /* -------------------------
       列表表頭
       ------------------------- */

    .download-list-table thead th {
        height: 32px;
        padding: 5px 3px;
        font-size: 11px;
        line-height: 18px;
    }


    /* 資料 */
    .download-list-table tbody td {
        padding: 7px 3px;
        font-size: 11px;
        line-height: 1.45;
    }


    /* 編號 */
    .download-col-no {
        width: 40px;
    }


    /* 日期 */
    .download-col-date {
        width: 86px;
    }


    .download-list-no {
        font-size: 11px;
    }


    .download-list-date {
        font-size: 11px !important;
        line-height: 1.35;
        white-space: normal;
    }


    .download-list-title {
        font-size: 11px;
        line-height: 1.45;
    }


    /* -------------------------
       詳細頁
       ------------------------- */

    .download-detail-title {
        font-size: 16px;
        line-height: 1.55;
    }


    .download-detail-content {
        font-size: 13px;
        line-height: 1.75;
    }


    .download-related-row {
        font-size: 12px;
    }


    .download-back {
        margin-top: 22px;
    }
