body {
    font-family: 'Arial', sans-serif;
    background-color: #fffcf8;
}



a {
    text-decoration: none;
    color: unset;
    cursor: pointer;
}

    a:hover {
        color: unset;
    }

.form-control:focus {
    box-shadow: none;
    border: 1px solid#5c5c5c;
}

.form-check-input:focus {
    box-shadow: none;
    border: 1px solid#b4b4b4;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid#5c5c5c;
}

.font_weight_bold {
    font-weight: bold;
}

.nowrap {
    white-space: nowrap;
}

.font_gray {
    color: #5e5e5e;
}

.font_gray2 {
    color: #c4c4c4;
}

.font_white {
    color: #fff;
}

.font_red {
    color: #ff5454;
}

.font_orange {
    color: #da5f11;
}

.font_yellow {
    color: #fcb13c;
}

.font_brown {
    color: #c09d63;
}

.font_blue {
    color: #17b5e6;
}

    .font_blue:hover {
        color: #17b5e6;
    }

.font_green {
    color: #74bd81;
}

.font_14 {
    font-size: 14px;
}

.font_20 {
    font-size: 20px;
}

.font_24 {
    font-size: 24px;
}

.font_30 {
    font-size: 30px;
}

.font_40 {
    font-size: 40px;
}

.font_50 {
    font-size: 50px;
}

.width_20 {
    width: 20px;
}

.width_30 {
    width: 30px;
}

.width_50 {
    width: 50px;
}

.width_100 {
    width: 100px;
}

.width_100p {
    width: 100%;
}

.height_100p {
    height: 100%;
}

.text_align_left {
    text-align: left;
}

.text_align_center {
    text-align: center;
}

.absolute_bottom {
    position: absolute;
    bottom: 0;
}

.default_btn {
    width: 150px;
    padding: 5px;
    border: none;
    text-align: center;
}

.default_btn2 {
    width: 100%;
    padding: 5px;
    border: none;
}

.default_btn3 {
    width: 80px;
    padding: 5px;
    border-radius: 8px;
    border: none;
    text-align: center;
}

.default_btn4 {
    width: 100px;
    border-radius: 99px;
    padding: 5px;
    border: none;
}


.btn_orange {
    background-color: #da5f11;
    color: #fff;
}

.btn_orange2 {
    background-color: #f08b17;
    color: #fff;
}

.btn_yellow {
    background-color: #fcb13c;
    color: #fff;
}

.btn_white {
    background-color: #fff;
    color: #000;
    border: 1px solid #333;
}

.btn_white2 {
    background-color: #fff;
    color: #da5f11;
    border: 1px solid #da5f11;
}

.btn_blue {
    background-color: #4367b5;
    color: #fff;
}

.btn_gray {
    background-color: #b2b2b2;
    color: #fff;
}

.btn_gray2 {
    background-color: #7e7e7e;
    color: #fff;
}

.logo {
    width: 15em;
}

.center_width {
    max-width: 1500px;
}

.section_gap {
    margin-top: 3px;
}

.line_height_30 {
    line-height: 30px;
}

.flex {
    display: flex;
}

.flex_directio_change {
    flex-direction: row;
}

.flex_direction_column {
    flex-direction: column;
}

.default_flex {
    display: flex;
    align-items: center;
}

.default_flex2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.margin_left_auto {
    margin-left: auto;
}

.relative {
    position: relative;
}

.btn_contact_us {
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 20px;
    width: 80px;
    cursor: pointer;
}

.bg_color_red {
    background-color: #ffcccc;
}

.bg_color_brown {
    background-color: #faf5f1;
}

.bg_color_orange {
    background-color: #fbb03b;
}

.bg_color_orange2 {
    background-color: #fcf4e9;
}

.bg_color_orange3 {
    background-color: #f08b17;
}

.bg_color_orange4 {
    background-color: #da5f11;
}

.bg_color_orange5 {
    background-color: #fc6908;
}

.border_bottom {
    border-bottom: 1px solid #999;
}

.border_radius_99p {
    border-radius: 99px;
}

.border_gray {
    border: 2px solid #555;
}

.PC {
    display: static;
}

.M {
    display: none;
}

/* 自訂radio樣式 */
.check_radio {
    /*要換行就用 display: block;*/
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .check_radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark {
    position: absolute;
    top: 5px;
    left: 6px;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
    border: 1px solid #b4b4b4;
}

.check_radio:hover input ~ .checkmark {
    background-color: #ccc;
}

.check_radio input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check_radio input:checked ~ .checkmark:after {
    display: block;
}

.check_radio .checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* 自訂radio樣式 END */

.pagination {
    display: flex;
    justify-content: flex-end;
    list-style-type: none;
}

    .pagination li {
        margin: 0 5px;
    }

    .pagination a {
        text-decoration: none;
        padding: 8px 16px;
        background-color: #ff9100;
        color: white;
        border-radius: Spx;
        transition: background-color 0.3s;
    }

        .pagination a:hover {
            background-color: #da5f11;
        }

/****section共用****/

.bg_up_img {
    background-image: url('../img/Web_GU_BG_03.png');
    background-size: cover;
    background-position: center;
    height: 250px;
}

.btn_contact_qrcode {
    position: fixed;
    z-index: 5;
    bottom: 50px;
    right: 120px;
    width: 250px;
    height: 270px;
    border-radius: 10px;
    background-color: #fff;
    color: #74bd81;
    font-weight: bold;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .btn_contact_qrcode img {
        width: 80%;
    }

.btn_contact_black {
    position: fixed;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    background-color: rgba(51, 51, 51, 0.8);
}

.btn_dropdown {
    position: absolute;
    height: 90px;
    width: 150px;
    background-color: #fff;
    right: 8px;
    border: 1px solid #da5f11;
}

.section_title {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
    color: #da5f11;
    position: relative;
    border-bottom: 2px solid #da5f11;
    padding: 0 10px;
}

.section_intro {
    margin: 30px 0;
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 30px;
}

.section_intro_content {
    width: 100%;
    max-width: 750px;
}

.default_section_content img {
    width: 100%;
    max-width: 750px;
}

.section_line {
    background-color: #da5f11;
    height: 2px;
    width: 100%;
}

.section_line2 {
    background-color: #a3a3a3;
    height: 1px;
    width: 100%;
}

.section_line3 {
    background-color: #fcb13c;
    height: 1px;
    width: 100%;
}

.section_line4 {
    border-bottom: 2px dashed #fcb13c;
    width: 100%;
}

.section_tag {
    letter-spacing: 1px;
    padding: 8px 8px;
    white-space: nowrap;
}

.tag_square {
    border: 1px solid #da5f11;
    height: 60px;
    width: 60px;
    color: #da5f11;
    font-size: 18px;
}

.more {
    margin-top: 30px;
    color: #fff;
    background-color: #397e46;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    letter-spacing: 3px;
}

    .more:hover {
        color: #fff;
    }

.img_center {
    width: 750px;
    max-width: 100%;
}


/****導覽列****/
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: bold;
}

.fixed-top {
    z-index: 8;
}

.navbar-toggler {
    border: none;
    color: rgb(255, 255, 255, 0.01);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("../img/toggler_bg.png")
}

.navbar-brand {
    width: static;
}

.nav_logo {
    padding-left: 20px;
    display: none;
}

.navbar-nav a:hover,
.navbar-nav a:focus {
    color: #da5f11;
}

.navbar-nav img {
    width: 30px;
    margin-bottom: 5px;
    margin-right: 10px;
}

.up_btn {
    letter-spacing: 3px;
    color: #da5f11;
    text-align: center;
}

.up_btn_logo img {
    width: 300px;
}

.up_btn_logo_line {
    margin-top: 5px;
    margin-bottom: 0;
    height: 1px;
    width: 150px;
    background-color: #ffffff;
}

.up_btn_line {
    display: block;
}

.nav_position {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}


.car {
    width: 120px;
    display: inline;
}

.car2 {
    display: none;
    width: 120px;
    margin-left: auto;
}

    .car2 img {
        width: 30px;
    }

/****foot****/
.bg_foot {
    background: linear-gradient(to bottom, #f08b17, #f6732b);
    color: #fff;
}

.foot_title {
    letter-spacing: 4px;
}

.foot_logo {
    width: 100%;
    max-width: 350px;
    padding-bottom: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.foot_underline {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #fff;
}

.foot_contact {
    display: flex;
}

.foot_sns img {
    width: 60px;
    margin: 10px 10px;
}

.foot_pay img {
    width: 45px;
    margin: 10px 10px;
}

.foot_copyright {
    /* background-color: #1d3b20; */
    text-align: center;
    color: azure;
    padding-top: 10px;
    padding-bottom: 10px;
}

.bg_foot .bottom {
    display: none;
}

/****輪播****/
.swiper_adjust {
    height: 70px;
}

.swiper {
    position: relative;
    width: 100%;
    height: 850px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 850px;
        object-fit: cover;
    }

.swiper-pagination-bullet {
    background: #da5f11;
    height: 15px;
    width: 15px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 15px);
}

.swiper-button-next,
.swiper-button-prev {
    color: #333;
}

.mask {
    position: relative;
    z-index: 5;
    top: -850px;
}

#swiper_mask {
    width: 100%;
    height: 850px;
}

.mask_item1 {
    position: absolute;
    top: 30%;
    left: 15%;
    width: 450px;
}

.mask_item2 {
    position: absolute;
    bottom: 0%;
    left: 5%;
    width: 350px;
}

.mask_item3 {
    position: absolute;
    bottom: 0;
    right: 8%;
    width: 300px;
}

/****側邊欄****/
.sidebar {
    height: 80vh;
    transform: translateX(0px);
    transition: 400ms transform ease;
}

.sidebar_in {
    height: 80vh;
    overflow: hidden;
}

.sidebar .section_title {
    text-align: left;
}

.sidebar_btn {
    display: none;
}

.sidebar_btn_in {
    width: 100%;
    height: 100%;
}

    .sidebar_btn_in img {
        width: 20px;
    }

.sidebar_decorate {
    display: none;
    position: absolute;
    bottom: 0px;
    right: -80px;
}

    .sidebar_decorate img {
        width: 180px;
    }

.sidebar a {
    transition: 400ms transform ease;
}

.sidebar input[type="checkbox"] {
    position: absolute;
    margin: 0;
    width: 16px;
    height: 16px;
    right: 10px;
    top: 10px;
    z-index: 1;
    opacity: 0;
    cursor: pointer;
}

    .sidebar input[type="checkbox"]:checked ~ .portlet-header a {
        transform: rotate(180deg);
    }

    .sidebar input[type="checkbox"]:checked ~ .portlet-content {
        height: 100%;
        /* height: 200px;  */
    }

.sidebar .portlet {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar .portlet-header {
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.sidebar .portlet-content {
    height: 0;
    /* transition: 300ms height ease; */
    padding-left: 30px;
}

    .sidebar .portlet-content .item {
        padding: 5px;
        color: #555;
    }

    .sidebar .portlet-content .item_title {
        margin-left: -15px;
    }

/****panel****/
.panel {
    position: fixed;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    border-radius: 10px;
    background-color: #fff;
    color: #3b3b3b;
}

    .panel .default_flex2 {
        flex-direction: column;
    }

        .panel .default_flex2 .default_flex2 {
            flex-direction: row;
        }

.panel_main_img {
    width: 25%;
}

.panel_grid {
    display: grid;
    width: 90%;
    grid-template-columns: 25% 75%;
}

/***default_accordion 手風琴****/
.default_accordion {
    border-bottom: 1px solid #da5f11;
}

    .default_accordion .accordion-item {
        background-color: #fffcf8;
        border: none;
    }

    .default_accordion .accordion-button {
        background-color: #fffcf8;
        color: #fcb13c;
        font-weight: bold;
        border-top: 1px solid #da5f11;
    }

        .default_accordion .accordion-button::after {
            background-image: url("../img/Web_GU_icon_13_4.png");
            background-size: 15px 10px;
            width: 20px;
            height: 10px;
        }

        .default_accordion .accordion-button:focus {
            color: #fcb13c;
            box-shadow: none;
        }

        .default_accordion .accordion-button:not(.collapsed) {
            color: #fcb13c;
            box-shadow: none;
        }

/****step_grid****/

.step_grid_3step_1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        'step1 step2 step3';
}

    .step_grid_3step_1 > div {
        margin: 0 5px;
    }

.step_grid_3step_2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        'step1 step2 step3';
}

    .step_grid_3step_2 > div {
        margin: 0 5px;
    }

.step_grid_3step_3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        'step1 step2 step3';
}

    .step_grid_3step_3 > div {
        margin: 0 5px;
    }

/****index****/
.mySwiper2 {
    height: 500px;
    padding: 0 80px;
}

    .mySwiper2 .swiper-slide {
        background-color: inherit;
        display: flex;
        flex-direction: column;
    }

    .mySwiper2 img {
        display: block;
        width: 100%;
        height: 420px;
        object-fit: contain;
    }

    .mySwiper2 .title {
        height: 70px;
        text-align: left;
        font-size: 22px;
    }

    .mySwiper2 .title1 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .mySwiper2 .title2 {
        position: absolute;
        margin-top: -30px;
        left: 50%;
        transform: translate(-50%, 0);
    }


.index_section2_bgimg {
    background: url("../img/Web_GU_BG_02.png");
    background-position: bottom;
    background-size: cover;
}

.index_section2 {
    min-height: 800px;
    display: grid;
    place-content: center;
}


.index_section2_decorate1 {
    position: absolute;
    left: 5%;
    top: -110px;
}

    .index_section2_decorate1 img {
        width: 160px;
    }

.index_section2_decorate2 {
    position: absolute;
    right: 3%;
    top: -30px;
}

    .index_section2_decorate2 img {
        width: 250px;
    }

.index_section2_decorate3 {
    position: absolute;
    left: 5%;
    bottom: 0px;
}

    .index_section2_decorate3 img {
        width: 150px;
    }

.index_section2_decorate4 {
    position: absolute;
    right: 5%;
    bottom: 50px;
}

    .index_section2_decorate4 img {
        width: 150px;
    }

.index_intro1 img {
    width: 600px;
}

.index_intro2 img {
    width: 50px;
    padding-top: 10px;
}

.index_intro2 .title_main {
    font-size: 35px;
    letter-spacing: 5px;
}

.index_intro2_item {
    height: 150px;
}

.index_intro2 .text {
    color: #f79a00;
    font-size: 18px;
    font-weight: bold;
}

.index_section3_decorate1 {
    position: absolute;
    left: 3%;
    bottom: 50px;
}

    .index_section3_decorate1 img {
        width: 140px;
    }

.index_section3_title_decorate {
    width: 250px;
}

.index_section3_title1 {
    font-weight: bolder;
    font-size: 50px;
}

.index_section3_title2 {
    width: 280px;
}

.index_section3_logo {
    width: 150px;
}

.index_section3 .section_intro {
    padding: 0 50px;
}

/****about****/
.about_section1_title {
    color: #f79a00;
    font-size: 25px;
    letter-spacing: 5px;
    font-weight: bold;
}

.about_section2 img {
    width: 80px
}

.about_section2 .text {
    color: #f79a00;
    font-size: 18px;
    font-weight: bold;
}

/****product****/
.products_content_out {
    overflow: hidden;
}

.products_content {
    max-width: fit-content;
    margin-inline: auto;
    max-width: 1000px;
    line-height: 30px;
    position: relative;
}

.products_detail_content img {
    width: 30px;
    margin: 0 2px;
}

.products_selection {
    display: flex;
    border-bottom: 1px solid#b4b4b4;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.magnifier {
    margin-left: auto;
}

    .magnifier img {
        width: 30px;
        height: 30px;
    }

.form-select:focus {
    box-shadow: none;
}

.products_item {
    /* border-bottom: 0px solid#b4b4b4; */
    padding-bottom: 15px;
    margin-bottom: 20px;
}

    .products_item .img {
        width: 100%;
        height: 270px;
        object-fit: contain;
        margin: 10px 0;
    }

.first_row {
    font-size: 20px;
    color: #1d3b20;
    padding: 2px 20px;
}

.second_row {
    display: flex;
    padding: 2px 20px;
}

.cart_icon {
    margin-left: auto;
}

    .cart_icon img {
        width: 30px;
        cursor: pointer;
    }

/****product_detail****/

.mySwiper4 {
    height: 480px;
}

.mySwiper3 {
    height: 120px;
}

.mySwiper4 .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.mySwiper3 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mySwiper3 .swiper-slide {
    opacity: 0.4;
}

.mySwiper3 .swiper-slide-thumb-active {
    opacity: 1;
}

.mySwiper3 .swiper-button-next,
.mySwiper3 .swiper-button-prev {
    height: 105%;
    width: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #da5f11;
}

.mySwiper3 .swiper-button-prev {
    left: 0px;
    top: 18%;
}

.mySwiper3 .swiper-button-next {
    right: 0px;
    top: 18%;
}

    .mySwiper3 .swiper-button-next:after,
    .mySwiper3 .swiper-button-prev:after {
        font-size: 20px;
    }

/* .products_detail_small_img img {
    height: 90px;
    margin-right: 10px;
    cursor: pointer;
} */

.products_detail_title {
    color: #4a534b;
    font-size: 22px;
    /* font-weight: bold; */
    letter-spacing: 3px;
    padding-bottom: 10px;
}

.products_detail_title2 {
    color: #696969;
    letter-spacing: 1px;
    font-weight: bold;
}

.products_detail_tag {
    color: #ff5454;
    letter-spacing: 2px;
    background-color: #ffd7d7;
    padding: 5px 8px;
    white-space: nowrap;
}

.products_detail_small {
    font-size: 14px;
    color: #7e7e7e;
}

.products_detail_price {
    color: #da5f11;
    font-size: 25px;
}

    .products_detail_price img {
        width: 30px;
        cursor: pointer;
    }

.products_detail_input {
    width: 100px;
    border: 1px solid #b4b4b4;
    text-align: center;
}

    .products_detail_input:focus {
        outline: none;
    }

.input-group .btn-outline-secondary {
    cursor: pointer;
}

.table1 {
    border-collapse: collapse;
    border: 2px solid rgb(140 140 140);
    letter-spacing: 1px;
    width: 100%;
    font-weight: 100;
}

    .table1 th,
    .table1 td {
        border: 1px solid rgb(160 160 160);
        padding: 3px 10px;
    }

    .table1 th {
        width: 30%;
        font-weight: 100;
        text-align: right;
        background-color: #e0e0e0;
    }

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* center */
    -moz-column-gap: 5px;
    column-gap: 5px;
    margin: 2em auto;
    max-width: 1200px;
    width: 100%;
}

    .tabs input[type=radio] {
        display: none;
    }

        .tabs input[type=radio]:checked + label {
            color: black;
            transform: translatey(1px);
            border-bottom: 4px solid #555555;
        }

            .tabs input[type=radio]:checked + label + .tab-content {
                display: block;
            }

    .tabs label {
        padding: 0.5em 0.75em;
        font-size: 20px;
        color: #ccc;
        border-bottom: unset;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        cursor: pointer;
        order: 0;
    }

        .tabs label:hover {
            color: black;
        }

    .tabs .tab-content {
        display: none;
        padding: 1em;
        width: 100%;
        border-radius: 5px;
        order: 1;
    }

.mySwiper5 {
    height: 300px;
}

    .mySwiper5 .swiper-slide {
        background-color: inherit;
        display: flex;
        flex-direction: column;
    }

    .mySwiper5 img {
        display: block;
        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    .mySwiper5 .title {
        height: 70px;
        text-align: left;
    }

    .mySwiper5 .title1 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .mySwiper5 .title2 {
        position: absolute;
        margin-top: -30px;
        left: 3%;
        transform: translate(-3%, 0);
    }

/****news****/
.news_list_img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

    .news_list_img img {
        width: 100%;
        height: 400px;
        object-fit: contain;
    }

.news_detail img {
    width: 100%;
    object-fit: contain;
}
/****health****/
.health_item {
    margin-top: 20px;
}

    .health_item img {
        width: 100%;
        max-height: 300px;
        object-fit: contain;
    }

    .health_item .section_intro {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        padding-bottom: 0px;
    }

.health_item_btn {
    position: absolute;
    bottom: 20px;
}


/****order****/
/****order_check****/

.order_content {
    max-width: fit-content;
    margin-inline: auto;
    max-width: 1000px;
}

.order_title {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 5px;
    width: 350px;
    text-align: left;
    color: #da5f11;
    position: relative;
    border-bottom: 2px solid #da5f11;
    padding: 0 10px;
}

.step {
    display: flex;
    height: 70px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    border: 1px solid #da5f11;
    color: #da5f11;
}

.step_gray {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #b4b4b4;
    color: #b4b4b4;
}

.step_icon {
    height: 30px;
    width: 30px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #da5f11;
    border-radius: 50%;
    border: 2px solid#da5f11;
}

.angle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step_angle {
    display: none;
    height: 30px;
    width: 30px;
    margin-right: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #da5f11;
}

.step_angle_gray {
    color: #b4b4b4;
}

.gray {
    color: #b4b4b4;
    border: 2px solid#b4b4b4;
}

.step1 {
    grid-area: step1;
}

.step2 {
    grid-area: step2;
}

.step3 {
    grid-area: step3;
}

    .step3 img, .step2 img, .step1 img {
        width: 30px;
        margin-right: 10px;
    }

.step4 {
    grid-area: step4;
}

    .step4 img {
        width: 30px;
        margin-right: 10px;
    }


.angle1 {
    grid-area: angle1;
}

.angle2 {
    grid-area: angle2;
}

.angle3 {
    grid-area: angle3;
}

.order_check_grid1 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-areas:
        'step1 step2 step3 step4';
}

    .order_check_grid1 > div {
        margin: 0 5px;
    }

.order_check_section2 {
    background-color: #faf5f1;
    padding: 10px;
}

.order_check_section2_gird1 {
    display: grid;
    grid-template-columns: 55% 20% 10% 10% 5%;
    color: #da5f11;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px solid #b4b4b4;
}

    .order_check_section2_gird1 > div {
        text-align: center;
    }

.gird2_1 {
    grid-area: gird2_1;
}

    .gird2_1 img {
        width: 50px;
    }

.gird2_2 {
    grid-area: gird2_2;
}

.gird2_2_intro {
    text-align: left;
    height: 100%;
}

    .gird2_2_intro img {
        margin-right: 20px;
        width: 50px;
    }

.gird2_2_intro_title {
    padding: 10px 0px;
    color: #3b3b3b;
}

.gird2_3 {
    grid-area: gird2_3;
}

.gird2_4 {
    grid-area: gird2_4;
}

.gird2_5 {
    grid-area: gird2_5;
}

.gird2_6 {
    grid-area: gird2_6;
}

.order_check_section2_gird2 .gird2_6 img {
    width: 30px;
    cursor: pointer;
}

.gird2_7 {
    grid-area: gird2_7;
}

.gird2_8 {
    grid-area: gird2_8;
}


.order_check_section2_gird2 {
    display: grid;
    grid-template-columns: 5% 50% 40% 5%;
    grid-template-areas:
        'gird2_1 gird2_2 gird2_7 gird2_6';
    padding: 15px 0px;
    border-bottom: 1px solid #b4b4b4;
}

    .order_check_section2_gird2 > div {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .order_check_section2_gird2 .input-group {
        max-width: fit-content;
        margin-inline: auto;
    }

    .order_check_section2_gird2 .products_detail_input {
        width: 60px;
    }

    .order_check_section2_gird2 .gird2_title {
        display: none;
        color: #da5f11;
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .order_check_section2_gird2 .gird2_title_s {
        color: #000000;
        font-weight: bold;
        font-size: 12px;
        margin-bottom: 5px;
    }

    .order_check_section2_gird2 .gird2_line {
        /* border-bottom: 1px solid #c09d63; */
        margin: 20px 0px;
        /* width: 120px; */
    }

.order_check_section2_gird2_2 {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    grid-template-areas:
        'gird2_3 gird2_4 gird2_5';
    width: 100%;
}

    .order_check_section2_gird2_2 > div {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
    }

    .order_check_section2_gird2_2 .gird2_8 .gird2_7_line {
        border-bottom: 2px dashed #c09d63;
        margin: 20px 0px;
        width: 90%;
    }

.order_check_total {
    font-size: 23px;
    border-bottom: 1px solid #b4b4b4;
    padding-bottom: 40px;
}

/****order_shipping_payment****/
.order_shipping_payment_grid1 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-areas:
        'step1 step2 step3 step4';
}

    .order_shipping_payment_grid1 > div {
        margin: 0 5px;
    }

.order_shipping_payment_title {
    color: #da5f11;
    font-size: 16px;
}

    .order_shipping_payment_title img {
        width: 20px;
        margin-right: 5px;
        padding: 0px 0px;
    }

.order_shipping_payment_section1_gird1 {
    display: grid;
    grid-template-columns: 10% 90%;
}

    .order_shipping_payment_section1_gird1 > div {
        margin: 20px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .order_shipping_payment_section1_gird1 .form-select {
        width: 200px;
    }

.order_shipping_payment_section_title {
    color: #f6732b;
    font-size: 18px;
    font-weight: bold;
}

.order_shipping_payment_section1_gird1 img {
    width: 30px;
    margin-right: 10px;
}

.order_shipping_payment_line {
    border-bottom: 1px solid #b4b4b4;
}

.order_shipping_payment_line2 {
    border-bottom: 2px dashed #b4b4b4;
}

.order_shipping_payment_line3 {
    border-bottom: 1px solid #da5f11;
}

.order_shipping_payment_section2 {
    background-color: #faf5f1;
    padding: 10px;
}

.order_shipping_payment_section2_gird1 {
    display: grid;
    grid-template-columns: 50% 20% 10% 10% 10%;
    color: #da5f11;
    font-weight: bold;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #b4b4b4;
}

    .order_shipping_payment_section2_gird1 > div {
        text-align: center;
    }

.order_shipping_payment_section2_gird2 .gird2_1 img {
    width: 60px;
}

/* order_shipping_payment的 .gird2_1、.gird2_3~.gird2_5繼承order_check */

.gird2_2_sp {
    grid-area: gird2_2_sp;
}

.gird2_2_intro {
    text-align: left;
    height: 100%;
}

.order_shipping_payment_section2_gird2 .gird2_2_intro_title {
    font-size: 18px;
    padding-top: 18px;
    color: #3b3b3b;
    border-bottom: 0px;
}

.grid2_6 {
    grid-area: gird2_6;
}

.order_shipping_payment_section2_gird2 .gird2_6 img {
    width: 30px;
}



.order_shipping_payment_section2_gird2 {
    display: grid;
    grid-template-columns: 20% 30% 20% 10% 10% 10%;
    grid-template-areas:
        'gird2_1 gird2_2_sp gird2_3 gird2_4 gird2_5 .';
    padding: 15px 0px;
    border-bottom: 2px dashed #b4b4b4;
}

    .order_shipping_payment_section2_gird2 > div {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

/* .order_shipping_payment_total {
    float: right;
    padding: 20px;
} */

.order_shipping_payment_total {
    font-size: 18px;
    text-align: center;
}

    .order_shipping_payment_total > div {
        width: 120px;
        border-right: 1px solid #555;
    }

    .order_shipping_payment_total .border_right_none {
        border-right: none;
    }

.total_gird {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 280px;
    font-size: 18px;
    text-align: right;
}

.coupon .form-control {
    width: 250px;
    display: inline;
}

/****order_information****/
.order_information_grid1 {
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-areas:
        'step1 step2 step3 step4';
}

    .order_information_grid1 > div {
        margin: 0 5px;
    }

.order_information_grid2 {
    display: grid;
    grid-template-columns: 10% 90%;
}
    .order_information_grid2 > div {
        margin: 10px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.order_information_grid2_title {
    color: #3b3b3b;
    font-size: 18px;
}

.order_information_grid2_address_word_adjust {
    line-height: 10px;
}

.form-control:focus {
    box-shadow: none;
}

.input_width1 {
    width: 400px;
}

.input_width2 {
    width: 100px;
}

.input_width3 {
    width: 160px;
}

.input_width4 {
    width: 800px;
}

.input_width5 {
    width: 200px;
}
/****order_complete****/
.zong_img2 {
    position: absolute;
    right: -30%;
    top: 0;
}

.order_complete_content {
    text-align: center;
}

.order_complete_line_height_adjust {
    line-height: 45px;
}

    .order_complete_line_height_adjust img {
        width: 120px;
    }


.order_complete_title1 {
    color: #555555;
    font-size: 20px;
}

.order_complete_title2 {
    font-size: 25px;
    font-weight: bold;
}

.order_complete_content1 {
    max-width: fit-content;
    margin-inline: auto;
    max-width: 600px;
    line-height: 30px;
    border-radius: 10px;
    padding-top: 50px;
}

.order_complete_line {
    height: 1px;
    width: 100%;
    background-color: #b4b4b4;
}

.order_complete_content2 {
    max-width: fit-content;
    margin-inline: auto;
    max-width: 700px;
    line-height: 30px;
    padding: 20px 20px;
    text-align: left;
    border-top: 1px solid #da5f11;
    border-bottom: 1px solid #da5f11;
    color: #fcb13c;
}

.order_complete_content2_2 {
    max-width: fit-content;
    margin-inline: auto;
    max-width: 700px;
    line-height: 30px;
    border-radius: 10px;
    padding: 20px 20px;
    border: 5px solid #fff;
    color: #fff;
}

.order_complete_bg {
    background-color: #f08b17;
    outline: 2px solid #f08b17;
    text-align: left;
}

.order_complete_transfer_bg {
    background-color: #437a5b;
    outline: 2px solid #437a5b;
}

.order_complete_mark {
    margin: 0px 2px;
    font-size: 18px;
}

/****login****/
.login_section1 {
    height: 70vh;
    min-height: 700px;
}

.login_panel {
    background-color: #fff;
    height: 600px;
    width: 500px;
    max-width: 90%;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

.login_panel_title {
    height: 15%;
    background-color: #fcb13c;
    color: #fff;
    font-size: 25px;
    font-weight: bold;
}

    .login_panel_title img {
        width: 160px;
        margin-right: 20px;
    }

.login_panel_form {
    height: 75%;
    text-align: center;
    flex-direction: column;
}

    .login_panel_form > div {
        width: 65%;
    }

    .login_panel_form img {
        width: 20px;
        margin-right: 10px;
    }

    .login_panel_form .form-control1 {
        background-image: url("../img/Web_GU_icon_14.png");
        background-repeat: no-repeat;
        background-size: 20px 25px;
        background-origin: content-box;
        text-indent: 30px;
    }

    .login_panel_form .form-control2 {
        background-image: url("../img/Web_GU_icon_15.png");
        background-repeat: no-repeat;
        background-size: 20px 25px;
        background-origin: content-box;
        text-indent: 30px;
    }

.login_panel_bottom {
    height: 10%;
    border-top: 1px solid #888888;
}

.login_panel_btn {
    width: 50%;
    padding: 5px;
}

.btn_right_boder {
    border-right: 1px solid#888888;
}

.password_panel {
    background-color: #fff;
    width: 500px;
    max-width: 90%;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
}

    .password_panel .tabs {
        justify-content: center;
        margin: 0 auto;
    }

        .password_panel .tabs input[type=radio]:checked + label {
            width: 45%;
            text-align: center;
            color: #f08b17;
            border-bottom: 3px solid #f08b17;
        }

        .password_panel .tabs label {
            width: 45%;
            text-align: center;
        }

            .password_panel .tabs label:hover {
                color: #f08b17;
            }



/****area****/
.area_identity {
    min-height: 150px;
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}

.area_member_name {
    font-size: 35px;
}

.area_btns {
    width: 100%;
}

    .area_btns .default_btn {
        margin: 10px 0;
    }

    .area_btns .btn_white2:hover {
        background-color: #da5f11;
        color: #fff;
    }

.coupon .form-select {
    display: inline;
    width: auto;
}

.area_bg_px {
    padding: 0 20px;
    background-clip: content-box, padding-box;
}

.area_bg_pl {
    padding-left: 20px;
    background-clip: content-box, padding-box;
}

.progress {
    border-radius: 99px;
    border: 1px solid #f08b17;
    background-color: #fff;
}

.progress-bar {
    background-color: #f08b17;
    border-radius: 99px;
}

.area_tag {
    background-color: #da5f11;
    color: #fff;
    padding: 10px 20px;
}

.area_table {
    width: 100%;
    /*border-spacing: 3px;*/
    border-collapse: collapse;
    border: none;
}

    .area_table th {
        color: #da5f11;
        font-weight: bold;
    }

    .area_table th,
    .area_table td {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #b4b4b4;
    }

/* 如果有放圖示要置中用這段 */
/* .area_table .table_flex {
    display: flex;
    align-items: center;
    justify-content: center;
} */
.area_order_progress_grid {
    display: grid;
    /*grid-template-columns: 10% 12% 10% 12% 10% 12% 10% 12% 10%;*/
    grid-template-columns: 10% 20% 10% 20% 10% 20% 10%;
}

.area_order_dot_width {
    width: 10%;
}

.area_order_line_width {
    width: 12%;
    height: 120px;
}

.area_order_progress {
    flex-direction: column;
    text-align: center;
}

.area_order_word {
    height: 85px;
}

.area_order_line {
    width: 100%;
    height: 2px;
}

.line_orange {
    background-color: #f08b17;
    margin-top: 20px;
}

.line_gray {
    background-color: #c4c4c4;
    margin-top: 20px;
}

.area_order_dot {
    width: 25px;
    height: 25px;
    border-radius: 99px;
}

.dot_orange {
    border: 3px solid #fff;
    background-color: #f08b17;
    outline: 2px solid #f08b17;
}

.dot_gray {
    border: 3px solid #fff;
    background-color: #c4c4c4;
    outline: 2px solid #c4c4c4;
}

.area_coupon .tabs {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

    .area_coupon .tabs input[type=radio]:checked + label {
        color: #f08b17;
        transform: translatey(1px);
        border-bottom: none;
        /* 4px solid #f08b17 */
    }

    .area_coupon .tabs label:hover {
        color: #f08b17;
    }

.area_coupon_item {
    width: 100%;
    margin: 12px 5px;
    height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.area_coupon_item_section1 {
    height: 280px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.area_coupon_item_section2 {
    height: 70px;
    border-radius: 20px;
    padding: 0px 10px;
    position: relative;
}

.area_coupon_item_section_line {
    width: 100%;
    height: 1px;
    border-top: 2px dashed #a3a3a3;
}

.area_coupon_item_bottom {
    height: 100%;
    display: flex;
}

.area_coupon_item_bottom_in {
    align-self: flex-end;
    width: 100%;
}

    .area_coupon_item_bottom_in .price {
        width: 250px;
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
    }

.area_coupon_title1 {
    color: #f4722a;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.area_coupon_title2 {
    color: #fbb03b;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.area_referral_title {
    color: #f4722a;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.area_expired {
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    background-color: rgba(50, 50, 50, 0.5);
    top: 0;
    left: 0;
    z-index: 1;
}

.area_expired_in {
    font-size: 30px;
    color: #fff;
    border: 5px solid #fff;
    border-radius: 99%;
    height: 130px;
    width: 130px;
    position: relative;
}

    .area_expired_in img {
        position: absolute;
        bottom: -20px;
        right: -50px;
        width: 70px;
    }

.area_referral_code_item {
    width: 100%;
    margin: 12px 5px;
    height: 150px;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

/****rule****/

.rule_up_title {
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-30%, -50%);
    font-size: 40px;
    letter-spacing: 5px;
}

    .rule_up_title img {
        width: 100px;
    }

.rule_table {
    /* overflow: hidden; */
}

    .rule_table table {
        border-collapse: collapse;
        color: #777;
    }

.rule_table_logo_img {
    width: 100px;
}

.rule_table th {
    color: #ffffff;
    width: 25vw;
    height: 75px;
    text-align: center;
    border-radius: 10px 10px 0px 0px;
}

.rule_table .relative img {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 80px;
}

.rule_table td {
    background-color: #f3f3f3;
    width: 25vw;
    height: 80px;
    text-align: center;
    border-right: 1px solid #999;
}

.rule_table tr {
    border-bottom: 1px solid #dddddd;
}

.rule_table td:last-child {
    border-right: none;
}

.rule_table .boder_bottom_orange {
    border-bottom: 2px solid #da5f11;
}

.rule_table tr:nth-of-type(even) td {
    background-color: #fff;
}

.rule_table .table_2 tr:last-of-type {
    border-bottom: none;
}

.rule_table .distributor {
    width: 100%;
}

    .rule_table .distributor td:first-child {
        width: 30%;
    }

    .rule_table .distributor td:last-child {
        width: 70%;
    }

    .rule_table .distributor td {
        width: 20vw;
    }

.rule_table .payment_delivery td {
    width: 30vw;
}
/*路徑*/
.breadcrumbs_dm {
    color: #dd5f0f;
    font-size: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width:1800px) {

    /****index****/
    .index_section3 {
        margin-bottom: 150px;
    }

    .index_section3_decorate1 {
        bottom: -120px;
    }

    /****area****/
    .area_coupon_item_bottom_in .price {
        width: 200px;
    }
}



@media screen and (max-width:1400px) {

    /****index****/
    .mySwiper2 {
        height: 500px;
        padding: 0 0px;
    }

    .index_section2_decorate1 {
        display: none;
    }
}


/****1200px僅作為微調用****/
@media screen and (max-width:1200px) {


    /****導覽列****/
    .navbar {
        font-size: 14px;
    }

    /****product_detail****/

    .mySwiper4 {
        height: 400px;
    }

    .mySwiper3 {
        height: 100px;
    }

    /****news****/
    .news_list_img {
        height: 250px;
    }

        .news_list_img img {
            height: 250px;
        }
}



@media screen and (max-width:992px) {
    .flex_directio_change {
        flex-direction: column;
    }

    .form_flex {
        align-items: flex-start;
        flex-direction: column;
    }

    .PC {
        display: none;
    }

    .M {
        display: inline;
    }

    /****section共用****/
    .bg_up_img {
        height: 150px;
    }

    .section_title::after {
        width: 20%;
        left: 40%;
    }

    /****導覽列****/
    .navbar {
        font-size: 18px;
    }

    .nav_position {
        max-width: none;
    }

    .navbar-brand {
        width: 70%;
    }

    .nav_logo {
        display: block;
        width: 70%;
        max-width: 15em;
    }

        .nav_logo img {
            width: 100%;
        }

    .up_btn_logo {
        display: none;
    }

    .up_btn_line {
        display: none;
    }

    .up_btn_logo_line {
        margin-left: -20px;
    }

    .car {
        width: auto;
        display: none;
    }

    .car2 {
        display: inline;
        width: auto;
    }
    /****foot****/
    .foot_contact {
        justify-content: center;
    }

    .foot_logo {
        border-bottom: none;
    }

    .foot_logo_right {
        display: none;
    }

    .bg_foot .bottom {
        display: block;
    }
    /****輪播****/
    .swiper {
        height: 530px;
    }

    .swiper-slide img {
        height: 530px;
    }

    .mask {
        top: -530px;
    }

    #swiper_mask {
        height: 530px;
    }

    .mask_item1 {
        top: 50%;
        left: 5%;
        width: 300px;
    }

    .mask_item2 {
        bottom: 0;
        left: 0;
        width: 120px;
    }

    .mask_item3 {
        bottom: 5%;
        right: 0;
        width: 150px;
    }
    /****側邊欄****/
    .sidebar {
        width: 250px;
        position: fixed;
        z-index: 5;
        background-color: #fff;
        margin-top: -70px;
        transition: 400ms transform ease;
        transform: translateX(-280px);
        padding: 0 10px;
    }

    .sidebar_btn {
        position: absolute;
        display: inline;
        background-image: url("../img/Web_GU_icon_44.png");
        background-size: 100% auto;
        background-repeat: no-repeat;
        height: 55px;
        width: 40px;
        right: -40px;
        top: 3%;
    }
    /****step_grid****/
    .step_grid_3step_1 .angle1 .step_angle {
        display: inline;
    }

    .step_grid_3step_1 {
        display: grid;
        grid-template-columns: 50% 25% 25%;
        grid-template-areas:
            'step1 angle1 step2';
        gap: 0px;
        margin-left: 0px;
    }

        .step_grid_3step_1 .step3 {
            display: none;
        }

    .step_grid_3step_2 {
        display: grid;
        grid-template-columns: 15% 10% 50% 10% 15%;
        grid-template-areas:
            'step1 angle1 step2 angle2 step3';
        gap: 0px;
        margin-left: 0px;
    }

        .step_grid_3step_2 .angle1 .step_angle {
            display: inline;
        }

        .step_grid_3step_2 .angle2 .step_angle {
            display: inline;
        }

    .step_grid_3step_3 {
        display: grid;
        grid-template-columns: 15% 10% 15% 10% 50%;
        grid-template-areas:
            'step1 angle1 step2 angle2 step3';
        gap: 0px;
        margin-left: 0px;
    }

        .step_grid_3step_3 .angle1 .step_angle {
            display: inline;
        }

        .step_grid_3step_3 .angle2 .step_angle {
            display: inline;
        }
    /****index****/
    .mySwiper2 {
        height: 480px;
        padding: 0 50px;
    }

        .mySwiper2 img {
            display: block;
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

    .index_section2 {
        min-height: 1200px;
    }

    .index_section2_decorate2 {
        top: 50px;
    }

        .index_section2_decorate2 img {
            width: 200px;
        }

    .index_section2_decorate3 {
        display: none;
    }

    .index_section2_decorate4 {
        right: 20px;
        bottom: 20px;
    }

        .index_section2_decorate4 img {
            width: 100px;
        }

    .index_section3_decorate1 {
        bottom: -100px;
    }

        .index_section3_decorate1 img {
            width: 100px;
        }

    .index_section3 {
        margin-bottom: 120px;
    }

        .index_section3 .decorate1 {
            display: none;
        }

        .index_section3 .decorate2 {
            margin-top: 25px;
        }
    /****product_detail****/
    .mySwiper4 {
        height: 480px;
    }

    .mySwiper3 {
        height: 120px;
    }

    .mySwiper5 {
        height: 300px;
    }

        .mySwiper5 img {
            height: 230px;
        }
    /****news****/
    .news .section_intro {
        margin: 10px 0;
        padding-bottom: 10px;
    }

    .news_list_img {
        height: 400px;
    }

        .news_list_img img {
            height: 400px;
        }
    /****health****/
    .health_item .flex {
        margin-top: 15px;
    }

    .health_item .section_intro {
        margin-bottom: 60px;
    }

    .health_item_btn {
        bottom: 0px;
    }
    /****order共用****/
    .step {
        font-size: 14px;
    }

    .step3 img {
        margin-right: 0px;
    }

    .step4 img {
        margin-right: 0px;
    }

    .step_gray .step_word {
        display: none;
    }

    .step_gray .step_icon {
        margin-right: 0px;
    }
    /****order_check****/
    .order_check_grid1 .angle1 .step_angle {
        display: inline;
    }

    .order_check_grid1 {
        display: grid;
        grid-template-columns: 50% 25% 25%;
        grid-template-areas:
            'step1 angle1 step2';
        gap: 0px;
        margin-left: 0px;
    }

        .order_check_grid1 .step3 {
            display: none;
        }

        .order_check_grid1 .step4 {
            display: none;
        }

    .gird2_2 {
        grid-column: span 2;
    }

    .order_check_section2_gird1 {
        display: none;
    }

    .order_check_section2_gird2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            'gird2_1 gird2_2 gird2_2'
            'gird2_7 gird2_7 gird2_7'
            '. gird2_6 .';
    }

        .order_check_section2_gird2 .gird2_6 {
            padding-top: 20px;
        }

        .order_check_section2_gird2 .gird2_title {
            display: inline;
        }
    /****order_shipping_payment****/
    .order_shipping_payment_grid1 {
        display: grid;
        grid-template-columns: 15% 10% 50% 10% 15%;
        grid-template-areas:
            'step1 angle1 step2 angle2 step3';
        gap: 0px;
        margin-left: 0px;
    }

        .order_shipping_payment_grid1 .step4 {
            display: none;
        }

        .order_shipping_payment_grid1 .angle1 .step_angle {
            display: inline;
        }

        .order_shipping_payment_grid1 .angle2 .step_angle {
            display: inline;
        }

    .order_shipping_payment_section1_gird1 {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    .order_shipping_payment_section_title {
        font-size: 16px;
    }

    .order_shipping_payment_section2_gird1 {
        grid-template-columns: 50% 20% 10% 20%;
        font-size: 13px;
    }

    .order_shipping_payment_section2_gird2 {
        grid-template-columns: 20% 30% 20% 10% 20%;
    }

        .order_shipping_payment_section2_gird2 .gird2_2_intro {
            padding: 10px;
        }

        .order_shipping_payment_section2_gird2 .gird2_2_intro_title {
            font-size: 16px;
            letter-spacing: 0px;
        }
    /****order_information****/
    .order_information_grid1 {
        display: grid;
        grid-template-columns: 15% 10% 50% 10% 15%;
        grid-template-areas:
            'step2 angle2 step3 angle3 step4';
        gap: 0px;
        margin-left: 0px;
    }

        .order_information_grid1 .step1 {
            display: none;
        }

        .order_information_grid1 .angle2 .step_angle {
            display: inline;
        }

        .order_information_grid1 .angle3 .step_angle {
            display: inline;
        }

    .order_information_grid2 {
        grid-template-columns: 20% 80%;
    }

    .order_information_grid2_title {
        font-size: 14px;
    }

    .order_information_grid2_address_word_adjust {
        line-height: 20px;
    }

    .input_width1 {
        width: 100%;
    }

    .input_width4 {
        width: 100%;
    }

    .input_width5 {
        width: 100%;
    }
    /****order_complete_delivery****/
    .zong_img2 {
        display: none;
    }
    /****area****/
    .area_btns {
        width: 90%;
    }

    .area_bg_px {
        padding: 0 0px;
    }

    .area_bg_pl {
        padding-left: 0px;
        background-clip: none;
    }

    .area_table thead {
        display: none;
    }

    .area_table td {
        display: block;
        position: relative;
        padding-left: 30%;
        text-align: right;

        &:first-child {
        }

        &:before {
            color: #da5f11;
            font-weight: bold;
            content: attr(data-th);
            position: absolute;
            top: 12px;
            left: 10px;
            width: 30%;
            font-weight: inherit;
            text-align: left;
        }
    }

        .area_table th:first-child,
        .area_table td:first-child {
            width: 100%;
            /* color: white; */
            /* background-color: #fcb13c; */
        }

        .area_table td:last-child {
            border-bottom: 2px solid #000000;
            margin-bottom: 30px;
        }

    .area_table .table_flex {
        justify-content: flex-end;
    }

    .area_order_word {
        height: 60px;
        width: 75px;
        font-size: 12px;
    }

    .area_coupon_item_bottom_in .price {
        width: 150px;
    }
    /****rule****/
    .rule_up_title {
        font-size: 25px;
        letter-spacing: 3px;
    }

        .rule_up_title img {
            width: 80px;
        }

    .rule_table_logo_img {
        width: 50px;
    }
}

@media screen and (max-width:768px) {
    /****index****/
    .index_section2 {
        height: 1300px;
    }

    .index_section2_bgimg {
        background: url("../img/Web_GU_M_BG_02.png");
        background-position: top;
        background-size: cover;
    }

    .index_intro1 img {
        width: 400px;
    }

    .index_intro2_item {
        height: 100px;
    }
    /****rule****/
    .rule_up_title {
        font-size: 20px;
        letter-spacing: 0px;
    }

        .rule_up_title img {
            width: 50px;
        }
}

@media screen and (max-width:576px) {
    .btn_contact_us {
        bottom: 5px;
        right: 5px;
        width: 80px;
    }
    /****section共用****/
    .section_title::after {
        width: 40%;
        left: 30%;
    }
    /****導覽列****/
    .nav_position {
        max-width: none;
    }

    .navbar-brand {
        width: 70%;
    }

    .nav_logo {
        display: block;
        width: 70%;
        max-width: 15em;
    }

    .up_btn_logo {
        display: none;
    }

    .up_btn_line {
        display: none;
    }

    .up_btn_logo_line {
        margin-left: -20px;
    }

    .car {
        width: auto;
        display: none;
    }

    .car2 {
        display: inline;
        width: auto;
    }
    /****輪播****/
    .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
    }

    .swiper {
        height: 590px;
    }

    .swiper-slide img {
        height: 590px;
    }

    .mask {
        top: -590px;
    }

    #swiper_mask {
        height: 590px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        height: 30px;
        width: 30px;
    }

        .swiper-button-next:after,
        .swiper-button-prev:after {
            font-size: 30px;
        }
    /****panel****/
    .panel {
        width: 350px;
    }
    /****index****/
    .mySwiper2 {
        height: 480px;
        padding: 0 30px;
    }

        .mySwiper2 img {
            display: block;
            width: 100%;
            height: 400px;
            object-fit: contain;
        }

    .index_section2 {
        height: 1300px;
    }

    .index_section2_bgimg {
        background: url("../img/Web_GU_M_BG_02.png");
        background-position: top;
        background-size: cover;
    }

    .index_intro1 img {
        width: 400px;
    }

    .index_intro2_item {
        height: 100px;
    }
    /****about****/
    .about_section2 {
        padding-left: 40px;
    }
    /****product_detail****/
    .mySwiper4 {
        height: 420px;
    }

    .mySwiper3 {
        height: 100px;
    }

    .mySwiper5 {
        height: 250px;
    }

        .mySwiper5 img {
            height: 200px;
        }
    /****login****/
    .login_panel_title {
        font-size: 16px;
    }

        .login_panel_title img {
            width: 120px;
            margin-right: 10px;
        }

    .login_panel_form > div {
        width: 90%;
    }
    /****order_check****/
    .order_check_grid1 .angle1 .step_angle {
        display: inline;
    }

    .order_check_grid1 {
        display: grid;
        grid-template-columns: 50% 25% 25%;
        grid-template-areas:
            'step1 angle1 step2';
        gap: 0px;
        margin-left: 0px;
    }

        .order_check_grid1 .step3 {
            display: none;
        }

        .order_check_grid1 .step4 {
            display: none;
        }

    .order_check_section2_gird2 {
        grid-template-columns: 1fr;
        grid-template-areas:
            'gird2_1'
            'gird2_2'
            'gird2_7'
            'gird2_6';
    }
    /****order_shipping_payment****/
    .order_shipping_payment_grid1 {
        display: grid;
        grid-template-columns: 15% 10% 50% 10% 15%;
        grid-template-areas:
            'step1 angle1 step2 angle2 step3';
        gap: 0px;
        margin-left: 0px;
    }

        .order_shipping_payment_grid1 .step4 {
            display: none;
        }

        .order_shipping_payment_grid1 .angle1 .step_angle {
            display: inline;
        }

        .order_shipping_payment_grid1 .angle2 .step_angle {
            display: inline;
        }

    .order_shipping_payment_section1_gird1 {
        display: grid;
        grid-template-columns: 20% 80%;
    }

    .order_shipping_payment_section2_gird1 {
        grid-template-columns: 50% 20% 10% 20%;
        font-size: 13px;
    }

    .order_shipping_payment_section2_gird2 {
        grid-template-columns: 20% 30% 20% 10% 20%;
    }

        .order_shipping_payment_section2_gird2 .gird2_2_intro {
            padding: 10px;
        }

        .order_shipping_payment_section2_gird2 .gird2_2_intro_title {
            font-size: 16px;
            letter-spacing: 0px;
        }

    .order_shipping_payment_total {
        font-size: 14px;
    }
    /****order_information****/
    .order_information_grid1 {
        display: grid;
        grid-template-columns: 15% 10% 50% 10% 15%;
        grid-template-areas:
            'step2 angle2 step3 angle3 step4';
        gap: 0px;
        margin-left: 0px;
    }

        .order_information_grid1 .step1 {
            display: none;
        }

        .order_information_grid1 .angle2 .step_angle {
            display: inline;
        }

        .order_information_grid1 .angle3 .step_angle {
            display: inline;
        }

    .order_information_grid2 {
        grid-template-columns: 20% 80%;
    }

    .order_information_grid2_title {
        font-size: 14px;
    }

    .order_information_grid2_address_word_adjust {
        line-height: 20px;
    }

    .input_width1 {
        width: 100%;
    }

    .input_width4 {
        width: 100%;
    }

    .input_width5 {
        width: 100%;
    }
    /****order_complete_delivery****/
    .zong_img2 {
        display: none;
    }
    /****area****/
    .area_btns {
        width: 80%;
    }

    .area_order_line_width {
        height: 100px;
    }
    /****rule****/
    .rule_up_title {
        font-size: 20px;
        letter-spacing: 0px;
    }

        .rule_up_title img {
            width: 40px;
        }
}

@media screen and (max-width:400px) {
    /****section共用****/
    .btn_contact_us {
        bottom: 50px;
        right: 5px;
        width: 60px;
    }
    /****foot****/
    .bg_foot {
        font-size: 14px;
    }
    /****輪播****/
    .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
    }

    .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
    }

    .swiper {
        height: 500px;
    }

    .swiper-slide img {
        height: 500px;
    }

    .mask {
        top: -500px;
    }

    #swiper_mask {
        height: 500px;
    }

    .mask_item1 {
        width: 250px;
    }

    .mask_item2 {
        width: 100px;
    }

    .mask_item3 {
        width: 120px;
    }
    /****index****/
    .index_intro1 img {
        width: 100%;
    }

    .index_intro2 .section_title {
        font-size: 20px;
    }

    .index_intro2 .text {
        font-size: 16px;
    }

    .mySwiper2 {
        height: 600px;
    }

    .index_section3 .section_intro {
        padding: 0 20px;
    }
    /****product_detail****/
    .mySwiper4 {
        height: 320px;
    }

    .mySwiper3 {
        height: 80px;
    }

        .mySwiper3 .swiper-button-prev {
            top: 25%;
        }

        .mySwiper3 .swiper-button-next {
            top: 25%;
        }

    .mySwiper5 {
        height: 160px;
    }

        .mySwiper5 img {
            height: 130px;
        }

        .mySwiper5 .title {
            height: 50px;
            font-size: 15px;
        }
    /****news****/
    .news_list_img {
        height: 350px;
    }

        .news_list_img img {
            height: 350px;
        }
    /****area****/
    .area_btns {
        width: 100%;
    }
    /****rule****/
    .rule_up_title {
        font-size: 14px;
    }

    .rule_table .relative img {
        top: -30px;
        width: 50px;
    }
}

.circle-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: orange;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    user-select: none;
    /* 移除多餘的 padding/line-height */
    padding: 0;
    line-height: 1;
}
/* 隱藏 Chrome、Safari、Edge 的微調箭頭 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* 隱藏 Firefox 的微調箭頭 */
input[type="number"] {
    -moz-appearance: textfield;
}

.productGroup {
    padding: 10px;
}

.productWarning {
    border: dashed 2px red;
}

.order_information_grid3,
.order_information_grid4 {
    width: 100%;
}

    .order_information_grid3 .order_information_grid2_title,
    .order_information_grid3 .order_information_grid2_con,
    .order_information_grid4 .order_information_grid2_title,
    .order_information_grid4 .order_information_grid2_con {
        display: inline-block;
        vertical-align: top;
    }

.password_tip_dm {
    margin-top: 10px;
}

    .password_tip_dm .color1_dm {
        color: #808080;
    }

    .password_tip_dm .color2_dm {
        color: #7ac943;
    }

    .password_tip_dm .color3_dm {
        color: #ff0000;
    }

/*上傳照片*/
.upload-container {
    width: 100%; /* 寬度依據你的版面調整 */
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1.6 / 1; /* 保持身分證的矩形比例 */

    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-label2 {
    aspect-ratio: 2 / 1; /* 保持身分證的矩形比例 */
}
/* 滑鼠滑過時的效果，增加互動感 */
.upload-label:hover {
    border-color: #a5d5b7; /* 換成你專案的主色 */
    background-color: #f9f9f9;
}

.upload-label .icon-camera {
    width: 43px;
    margin-bottom: 10px;
    opacity: 0.5; /* 讓圖示帶點灰色質感 */
}

.upload-label p {
    color: #999;
    font-size: 16px;
    margin: 0;
}
/*文字大小*/
.fs-32_md {
    font-size: 32px;
}

.D_rp2_page {
    color: #999999;
}

.D_rp2_title {
    color: #dd5f0f;
    border-bottom: 1px solid #dd5f0f;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
/*規則辦法 表格*/
.container_rule_dm {
    position: relative;
}

.rule_banner_dm {
    width: 100%;
    margin-bottom: 100px;
}

.rule_img_dm {
    position: absolute;
    width: 288px;
    right: -288px;
    bottom: 46px;
    z-index: 0;
}

:root {
    --dealer-bronze: #d87a4a;
    --dealer-silver: #f7c12d;
    --dealer-gold: #f39800;
    --dealer-ceo: #f37021;
}

/*        body {
            background-color: #fdfaf7; 
            font-family: "Microsoft JhengHei", sans-serif;
        }
*/
/* 橫向捲動外層 */
.table-responsive_dm.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    padding-top: 54px;
}

/* 表格本體 */
.table-responsive_dm .rule-table {
    width: 100%;
    min-width: 900px; /* 確保手機版有足夠寬度觸發捲動 */
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    /*border-radius: 20px;*/
    /*overflow: hidden;*/
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    /* 表頭樣式 */
    .table-responsive_dm .rule-table th {
        position: relative;
        padding: 25px 5px 5px 5px;
        color: #fff;
        text-align: center;
        vertical-align: middle;
        font-size: 22px;
        font-weight: bold;
        border-radius: 20px 20px 0 0;
    }

        .table-responsive_dm .rule-table th .rule_icon {
            position: absolute;
            width: 82px;
            top: -52px;
            left: 50%;
            margin-left: -39px;
        }

.table-responsive_dm .logo-cell {
    background-color: #fff;
    width: 180px;
}

.table-responsive_dm .rank-1 {
    background-color: var(--dealer-bronze);
}

.table-responsive_dm .rank-2 {
    background-color: var(--dealer-silver);
}

.table-responsive_dm .rank-3 {
    background-color: var(--dealer-gold);
}

.table-responsive_dm .rank-4 {
    background-color: var(--dealer-ceo);
}

/* 標籤列 (左側標題) */
.table-responsive_dm .row-title {
    color: var(--dealer-ceo);
    font-weight: bold;
    font-size: 22px;
    width: 180px;
    text-align: center;
    /*background-color: #fff;*/
}

    .table-responsive_dm .row-title.color2 {
        color: var(--dealer-silver) !important;
    }

/* 單元格樣式 */
.table-responsive_dm .rule-table td {
    padding: 20px 5px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    border-right: 1px dashed #808080; /* 還原圖片中的虛線 */
    line-height: 1.6;
    color: #555;
}

    .table-responsive_dm .rule-table td:first-of-type {
        color: #f4722a;
    }

    .table-responsive_dm .rule-table td:last-child {
        border-right: none;
    }

.table-responsive_dm .td_orange_border td {
    border-bottom: 2px solid #dd5f0f;
}
/* 斑馬紋 */
.table-responsive_dm .rule-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* 捲軸美化 */
.table-responsive_dm.table-responsive-custom::-webkit-scrollbar {
    height: 8px;
}

.table-responsive_dm.table-responsive-custom::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

.table-responsive_dm.table-responsive-custom::-webkit-scrollbar-thumb {
    background: var(--dealer-ceo);
    border-radius: 10px;
}

/* 手機版提示 */
.table-responsive_dm .scroll-hint {
    display: none;
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/*login_choose*/
/* 外層大容器：處理圓角、陰影、背景 */
.registration-card.registration-card_dm {
    background-color: #fff;
    border-radius: 40px; /* 大圓角 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* 柔和陰影 */
    padding: 40px 40px;
    max-width: 700px;
    margin: 100px auto;
    width: 95%;
    position: relative;
}

/* 中間的垂直分割線 */
.registration-card_dm .v-line {
    position: relative;
}

/* 僅在電腦版顯示中間線 */
@media (min-width: 768px) {
    .registration-card_dm .v-line::after {
        content: "";
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #ddd;
    }
}

/* 標題與內文樣式 */
.registration-card_dm .reg-item {
    text-align: center;
    padding: 20px;
}

    .registration-card_dm .reg-item img {
        width: 80px;
        margin-bottom: 20px;
    }

    .registration-card_dm .reg-item h2 {
        font-weight: bold;
        color: #444;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    .registration-card_dm .reg-item p {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .registration-card_dm .reg-item a {
        color: #00bcd4; /* 圖片中的水藍色連結 */
        text-decoration: none;
        font-weight: bold;
    }

/* 按鈕樣式 */
.registration-card_dm .btn-custom {
    border: none;
    border-radius: 0px;
    padding: 6px 0;
    width: 250px;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: transform 0.2s, opacity 0.2s;
}

    .registration-card_dm .btn-custom:hover {
        opacity: 0.9;
        /*transform: translateY(-2px);*/
        color: #fff;
    }

.registration-card_dm .btn-orange {
    background-color: #f37021;
}
/* 左側橘色 */
.registration-card_dm .btn-yellow {
    background-color: #fbb03b;
}
/* 右側黃橘色 */

.accordion_dm .font_orange {
    color: #da5f11 !important;
}
/* 手機版微調 */
@media (max-width: 767px) {
    .registration-card.registration-card_dm {
        width: 70%;
        padding: 40px 20px;
    }

    .registration-card_dm .v-line {
        margin-bottom: 40px; /* 手機版上下區塊的間距 */
        border-bottom: 1px solid #eee; /* 手機版改用橫線或不加 */
        padding-bottom: 40px;
    }
}

/* 電腦版 (992px 以上) */
@media screen and (min-width: 992px) {
    .order_information_row_dm {
        max-width: 800px;
        margin: 20px 0;
    }

    .order_information_grid3 {
        max-width: 800px;
    }

        .order_information_grid3 .order_information_grid2_title {
            width: 106px;
        }

        .order_information_grid3 .order_information_grid2_con {
            width: 655px;
        }

    .order_information_grid4 {
        max-width: 400px;
    }

        .order_information_grid4 .order_information_grid2_title {
            width: 106px;
        }

        .order_information_grid4 .order_information_grid2_con {
            width: 255px;
        }

    .password_tip_dm {
        font-size: 16px;
    }
}
/* 手機版 (991px 以下) */
@media screen and (max-width: 991px) {
    /* 手機版標題與內容統一比例 */
    .order_information_grid3 .order_information_grid2_title,
    .order_information_grid4 .order_information_grid2_title {
        width: 20%;
    }

    .order_information_grid3 .order_information_grid2_con,
    .order_information_grid4 .order_information_grid2_con {
        width: 70%;
    }

    .order_information_grid3,
    .order_information_grid4 {
        margin: 10px;
    }

    .order_information_row_dm .check_radio {
        font-size: 14px;
    }

    .password_tip_dm {
        font-size: 14px;
    }

    .order_information_grid2_con .conphonetop_dm {
        margin-top: 20px;
    }
}
