/* ============================================================
   MicroLight 產品頁樣式
   品牌色：#046eb8
   ============================================================ */

:root {
    --ml-blue: #046eb8;
    --ml-dark: #181818;
    --ml-text: #403f3f;
    --ml-text-light: #737373;
    --ml-text-muted: #a5a5a5;
    --ml-border: #d6d6d6;
    --ml-border-light: #dcdcdc;
    --ml-bg-gray: #eeeeee;
    --ml-bg-table-alt: #fafcff;
    --ml-bg-table-first: #dae8f8;
    --ml-radius: 10px;
    --ml-wrap-width: 1440px;
    --ml-font: "Poppins", "Noto Sans TC", sans-serif;
    --ml-transition: 0.5s;
    --ml-shadow: 0 0 5px rgba(4, 110, 184, 0.23);
    --ml-shadow-hover: 0 0 12px rgba(4, 110, 184, 0.23);
}

/* ---- Reset & Base ---- */
.ml-product-page {
    font-family: var(--ml-font);
    color: var(--ml-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.ml-product-page *,
.ml-product-page *::before,
.ml-product-page *::after {
    box-sizing: border-box;
}

.ml-wrap {
    max-width: var(--ml-wrap-width);
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
}

/* ============================================================
   Section Header（英文大標 + 中文底線標）
   ============================================================ */
.ml-section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;
}

.ml-section-header__en {
    display: block;
    font-style: normal;
    font-size: 50px;
    font-weight: 500;
    color: var(--ml-blue);
    line-height: 1.2;
    text-transform: uppercase;
    font-family: var(--ml-font);
}

@media (max-width: 480px) {
    .ml-section-header__en {
        font-size: 42px;
    }
}

.ml-section-header__title {
    display: inline-block;
    position: relative;
    font-size: 20px;
    font-weight: 300;
    color: var(--ml-dark);
    border-bottom: 1px solid rgba(4, 110, 184, 0.5);
    padding-bottom: 5px;
}

@media (max-width: 480px) {
    .ml-section-header__title {
        font-size: 16px;
    }
}

.ml-section-header__title::after {
    content: "";
    width: 26px;
    height: 3px;
    background-color: var(--ml-blue);
    position: absolute;
    left: 0;
    bottom: -2px;
}

/* ---- 通用按鈕 (introBox .btn) ---- */
.ml-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 208px;
    height: 47px;
    border-radius: 999px;
    padding: 0 19px 0 16px;
    font-family: "Poppins", "Noto Sans TC", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.66px;
    text-decoration: none;
    transition: all 0.5s;
    cursor: pointer;
    border: none;
}

.ml-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.ml-btn--primary {
    background-color: var(--ml-blue);
    color: #fff;
}

.ml-btn--primary svg polyline,
.ml-btn--primary svg line {
    stroke: #fff;
    transition: all var(--ml-transition);
}

.ml-btn--primary:hover {
    background-color: #fff;
    color: var(--ml-blue);
    box-shadow: var(--ml-shadow-hover);
    text-decoration: none;
}

.ml-btn--primary:hover svg polyline,
.ml-btn--primary:hover svg line {
    stroke: var(--ml-blue);
}

.ml-btn--sm {
    height: 38px;
    font-size: 13px;
    width: auto;
    padding: 0 16px;
    gap: 8px;
}

/* ---- Tab 內標題 ---- */
.ml-section-title {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ml-border);
    font-weight: 500;
    font-size: 20px;
    color: #232323;
}

/* ============================================================
   主內容區 (.mainArea.ins)
   ============================================================ */
.ml-main-area {
    padding-top: 38px;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .ml-main-area {
        padding-top: 45px;
    }
}

/* ============================================================
   麵包屑
   ============================================================ */
.ml-bread {
    position: absolute;
    left: 20px;
    top: 0;
    z-index: 9;
    padding: 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .ml-bread {
        display: none;
    }
}

.ml-bread a,
.ml-bread__current {
    display: inline-block;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ml-text-light);
    text-decoration: none;
    transition: color 0.4s ease;
}

.ml-bread a:hover {
    color: var(--ml-blue);
}

.ml-bread__sep {
    font-size: 13px;
    color: var(--ml-text-light);
    padding: 0 9px;
}

/* ============================================================
   產品介紹區 (.productIntro)
   ============================================================ */
.ml-intro-section {
    padding-top: 72px;
    padding-bottom: 0;
}

@media (max-width: 1200px) {
    .ml-intro-section {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .ml-intro-section {
        padding-top: 10px;
    }
}

.ml-product-intro {
    display: flex;
    background-color: #fff;
    border-radius: var(--ml-radius);
    box-shadow: var(--ml-shadow);
    padding-bottom: 90px;
    margin-bottom: 38px;
    position: relative;
}

@media (max-width: 1200px) {
    .ml-product-intro {
        padding-bottom: 38px;
    }
}

@media (max-width: 1100px) {
    .ml-product-intro {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .ml-product-intro {
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* ---- 圖庫（左側 50%）---- */
.ml-product-intro__gallery {
    width: 50%;
    display: flex;
    flex-direction: row;
    padding-left: 35px;
    padding-top: 92px;
}

@media (max-width: 1400px) {
    .ml-product-intro__gallery {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .ml-product-intro__gallery {
        padding-left: 20px;
    }
}

@media (max-width: 1100px) {
    .ml-product-intro__gallery {
        width: 100%;
        padding: 45px 20px 0;
    }
}

@media (max-width: 767px) {
    .ml-product-intro__gallery {
        width: 100%;
        margin-right: 0;
    }
}

/* 縮圖列 (side_album) */
.ml-side-album {
    margin: 0;
    width: 154px;
    flex-shrink: 0;
    height: 532px;
    display: block;
    padding: 0;
    list-style: none;
}

@media (max-width: 1400px) {
    .ml-side-album {
        width: 100%;
        height: auto;
        order: 2;
        margin-top: 30px;
    }
}

.ml-side-album li,
.ml-side-album .slick-slide {
    width: 154px;
    height: 154px !important;
    position: relative;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-bottom: 35px;
    border: 0;
    opacity: 0.4;
    transition: opacity var(--ml-transition);
}

@media (max-width: 1400px) {

    .ml-side-album li,
    .ml-side-album .slick-slide {
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {

    .ml-side-album li,
    .ml-side-album .slick-slide {
        width: 90px;
        height: 90px !important;
    }
}

.ml-side-album li.slick-current {
    opacity: 1;
}

.ml-side-album a {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
}

/* 縮圖外圍進度圓圈 (circleBox) */
.ml-circle-box {
    position: absolute;
    left: 50%;
    top: 0;
    width: 154px;
    height: 154px;
    pointer-events: none;
    transform: translateX(-50%);
}

@media (max-width: 640px) {
    .ml-circle-box {
        display: none;
    }
}

.ml-progress-bar {
    z-index: 3;
    opacity: 0;
}

.ml-side-album li.slick-current .ml-progress-bar {
    opacity: 1;
}

.ml-progress-bar.ml-circle {
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 4;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.ml-circle-path {
    width: 100%;
    height: 100%;
    fill: none;
    opacity: 1;
    stroke-dasharray: 477.522;
    stroke-dashoffset: 477.522;
    stroke: var(--ml-blue);
    stroke-width: 1px;
    transform: rotate(-90deg);
}

.ml-side-album li.slick-current .ml-circle-path {
    animation: drawCircle 3.2s ease-out 1 forwards;
}

.ml-circle-bg-path {
    width: 100%;
    height: 100%;
    fill: none;
    opacity: 1;
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 1px;
    transform: rotate(-90deg);
    z-index: 2;
    position: relative;
}

@keyframes drawCircle {
    from {
        stroke-dashoffset: 477.522;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.ml-side-album img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    backface-visibility: hidden;
}

@media (max-width: 640px) {
    .ml-side-album img {
        height: 60px;
        width: 60px;
    }
}

/* 主圖區塊包裹 (.content) */
.ml-gallery-content {
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    padding-left: 67px;
    min-width: 0;
    order: 1;
}

@media (max-width: 1400px) {
    .ml-gallery-content {
        padding-left: 0;
        position: relative;
    }
}

/* 主圖 (.Img) */
.ml-gallery-main {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 0;
}

.ml-gallery-main ul {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ml-gallery-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ml-gallery-slide a {
    height: 100%;
    display: flex;
}

.ml-gallery-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: top center;
    height: 100%;
}

/* 箭頭 */
.ml-gallery-arrows {
    padding-right: 37px;
    padding-left: 0;
    display: flex;
    height: 68px;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

@media (max-width: 1400px) {
    .ml-gallery-arrows {
        position: absolute;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        padding: 0;
        justify-content: space-between;
    }
}

.ml-gallery-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--ml-blue);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: all var(--ml-transition);
    pointer-events: auto;
    margin: 0 21px;
}

.ml-gallery-arrow svg polyline {
    stroke: #fff;
    transition: all var(--ml-transition);
}

.ml-gallery-arrow--prev {
    transform: scaleX(-1);
}

.ml-gallery-arrow::after {
    content: "";
    width: 71px;
    height: 71px;
    position: absolute;
    border: 1px solid rgba(4, 110, 184, 0.2);
    border-radius: 999px;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--ml-transition);
}

@media (min-width: 1201px) {
    .ml-gallery-arrow:hover {
        background-color: #fff;
        box-shadow: 0 0 6px rgba(4, 110, 184, 0.25);
    }

    .ml-gallery-arrow:hover::after {
        opacity: 1;
    }

    .ml-gallery-arrow:hover svg polyline {
        stroke: var(--ml-blue);
    }
}

@media (max-width: 1500px) {
    .ml-product-intro .ml-gallery-arrow {
        opacity: 1;
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 1400px) {
    .ml-product-intro .ml-gallery-arrow {
        margin: 0;
    }
}

@media (max-width: 720px) {
    .ml-product-intro .ml-gallery-arrow--prev {
        left: -28px;
    }

    .ml-product-intro .ml-gallery-arrow--next {
        right: -28px;
    }
}

/* ---- 產品資訊（右側）---- */
.ml-product-intro__info {
    flex: 1;
    padding-left: 68px;
    padding-top: 72px;
    padding-right: 72px;
    min-width: 0;
}

@media (max-width: 1200px) {
    .ml-product-intro__info {
        padding-left: 32px;
        padding-right: 20px;
    }
}

@media (max-width: 1100px) {
    .ml-product-intro__info {
        padding: 35px 20px;
    }
}

@media (max-width: 767px) {
    .ml-product-intro__info {
        flex: auto;
    }
}

.ml-product-model {
    font-style: normal;
    font-size: 20px;
    color: var(--ml-blue);
    line-height: 1.2;
    display: block;
}

.ml-product-title {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0 0 10px 0;
    font-size: 30px;
    font-weight: 500;
    color: var(--ml-dark);
    line-height: 1.2;
    letter-spacing: 1.2px;
    border-bottom: 1px solid var(--ml-border);
}

.ml-product-desc {
    margin-top: 8px;
    line-height: 1.6;
    font-size: 15px;
    color: var(--ml-text);
    letter-spacing: 1px;
}

.ml-product-desc p {
    margin-bottom: 0;
}

.ml-product-desc .ml-wysiwyg-space,
.ml-tab-content-body .ml-wysiwyg-space {
    display: block;
    height: var(--ml-wysiwyg-space-height, 30px);
}

/* 按鈕區 */
.ml-btn-box {
    margin-top: 43px;
    display: flex;
    margin-bottom: 55px;
}

@media (max-width: 1200px) {
    .ml-btn-box {
        margin-bottom: 36px;
    }
}

/* ---- 量測項目 ---- */
.ml-measure-title {
    font-size: 24px;
    font-weight: 500;
    color: var(--ml-dark);
    position: relative;
    padding-bottom: 14px;
    letter-spacing: 0.8px;
    margin-bottom: 26px;
}

.ml-measure-title::after {
    content: "";
    width: 41px;
    height: 2px;
    background-color: var(--ml-blue);
    position: absolute;
    left: 0;
    bottom: 0;
}

.ml-tag-list {
    flex-wrap: wrap;
    display: flex;
    margin: 0 -6px;
    list-style: none;
    padding: 0;
}

.ml-tag-item {
    padding: 9px 22px;
    font-size: 17px;
    color: var(--ml-dark);
    background-color: var(--ml-bg-gray);
    border-radius: var(--ml-radius);
    margin: 0 6px 11px 6px;
    transition: all var(--ml-transition);
}

@media (max-width: 1200px) {
    .ml-tag-item {
        padding: 9px 12px;
    }
}

.ml-tag-item:hover {
    background-color: var(--ml-blue);
    color: #fff;
}

/* ============================================================
   Tab 區
   ============================================================ */
.ml-tab-section {
    background-color: #fff;
    padding-top: 130px;
    padding-bottom: 166px;
}

@media (max-width: 1200px) {
    .ml-tab-section {
        padding-top: 100px;
        padding-bottom: 136px;
    }
}

@media (max-width: 720px) {
    .ml-tab-section {
        padding-top: 80px;
        padding-bottom: 116px;
    }
}

/* Tab 導覽列 */
.ml-tab-nav-wrap {
    margin-bottom: 44px;
}

.ml-tab-nav-wrap.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
}

.ml-tab-nav-wrap.is-sticky .ml-tab-nav {
    max-width: var(--ml-wrap-width);
    margin: 0 auto;
}

.ml-tab-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: var(--ml-radius);
    overflow: hidden;
    width: 100%;
}

.ml-tab-nav__item {
    flex: 1;
    position: relative;
    overflow: visible;
}

/* Tab 分隔線 */
.ml-tab-nav__item:not(:last-child) .ml-tab-nav__link::after {
    content: "";
    width: 1px;
    height: 22px;
    background-color: #bebebe;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.ml-tab-nav__item.is-active .ml-tab-nav__link::after {
    content: normal;
}

.ml-tab-nav__link {
    display: block;
    text-align: center;
    padding: 20px 0;
    font-size: 22px;
    font-weight: 500;
    background-color: var(--ml-bg-gray);
    color: var(--ml-text);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    .ml-tab-nav__link {
        font-size: 16px;
    }
}

.ml-tab-nav__item.is-active .ml-tab-nav__link {
    background-color: var(--ml-blue);
    color: #fff;
}

.ml-tab-nav__item.is-active .ml-tab-nav__link::after {
    content: normal;
}

.ml-tab-nav__item:not(.is-active):hover .ml-tab-nav__link {
    background-color: #d5d5d5;
}

/* Tab 面板 */
.ml-tab-panels {
    min-height: 300px;
}

.ml-tab-panel {
    display: none;
    animation: mlFadeIn 0.35s ease;
}

.ml-tab-panel.is-active {
    display: block;
}

/* Tab 內容 WYSIWYG */
.ml-tab-content-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ml-text);
    border-radius: var(--ml-radius);
    overflow-x: auto;
}

.ml-tab-content-body h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 32px 0 16px;
    color: var(--ml-dark);
}

.ml-tab-content-body h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 24px 0 12px;
    color: var(--ml-dark);
}

.ml-tab-content-body img {
    max-width: 100%;
    height: auto;
}

.ml-tab-content-body ul,
.ml-tab-content-body ol {
    padding-left: 24px;
    margin: 12px 0;
}

.ml-tab-content-body li {
    margin-bottom: 6px;
}

/* 表格 */
.ml-tab-content-body table {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    background-color: #fff;
    position: relative;
}

.ml-tab-content-body table::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--ml-radius);
    border: 1px solid var(--ml-border-light);
    top: 0;
    left: 0;
    pointer-events: none;
}

.ml-tab-content-body table thead th {
    background-color: var(--ml-blue);
    border: 0;
    padding: 14px 0;
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-align: center;
}

@media (max-width: 1200px) {
    .ml-tab-content-body table thead th {
        font-size: 16px;
    }
}

@media (max-width: 374px) {
    .ml-tab-content-body table thead th {
        font-size: 14px;
    }
}

.ml-tab-content-body table tbody tr:nth-of-type(2n) {
    background-color: var(--ml-bg-table-alt);
}

.ml-tab-content-body table tbody tr:last-child td {
    border-bottom: 0;
}

.ml-tab-content-body table tbody td {
    border: 1px solid var(--ml-border-light);
    padding: 23.4px 10px;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .ml-tab-content-body table tbody td {
        padding: 14px 10px;
    }
}

.ml-tab-content-body table tbody td:first-child {
    background-color: var(--ml-bg-table-first);
    font-size: 20px;
    color: var(--ml-dark);
    font-weight: 500;
    padding-right: 10px;
    letter-spacing: 0.8px;
    text-align: left;
    border-bottom-color: #fff;
}

@media (max-width: 1200px) {
    .ml-tab-content-body table tbody td:first-child {
        font-size: 16px;
    }
}

@media (max-width: 374px) {
    .ml-tab-content-body table tbody td:first-child {
        font-size: 14px;
    }
}

.ml-tab-content-body table tbody td:nth-of-type(n+2) {
    font-size: 18px;
    color: #595959;
    letter-spacing: 0.8px;
    font-family: var(--ml-font);
}

@media (max-width: 1200px) {
    .ml-tab-content-body table tbody td:nth-of-type(n+2) {
        font-size: 16px;
    }
}

@media (max-width: 374px) {
    .ml-tab-content-body table tbody td:nth-of-type(n+2) {
        font-size: 14px;
    }
}

/* 影片 */
.ml-video-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--ml-radius);
    background: #000;
}

.ml-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 檔案下載 */
.ml-download-area {
    padding: 10px 0;
}

.ml-download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border: 1px solid var(--ml-border-light);
    border-radius: var(--ml-radius);
    transition: box-shadow var(--ml-transition);
}

.ml-download-item:hover {
    box-shadow: var(--ml-shadow-hover);
}

.ml-download-item__icon {
    flex-shrink: 0;
}

.ml-download-item__info {
    flex: 1;
    min-width: 0;
}

.ml-download-item__info h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ml-dark);
    margin: 0 0 4px;
}

.ml-download-item__meta {
    font-size: 13px;
    color: var(--ml-text-muted);
    margin: 0;
}

/* ============================================================
   產業應用（技術文章下方獨立區塊）
   ============================================================ */
.ml-application-section {
    position: relative;
    padding-top: 130px;
    background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") right 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                repeat url("/wp-content/uploads/2025/11/linkBg-2.png") center content-box;
    width: calc(100vw - 17px);
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
}

.ml-application-section::before,
.ml-application-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 130px;
    pointer-events: none;
    z-index: 2;
}

.ml-application-section::before {
    top: 0;
    -webkit-mask: no-repeat url("/wp-content/uploads/2026/03/insMask3.png") center bottom / 100% auto;
    mask: no-repeat url("/wp-content/uploads/2026/03/insMask3.png") center bottom / 100% auto;
    background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") right 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                no-repeat url("/wp-content/uploads/2026/03/insMask3.png") center bottom / 100% auto;
}

.ml-application-section::after {
    content: none;
}

.ml-application-section .ml-wrap {
    padding-top: 26px;
    padding-bottom: 54px;
    position: relative;
    z-index: 1;
}

.ml-application-section .ml-section-header {
    margin-top: 60px;
    margin-bottom: 0;
}

.ml-application-section .ml-section-header__en {
    margin: 0;
    line-height: normal;
    font-weight: 500;
}

.ml-application-section .ml-section-header__title {
    margin: 0;
    line-height: 1.2;
    font-weight: 300;
    padding-bottom: 16px;
}

.ml-application-section .ml-section-header__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.ml-application-content {
    position: relative;
    padding-top: 0;
}

.ml-application-list {
    list-style: none;
    margin: 0 -53px;
    padding: 0;
}

.ml-application-list:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
}

.ml-application-list.slick-initialized {
    display: block;
}

.ml-application-item {
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 53px 0;
    margin: 0;
}

.ml-application-list.slick-initialized .ml-application-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ml-application-link {
    display: block;
    width: 100%;
    text-decoration: none !important;
    border: 0 !important;
}

.ml-application-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 133px;
    height: 133px;
    margin-bottom: 12px;
    border-radius: 999px;
    background-color: #fff;
    position: relative;
    transition: all var(--ml-transition);
}

.ml-application-icon-box::after {
    content: "";
    width: 153px;
    height: 153px;
    border: 1px solid #fff;
    border-radius: 999px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ml-application-icon {
    width: auto;
    height: auto;
    max-width: none;
    position: relative;
    z-index: 2;
    transition: filter var(--ml-transition);
}

.ml-application-label {
    width: 105px;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #181818;
    text-align: center;
    position: relative;
    z-index: 3;
    transition: color var(--ml-transition);
}

.ml-application-arrows {
    position: absolute;
    top: 50%;
    left: -74px;
    right: -74px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.ml-application-arrow {
    width: 54px;
    height: 54px;
    margin: 0 21px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--ml-blue);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    pointer-events: auto;
    transition: all var(--ml-transition);
}

.ml-application-arrow svg polyline {
    stroke: currentColor;
    transition: all var(--ml-transition);
}

.ml-application-arrow--prev {
    transform: scaleX(-1);
}

.ml-application-arrow::after {
    content: "";
    width: 71px;
    height: 71px;
    position: absolute;
    border: 1px solid rgba(4, 110, 184, 0.2);
    border-radius: 999px;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--ml-transition);
}

@media (min-width: 1201px) {
    .ml-application-arrow:hover {
        background-color: #fff;
        box-shadow: 0 0 6px rgba(4, 110, 184, 0.25);
        color: var(--ml-blue);
    }

    .ml-application-arrow:hover::after {
        opacity: 1;
    }
}

.ml-application-list .slick-dots {
    padding: 0 !important;
    bottom: -54px;
}

.ml-application-list .slick-dots li {
    margin: 0 11px;
}

.ml-application-list .slick-dots li button,
.ml-application-list .slick-dots li.slick-active button {
    width: 13px;
    height: 13px;
    box-sizing: content-box;
}

.ml-application-list .slick-dots li button::before,
.ml-application-list .slick-dots li.slick-active button::before {
    content: "";
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ml-blue);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    opacity: 1;
}

.ml-application-list.slick-dotted {
    margin-bottom: 0;
}

.ml-application-icon-box:hover {
    background-color: #046eb8;
    border: 1px solid #fff;
    box-shadow: 0 0 0 10px #046eb8;
}

.ml-application-icon-box:hover::after {
    border: 0;
}

.ml-application-icon-box:hover .ml-application-icon {
    filter: brightness(0) invert(1);
}

.ml-application-icon-box:hover .ml-application-label {
    color: #fff;
}

@media (max-width: 1200px) {
    .ml-application-section {
        padding-top: 100px;
        width: 100vw;
        background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") right 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                    repeat url("/wp-content/uploads/2025/11/linkBg-2.png") center content-box;
    }

    .ml-application-section::before,
    .ml-application-section::after {
        height: 100px;
    }

    .ml-application-section::before {
        background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") right 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                    no-repeat url("/wp-content/uploads/2026/03/insMask3.png") center bottom / 100% auto;
    }

    .ml-application-section .ml-section-header__en {
        font-size: 36px;
        text-align: center;
    }

}

@media (max-width: 720px) {
    .ml-application-section {
        padding-top: 80px;
    }

    .ml-application-section::before,
    .ml-application-section::after {
        height: 80px;
    }
}

@media (min-width: 1921px) {
    .ml-application-section::before {
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 36px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") right 36px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                    no-repeat url("/wp-content/uploads/2026/03/insMask3.png") center bottom / 100% 100%;
    }

    .ml-application-section::after {
        content: none;
    }
}

@media (max-width: 1600px) {
    .ml-application-arrows {
        left: -28px;
        right: -28px;
    }
}

@media (max-width: 1500px) {
    .ml-application-arrows {
        left: 0;
        right: 0;
    }

    .ml-application-arrow {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }

    .ml-application-arrow:hover {
        opacity: 1;
    }
}

/* ============================================================
   相關產品
   ============================================================ */
.ml-related-section {
    padding-top: 190px;
    padding-bottom: 86px;
    position: relative;
    width: calc(100vw - 17px);
    left: 50%;
    transform: translateX(-50%);
}

.ml-related-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") right 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                repeat url("/wp-content/uploads/2025/11/linkBg.png") center content-box;
}

.ml-related-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 130px;
    z-index: 0;
    -webkit-mask: no-repeat url("/wp-content/uploads/2026/03/insMask4.png") center bottom / 100% auto;
    mask: no-repeat url("/wp-content/uploads/2026/03/insMask4.png") center bottom / 100% auto;
    background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") right 36px top,
                repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                no-repeat url("/wp-content/uploads/2026/03/insMask4.png") center bottom / 100% auto;
    pointer-events: none;
}

.ml-related-section .ml-wrap {
    position: relative;
    z-index: 1;
}

.ml-related-content {
    position: relative;
    padding-top: 0;
}

@media (max-width: 1200px) {
    .ml-related-section {
        width: 100vw;
        padding-top: 160px;
    }

    .ml-related-section::before {
        height: 100px;
        background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") right 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                    repeat url("/wp-content/uploads/2025/11/linkBg.png") center content-box;
    }

    .ml-related-section::after {
        height: 100px;
        background: repeat-y url("/wp-content/uploads/2026/03/line4.png") left 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") right 20px top,
                    repeat-y url("/wp-content/uploads/2026/03/line4.png") center top,
                    no-repeat url("/wp-content/uploads/2026/03/insMask4.png") center bottom / 100% auto;
    }
}

@media (max-width: 720px) {
    .ml-related-section {
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .ml-related-section::before {
        height: 80px;
    }

    .ml-related-section::after {
        height: 80px;
    }
}

.ml-related-section .ml-section-header {
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.ml-related-section .ml-section-header__en {
    margin: 0;
    line-height: normal;
    font-weight: 500;
}

.ml-related-section .ml-section-header__title {
    margin: 0;
    line-height: normal;
    font-weight: 400;
    font-family: "Noto Sans TC", "Noto Sans JP", sans-serif;
    padding-bottom: 16px;
}

.ml-related-section .ml-section-header__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.ml-product-list {
    display: block;
    list-style: none;
    margin: 0 -27px;
    padding: 0;
}

.ml-product-list:not(.slick-initialized) {
    display: flex;
    flex-wrap: wrap;
}

.ml-product-list .slick-track {
    display: flex !important;
}

.ml-product-list .slick-slide {
    height: inherit !important;
}

.ml-product-card {
    padding: 20px 27px;
    display: flex;
    flex: 1;
    justify-content: center;
    width: 33.33%;
}

.ml-product-card__item {
    background-color: #fff;
    box-shadow: 0 0 12px rgba(4, 110, 184, 0.23);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .ml-product-card {
        width: 50%;
        flex: none;
    }
}

@media (max-width: 540px) {
    .ml-product-card {
        width: 100%;
    }
}

.ml-product-card__img {
    overflow: hidden;
    padding: 20px;
    flex-grow: 1;
}

.ml-product-card__img a {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.ml-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--ml-transition);
}

.ml-product-card__img:hover img {
    transform: scale(1.1);
}

.ml-product-card__txt {
    padding: 20px 45px 40px;
    display: flex;
    flex-direction: column;
}

.ml-product-card__model {
    font-size: 18px;
    color: var(--ml-blue);
    font-family: var(--ml-font);
    line-height: 1.2;
    margin: 0;
}

.ml-product-card__name {
    flex-grow: 1;
    margin: 0 0 26px;
}

.ml-product-card__name a {
    font-size: 24px;
    color: var(--ml-dark);
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.3;
    text-decoration: none;
}

.ml-product-card__name a:hover {
    color: var(--ml-dark);
    text-decoration: none;
}

.ml-product-card__btn {
    align-self: flex-start;
    font-weight: 300;
}

.ml-product-card__btn:hover {
    text-decoration: none;
}

.ml-product-list .slick-dots {
    bottom: -38px;
}

.ml-related-arrows {
    position: absolute;
    top: calc(50% - 22px);
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
}

.ml-related-arrow {
    width: 54px;
    height: 54px;
    margin: 0 21px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: var(--ml-blue);
    color: #fff;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    transition: all var(--ml-transition);
}

.ml-related-arrow svg polyline {
    stroke: currentColor;
    transition: all var(--ml-transition);
}

.ml-related-arrow::after {
    content: "";
    width: 71px;
    height: 71px;
    position: absolute;
    border: 1px solid rgba(4, 110, 184, 0.2);
    border-radius: 999px;
    z-index: 2;
    opacity: 0;
    transition: opacity var(--ml-transition);
}

.ml-related-arrow--prev {
    transform: scaleX(-1);
    left: -95px;
}

.ml-related-arrow--next {
    right: -95px;
}

@media (min-width: 1201px) {
    .ml-related-arrow:hover {
        background-color: #fff;
        box-shadow: 0 0 6px rgba(4, 110, 184, 0.25);
        color: var(--ml-blue);
    }

    .ml-related-arrow:hover::after {
        opacity: 1;
    }
}

@media (max-width: 1500px) {
    .ml-related-arrow {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }

    .ml-related-arrow:hover {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .ml-product-card__txt {
        padding: 15px 20px 25px;
    }

    .ml-product-card__name a {
        font-size: 18px;
    }

    .ml-product-card__name {
        margin-bottom: 16px;
    }
}

/* ============================================================
   Tab 下拉選單（< 1400px 隱藏桌面版，改下拉選單）
   ============================================================ */

/* 預設隱藏下拉選單，桌面版才顯示橫向 tab */
.ml-tab-dropdown {
    display: none;
    position: relative;
    z-index: 10;
}

@media (max-width: 1400px) {
    .ml-tab-nav {
        display: none;
    }

    .ml-tab-dropdown {
        display: block;
    }
}

/* 吸頂時限制下拉選單寬度 */
.ml-tab-nav-wrap.is-sticky .ml-tab-dropdown {
    max-width: var(--ml-wrap-width);
    margin: 0 auto;
}

/* 觸發按鈕 */
.ml-tab-dropdown__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 20px;
    background-color: var(--ml-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--ml-font);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: left;
}

.ml-tab-dropdown__trigger svg {
    flex-shrink: 0;
    transition: transform var(--ml-transition);
}

.ml-tab-dropdown.is-open .ml-tab-dropdown__trigger svg {
    transform: rotate(180deg);
}

/* 下拉列表 */
.ml-tab-dropdown__list {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 9;
}

.ml-tab-dropdown.is-open .ml-tab-dropdown__list {
    display: block;
}

.ml-tab-dropdown__list li + li {
    border-top: 1px solid #fff;
}

.ml-tab-dropdown__list a {
    display: block;
    padding: 20px 0;
    line-height: 1;
    color: var(--ml-dark);
    font-family: var(--ml-font);
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    background-color: var(--ml-bg-gray);
    transition: background-color 0.2s;
}

.ml-tab-dropdown__list a:hover {
    background-color: #d5d5d5;
    text-decoration: none;
}

.ml-tab-dropdown__list li.is-active a {
    color: var(--ml-blue);
    background-color: var(--ml-bg-gray);
}

@media (max-width: 1200px) {
    .ml-tab-dropdown__list a {
        font-size: 16px;
    }
}

/* ============================================================
   RWD — Mobile
   ============================================================ */
@media (max-width: 768px) {
    .ml-tab-nav__link {
        font-size: 14px;
        padding: 14px 8px;
        white-space: nowrap;
    }

    .ml-btn-box {
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .ml-btn-box .ml-btn {
        width: 100%;
        justify-content: center;
    }

    .ml-product-title {
        font-size: 22px;
    }

    .ml-tag-item {
        font-size: 14px;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .ml-product-title {
        font-size: 20px;
    }

    .ml-product-model {
        font-size: 17px;
    }

    .ml-product-desc {
        font-size: 14px;
    }

    .ml-measure-title {
        font-size: 20px;
    }

    .ml-tab-content-body {
        font-size: 14px;
    }

    .ml-tab-content-body h2 {
        font-size: 19px;
    }
}

/* ============================================================
   技術文章區塊
   ============================================================ */
.ml-technical-section {
    padding: 80px 0 100px;
    background: repeat url("/wp-content/uploads/2025/11/Bg.png") center top #fff;
    position: relative;
}

.ml-technical-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 130px;
    background: no-repeat url("/wp-content/uploads/2025/09/insMask.png") center bottom / 100% 100%;
    pointer-events: none;
}

/* 參考站 technicalArea .titleBox 對齊 */
.ml-technical-section .ml-section-header {
    margin-bottom: 0;
}

.ml-technical-section .ml-section-header__en {
    margin: 0;
    line-height: normal;
    font-weight: 500;
}

.ml-technical-section .ml-section-header__title {
    margin: 0;
    padding-bottom: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.ml-technical-section .ml-section-header__title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* contentBox */
.ml-technical-content {
    position: relative;
    padding-top: 41px;
}

/* 卡片清單（Slick 目標） */
.ml-technical-list {
    display: block;
    margin: 0 -34px;
    margin-bottom: 0;
}

.ml-technical-item {
    padding: 0 34px;
}

/* 卡片：無背景框 */
.ml-technical-card {
    display: block;
}

/* 縮圖 */
.ml-technical-card__img {
    height: 205px;
    border-radius: var(--ml-radius);
    overflow: hidden;
}

.ml-technical-card__img a {
    display: block;
    height: 100%;
}

.ml-technical-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 卡片內文 */
.ml-technical-card__body {
    display: flex;
    padding-top: 14px;
}

/* 日期 */
.ml-technical-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #a5a5a5;
    font-family: var(--ml-font);
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    padding: 0 43px 0 0;
    flex-shrink: 0;
}

/* 垂直分隔線（取代原圖） */
.ml-technical-card__date::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 17px;
    width: 16px;
    height: 43px;
    background: no-repeat url("/wp-content/uploads/2025/11/line2.png") center;
}

.ml-technical-card__date span {
    font-family: var(--ml-font);
    font-size: 27px;
    line-height: 1.3;
    color: #808080;
    margin-top: 2px;
    display: block;
}

/* 標題 & 摘要 */
.ml-technical-card__text {
    flex: 1;
    overflow: hidden;
}

.ml-technical-card__title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 8px;
}

.ml-technical-card__title a {
    display: block;
    color: #181818;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.44;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color var(--ml-transition);
}

.ml-technical-card__title a:hover {
    color: var(--ml-blue);
}

.ml-technical-card__excerpt {
    font-family: var(--ml-font);
    font-size: 14px;
    font-weight: 400;
    color: #403f3f;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    line-height: 1.43;
}

/* 導覽箭頭：絕對定位於圖片中心高度（41px + 205px/2） */
.ml-technical-arrows {
    position: absolute;
    top: 143px; /* 41 + 102.5 */
    transform: translateY(-50%);
    left: -74px;
    right: -74px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2;
}

.ml-technical-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--ml-blue);
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background-color var(--ml-transition), box-shadow var(--ml-transition);
    flex-shrink: 0;
    padding: 0;
}

.ml-technical-arrow:hover {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(4, 110, 184, 0.25);
}

.ml-technical-arrow svg polyline {
    stroke: currentColor;
    transition: stroke var(--ml-transition);
}

.ml-technical-arrow:hover svg polyline {
    stroke: var(--ml-blue);
}

/* prev 箭頭水平翻轉 */
.ml-technical-arrow--prev {
    transform: scaleX(-1);
}

/* Slick dots */
.ml-technical-list .slick-dots {
    bottom: -60px;
}

.ml-technical-list .slick-dots li button::before {
    font-size: 10px;
    color: var(--ml-border);
    opacity: 1;
}

.ml-technical-list .slick-dots li.slick-active button::before {
    color: var(--ml-blue);
    opacity: 1;
}

/* RWD */
@media (max-width: 1600px) {
    .ml-technical-arrows {
        left: -28px;
        right: -28px;
    }
}

@media (max-width: 1500px) {
    .ml-technical-arrows {
        left: 0;
        right: 0;
    }

    .ml-technical-arrow {
        width: 40px;
        height: 40px;
        opacity: 0.7;
    }

    .ml-technical-arrow:hover {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .ml-technical-section {
        padding: 60px 0 80px;
    }

    .ml-technical-section::before,
    .ml-related-section::after {
        height: 100px;
    }
}

@media (max-width: 720px) {
    .ml-technical-section::before,
    .ml-related-section::after {
        height: 80px;
    }

    .ml-technical-list {
        margin: 0 -16px;
    }

    .ml-technical-item {
        padding: 0 16px;
    }
}
