.elementor-10187 .elementor-element.elementor-element-cb2ffb5{--display:flex;--background-transition:0.3s;}.elementor-10187 .elementor-element.elementor-element-5a4b8ff{--display:flex;--background-transition:0.3s;}/* Start custom CSS for text-editor, class: .elementor-element-08450f3 *//*--------------------------------------------------------------
# 佳津淨水 - B2B工業廢水處理指南 CSS
# 遵循企業視覺標準色：
# 主色調 (Logo藍)：#005EB8
# 輔助色 (亮藍/點綴)：#4DA8EE
# 強調色 (橙色/提示)：#FF7F00
# 文字色 (深灰)：#333333
# 背景色 (淺灰)：#F8F9FA
#--------------------------------------------------------------*/

/* 全局重設與基礎排版 */
.industrial-wastewater-guide {
    font-family: 'Microsoft JhengHei', '新細明體', Arial, sans-serif; /* 優先使用台灣常用的中文字體 */
    color: #333333;
    line-height: 1.8; /* 增加行高，提升閱讀舒適度 */
    margin: 0 auto;
    max-width: 960px; /* 設定最大內容寬度，適合大多數網頁佈局 */
    padding: 20px;
    background-color: #FFFFFF; /* 文章內容主體白色背景 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* 輕微陰影增加層次感 */
    border-radius: 8px;
}

/* 文章標題 */
.entry-title { /* 此處應為文章的 H1，WordPress 文章本身會有 .entry-title */
    font-size: 2.5em; /* 較大的標題字體 */
    color: #005EB8; /* Logo藍 */
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #4DA8EE; /* 輔助藍下劃線 */
    line-height: 1.3;
    font-weight: 700;
}

/* 文章元資訊 (作者、日期) */
.entry-meta {
    font-size: 0.9em;
    color: #666666; /* 中度灰色 */
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap; /* 允許換行 */
    gap: 15px; /* 間距 */
}
.entry-meta span {
    display: inline-block;
    padding-right: 15px;
    border-right: 1px solid #cccccc; /* 分隔線 */
}
.entry-meta span:last-child {
    border-right: none;
    padding-right: 0;
}

/* 主要內容區塊 */
.entry-content p {
    margin-bottom: 1.5em; /* 段落間距 */
}

/* 二級標題 (調整字體大小) */
.section-title {
    font-size: 1.6em; /* 較原本 1.8em 調小 */
    color: #005EB8; /* Logo藍 */
    margin-top: 35px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E0E0E0; /* 較淺的線條分隔 */
    font-weight: 600;
}

/* 三級標題 (調整字體大小) */
.sub-section-title {
    font-size: 1.2em; /* 較原本 1.4em 調小 */
    color: #333333; /* 文字深灰 */
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* 項目符號列表 */
.bullet-list { /* 在新的 HTML 中，部分列表會直接用 ul/li，這裡為更精確控制，將 .bullet-list 的樣式應用到所有 ul，或者您可以在新的 HTML 中為所有 ul 都加上 .bullet-list class */
    margin-left: 20px; /* 縮排 */
    margin-bottom: 1.5em;
}
.bullet-list li {
    margin-bottom: 12px;
    padding-left: 25px; /* 為標記預留空間 */
    position: relative;
}
.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em; /* 調整標記垂直位置 */
    width: 10px;
    height: 10px;
    background-color: #4DA8EE; /* 輔助藍作為標記 */
    border-radius: 50%;
    margin-right: 10px;
}
.bullet-list li strong {
    color: #005EB8; /* 加粗的標題文字使用Logo藍 */
}

/* 專家建議區塊 */
.expert-advice { /* 在新的 HTML 中，沒有直接使用此 class，但如果您的模板中有類似區塊，可以保留此樣式 */
    background-color: #E0F2FF; /* 淺淺的輔助藍背景 */
    border-left: 5px solid #4DA8EE; /* 左側輔助藍邊框 */
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
    font-style: italic; /* 斜體強調建議 */
}
.expert-advice p strong {
    color: #005EB8; /* 專家建議字體加粗使用Logo藍 */
}

/* 表格樣式 */
.table-container {
    overflow-x: auto; /* 在小螢幕上允許水平滾動 */
    margin-bottom: 1.5em;
    border: 1px solid #E0E0E0; /* 表格邊框 */
    border-radius: 8px; /* 圓角 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.table-container table {
    width: 100%;
    border-collapse: collapse; /* 合併邊框 */
    table-layout: fixed; /* 固定表格列寬 */
}
.table-container th,
.table-container td {
    padding: 12px 15px;
    text-align: left; /* 文字靠左 */
    border-bottom: 1px solid #E0E0E0; /* 表格內分隔線 */
}
.table-container th {
    background-color: #005EB8; /* 表頭使用Logo藍 */
    color: #FFFFFF; /* 表頭文字白色 */
    font-weight: 600;
    text-align: center; /* 表頭文字居中 */
    white-space: nowrap; /* 防止表頭文字換行 */
}
.table-container td {
    background-color: #FFFFFF; /* 表格內容背景色 */
}
.table-container td:first-child, /* 第一欄為技術分類 */
.table-container th:first-child {
    text-align: left; /* 第一欄靠左 */
    width: 15%; /* 設定較窄的寬度 */
}
.table-container td strong {
    color: #005EB8; /* 表格內加粗文字使用Logo藍 */
}
/* 滑鼠懸停效果 */
.table-container tbody tr:hover {
    background-color: #F0F8FF; /* 淺藍色懸停效果 */
}

/* 成本效益考量區塊 */
.cost-benefit-consideration {
    background-color: #FFF9E0; /* 淺黃色背景，暗示謹慎考量 */
    border-left: 5px solid #FF7F00; /* 強調橙色邊框 */
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
}
.cost-benefit-consideration p strong {
    color: #005EB8; /* 標題使用Logo藍 */
}

/* 總結性提示 */
.summary-prompt {
    background-color: #E8F5E9; /* 淺綠色背景，暗示積極行動 */
    border-left: 5px solid #5CB85C; /* 綠色邊框 */
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}
.summary-prompt p strong {
    color: #005EB8; /* 標題使用Logo藍 */
}

/* 聯繫資訊區塊 */
.contact-info {
    background-color: #F0FFF0; /* 淡綠色背景 */
    padding: 20px;
    margin-top: 30px;
    border-radius: 8px;
    border: 1px solid #D0E0D0; /* 淡綠色邊框 */
    text-align: center;
}
.contact-info h3 {
    color: #005EB8; /* Logo藍 */
    margin-bottom: 15px;
    font-size: 1.6em;
    font-weight: 600;
}
.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.6;
}
.contact-info p strong {
    color: #333333; /* 標籤為深灰 */
}

/* 連結樣式 */
a {
    color: #005EB8; /* 連結使用 Logo 藍 */
    text-decoration: none; /* 取消下劃線 */
    transition: color 0.3s ease; /* 過渡效果 */
}
a:hover {
    color: #4DA8EE; /* 滑鼠懸停時變成輔助藍 */
    text-decoration: underline; /* 懸停時顯示下劃線 */
}

/* 針對特定連結的顏色和樣式 */
/* 規範連結 */
a[href="https://oaout.moenv.gov.tw/law/LawContent.aspx?id=FL015486"] {
    color: #FF7F00; /* 使用強調橙色來標示法規連結 */
    font-weight: bold; /* 加粗 */
}
a[href="https://oaout.moenv.gov.tw/law/LawContent.aspx?id=FL015486"]:hover {
    color: #FFC107; /* 懸停時顏色變亮 */
}

/* 案例連結 */
a[href="https://aquaheart.com.tw/portfolio/%e7%8f%be%e4%bb%a3%e8%a3%bd%e9%80%a0%e6%a5%ad%e7%9a%84%e5%b7%a5%e6%a5%ad%e6%b7%a8%e6%b0%b4%e8%88%87%e6%b0%b8%e7%ba%8c%e7%99%bc%e5%b1%95%e7%9a%84%e9%97%9c%e9%8d%b5%e6%8e%a8%e6%89%8b/"] {
    color: #5CB85C; /* 使用綠色來標示案例或解決方案連結 */
    font-weight: bold;
}
a[href="https://aquaheart.com.tw/portfolio/%e7%8f%be%e4%bb%a3%e8%a3%bd%e9%80%a0%e6%a5%ad%e7%9a%84%e5%b7%a5%e6%a5%ad%e6%b7%a8%e6%b0%b4%e8%88%87%e6%b0%b8%e7%ba%8c%e7%99%bc%e5%b1%95%e7%9a%84%e9%97%9c%e9%8d%b5%e6%8e%a8%e6%89%8b/"]:hover {
    color: #81C784;
}


/*響應式設計：針對小螢幕調整*/
@media (max-width: 768px) {
    .industrial-wastewater-guide {
        padding: 15px;
    }
    .entry-title {
        font-size: 2em;
    }
    /* H2 字體調整 */
    .section-title {
        font-size: 1.4em; /* 較原本 1.6em 調小 */
    }
    /* H3 字體調整 */
    .sub-section-title {
        font-size: 1.1em; /* 較原本 1.2em 調小 */
    }
    .table-container table,
    .table-container th,
    .table-container td {
        font-size: 0.9em; /* 表格字體稍微縮小 */
    }
    .table-container td:first-child,
    .table-container th:first-child {
        width: 20%; /* 在小螢幕上增加第一欄的寬度以利閱讀 */
    }
    .entry-meta {
        flex-direction: column; /* 元資訊垂直堆疊 */
        gap: 5px;
    }
    .entry-meta span {
        border-right: none;
        padding-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .entry-title {
        font-size: 1.8em;
    }
    /* H2 字體調整 */
    .section-title {
        font-size: 1.3em; /* 進一步縮小 */
    }
    /* H3 字體調整 */
    .sub-section-title {
        font-size: 1em; /* 進一步縮小 */
    }
    .contact-info h3 {
        font-size: 1.4em;
    }
    .contact-info p {
        font-size: 1em;
    }
    .table-container td, .table-container th {
        padding: 8px 10px;
    }
}/* End custom CSS */