@charset "UTF-8";
/* 登記：
1.輪播問題(OK)
2.台南區波浪圖區域(不處理)
3.font-weight調整(自行提升)
4.i標誌相關問題(請益)
5.icon圖示提問(請益)
6.a:hover超連結動畫效果(辦公方案跟更多空間)(自設定)
7.搜尋介面微調 
*/
* {
    margin: 0;
    padding: 0;
}

/* 搜尋區域 */
.rwd_phone_forL,
.rwd_phone {
    display: none;
}

.space_Search_FullDiv {
    width: 100%;
    margin: 0 auto;
    height: 360px;
    background-image: url(../../../picture/Product/index/demo_picture_search.webp);
    background-position: 75% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

    .space_Search_FullDiv .space_Search_Div {
        position: relative;
        top: 60px;
    }

        .space_Search_FullDiv .space_Search_Div h3 {
            color: white;
            text-align: center;
        }

            .space_Search_FullDiv .space_Search_Div h3 .rwd_show {
                display: none;
            }

        .space_Search_FullDiv .space_Search_Div .search_Condition_List {
            /* 原版用fit-content */
            width: -moz-fit-content;
            width: fit-content;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: auto;
            background-color: #fff;
            position: relative;
        }

.search_Condition_List .straight_Line {
    height: 27px;
    border-left: 1px solid #aaa;
}

.search_Condition_List .search_Condition_place {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 200px;
    padding: 17px 15px 15px 25px;
    border-radius: 8px;
}

.search_Condition_List .search_Condition_data {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 222px;
    border-radius: 8px;
    padding: 15px 15px 20px 25px;
    margin: 0;
    vertical-align: text-bottom;
}

.search_Condition_List .rwd_phone {
    display: none;
}

.search_Condition_List .search_Condition_Addlink {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    min-width: 262px;
    border-radius: 8px;
    padding: 15px 15px 20px 25px;
}

.search_Condition_List a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 10px;
    width: 103px;
    height: 38px;
    padding: 10px 24px;
    margin: 0 10px 0 50px;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    background-color: #FF9800;
    text-decoration: none;
    line-height: 1.4;
    font-weight: 1000;
    letter-spacing: 0.2px;
    gap: 8px;
}

    .search_Condition_List a:hover {
        background-color: #ffaa00;
        color: #fff;
        transition: all 0.3s ease-in-out;
    }

.search_Condition_List i {
    width: 18px;
    text-align: center;
}

.search_Condition_place label {
    display: flex;
    width: 100%;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.2px;
    /* 不確定用意為了整齊暫時移除 */
    /* margin: 0 0 3px; */
}

.search_Condition_place #KeyWord {
    width: 150px;
    text-overflow: ellipsis;
    white-space: nowrap;
    /* 官網用0的值寫 */
    border: 0;
    background: 0 0;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    caret-color: auto;
    /* 點選時外框顏色 */
    outline: none;
    cursor: pointer;
}

/* 高度、margin暫時不調整，看Icon圖示實際情況 */
.search_Condition_data label {
    display: flex;
    width: 100%;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.2px;
    /* 不確定用意為了整齊暫時移除 */
    /* margin: 0 0 5px; */
}

.search_Condition_data p {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    margin: 0;
}

.search_Condition_Addlink label {
    display: flex;
    width: 100%;
    align-items: center;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.2px;
}

.search_Condition_Addlink p {
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* 搜尋區域-end */
/* 常用標籤區域grid */
.usage_Scenarios_FullDiv {
    max-width: 1140px;
    padding: 0 20px;
    margin: 80px auto;
    /* 情境標籤區域 */
    /* 情境標籤區域-end */
}

    .usage_Scenarios_FullDiv .usage_Scenarios {
        width: 100%;
        /* border: 2px solid #000; */
        display: grid;
        grid-template-columns: repeat(4, auto);
        grid-template-rows: 180px 150px;
        grid-gap: 28px;
        padding: 28px 0;
    }

        .usage_Scenarios_FullDiv .usage_Scenarios .item {
            position: relative;
        }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(1) {
                grid-area: 1/1/span 1/span 2;
            }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(2) {
                grid-area: 1/3/span 1/span 2;
            }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(3) {
                grid-area: 2/1/span 1/span 1;
            }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(4) {
                grid-area: 2/2/span 1/span 1;
            }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(5) {
                grid-area: 2/3/span 1/span 1;
            }

            .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(6) {
                grid-area: 2/4/span 1/span 1;
            }

    .usage_Scenarios_FullDiv .usage_Scenarios_Tag_List {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        align-content: flex-start;
        gap: 8px;
        padding-bottom: 18px;
    }

        .usage_Scenarios_FullDiv .usage_Scenarios_Tag_List .usage_Scenarios_Tag_Item {
            border-radius: 5px;
            border: 1px solid #d4d4d4;
            color: #7a7a7a;
            align-items: center;
            padding: 3px 16px;
            text-decoration: none;
            font-size: 14px;
        }

            .usage_Scenarios_FullDiv .usage_Scenarios_Tag_List .usage_Scenarios_Tag_Item:hover {
                background-color: #d4d4d4;
                color: #000;
            }

    .usage_Scenarios_FullDiv .see_All_Link {
        /* border: 1px solid #000; */
        display: flex;
    }

        .usage_Scenarios_FullDiv .see_All_Link a {
            margin-left: auto;
            color: #000;
            font-size: 14px;
        }

.item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}

.item .usage_Scenarios_Span:hover {
    background-color: unset;
}

    .item .usage_Scenarios_Span:hover span {
        color: #000;
    }

.item .usage_Scenarios_Span {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2666666667);
    border-radius: 10px;
}

    .item .usage_Scenarios_Span span {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 24px;
        line-height: 150%;
        white-space: nowrap;
    }

/* 常用標籤區域grid-end */
/* 幻燈片_手動區域 */
.rwd_phone {
    display: none;
}

.slideshow_Manual {
    max-width: 1140px;
    padding: 0 20px;
    width: 100%;
    margin: 80px 0 100px;
}

    .slideshow_Manual .slideshow_Manual_hieight {
        padding-top: 33.333333%;
        position: relative;
    }

        .slideshow_Manual .slideshow_Manual_hieight .carousel {
            position: absolute;
            bottom: 0;
            height: 100%;
            width: 100%;
        }

.carousel button {
    bottom: unset;
    top: 45%;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 20px;
}

    .carousel button span {
        width: 40px;
        height: 40px;
        background-size: 75%;
        background-color: #000000;
        border-radius: 25px;
        filter: invert(75%) contrast(200%);
    }

        .carousel button span:hover {
            transition: all 1s ease-in-out;
        }

.carousel-indicators [data-bs-target] {
    background-color: #fff;
}

.carousel-indicators .active {
    background-color: #FF9800;
}

.carousel-inner {
    width: 100%;
    height: 100%;
}

    .carousel-inner .carousel-item {
        height: 100%;
        border-radius: 10px;
    }

        .carousel-inner .carousel-item img {
            width: 100%;
            height: auto;
        }

/* 幻燈片_手動區域-end */
/* 台南區域(整區) */
.tainan_Div {
    width: 100%;
    background-color: bisque;
    padding: 100px 0;
    margin-bottom: 100px;
    /* 主圖連結區 */
}

    .tainan_Div .main_Area {
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1225px;
        margin: 0 auto;
        padding: 0 20px;
        /* 圖片有一種問題，如果是直接放，會直接擠壓圖片，取消直接放圖 */
        /* .main_Area img {} */
    }

        .tainan_Div .main_Area .main_Area_pic {
            width: 566px;
            height: 315px;
            background-image: url(../../../picture/Product/index/Main_Area.jpg);
            background-position: 75% 50%;
            /* 存放空間有額外的空間可使用時，背景圖片的重複方式。背景影像可以沿著水平軸和垂直軸重複 */
            background-repeat: no-repeat;
            background-size: cover;
            border-radius: 8px;
        }

        .tainan_Div .main_Area .main_Area_txt {
            /* border: 1px solid #000; */
            /* 官網是往左延伸120px，我改自動 */
            margin: auto;
        }

    .tainan_Div .slideshow_Auto {
        margin: 42px auto 0;
        padding: 20px 0 0;
    }

.main_Area_txt h2 {
    /* 加粗無效果(待檢查) */
    font-weight: 500;
    font-size: 34px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.main_Area_txt a {
    margin-top: 24px;
    line-height: 1.4;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: #FF9800;
}

/* 主圖連結區-end */
/* 幻燈片_自動輪播區域 */
.carousel_slick_item {
    width: 344px;
    height: 214px;
    margin: 0 12px;
    border-radius: 8px;
    /*background-image: url("https://picsum.photos/344/214/?random=10");*/
    background-position: 75% 50%;
    color: #fff;
    background-size: 100% 100%;
}

    .carousel_slick_item .slick_item_txt {
        position: absolute;
        bottom: 0;
        margin: 0 0 25px 25px;
    }

        .carousel_slick_item .slick_item_txt p {
            margin: 0;
            font-size: 20px;
        }

/* 幻燈片_自動輪播區域-end */
/* 更多空間區域 */
.distant_Space,
.reunion {
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    margin-bottom: 100px;
}

    .distant_Space h2,
    .reunion h2 {
        font-weight: 1000;
        font-size: 20px;
        letter-spacing: 0.2px;
        margin: 0 0 12px;
    }

    .distant_Space .introduction_link,
    .reunion .introduction_link {
        display: flex;
        justify-content: space-between;
    }

        .distant_Space .introduction_link p,
        .reunion .introduction_link p {
            line-height: 140%;
            letter-spacing: 0.2px;
        }

    .distant_Space .link a,
    .distant_Space .link i,
    .reunion .link a,
    .reunion .link i {
        color: #aaa;
    }

    .distant_Space a,
    .reunion a {
        text-decoration: none;
    }

    .distant_Space .distant_Space_Item_List,
    .distant_Space .reunion_Item_List,
    .reunion .distant_Space_Item_List,
    .reunion .reunion_Item_List {
        width: 100%;
        display: flex;
        justify-content: space-between;
        /* 官網有設定：允許作者設定元素捲軸顯示時的最大厚度，這個有瀏覽器相容性問題 */
        scrollbar-width: none;
    }

.space_Item {
    width: 30%;
}

    .space_Item .pic {
        width: 100%;
        margin: 0 0 15px;
    }

        .space_Item .pic img {
            width: 100%;
            aspect-ratio: 3/2;
        }

    .space_Item .txt h3 {
        font-weight: 400;
        font-size: 16px;
        letter-spacing: 0.2px;
        margin: 0 0 10px;
        color: #000;
    }

    .space_Item .txt p {
        font-size: 16px;
        letter-spacing: 0.2px;
        color: #aaa;
    }

/* 更多空間區域-end */
.office_Solutions_Outside_Div {
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    margin-bottom: 100px;
}

    .office_Solutions_Outside_Div .office_Solutions {
        width: 100%;
        display: flex;
        border: 1px solid #aaa;
        border-radius: 5px;
    }

.office_Solutions .pic {
    width: 100%;
    background-image: url(../../../picture/Product/index/company.jpeg);
    background-position: 50% 20%;
    background-repeat: no-repeat;
    background-size: cover;
}

.office_Solutions .txt {
    width: 50%;
    padding: 65px 55px;
}

    .office_Solutions .txt h2 {
        font-weight: 1000;
        font-size: 22px;
        line-height: 100%;
        letter-spacing: 0.2px;
        margin: 0 0 20px;
        color: #000;
    }

    .office_Solutions .txt p {
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0.2px;
        margin: 0 0 40px;
        color: #aaa;
    }

    .office_Solutions .txt a {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        padding: 14px 43px;
        font-size: 16px;
        letter-spacing: 0.002em;
        color: #fff;
        background-color: #FF9800;
        border-radius: 5px;
        text-decoration: none;
    }

        .office_Solutions .txt a:hover {
            background-color: #ffaa00;
            color: #fff;
            transition: all 0.3s ease-in-out;
        }

/* 認識Cabin區域 */
.know_Cabin_Outside_Div {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 100px;
}

    .know_Cabin_Outside_Div .know_Cabin {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

.know_Cabin .pic {
    width: 60%;
    background-image: url(../../../picture/Product/index/know.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.know_Cabin .txt {
    width: 40%;
    max-width: 400px;
    padding: 100px 20px 100px 100px;
}

    .know_Cabin .txt h2 {
        font-weight: 500;
        font-size: 18px;
        line-height: 150%;
        letter-spacing: 0.2px;
        margin: 0 0 12px;
        color: #000;
    }

    .know_Cabin .txt p {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 0.2px;
        margin: 0 0 30px;
        color: #aaa;
    }

    .know_Cabin .txt a {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
        text-align: center;
        padding: 14px 24px;
        font-size: 18px;
        letter-spacing: 0.002em;
        color: #FF9800;
        border: 1px solid #FF9800;
        border-radius: 5px;
        text-decoration: none;
    }

        .know_Cabin .txt a:hover {
            background-color: #ffaa00;
            color: #fff;
            transition: all 0.3s ease-in-out;
        }

/* 認識Cabin區域-end */
/* 使用Cabin */
.use_Cabin {
    width: 100%;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
    margin-bottom: 100px;
}

    .use_Cabin h2 {
        width: 100%;
        font-weight: 500;
        font-size: 20px;
        letter-spacing: 0.2px;
        margin: 0 0 12px;
    }

    .use_Cabin p {
        font-size: 16px;
        letter-spacing: 0.2px;
        margin: 0 0 50px;
    }

    .use_Cabin .use_Cabin_Item_List {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.use_Cabin_Item {
    width: 30%;
    display: flex;
}

    .use_Cabin_Item .pic i {
        font-size: 49px;
        margin: 0 20px 0 0;
    }

    .use_Cabin_Item .txt {
        width: 100%;
        /* 他是用兩個p標籤，改成h3比較有區分 */
    }

        .use_Cabin_Item .txt h3 {
            font-weight: 400;
            font-size: 16px;
            letter-spacing: 0.2px;
            margin: 0 0 12px;
            color: #000;
        }

        .use_Cabin_Item .txt p {
            font-size: 16px;
            line-height: 150%;
            letter-spacing: 0.2px;
            color: #aaa;
            margin: 0;
        }

/* 使用Cabin-end */
/* 前往空間區域 */
.goto_Space_Outside_Div {
    width: 100%;
    margin: 0 auto;
}

    .goto_Space_Outside_Div .goto_Space {
        width: 100%;
        background-image: url(../../../picture/Product/index/botton_div_picture.jpeg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        text-align: center;
        padding: 115px 0 80px;
    }

        .goto_Space_Outside_Div .goto_Space h2 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 15px;
        }

        .goto_Space_Outside_Div .goto_Space p {
            font-size: 15px;
            letter-spacing: 0.2px;
            margin: 0 0 25px;
        }

        .goto_Space_Outside_Div .goto_Space a {
            display: block;
            width: -moz-fit-content;
            width: fit-content;
            padding: 14px 43px;
            font-size: 16px;
            letter-spacing: 0.002em;
            color: #fff;
            background-color: #FF9800;
            border-radius: 5px;
            text-decoration: none;
            margin: 0 auto;
        }

            .goto_Space_Outside_Div .goto_Space a:hover {
                background-color: #ffaa00;
                color: #fff;
                transition: all 0.3s ease-in-out;
            }

/* 前往空間區域-end */
.line_Div .dropdown {
    margin: 0 20px 20px 0;
}

    .line_Div .dropdown .dropdown-toggle {
        border-radius: 25px;
        border: 0;
        width: 50px;
        height: 50px;
        background-image: url(../../../picture/Product/index/LINE_logo.svg.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

        .line_Div .dropdown .dropdown-toggle:hover {
            box-shadow: 3px 3px 15px rgb(44, 44, 44);
        }

        .line_Div .dropdown .dropdown-toggle::after {
            display: none;
        }

.dropdown-toggle i {
    font-size: 24px;
    margin-bottom: 10px;
}

.line_Windows {
    width: 302px;
    min-height: 149px;
    border: none;
    border-radius: 10px;
    line-height: 23px;
    text-align: center;
}

    .line_Windows .line_Title {
        background-color: #0c0;
        height: 50px;
        border-radius: 9px 9px 0 0;
        color: #fff;
    }

        .line_Windows .line_Title i {
            color: #fff;
            font-size: 20px;
            margin: 0 8px 0 12px;
        }

        .line_Windows .line_Title h3 {
            font-size: 14px;
            /* 自調整 */
            margin: auto 0 auto;
        }

        .line_Windows .line_Title .close_btn {
            font-size: 20px;
        }

    .line_Windows .line_Info {
        margin: 10px 6px;
        font-size: 17px;
        font-weight: 400;
    }

.line_Info .pic {
    width: 252px;
    height: 252px;
    border: 1px solid #aaa;
    margin: auto;
}

    .line_Info .pic img {
        width: 100%;
    }

.line_Info .txt h3 {
    font-size: 17px;
    margin: 30px 0 16px;
}

.line_Info .txt p {
    font-size: 13px;
    line-height: 1.6em;
    margin: 0;
}

.line_Info .txt a {
    display: inline-block;
    margin: 16px 0 24px;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
}

@media screen and (max-width: 992px) {
    .know_Cabin {
        flex-direction: column-reverse;
    }

        .know_Cabin .txt {
            width: 100%;
            max-width: 1140px;
            padding: 0 20px;
            margin: 0 auto 35px;
        }

        .know_Cabin .pic {
            width: 100%;
            padding-top: 33.333333%;
        }
}

@media screen and (max-width: 768px) {
    .tainan_Div .main_Area {
        flex-direction: column;
        align-items: start;
    }

        .tainan_Div .main_Area .main_Area_txt {
            width: 100%;
            max-width: 1140px;
            padding: 0 20px;
            margin: 24px 0 0;
        }

        .tainan_Div .main_Area .main_Area_pic {
            width: 100%;
            padding-top: 33.333333%;
        }

    .main_Area_txt h2 {
        margin: 0;
        margin-bottom: 24px;
    }
}

@media screen and (max-width: 768px) {
    .rwd_pc {
        display: none;
    }

    .rwd_phone {
        display: block;
    }

    .space_Search_FullDiv {
        height: 450px;
    }

        .space_Search_FullDiv .space_Search_Div {
            padding: 0 25px;
        }

            .space_Search_FullDiv .space_Search_Div h3 .rwd_show {
                display: block;
            }

            .space_Search_FullDiv .space_Search_Div .search_Condition_List {
                width: 100%;
                flex-direction: column;
                margin: 18px auto 0;
                gap: 12px;
                background-color: unset;
            }

                .space_Search_FullDiv .space_Search_Div .search_Condition_List .straight_Line {
                    display: none;
                }

    .search_Condition_List #calendar {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .search_Condition_List .search_Condition_place {
        width: 100%;
        display: flex;
        padding: 13px 21px;
        background-color: #fff;
    }

    .search_Condition_List .search_Condition_data {
        width: 100%;
        display: flex;
        padding: 15px 21px;
        background-color: #fff;
    }

    .search_Condition_List .search_Condition_Addlink {
        width: 100%;
        display: flex;
        padding: 15px 21px;
        background-color: #fff;
    }

    .search_Condition_List .rwd_pc {
        display: none;
    }

    .search_Condition_List .rwd_phone {
        display: block;
    }

    .search_Condition_List a {
        position: relative;
        display: flex;
        width: 100%;
        right: 0;
        margin: 28px 0 0;
        padding: 14px 0;
        height: auto;
    }

    .search_Condition_place label {
        width: -moz-fit-content;
        width: fit-content;
    }

        .search_Condition_place label i {
            font-size: 14px;
        }

    .search_Condition_place input {
        line-height: 16.5px;
    }

    .search_Condition_data label {
        width: -moz-fit-content;
        width: fit-content;
    }

        .search_Condition_data label i {
            font-size: 14px;
        }

    .search_Condition_data p {
        width: -moz-fit-content;
        width: fit-content;
    }

    .search_Condition_Addlink label {
        width: -moz-fit-content;
        width: fit-content;
    }

        .search_Condition_Addlink label i {
            font-size: 14px;
        }

    .search_Condition_Addlink p {
        width: -moz-fit-content;
        width: fit-content;
    }
}

@media screen and (max-width: 576px) {
    .space_Search_FullDiv .space_Search_Div h3 {
        font-size: 18px;
        text-align: start;
    }

    .rwd_phone_forL {
        display: block;
    }

    .rwd_pc_forL {
        display: none;
    }

    .slideshow_Manual {
        margin-bottom: 60px;
        padding: 0;
    }

        .slideshow_Manual .slideshow_Manual_hieight {
            padding-top: 60%;
        }

    .tainan_Div {
        margin: 0px 0 75px;
        padding: 80px 0 120px;
    }

        .tainan_Div .main_Area .main_Area_pic {
            width: 100%;
            height: 214px;
            padding-top: 33.333333%;
        }

    .usage_Scenarios_FullDiv .usage_Scenarios {
        grid-template-columns: auto auto;
        grid-template-rows: unset;
        gap: 8px;
        padding: 20px 0;
        max-width: 100%;
        margin: 0;
    }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(1) {
            grid-area: 1/1/span 1/span 1;
        }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(2) {
            grid-area: 1/2/span 1/span 1;
        }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(3) {
            grid-area: 2/1/span 1/span 1;
        }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(4) {
            grid-area: 2/2/span 1/span 1;
        }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(5) {
            grid-area: 3/1/span 1/span 1;
        }

        .usage_Scenarios_FullDiv .usage_Scenarios .item:nth-child(6) {
            grid-area: 3/2/span 1/span 1;
        }

    .item {
        height: 100px;
    }

        .item img {
            vertical-align: middle;
        }

    .slideshow_Manual .slideshow_Manual_hieight {
        padding-top: 60%;
    }

    .carousel_slick_item {
        width: 261px;
    }

    .office_Solutions_Outside_Div .office_Solutions {
        flex-direction: column-reverse;
        flex-wrap: wrap;
    }

    .office_Solutions .pic {
        height: 200px;
    }

    .office_Solutions .txt {
        width: 100%;
        padding: 25px 20px;
    }

        .office_Solutions .txt h2 {
            text-align: center;
        }

        .office_Solutions .txt p {
            text-align: center;
        }

        .office_Solutions .txt a {
            width: 100%;
            text-align: center;
        }

    .use_Cabin {
        margin-bottom: 70px;
    }

    .use_Cabin_Item_List {
        flex-direction: column;
        flex-wrap: wrap;
    }

        .use_Cabin_Item_List .use_Cabin_Item {
            width: 100%;
            margin: 0 0 50px;
        }

            .use_Cabin_Item_List .use_Cabin_Item:last-child {
                margin: 0;
            }

    .know_Cabin_Outside_Div .know_Cabin .pic {
        padding-top: 60%;
    }

    .distant_Space,
    .reunion {
        padding: 0 0 0 20px;
    }

        .distant_Space .introduction_link p,
        .reunion .introduction_link p {
            margin-bottom: 20px;
        }

        .distant_Space .introduction_link .link,
        .reunion .introduction_link .link {
            display: none;
        }

    .distant_Space_Item_List,
    .reunion_Item_List {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .space_Item {
        min-width: 85vw;
        margin-right: 15px;
        scroll-snap-align: start;
        transition: all 0.3s ease-in-out;
    }
}
/*# sourceMappingURL=index.css.map */



/*地區相關*/
.local_modal {
    padding: 20px 18px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

@media screen and (min-width: 820px) {
    .local_modal {
        padding: 20px 18px;
        justify-content: space-between;
    }
}

.city_part {
    width: 180px;
    height: 240px;
    font-size: 16px;
}

    .city_part div {
        width: 150px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
    }

        .city_part div:focus {
            background-color: #e5e5e5;
            border: 5px;
        }

        .city_part div .badge {
            background: #4a4a4a;
        }

.region_part {
    width: 180px;
    height: 240px;
    padding-left: 30px;
    font-size: 14px;
}

    .region_part .regin_erea {
        width: 150px;
        height: 196px;
        overflow: auto;
    }

        .region_part .regin_erea::-webkit-scrollbar-track {
            background-color: #eee;
            border-radius: 10px;
        }

        .region_part .regin_erea::-webkit-scrollbar-thumb, .region_part .regin_erea::-webkit-scrollbar-thumb:active {
            box-shadow: inset 1px 1px 5px 5px #ff9800;
            border-radius: 10px;
        }

        .region_part .regin_erea::-webkit-scrollbar {
            overflow: visible;
            width: 7px;
        }

        .region_part .regin_erea div {
            padding: 10px 16px;
            display: flex;
            justify-content: left;
            column-gap: 15px;
        }

.regin_erea_all {
    width: 150px;
    height: 44px;
    padding: 10px 16px;
    position: relative;
}

    .regin_erea_all label {
        width: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
        column-gap: 30px;
    }

    .regin_erea_all input {
        appearance: none;
    }

    .regin_erea_all .slider {
        position: absolute;
        cursor: pointer;
        height: 15px;
        width: 25px;
        top: 12px;
        left: 12px;
        background-color: #ccc;
        border-radius: 20px;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

        .regin_erea_all .slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 1px;
            bottom: 1px;
            background-color: white;
            transition: 0.4s;
            border-radius: 50%;
            -webkit-transition: 0.4s;
        }

    .regin_erea_all #erea_all:checked + .slider {
        background-color: #ff9800;
    }

        .regin_erea_all #erea_all:checked + .slider:before {
            background-color: white;
            -webkit-transform: translateX(10px);
            -ms-transform: translateX(10px);
            transform: translateX(10px);
        }

.nav-pills .nav-link.active {
    background-color: #ff9800;
}

.v-line {
    width: 0.5px;
    height: 240px;
    background-color: #e5e5e5;
}
