/* 引入顏色變數 */
@import url("color.css");

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

body {
    font-family: var(--main-font);
    background-color: var(--bg-color);
    color: var(--inner_color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

html.modal-open,
body.modal-open {
    overflow: hidden;
    height: 100%;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: bold;
    color: var(--title_color);
    transition: color var(--transition-speed);

}

.h1 {
    font-size: 56px;
}

.h2 {
    font-size: 40px;
}

.h3 {
    font-size: 32px;
}

.h4 {
    font-size: 24px;
}

.h5 {
    font-size: 20px;
}

.h6 {
    font-size: 18px;
}

.fz_24_16 {
    font-size: 24px;
}

.fz_18_16 {
    font-size: 18px;
}

.fz_12 {
    font-size: 12px;
}

.fz_14 {
    font-size: 14px;
}

.fz_16 {
    font-size: 16px;
}

.fz_18 {
    font-size: 18px;
}

.fz_20 {
    font-size: 20px;
}

.fz_40 {
    font-size: 40px;
}

.fz_24_14 {
    font-size: 24px;
    color: var(--title_color);
    font-weight: bold;
}

.fz_20_16 {
    font-size: 20px;
}

.py_80_40 {
    padding: 80px 0;
}

.px_60_16 {
    padding: 0 60px;
}

.main_blue {
    color: var(--main_blue);
}

.ulLi_disc li {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 26px;
    margin-bottom: 1rem;
}

.color_black {
    color: var(--main_black);
}

@media (max-width: 991.98px) {
    .h1 {
        font-size: 32px;
    }

    .h2 {
        font-size: 24px;
    }

    .h3 {
        font-size: 22px;
    }

    .h4 {
        font-size: 20px;
    }

    .h5 {
        font-size: 18px;
    }

    .h6 {
        font-size: 16px;
    }

    .fz_24_16 {
        font-size: 16px;
    }

    .fz_24_14 {
        font-size: 14px;
    }

    .fz_20_16 {
        font-size: 16px;
    }

    .fz_18_16 {
        font-size: 16px;
    }

    .py_80_40 {
        padding: 40px 0;
    }

    .px_60_16 {
        padding: 0 16px;
    }
}

.btn_outer_black500 {
    text-align: center;
    display: inline-block;
    padding: 5px 16px;
    color: var(--btn_outer_text);
    border: 1px solid var(--btn_outer_border);
    background-color: var(--btn_outer_bg);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn_outer_black500:hover {
    color: var(--btn_outer_text);
}

.btn_black800 {
    text-align: center;
    display: inline-block;
    padding: 5px 16px;
    color: var(--main_white);
    border: 1px solid var(--btn_black800);
    background-color: var(--btn_black800);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn_black800:hover {
    color: var(--main_white);
}

.btn_Blue {
    text-align: center;
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    color: var(--main_white);
    border: 1px solid var(--btn_blue);
    background-color: var(--btn_blue);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.btn_Blue:hover {
    color: var(--main_white);
}

.btn_radius {
    border-radius: 60px;
}

.btn_text_white {
    color: var(--main_white);
}

.btn_text_white:hover {
    color: var(--main_white);
}

.btn_text_white_link {
    color: var(--main_white);
    text-decoration: underline;
}

.btn_text_white_link:hover {
    color: var(--main_white);
}

.border_radius_20 {
    border-radius: 20px;
}

.btn_text_black {
    color: var(--main_black_white);
    text-decoration: underline;
}

.btn_text_black:hover {
    color: var(--main_black_white);
}

.text_decoration_underline {
    text-decoration: underline;
}

.btn_text_black_Nolink {
    color: var(--main_black_white);
    text-decoration: none;
}

.btn_text_black_Nolink:hover {
    color: var(--main_black_white);
}

.bg_Gray100 {
    background-color: var(--bg_Gray100);
    transition: background-color var(--transition-speed);
}

.bg_blue_light {
    background-color: var(--bg_bluelight_black);
    transition: background-color var(--transition-speed);
}

.border_bottom {
    border-bottom: 1px solid var(--Separator_baseline);
}

.border_top {
    border-top: 1px solid var(--Separator_baseline);
}

.list_style_disc li {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 26px;
    margin-bottom: 1rem;
}


.category_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    background-color: var(--productBox_bg);
    border-radius: 80px;
    transition: background-color var(--transition-speed);
}

@media (max-width: 1199.98px) {
    .category_btn {
        width: 120px;
        height: 120px;
    }
}

.category_icon_01 {
    /* 使用遮罩引入 SVG */
    -webkit-mask-image: url('../images/Category_01.svg');
    mask-image: url('../images/Category_01.svg');
}

.category_icon_02 {
    -webkit-mask-image: url('../images/Category_02.svg');
    mask-image: url('../images/Category_02.svg');
}

.category_icon_03 {
    -webkit-mask-image: url('../images/Category_03.svg');
    mask-image: url('../images/Category_03.svg');
}

.category_icon_04 {
    -webkit-mask-image: url('../images/Category_04.svg');
    mask-image: url('../images/Category_04.svg');
}

.category_icon_05 {
    -webkit-mask-image: url('../images/Category_05.svg');
    mask-image: url('../images/Category_05.svg');
}

.category_icon_06 {
    -webkit-mask-image: url('../images/Category_06.svg');
    mask-image: url('../images/Category_06.svg');
}

.category_icon {
    display: inline-block;
    width: 69px;
    height: 69px;

    /* 設定背景顏色（這是真正會顯示出來的顏色） */
    background-color: var(--main_blue_white);

    /* 確保遮罩不重複且置中 */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color var(--transition-speed);
}

.category_btn:hover {
    background-color: var(--main_blue_black700);
}

.category_btn:hover .category_icon {
    background-color: var(--main_white);
}

.header {
    height: 78px;
    padding: 0 60px;
    border-bottom: 1px solid var(--Separator_baseline);
    display: flex;
    align-items: center;
}

.topLogo {
    display: inline-block;
    width: 220px;
    height: 70px;
}

.logo-dark {
    display: none;
}

[data-theme='dark'] .logo-light {
    display: none;
}

[data-theme='dark'] .logo-dark {
    display: block;
}

@media (max-width: 991.98px) {
    .header {
        height: 65px;
        padding: 0 16px;
    }

    .topLogo {
        width: 140px;
        height: 45px;
    }
}

:root {
    --toggle-width: 56px;
    --toggle-height: 32px;
    --icon-size: 24px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 隱藏原始 checkbox */
.theme-switch {
    display: none;
}

.mode-toggle {
    height: 32px;
}

/* 按鈕外殼 */
.switch-label {
    display: inline-block;
    width: var(--toggle-width);
    height: var(--toggle-height);
    background-color: #f0f0f0;
    /* 預設淺色背景 */
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background-color var(--transition);
}

/* 滑動的白色圓圈 */
.icon-container {
    position: absolute;
    top: 4px;
    left: 4px;
    width: var(--icon-size);
    height: var(--icon-size);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.2); */
}

/* 圖示基本樣式 */
.icon {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: opacity var(--transition), transform var(--transition);
}

/* 預設狀態：顯示太陽，隱藏月亮 */
.sun {
    opacity: 1;
    transform: rotate(0deg);
    color: #000;
}

.moon {
    opacity: 0;
    transform: rotate(-90deg);
    color: #333;
}

/* 當 checkbox 被勾選時的變化 (切換到深色模式樣式) */
.theme-switch:checked+.switch-label {
    background-color: #333;
    /* 變為深色背景 */
}

.theme-switch:checked+.switch-label .icon-container {
    transform: translateX(calc(var(--toggle-width) - var(--icon-size) - 8px));
}

.theme-switch:checked+.switch-label .moon {
    opacity: 1;
    transform: rotate(0deg);
}

.theme-switch:checked+.switch-label .sun {
    opacity: 0;
    transform: rotate(90deg);
}

.formControl {
    padding: 0.2rem 1rem;
    width: 100%;
    height: 36px;
    color: var(--search_box_text);
    border: 1px solid var(--search_box_border);
    background-color: var(--search_box_bg);
}

.formControl:focus {
    outline: none;
    border-color: var(--main_black);
    box-shadow: 0 0 4px rgba(140, 115, 101, 0.2);
    transition: all 0.3s ease;
}

.formControl::placeholder {
    color: var(--main_black500);
    opacity: 1;
}

.FormSelect {
    padding: 0.2rem 1rem;
    /* 加上 padding-right 為了避免較長的文字被箭頭蓋住 */
    padding-right: 3rem;
    width: 100%;
    height: 36px;
    color: var(--search_box_text);
    border: 1px solid var(--search_box_border);
    background-color: var(--search_box_bg);

    /* 👇 新增以下這些屬性 👇 */
    /* 隱藏原生箭頭 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* 放置自訂 SVG 箭頭 */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 16px 12px;
    /* 透過調整這個 right 1.5rem 來決定箭頭往左靠的程度 */
    background-position: right .5rem center;
}


.FormSelect:focus {
    outline: none;
    border-color: var(--main_black);
    box-shadow: 0 0 4px rgba(140, 115, 101, 0.2);
    transition: all 0.3s ease;
}

[data-theme='dark'] .FormSelect {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.FormSelect::placeholder {
    color: var(--main_black500);
    opacity: 1;
}

.topSearchWidth {
    width: 280px;
}

.LangBox li a {
    display: flex;
    align-items: center;
    color: var(--btn_outer_text);
}

.LangBox li ul {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: .5rem 0;
    border: 1px solid var(--btn_outer_border);
    background-color: var(--btn_outer_bg);
    white-space: nowrap;
    z-index: 1000;
}

.LangBox li ul.show {
    display: block;
}

.LangBox>li>a svg:last-child {
    transition: transform 0.3s ease;
}

.LangBox>li>a.active svg:last-child {
    transform: rotate(180deg);
}

.LangBox li ul li {
    border-bottom: 1px solid var(--Separator_baseline);
    /* padding: .5rem 0; */
}

.LangBox li ul li a {
    padding: .3rem 1rem;
}

.LangBox li ul li a:hover {
    background-color: var(--btn_outer_bg_hover);
}

.MbmenuBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    padding: 0;
    background: none;
}

.MbmenuBtn span {
    display: inline-block;
    width: 32px;
    height: 32px;
    /* 設定背景顏色（這是真正會顯示出來的顏色） */
    background-color: var(--btnMb_Menu);
    -webkit-mask-image: url('../images/mb_menu.svg');
    mask-image: url('../images/mb_menu.svg');
    /* 確保遮罩不重複且置中 */
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    transition: background-color var(--transition-speed);
}

.MbmenuBtn span.active {
    -webkit-mask-image: url('../images/mb_menuX.svg');
    mask-image: url('../images/mb_menuX.svg');
}

.topNavBox {
    display: block;
    background-color: var(--bg_Gray100);
}

.topNav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    background-color: var(--bg_Gray100);
    position: relative;
}

.topNav ul {
    width: 866px;
    height: 66px;
    /* background-color: #86dbcd; */
}

.topNav ul li {
    /* position: relative; */
    margin: 0 .3rem;
}

.topNav ul li a {
    display: block;
    height: 66px;
    line-height: 66px;
    color: var(--btnText_black_white);
    margin: 0 1rem;
    padding: .8rem 1rem;
    white-space: nowrap;
}

.topNav ul li ul {
    display: none;
    width: 100%;
    height: auto;
    background-color: var(--bg_white_black);
    padding: 1rem 0;
    position: absolute;
    left: 0;
    top: 100%;
    box-shadow: 0px 10px 8px rgba(0, 0, 0, .3);
    z-index: 999;
}

.topNav ul li ul .about_us,
.topNav ul li ul .manufacturing,
.topNav ul li ul .news,
.topNav ul li ul .esg {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.topNav ul li ul .about_us li {
    width: 866px;
    padding-left: 2rem;
}

.topNav ul li ul .manufacturing li {
    width: 866px;
    padding-left: 24.2rem;
}

.topNav ul li ul .news li {
    width: 866px;
    padding-left: 39rem;
}

.topNav ul li ul .product {
    display: flex;
    justify-content: center;
}

.topNav ul li ul .product .product001 {
    width: 990px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.topNav ul li ul .product li {
    padding: 0 1rem;
}

.topNav ul li ul .esg {
    display: flex;
    justify-content: center;
}

.topNav ul li ul .esg .esg001 {
    width: 990px;
    /* background-color: #0099FF; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    /* align-items: center; */
}

.topNav ul li ul .esg li {
    padding: 0 .5rem;
}

.topNav ul li ul li {
    /* width: 866px; */
    padding: 0;

}

.topNav ul li ul li:last-child {
    border-bottom: none;
}


.topNav ul li ul li a {
    display: inline-block;
    /* width: 100%; */
    height: auto;
    line-height: 20px;
    padding: 0.5rem 0;
    margin: 0;
}

.topNav ul li ul li a:hover {
    color: var(--main_red);
}

.topNav ul li a span svg {
    transition: transform 0.3s ease;
}

.topNav ul li a.active span svg {
    transform: rotate(180deg);
}

.mbPadding1 {
    padding: 1rem;
}

@media (max-width: 991.98px) {
    .topNavBox {
        display: none;
        width: 100%;
        position: absolute;
        /* top: 100%; */
        top: 63px;
        z-index: 999;
    }

    .topNav {
        /* display: block; */
        justify-content: start;
        height: auto;
        box-shadow: 0px 10px 8px rgba(0, 0, 0, .3);
    }

    .topNav ul {
        width: 100%;
        height: auto;

    }

    .topNav ul li a {
        /* color: var(--main_black); */
        margin: 0 1rem;
        padding: .8rem 0;
    }

    .topNav ul li ul {
        /* display: none; */
        /* background-color: var(--bg_Gray100); */
        border: 0;
        position: relative;
        top: 0;
        box-shadow: none;
    }

    .topNav ul li ul li {
        margin: 0 1rem;
        /* border-bottom: 1px solid var(--Separator_baseline); */
        padding: 0;
    }

    .topNav ul li ul .about_us li {
        width: 100%;
        padding-left: 1rem;
    }

    .topNav ul li ul .product .product001 {
        width: 100%;
        flex-direction: column;
        justify-content: start;
    }

    .topNav ul li ul .product li {
        padding: 0 1rem;
    }

    .topNav ul li ul .product li div {
        padding-left: 1rem;
    }

    .topNav ul li ul .manufacturing li {
        width: 100%;
        padding-left: 1rem;
    }

    .topNav ul li ul .news li {
        width: 100%;
        padding-left: 1rem;
    }

    .topNav ul li ul .esg {
        display: flex;
        justify-content: center;
    }

    .topNav ul li ul .esg .esg001 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .topNav ul li ul .esg li {
        padding: 0 1rem;
    }

    .topNav ul li ul .esg .esg001 div {
        padding-left: 1rem;
    }
}

.owl-carousel .item {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - 188px);
    overflow: hidden;
}

.owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 36px !important;
    line-height: 40px !important;
}

.owl-nav button.owl-prev {
    left: 10px;
}

.owl-nav button.owl-next {
    right: 10px;
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.chooseBox {
    padding: 1rem;
    background-color: var(--bg_choose_bg);
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.choose_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--choose_icon);
    transition: background-color var(--transition-speed);
}

.choose_icon_01 {
    -webkit-mask-image: url('../images/Choose_01.svg');
    mask-image: url('../images/Choose_01.svg');
}

.choose_icon_02 {
    -webkit-mask-image: url('../images/Choose_02.svg');
    mask-image: url('../images/Choose_02.svg');
}

.choose_icon_03 {
    -webkit-mask-image: url('../images/Choose_03.svg');
    mask-image: url('../images/Choose_03.svg');
}

.choose_icon_04 {
    -webkit-mask-image: url('../images/Choose_04.svg');
    mask-image: url('../images/Choose_04.svg');
}

.productBox {
    display: block;
    padding: 1rem;
    background-color: var(--productBox_bg);
    border: 2px solid var(--productBox_bg);
    border-radius: 20px;
}

.productBox:hover {
    background-color: var(--productBox_bg_hover);
    border: 2px solid var(--productBox_border_hover);
}

.productInfo {
    color: var(--main_black500);
}

.productInfo .active {
    color: var(--main_black_white);
}

.productLabel {
    height: 40px;
}

.ImgScaleBox {
    height: 0;
    position: relative;
    overflow: hidden;
}

.ImgScaleBox div {
    /* background-color: #00ADEE; */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.ImgScaleBox img {
    width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.NewsImg {
    padding-bottom: 66%;
}

.productImg_01 {
    padding-bottom: 90%;
}

.productImg_02 {
    padding-bottom: 70%;
}

.organization_img {
    padding-bottom: 60%;
    border-radius: 20px;
}

.news_label_red {
    background-color: var(--main_red);
    color: var(--main_white);
    padding: .2rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.news_label_blue {
    background-color: var(--main_blue);
    color: var(--main_white);
    padding: .2rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.line_clamp_3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line_clamp_5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bg_ChooseMarwi {
    position: relative;
    overflow: hidden;
    background-image: var(--bg_pc_choose);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.zindex99 {
    z-index: 99;
}

.MarwiBg_right {
    width: 200px;
    height: 233px;
    background-image: var(--bg_pc_choose_deck);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: -60px;
    bottom: 0;
}

.MarwiBg_left {
    width: 200px;
    height: 233px;
    background-image: var(--bg_pc_choose_deck);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: -145px;
    bottom: 0;
}

.bg_district_01 {
    background: var(--bg_district_01);
    transition: background-color var(--transition-speed);
}

.bg_district_02 {
    background: var(--bg_district_02);
    transition: background-color var(--transition-speed);
}

.bg_district_03 {
    background: var(--bg_district_03);
    transition: background-color var(--transition-speed);
}

.bg_footer {
    background-color: var(--bg_black);
    transition: background-color var(--transition-speed);
}

.map_menu {
    margin-bottom: 1rem;
}

.map_menu li,
.map_menu li a {
    color: var(--main_white);
    font-weight: bold;
}

.map_menu li ul li a {
    color: var(--main_white);
    font-weight: lighter;
}

.map_menubox {
    display: block;
}

.copyrightBox {
    border-top: 1px solid var(--Separator_black600);
    padding: 1rem 0;
}

@media (max-width: 991.98px) {
    .footer_menu {
        width: 50%;
    }

    .btn_Map {
        border: none;
        background: none;
        color: var(--main_white);
        padding: 0;
        margin: 1rem 0;
    }

    .btn_Map img {
        transition: transform 0.3s ease;
    }

    .btn_Map.active img {
        transform: rotate(180deg);
    }

    .map_menubox {
        display: none;
    }
}

.bg_top {
    height: 380px;
    background-image: url('../images/Topbg_pc.png');
    background-repeat: no-repeat;
    background-position: bottom 1% right 9%;
}

.bg_about_top {
    background-color: var(--bg_red);
}

.bg_news_top {
    background-color: var(--bg_yellow);
}

.bg_products_top {
    background-color: var(--bg_blue);
}

.bg_esg_top {
    background-color: var(--bg_green);
}

.bg_FAQ_top {
    background-color: var(--main_black900);
}

.topBox {
    bottom: 15%;
}

.rightIcon {
    position: fixed;
    bottom: 140px;
    right: 60px;
    z-index: 1000;
    display: none;
}

.AiIcon {
    position: relative;
    display: inline-block;
    text-align: center;
    line-height: 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg_red);
}

.AiIcon span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid var(--bg_white);
    background-color: var(--bg_green);
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 6px;
}

.onTopIcon {
    width: 64px;
    height: 64px;
    text-align: center;
    color: var(--main_white);
    border-radius: 4px;
    background-color: var(--bg_b900_black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.onTopIcon:hover {
    color: var(--main_white);
}

@media (max-width: 991.98px) {
    .bg_top {
        height: 380px;
        background-image: url('../images/Topbg_mb.png');
        background-position: bottom 10% right -70%;
    }

    .topBox {
        top: 15%;
        bottom: 0;
    }

    .rightIcon {
        bottom: 20px;
        right: 14px;
    }

    .AiIcon {
        line-height: 48px;
        width: 48px;
        height: 48px;
    }

    .AiIcon img {
        width: 32px;
        height: 32px;
    }

    .onTopIcon {
        width: 48px;
        height: 48px;
    }

}

.selection_menubox {
    display: block;
    height: 100%;
    border-right: 1px solid var(--Separator_baseline);
}

.selection_menubox_02 {
    height: 100%;
    border-right: 1px solid var(--Separator_baseline);
}

.selection_menuMbBtn {
    display: none;
    color: var(--btnText_black_white);
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .selection_menubox {
        display: none;
        border-right: none;
        border-left: none;
        padding-left: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color 0.3s ease;
    }

    .selection_menubox_02 {
        height: 100%;
        padding-left: 1rem;
        border-right: none;
        border-left: 1px solid var(--Separator_baseline);
    }

    .selection_menubox.active {
        background-color: rgba(0, 0, 0, .9);
    }

    .selection_menuMbBtn {
        display: block;
    }

    .selection_Mbmenu {
        width: 70%;
        height: 100vh;
        padding: 3rem 1rem;
        background-color: var(--selection_menu_bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .selection_menubox.active .selection_Mbmenu {
        transform: translateX(0);
    }

    .selection_Mbmenu_content {
        height: calc(100vh - 64px - 9rem);
        overflow-y: auto;
    }

    .selection_menuMbBtn_close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        color: var(--main_white);
        cursor: pointer;
        background: none;
        border: none;
    }
}

.selection_menu ul {
    display: none;
}

.selection_menu li a svg {
    transition: transform 0.3s ease;
}

.selection_menu li.open>a svg {
    transform: rotate(180deg);
}

.selection_menu li a {
    width: 90%;
    color: var(--btnText_black_white);
    display: flex;
    padding: .8rem 1rem;
    border-left: 2px solid var(--selection_menu_bg);
    background-color: var(--selection_menu_bg);
}

.selection_menu li a:hover {
    color: var(--btn_outer_text);
    /* border-left: 2px solid var(--bg_Gray100);
    background-color: var(--bg_Gray100); */
}

.selection_menu li a.active {
    color: var(--black700_white);
    font-weight: bold;
    border-left: 2px solid var(--main_blue);
    background-color: var(--selection_menu_bg_active);
}

.selection_menu li ul li a {
    padding-left: 2rem;
    font-size: 14px;
    border-bottom: 1px solid var(--Separator_baseline);
}

.selection_menu li ul li a.active {
    color: var(--main_blue);
    border-left: 0;
    background-color: var(--selection_menu_bg);
}



.selection_menu_02 ul {
    display: none;
}

.selection_menu_02 li a svg {
    transition: transform 0.3s ease;
}

.selection_menu_02 li.open>a svg {
    transform: rotate(180deg);
}

.selection_menu_02 li a {
    width: 90%;
    color: var(--btnText_black_white);
    display: flex;
    padding: .8rem 1rem;
    border-left: 2px solid var(--selection_menu_bg);
    background-color: var(--selection_menu_bg);
}

.selection_menu_02 li a:hover {
    color: var(--btn_outer_text);
    /* border-left: 2px solid var(--bg_Gray100);
    background-color: var(--bg_Gray100); */
}

.selection_menu_02 li a.active {
    color: var(--black700_white);
    font-weight: bold;
    border-left: 2px solid var(--main_blue);
    background-color: var(--selection_menu_bg_active);
}

.selection_menu_02 li ul li a {
    padding-left: 2rem;
    font-size: 14px;
    border-bottom: 1px solid var(--Separator_baseline);
}

.selection_menu_02 li ul li a.active {
    color: var(--main_blue);
    border-left: 0;
    background-color: var(--selection_menu_bg);
}






.breadcrumb a {
    color: var(--main_black500);
}

.breadcrumb a:hover {
    color: var(--main_black500);
}

.breadcrumb a.active {
    color: var(--main_black800);
}

/* 自定義 Swiper 導覽按鈕 (左右箭頭) */
.mySwiper {
    --swiper-navigation-color: #fff;
    /* 箭頭顏色 */
    --swiper-navigation-size: 30px;
    /* 箭頭大小 */
    --swiper-pagination-color: #0099FF;
    /* 分頁點選中顏色 */
}

/* 自定義 Swiper 分頁點 (下方圓點) */
.mySwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.7;
}

.mySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color);
}

/* 隱藏預設箭頭陰影或背景（若有需要） */
.mySwiper .swiper-button-next:after,
.mySwiper .swiper-button-prev:after {
    font-weight: bold;
}

.News_list {
    display: block;
    padding: 1rem;
    color: var(--main_black_white);
    border: 1px solid var(--Separator_baseline);
    background-color: var(--bg_white_b900);
    border-radius: 20px;
}

.News_list:hover {
    color: var(--main_black_white);
    background-color: var(--bg_Gray200_black);
}

.news_title_clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

@media (max-width: 991.98px) {
    .news_title_clamp {
        -webkit-line-clamp: 2;
    }
}

.page_list li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    margin: 0 .25rem;
    background-color: var(--bg_white_b900);
    color: var(--main_black_white);
}

.page_list li a:hover {
    color: var(--main_black_white);
    background-color: var(--bg_Gray200_black);
}

.page_list li a.active {
    color: var(--main_blue_white);
    background-color: var(--bg_blueLight);
}

.NewsDetail h2,
.NewsDetail h3,
.NewsDetail h4,
.NewsDetail h5,
.NewsDetail h6 {
    margin-top: 2.5rem;
    font-weight: bold;
}

.NewsDetail img {
    width: 100%;
    height: auto;
    margin-top: 2.5rem;
}

.Pedals_Big_Image {
    padding-bottom: 100%;
}

.Pedals_Big_Image div {
    background-color: var(--bg_Gray100);
    border-radius: 20px;
}

.Pedals_Small_Image div {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--bg_white);
    border-radius: 8px;
    border: 1px solid var(--Separator_baseline);
    margin-right: 1rem;
    overflow: hidden;
}

.Pedals_Small_Image div.active {
    border: 1px solid var(--Separator_black600);
    background-color: var(--bg_Gray100);
}

.Pedals_Small_Image div:hover {
    border: 1px solid var(--Separator_black600);
    background-color: var(--bg_Gray100);
}

.Pedals_Small_Image div img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cursor-pointer {
    cursor: pointer;
    transition: opacity 0.3s;
}

.cursor-pointer:hover {
    opacity: 0.7;
}

.Pedals_Small_Image div {
    margin-right: 10px;
}

.pedal_info {
    padding: 1.5rem;
    border: 1px solid var(--Separator_baseline);
    border-radius: 20px;
}

.ModelNumberBox {
    display: inline-block;
    padding: .5rem 1rem;
    background-color: var(--bg_black);
    color: var(--main_white);
}

.card_JoinMemberBox {
    padding: 1.5rem 1rem;
    border: 1px solid var(--Separator_baseline);
    border-radius: 20px;
    background-color: var(--bg_Gray200_black);
}

.success_alert {
    display: none;
    width: 380px;
    color: var(--main_black900);
    border: 1px solid var(--Separator_baseline);
    border-radius: 10px;
    background-color: var(--bg_greenLight);
    padding: 1rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 17%;
}

.error_alert {
    display: none;
    width: 380px;
    color: var(--main_black900);
    border: 1px solid var(--Separator_baseline);
    border-radius: 10px;
    background-color: var(--bg_redLight);
    padding: 1rem;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 17%;
}

.btnClose {
    width: 24px;
    height: 24px;
    border: none;
    background-color: transparent;
}

.error_msg {
    color: var(--main_red);
}

.error_input {
    border: 1px solid var(--main_red);
}

@media (max-width: 991.98px) {
    .success_alert {
        width: 90%;
        top: 20%;
    }
}

.SustainableOperationBox {
    padding: 1rem;
    border: 1px solid var(--Separator_baseline);
    border-radius: 20px;
    background-color: var(--bg_white_b900);
}

.SustainableOperationBox img {
    width: 100%;
    height: auto;
}

.SustainableOperationBox p {
    margin-top: 1rem;
    margin-bottom: 0;
    border-left: 2px solid var(--main_black_white);
    padding-left: .5rem;
}

.SustainableOperationBox p.SustainableOperationBox_black {
    border-left: 2px solid var(--main_black);
}

.bg_FAFBFA {
    background-color: #FAFBFA;
}

.bg_EEEEED {
    background-color: #EEEEED;
}

.bg_f0f0f0 {
    background-color: #f0f0f0;
}

.bg_EBF9EB {
    background-color: #EBF9EB;
}

.bg_fff {
    background-color: #fff;
}

.ProgramTopBox {
    width: 10px;
    min-height: 15px;
    display: flex;
    position: relative;
}

.ProgramRound {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--main_black_white);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.ProgramTopWire {
    width: 2px;
    min-height: 10px;
    background-color: var(--main_black_white);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.ProgramBottomBox {
    width: 10px;
    height: 100%;
    display: flex;
    position: relative;
}

.ProgramBottomWire {
    width: 2px;
    height: 100%;
    background-color: var(--main_black_white);
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.ProgramTriangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--main_black_white);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.carbon_table th {
    padding: 1rem;
}

.carbon_table td {
    padding: 1rem;
    border-bottom: 1px solid var(--Separator_baseline);
}

@media (max-width: 991.98px) {

    .carbon_table th {
        padding: .5rem .2rem;
    }

    .carbon_table td {
        padding: .5rem .2rem;
    }
}

.MapBox iframe {
    width: 100%;
    height: 275px;
    border-radius: 20px;
}

.ContactFormBox {
    padding: 2rem 1rem;
    border: 1px solid var(--Separator_baseline);
    border-radius: 20px;
    background-color: var(--bg_Gray50_black);
}

.ContactIcon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mail_Icon {
    background-image: var(--mail_Icon);
}

.phone_Icon {
    background-image: var(--phone_Icon);
}

.Fax_Icon {
    background-image: var(--Fax_Icon);
}

.map_Icon {
    background-image: var(--map_Icon);
}

.RefeshOutline {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: var(--main_black_white);
}

.PrvacyBox li {
    font-weight: bold;
    list-style-type: decimal;
    margin-left: 1.2rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.PrvacyBox li p {
    font-weight: normal;
    /* margin-top: 0.3rem; */
    line-height: 1.5;
}

.PrvacyBox li ul li {
    list-style-type: disc;
    font-weight: normal;
    line-height: 1.5;
    margin-top: 0.3rem;
}

.PrvacyBox li ul li ul li {
    list-style-type: lower-alpha;
}


#pdf-container {
    width: 100%;
    height: auto;
    overflow-y: auto;
    user-select: none;
}

canvas {
    display: block;
    margin: 10px auto;
    max-width: 100%;
}

.FAQ_list {
    padding: 1rem;
    color: var(--main_black_white);
    border: 1px solid var(--Separator_baseline);
    background-color: var(--bg_white_b900);
    border-radius: 20px;
}

.FAQ_content {
    width: calc(100% - 60px);
}

.FAQ_Number {
    width: 60px;
}

.FAQ_Number h5 {
    margin-bottom: 0;
}

.FAQ_Title {
    color: var(--main_black_white);
    cursor: pointer;
    transition: padding 0.3s ease;
}

.FAQ_list.active .FAQ_Title {
    padding-bottom: 1rem;
}

.FAQ_icon svg {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.FAQ_list.active .FAQ_icon svg {
    transform: rotate(0deg);
}

.FAQ_Answer {
    border-top: 1px solid var(--Separator_baseline);
    padding-top: 1rem;
    display: none;
}

@media (max-width: 991.98px) {
    .FAQ_Number {
        width: 100%;
    }

    .FAQ_content {
        width: 100%;
    }
}

.TopicsTable th,
.TopicsTable td {
    padding: 1rem 1.5rem;
}

.TopicsTable td {
    color: var(--main_black_white);
    border-bottom: 1px solid var(--Separator_baseline);
}

.TopicsTable th {
    color: var(--main_black_white);
    background-color: var(--bg_f0f0f0_black);
    border: 0;
}






.TopMenuBox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 66px;
    background-color: var(--bg_Gray100);
}