* {
    font-family: 'Noto Sans KR', sans-serif;
    color: #333;
    font-size: 14px;
}

@media (min-width: 1200px) {
    *::-webkit-scrollbar {
        width: 5px;
        height: 10px;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
        background-clip: padding-box;
    }

    *::-webkit-scrollbar-track {
        background-color: #eee;
    }
}

body {
    margin: 0 auto;
    min-width: 1400px;
    position: relative;
    overflow-y: hidden;
}

.clr::after {
    display: block;
    content: '';
    clear: both;
}

.green {
    color: #12368C !important;
}

header {
    left: 0;
    position: absolute;
    right: 0;
    top: 100px;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
    -moz-transform: matrix(1, 0, 0, 1, 0, 0);
    transform: matrix(1, 0, 0, 1, 0, 0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: 10;
    height: 0px;
    background-color: white;
    z-index: 9999;
}

html.active header {
    -webkit-transform: matrix(1, 0, 0, 1, -400, 0);
    -moz-transform: matrix(1, 0, 0, 1, -400, 0);
    transform: matrix(1, 0, 0, 1, -400, 0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.btn_fold {
    background-image: url("../images/arrow.png");
    background-size: 8px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -25px;
    border-radius: 0 5px 5px 0;
    width: 24px;
    height: 66px;
    background-color: #fdfdfd;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    border: solid 1px #ddd;
    border-left: 0;
    box-shadow: 1px 1px 1px 0px rgb(170 170 170);
    z-index: 9999;
}

    .btn_fold.active {
        transform: rotate(180deg);
        border-radius: 5px 0 0 5px;
        border: solid 1px #ddd;
        border-right: 0;
        box-shadow: -1px -1px 1px 0px rgb(170 170 170);
    }

.sidenav {
    display: none;
}

.side_menu {
    width: 400px;
    height: 100vh;
    background: #fff;
    position: relative;
    border-right: 1px solid #ddd;
    box-shadow: 1px 1px 1px 0px rgb(170 170 170);
    padding-top: 20px;
}

    .side_menu .side_top {
        /*height: 120px;*/
        border-bottom: 1px solid #ddd;
        padding: 20px 20px 20px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .side_menu .side_top h2.logo a img {
            width: 220px;
        }

        .side_menu .side_top .link_btn {
            margin-top: 40px;
            background: #12368C;
            width: 80px;
            height: 20px;
            border-radius: 20px;
            box-shadow: 0px 3px 14px 1.1px rgba(50, 51, 51, 0.05);
            font-size: 14px;
            font-weight: 500;
            color: #fff;
            line-height: 20px;
            /*padding-left: 22px;*/
            position: relative;
            text-align: center;
            transition: transform ease 0.5s;
            transform: translateX(0px);
        }

            .side_menu .side_top .link_btn img {
                position: absolute;
                left: -40px;
                top: -22px;
                width: 40px;
            }

            .side_menu .side_top .link_btn:hover {
                transform: translateX(-5px);
            }

    .side_menu .acc_menu {
        border-bottom: 1px solid #ddd;
        height: 45px;
        display: flex;
        align-items: center;
        padding: 0 20px;
    }

        .side_menu .acc_menu a {
            font-size: 15px;
            color: #666;
            font-weight: 500;
            width: 100%;
            text-align: center;
            border-right: 1px solid #ddd;
        }

            .side_menu .acc_menu a:last-child {
                border-right: none;
            }

.search {
    position: relative;
    /*padding: 20px;*/
}

    .search input {
        width: 100%;
        height: 35px;
        padding: 0 60px 0 15px;
    }

    .search .search_btn {
        content: '';
        display: block;
        background-image: url(../images/search.png);
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        width: 40px;
        height: 40px;
        top: 0;
        bottom: 0;
        margin: auto 0 auto auto;
        right: 0;
        background-color: transparent;
        background-size: 20px;
        opacity: 0.8;
    }

        .search .search_btn:hover {
            opacity: 1.0;
        }

    .search .close_btn {
        content: '';
        display: none;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto auto auto auto;
        background-color: transparent;
        background-size: 20px;
        right: 50px;
        background-image: url(/Assets/images/close.png);
        width: 12px;
        height: 12px;
        opacity: 0.3;
    }

        .search .close_btn.active {
            display: block;
        }

        .search .close_btn:hover {
            opacity: 1.0;
        }

.search_summary {
    font-size: 12px;
    padding: 10px 30px;
    background: rgb(164 219 144 / 0.50);
    display: none;
    color: white;
    font-weight: 400;
    top: 40px;
    border-bottom-right-radius: 30px;
    position: absolute;
    z-index: 10000;
}

    .search_summary.info {
        background: rgb(18, 54, 140);
    }

    .search_summary.warning {
        background: rgb(255 219 0);
        color: red;
    }

    .search_summary.error {
        background: rgb(219 146 144);
    }

    .search_summary .message {
        color: black;
    }

    .search_summary.info .message {
        color: white;
    }

.list_wrap {
    overflow-y: auto;
    height: calc(100vh - 130px);
}

    .list_wrap .list_ct {
        border-bottom: 1px solid #ddd;
        padding: 15px 20px 20px 20px;
        background-color: white;
    }

        .list_wrap .list_ct:hover {
            background: rgb(18 54 140 / 0.10);
        }

        .list_wrap .list_ct .inner {
            cursor: pointer;
        }

        .list_wrap .list_ct h4 {
            font-size: 19px;
            font-weight: 700;
        }

            .list_wrap .list_ct h4 small {
                color: #1f1c4cb0;
                font-size: 11px;
                line-height: 25px;
                margin-left: 7px;
                background-color: #80808030;
                padding: 1px 7px 2px 7px;
                border-radius: 20px;
            }

        .list_wrap .list_ct p.address {
            font-size: 14px;
            color: #666;
            font-weight: 500;
            margin: 9px 0;
        }

        .list_wrap .list_ct .ad_list li {
            font-size: 14px;
            color: #fff;
            padding: 3px 6px;
            background: #3c548e;
            margin-right: 3px;
            margin-bottom: 3px;
            display: inline-block;
            border-radius: 3px;
        }

        .list_wrap .list_ct .segment {
            font-size: 13px;
            color: #666;
            margin: 0 0 10px 0;
            display: -webkit-box;
            word-wrap: break-word;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 20px;
        }

        .list_wrap .list_ct .img_box {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
        }


            .list_wrap .list_ct .img_box img {
                object-fit: cover;
                height: 100%;
                width: 113px;
                height: 113px;
            }

                .list_wrap .list_ct .img_box img:first-child {
                    border-top-left-radius: 5px;
                    border-bottom-left-radius: 5px;
                }

                .list_wrap .list_ct .img_box img:last-child {
                    border-top-right-radius: 5px;
                    border-bottom-right-radius: 5px;
                }

                .list_wrap .list_ct .img_box img:hover {
                    transform: scale(1.03);
                }


    .list_wrap .list_ft {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 50px;
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 70px;
        border-top: 1px solid #ddd;
        display: none;
    }

        .list_wrap .list_ft li {
            text-align: center;
            float: left;
        }

            .list_wrap .list_ft li a {
                display: block;
                font-size: 15px;
                box-sizing: border-box;
            }

            .list_wrap .list_ft li.on a {
                color: #12368C;
                font-weight: 500;
            }


.detailview_header {
    background-color: white;
}

.top_menu {
    display: none; /*임시*/
}

.m_top_menu {
    display: none; /*임시*/
}

top_compare_menu > ul {
    display: flex;
    background: #fff;
    position: absolute;
    top: 20px;
    left: 420px;
    border: solid 1px #ddd;
    width: 677px;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-radius: 5px;
    /*box-shadow: 0px 3px 14px 1.1px rgba(50, 51, 51, 0.05);*/
    box-shadow: 1px 1px 1px 0px rgb(170 170 170);
    transition: all .3s;
}

.top_menu > ul {
    display: flex;
    background: #fff;
    position: absolute;
    top: 20px;
    left: 420px;
    border: solid 1px #ddd;
    width: 677px;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-radius: 5px;
    /*box-shadow: 0px 3px 14px 1.1px rgba(50, 51, 51, 0.05);*/
    box-shadow: 1px 1px 1px 0px rgb(170 170 170);
    transition: all .3s;
}

    .top_menu > ul > li > a {
        font-size: 16px;
        font-weight: 500;
        align-items: center;
        display: flex;
    }


    .top_menu > ul > li.active > a {
        color: #777;
    }

    .top_menu > ul > li > a > img:last-child {
        display: none;
    }

    .top_menu > ul > li.active > a > img:last-child {
        display: block;
    }

    .top_menu > ul > li.active > a > img:first-child {
        display: none;
    }

    .top_menu > ul > li > a > img {
        margin-right: 10px;
    }

.container.map {
    background-image: url("../images/map.png");
    height: calc(100vh - 100px);
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 100px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.popup_ct1 {
    position: absolute;
    left: 400px;
    top: 0;
    height: 100vh;
    background: #fff;
    width: 420px;
    display: none;
    z-index: 1;
    border-right: 1px solid #ddd;
}

    .popup_ct1 > .inner {
        height: calc(100vh - 100px);
        overflow-y: auto;
        box-shadow: 1px 1px 1px 0px rgb(170 170 170);
    }

    .popup_ct1 .inner .img_box {
        display: flex;
        max-height: 210px;
    }

    .popup_ct1 .img_box .left {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

        .popup_ct1 .img_box .left > div {
            display: flex;
        }

        .popup_ct1 .img_box .left .img {
            width: 100%;
            border: solid 2px #fff;
            border-left: 0;
            border-top: 0;
            position: relative;
            overflow: hidden;
        }

            .popup_ct1 .img_box .left .img a {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
                margin: auto;
                background: rgba(0, 0, 0, 0.6);
            }

                .popup_ct1 .img_box .left .img a p {
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);
                    width: 100%;
                }

                    .popup_ct1 .img_box .left .img a p img {
                        display: block;
                        margin: 0 auto;
                    }

                    .popup_ct1 .img_box .left .img a p span {
                        color: #fff;
                        font-size: 13px;
                        font-weight: 300;
                        text-align: center;
                        display: block;
                        margin-top: 10px;
                    }

            .popup_ct1 .img_box .left .img img {
                object-fit: cover;
                height: 100%;
            }

            .popup_ct1 .img_box .left .img > img {
                height: 103px;
                min-width: 103px;
            }

        .popup_ct1 .img_box .left > div:nth-child(2) .img {
            border-bottom: 0;
        }

    .popup_ct1 .img_box .right {
        width: 100%;
        position: relative;
        max-height: 210px;
        height: 210px;
        background-color: black;
    }

        .popup_ct1 .img_box .right img {
            height: 100%;
            object-fit: cover;
        }

        .popup_ct1 .img_box .right a {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            background: rgba(0, 0, 0, 0.6);
        }

            .popup_ct1 .img_box .right a p {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                width: 100%;
            }

                .popup_ct1 .img_box .right a p img {
                    display: block;
                    margin: 0 auto;
                }

                .popup_ct1 .img_box .right a p span {
                    color: #fff;
                    font-size: 13px;
                    font-weight: 300;
                    text-align: center;
                    display: block;
                    margin-top: 10px;
                }

    .popup_ct1 .popup_title {
        margin: 25px 20px;
    }

        .popup_ct1 .popup_title h4 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
        }

        .popup_ct1 .popup_title p {
            text-align: center;
        }

            .popup_ct1 .popup_title p span {
                font-size: 17px;
                font-weight: 500;
                color: #555;
                margin: 0 10px;
            }

    .popup_ct1 .popup_segment {
        margin: 0 20px;
        padding: 25px 0;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        display: flex;
        align-items: center;
    }

        .popup_ct1 .popup_segment p {
            width: 100%;
            text-align: center;
            position: relative;
        }

            .popup_ct1 .popup_segment p > a {
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                margin: auto;
            }

            .popup_ct1 .popup_segment p::before {
                content: '';
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto;
                right: -1px;
                width: 1px;
                height: 65px;
                background: #ddd;
            }

            .popup_ct1 .popup_segment p:last-child::before {
                display: none;
            }

            .popup_ct1 .popup_segment p img {
                display: block;
                margin: 0 auto;
                margin-bottom: 10px;
            }

            .popup_ct1 .popup_segment p span {
                font-size: 15px;
                color: #555;
                line-height: 20px;
                text-align: center;
                display: block;
            }

            .popup_ct1 .popup_segment p:hover span {
                /*text-decoration: underline;
        text-underline-position: under;
        font-weight: 400;*/
                color: black;
            }

    .popup_ct1 .accordion-box {
        padding: 25px 20px;
        padding-top: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #ddd;
        background-color: white;
        position: relative;
    }

        .popup_ct1 .accordion-box .blur_box {
            background: rgb(255 255 255 / 5%);
            backdrop-filter: blur(50px);
            box-shadow: inset 0px 0px 50px 50px white;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            vertical-align: middle;
            line-height: 1.7;
            border: none !important;
        }

            .popup_ct1 .accordion-box .blur_box .chattalk {
                width: 190px;
                height: 43px;
                box-shadow: 2px 1px 5px 2px #00000012;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: row;
                vertical-align: middle;
                border-radius: 100px;
                padding-right: 12px;
                flex-wrap: nowrap;
                cursor: pointer;
                border: 1px solid #d9d9d9;
                transition: all 0.1s ease-in-out;
                margin: 10px;
            }

                .popup_ct1 .accordion-box .blur_box .chattalk:hover {
                    box-shadow: 4px 2px 5px 2px #00000012;
                    transform: scale(1.02);
                }

                    .popup_ct1 .accordion-box .blur_box .chattalk:hover img {
                        transform: scale(1.1);
                    }

                    .popup_ct1 .accordion-box .blur_box .chattalk:hover span {
                        color: black;
                    }


                .popup_ct1 .accordion-box .blur_box .chattalk img {
                    width: 60px;
                    position: relative;
                    left: -10px;
                    transition: all 0.1s ease-in-out;
                }

                .popup_ct1 .accordion-box .blur_box .chattalk span {
                    font-weight: 700;
                    position: relative;
                    left: -10px;
                    color: dimgray;
                }

        .popup_ct1 .accordion-box ul li {
            border-top: 1px solid #ddd;
            padding: 15px 0;
        }

            .popup_ct1 .accordion-box ul li .info {
                border-radius: 4px;
                border: #b8babe 1px solid;
            }

                .popup_ct1 .accordion-box ul li .info div {
                    padding: 8px 0px;
                    margin: 0 10px;
                    display: flex;
                    border-bottom: 1px solid #ddd;
                    align-items: center;
                }

                    .popup_ct1 .accordion-box ul li .info div:last-child {
                        border-bottom: none;
                    }

                    .popup_ct1 .accordion-box ul li .info div p:first-child {
                        min-width: 110px;
                        text-indent: 4px;
                    }

                    .popup_ct1 .accordion-box ul li .info div p {
                        font-size: 14px;
                        line-height: 18px;
                        display: inline;
                    }

                        .popup_ct1 .accordion-box ul li .info div p span {
                            font-size: 7px;
                            line-height: 18px;
                        }

            .popup_ct1 .accordion-box ul li:first-child {
                border-top: 0;
            }

            .popup_ct1 .accordion-box ul li p {
                font-size: 15px;
                display: flex;
                align-items: center;
            }

                .popup_ct1 .accordion-box ul li p.title_v2 {
                    cursor: pointer;
                    position: relative;
                }

                .popup_ct1 .accordion-box ul li p img:first-child {
                    margin-right: 10px;
                }

                .popup_ct1 .accordion-box ul li p img:nth-child(2) {
                    position: absolute;
                    right: 20px;
                    transition: all .3s;
                    transform: rotate(180deg);
                }

                .popup_ct1 .accordion-box ul li p.title_v2.active img:nth-child(2) {
                    transform: rotate(0deg);
                }

            .popup_ct1 .accordion-box ul li .con_v2 {
                display: none;
                margin-left: 28px;
                color: #666;
                line-height: 24px;
                margin-top: 10px;
            }

    .popup_ct1 .tab_box {
        background: #f5f5f5;
        padding-top: 10px;
    }

        .popup_ct1 .tab_box .tab_v2 {
            background: #fff;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
        }

            .popup_ct1 .tab_box .tab_v2 button {
                background: #fff;
                font-size: 15px;
                color: rgb(85 85 85 / 1.0);
                height: 50px;
                text-align: center;
                font-weight: 500;
            }

                .popup_ct1 .tab_box .tab_v2 button:hover {
                    /*color: rgb(71 163 194 / 1.0);*/
                    color: rgb(18 54 140 / 1.0);
                    font-weight: 500;
                }

                .popup_ct1 .tab_box .tab_v2 button.active {
                    color: #12368C;
                    border-bottom: 4px solid #12368C;
                    font-weight: 500;
                    line-height: 50px
                }

        .popup_ct1 .tab_box .tabContainer {
            display: block;
            background: #f5f5f5;
            padding: 0 10px 0 10px;
        }

            .popup_ct1 .tab_box .tabContainer .ct {
                background: #fff;
                margin-top: 10px;
                /*padding-bottom: 30px;*/
                border-bottom: 1px solid #ddd;
            }

                .popup_ct1 .tab_box .tabContainer .ct .source {
                    display: flex;
                    flex-direction: row-reverse;
                    flex-wrap: nowrap;
                    align-content: flex-end;
                    justify-content: flex-start;
                    align-items: flex-start;
                    position: relative;
                    top: -20px;
                    padding-right: 20px;
                }

                    .popup_ct1 .tab_box .tabContainer .ct .source .text {
                        font-size: 12px;
                        font-weight: 400;
                        text-decoration-line: underline;
                        text-decoration-style: dotted;
                        cursor: pointer;
                    }

                        .popup_ct1 .tab_box .tabContainer .ct .source .text:hover + .info_table {
                            display: block;
                        }

                    .popup_ct1 .tab_box .tabContainer .ct .source .info_table img {
                        width: 420px;
                    }



                .popup_ct1 .tab_box .tabContainer .ct .title {
                    font-size: 16px;
                    font-weight: 700;
                    padding-top: 15px;
                    padding-bottom: 15px;
                    border-bottom: 1px solid #ddd;
                    padding-left: 20px;
                    /*margin-bottom: 15px;*/
                    border-top: 1px solid #ddd;
                    max-height: 50px;
                }

                    .popup_ct1 .tab_box .tabContainer .ct .title > span {
                        font-size: 13px;
                        color: #12368C;
                        vertical-align: baseline;
                    }

            .popup_ct1 .tab_box .tabContainer .ct1 .title {
                margin-bottom: 0;
                border-top: none;
            }

            .popup_ct1 .tab_box .tabContainer .ct1 {
                position: relative;
            }

                .popup_ct1 .tab_box .tabContainer .ct1 .blur_box {
                    background: rgb(255 255 255 / 5%);
                    backdrop-filter: blur(50px);
                    box-shadow: inset 0px 0px 50px 50px white;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    flex-direction: column;
                    vertical-align: middle;
                    line-height: 1.7;
                    border: none !important;
                }

                    .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk {
                        width: 190px;
                        height: 43px;
                        box-shadow: 2px 1px 5px 2px #00000012;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: row;
                        vertical-align: middle;
                        border-radius: 100px;
                        padding-right: 12px;
                        flex-wrap: nowrap;
                        cursor: pointer;
                        border: 1px solid #d9d9d9;
                        transition: all 0.1s ease-in-out;
                    }

                        .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk:hover {
                            box-shadow: 4px 2px 5px 2px #00000012;
                            transform: scale(1.02);
                        }

                            .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk:hover img {
                                transform: scale(1.1);
                            }

                            .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk:hover span {
                                color: black;
                            }


                        .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk img {
                            width: 60px;
                            position: relative;
                            left: -10px;
                            transition: all 0.1s ease-in-out;
                        }

                        .popup_ct1 .tab_box .tabContainer .ct1 .blur_box .chattalk span {
                            font-weight: 700;
                            position: relative;
                            left: -5px;
                            color: dimgray;
                        }

                .popup_ct1 .tab_box .tabContainer .ct1 > div {
                    padding: 15px 0px;
                    margin: 0 20px;
                    display: flex;
                    border-bottom: 1px solid #ddd;
                    align-items: center;
                }

                    .popup_ct1 .tab_box .tabContainer .ct1 > div > p {
                        font-size: 15px;
                        line-height: 20px;
                    }

                        .popup_ct1 .tab_box .tabContainer .ct1 > div > p:first-child {
                            min-width: 110px;
                        }

                        .popup_ct1 .tab_box .tabContainer .ct1 > div > p > span {
                            font-size: 11px;
                            font-weight: 300;
                            color: #666;
                        }

            .popup_ct1 .tab_box .tabContainer .ct2 > div > img {
                width: 100%;
                /*visibility:hidden;*/
            }

            /*.popup_ct1 .tab_box .tabContainer .ct2.pano {
        width:100%;
        height:400px;
    }*/

            .popup_ct1 .tab_box .tabContainer .ct2 > .panorama {
                width: 100% !important;
                height: 100%;
                min-height: 250px;
                max-height: 400px;
            }


            .popup_ct1 .tab_box .tabContainer .ct3 > div {
                display: flex;
                overflow: hidden;
            }

                .popup_ct1 .tab_box .tabContainer .ct3 > div > img {
                    width: 100%;
                    border: solid 2px #FFF;
                    object-fit: cover;
                }

            .popup_ct1 .tab_box .tabContainer .ct4 > div > ul > li {
                display: flex;
                align-items: center;
                font-weight: 500;
                font-size: 16px;
                margin: 0 20px;
                border-bottom: #ddd 1px solid;
                padding-bottom: 10px;
                margin-top: 30px;
            }

                .popup_ct1 .tab_box .tabContainer .ct4 > div > ul > li > span {
                    font-size: 10px;
                    margin-right: 5px;
                }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div {
                padding: 15px 0px;
                display: flex;
                border-bottom: 1px solid #ddd;
                align-items: center;
                margin: 0 20px;
                margin-left: 35px;
            }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner div.blur_box {
                width: 360px;
                height: 140px;
                position: absolute;
                background: rgb(255 255 255 / 5%);
                backdrop-filter: blur(50px);
                border-radius: 10px;
                box-shadow: inset 0px 0px 50px 50px white;
                display: flex;
                justify-content: center;
                align-items: center;
                flex-direction: column;
                border: none;
                margin: 0 20px 0 20px;
            }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div > p {
                font-size: 15px;
                line-height: 20px;
            }

                .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div > p:first-child {
                    min-width: 100px;
                    font-weight: 500;
                }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div > div > p {
                font-size: 15px;
                line-height: 20px;
            }

                .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div > div > p:first-child {
                    min-width: 60px;
                }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > p {
                font-size: 15px;
                margin: 0 20px;
                margin-top: 10px;
                line-height: 24px;
                color: #666;
                margin-left: 35px;
            }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > img {
                display: block;
                margin: 0 auto;
                margin-top: 10px;
            }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div.flex_box_v3 {
                justify-content: space-between;
                align-items: baseline;
                word-break: keep-all;
                text-align: center;
            }

                .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div.flex_box_v3 > div {
                    width: 49%;
                }

            .popup_ct1 .tab_box .tabContainer .ct4 > .inner > div > div > p:first-child {
                font-weight: 500;
            }

.popup_close1 {
    position: absolute;
    right: -46px;
    width: 45px;
    height: 45px;
    background: #fff;
    border: solid 1px #ddd;
    border-left: 0;
    top: 0;
    border-radius: 0 5px 5px 0;
    background-image: url("../images/close.png");
    background-position: center;
    background-size: auto;
    background-repeat: no-repeat;
    box-shadow: 1px 1px 1px 0px rgb(170 170 170);
}

#tab0.tabconsulting {
    display: none;
    margin-top: 10px;
}

.view {
    display: block !important;
}

.btn_fold.popup {
    right: -445px;
}

.map_toolbar {
    position: absolute;
    right: 10px;
    top: 120px;
    z-index: 200;
}

    .map_toolbar .top_tool ul {
        display: flex;
        justify-content: flex-end;
    }

        .map_toolbar .top_tool ul li {
            position: relative;
            margin: 0 5px;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0px 3px 14px 1.1px rgb(50 51 51 / 5%);
            transition: all .3s;
            border: 1px solid #ddd;
        }

            .map_toolbar .top_tool ul li:first-child {
                margin-left: 0;
            }

            .map_toolbar .top_tool ul li:last-child {
                margin-right: 0;
            }

            .map_toolbar .top_tool ul li div {
                width: 60px;
                height: 60px;
                background-image: url("../images/tool_icon1.png");
                background-position: center;
                background-repeat: no-repeat;
                background-size: auto;
            }

            .map_toolbar .top_tool ul li:nth-child(2) div {
                background-image: url("../images/tool_icon2.png");
            }

            .map_toolbar .top_tool ul li:nth-child(3) div {
                background-image: url("../images/tool_icon3.png");
            }

            .map_toolbar .top_tool ul li:nth-child(4) div {
                background-image: url("../images/tool_icon4.png");
            }

            .map_toolbar .top_tool ul li p {
                position: absolute;
                width: 100%;
                bottom: 0;
                background: #fff;
                text-align: center;
                font-size: 12px;
                color: #666;
                line-height: 22px;
            }

            .map_toolbar .top_tool ul li.active {
                border: solid 1px #12368C;
            }

                .map_toolbar .top_tool ul li.active p {
                    color: #12368C;
                }

    .map_toolbar .bottom_tool > ul {
        display: flex;
        justify-content: flex-end;
        margin-top: 10px;
    }

        .map_toolbar .bottom_tool > ul > li {
            position: relative;
            margin: 0 5px;
            border-radius: 5px;
            cursor: pointer;
            transition: all .3s;
            border: 1px solid #ddd;
            width: 60px;
            height: 70px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 1px 1px 1px 1px rgba(50, 51, 51, .1);
        }

            .map_toolbar .bottom_tool > ul > li:first-child {
                margin-left: 0;
            }

            .map_toolbar .bottom_tool > ul > li:last-child {
                margin-right: 0;
            }

    .map_toolbar .bottom_tool > .opennav {
        display: none;
    }

    .map_toolbar .bottom_tool > ul > li > div {
        background-image: url("../images/marker.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: auto;
        height: 18px;
        width: 100%;
        margin-bottom: 7px;
        background-size: contain;
    }

    .map_toolbar .bottom_tool > ul > li:nth-child(2) div {
        background-image: url("../images/walk.png");
    }

    .map_toolbar .bottom_tool > ul > li:nth-child(3) div {
        background-image: url("../images/bus.png");
    }

    .map_toolbar .bottom_tool > ul > li:nth-child(4) div {
        background-image: url("../images/bicycle.png");
    }

    .map_toolbar .bottom_tool > ul > li.active {
        border: solid 3px #666;
    }

    .map_toolbar .bottom_tool > ul > li:first-child.active {
        border: solid 3px #F44336;
    }

        .map_toolbar .bottom_tool > ul > li:first-child.active :hover {
            border: solid 3px dotted;
        }

        .map_toolbar .bottom_tool > ul > li:first-child.active div.pano_on {
            display: flex;
        }

    .map_toolbar .bottom_tool > ul > li:first-child div.pano_on {
        display: none;
        width: 35px;
        height: 25px;
        background-color: #ffffff;
        border-radius: 30px;
        position: absolute;
        border: 2px solid #f34336;
        top: -10px;
        left: -10px;
        background-image: none;
        font-size: 7px;
        align-content: space-between;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        box-shadow: 1px 1px 1px #a4a4a4;
        vertical-align: middle;
        padding-bottom: 2px;
    }



    .map_toolbar .bottom_tool > ul > li.active > div {
        background-image: url("../images/marker_active.png");
    }

    .map_toolbar .bottom_tool > ul > li.active:nth-child(2) div {
        background-image: url("../images/walk_active.png");
    }

    .map_toolbar .bottom_tool > ul > li.active:nth-child(3) div {
        background-image: url("../images/bus_active.png");
    }

    .map_toolbar .bottom_tool > ul > li.active:nth-child(4) div {
        background-image: url("../images/bicycle_active.png");
    }

    .map_toolbar .bottom_tool > ul > li p {
        font-size: 12px;
        line-height: 16px;
        color: #777;
        display: block;
        width: 100%;
    }

    .map_toolbar .bottom_tool > ul > li.active > p {
        color: #12368C;
    }

.btn_tool {
    position: absolute;
    right: 10px;
    background: #fff;
    top: 370px;
    transform: translateY(-50%);
    border-radius: 5px;
    box-shadow: 1px 1px 1px 1px rgba(50, 51, 51, .1);
    border: solid 1px #dddddd;
    overflow: hidden;
    z-index: 200;
    min-width: 130px;
}

    .btn_tool .title {
        background: #12368C;
        color: #fff;
        font-size: 12px;
        font-weight: 500;
        padding: 15px 20px;
        letter-spacing: -.3px;
        text-align: center;
    }

    .btn_tool ul li a {
        display: flex;
        justify-content: center;
        height: 45px;
        align-items: center;
        border-bottom: 1px solid #ddd;
    }

    .btn_tool ul li:last-child a {
        border-bottom: none;
    }

    .btn_tool ul li a p {
        font-size: 12px;
        font-weight: 500;
        color: #777;
        transition: all .3s;
    }

    .btn_tool ul li a::before {
        content: '';
        display: block;
        background-image: url("../images/note.png");
        height: 20px;
        width: 20px;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 5px;
        transition: all .3s;
        background-size: contain;
        font-size: 12px;
    }

    .btn_tool ul li:nth-child(2) a::before {
        background-image: url("../images/kakao.png");
    }

    .btn_tool ul li:nth-child(3) a::before {
        background-image: url("../images/call_v2.png");
    }

    .btn_tool ul li a:hover::before {
        background-image: url("../images/note_hover.png");
    }

    .btn_tool ul li:nth-child(2) a:hover::before {
        background-image: url("../images/kakao_hover.png");
    }

    .btn_tool ul li:nth-child(3) a:hover::before {
        background-image: url("../images/call_v2_hover.png");
    }

    .btn_tool ul li a:hover p {
        color: #12368C;
    }

.btn_pano_tool {
    position: absolute;
    right: 10px;
    top: 10px;
    /*transform: translateY(-50%);*/
    border-radius: 5px;
    box-shadow: 0px 3px 14px 1.1px rgba(50, 51, 51, 0.05);
    border: solid 2px rgb(108 103 103 / 0.43);
    overflow: hidden;
    z-index: 100 !important;
    background-color: white;
}

    .btn_pano_tool .title {
        background: #12368C;
        color: #fff;
        font-size: 14px;
        font-weight: 500;
        padding: 15px 20px;
        letter-spacing: -.3px;
        text-align: center;
    }

    .btn_pano_tool ul li {
        float: left;
    }

        .btn_pano_tool ul li a {
            display: flex;
            justify-content: center;
            height: 30px;
            align-items: center;
            /*border-bottom: 1px solid #ddd;*/
            flex-direction: row;
            flex-wrap: nowrap;
            align-content: flex-start;
            padding-left: 6px;
            width: 30px;
            border-right: 1px solid #ddd;
        }

        .btn_pano_tool ul li:last-child a {
            border-right: none;
        }

        .btn_pano_tool ul li a p {
            font-size: 14px;
            font-weight: 500;
            color: #777;
            transition: all .3s;
        }

        .btn_pano_tool ul li a::before {
            content: '';
            display: block;
            background-image: url("../images/min.png");
            height: 15px;
            width: 15px;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 5px;
            transition: all .3s;
            background-size: contain;
        }

        .btn_pano_tool ul li:nth-child(2) a::before {
            background-image: url("../images/mid.png");
        }

        .btn_pano_tool ul li:nth-child(3) a::before {
            background-image: url("../images/max.png");
        }

        .btn_pano_tool ul li:nth-child(4) a::before {
            background-image: url("../images/close2.png");
        }


        .btn_pano_tool ul li a:hover::before {
            background-image: url("../images/min_hover.png");
        }

        .btn_pano_tool ul li:nth-child(2) a:hover::before {
            background-image: url("../images/mid_hover.png");
        }

        .btn_pano_tool ul li:nth-child(3) a:hover::before {
            background-image: url("../images/max_hover.png");
        }

        .btn_pano_tool ul li:nth-child(4) a:hover::before {
            background-image: url("../images/close2_hover.png");
        }

        .btn_pano_tool ul li a:hover p {
            color: #12368C;
        }


.top_menu > ul.close {
    top: -70px;
}

.compare.close {
    left: 60%;
}

.popup_sharing_panel {
    display: none;
    height: 0;
}

    .popup_sharing_panel div.sharing_box {
        position: relative;
        top: -30px;
        left: 120px;
        width: 260px;
        height: 46px;
        background: #fff;
        z-index: 200;
        border: 1px solid rgb(108 103 103 / 0.43);
        border-radius: 3px;
        box-shadow: 2px 4px 15px -10px rgb(0 0 0 / 70%);
        padding: 7px;
    }

        .popup_sharing_panel div.sharing_box .segment {
            display: flex;
        }

        .popup_sharing_panel div.sharing_box a img {
            width: 30px;
            /*height: 30px;*/
        }

        .popup_sharing_panel div.sharing_box input {
            border: solid 1px #ccc;
            height: 30px;
            width: 0;
            padding: 0 5px;
            font-size: 12px;
            color: gray;
        }

        .popup_sharing_panel div.sharing_box button {
            border: solid 1px #ccc;
            border-radius: 4px;
            height: 30px;
            width: 30px;
            padding: 0 5px;
            font-size: 14px;
            color: black;
        }



        .popup_sharing_panel div.sharing_box p {
            position: relative;
            margin-right: 5px;
            cursor: pointer;
        }

            .popup_sharing_panel div.sharing_box p > a {
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                margin: auto;
            }

            .popup_sharing_panel div.sharing_box p:first-child {
                width: 100px;
                text-align: left;
            }

                .popup_sharing_panel div.sharing_box p:first-child > a > img {
                    margin-bottom: 10px;
                }

                .popup_sharing_panel div.sharing_box p:first-child > a > span {
                    font-size: 14px;
                    margin-top: 5px;
                    line-height: 26px;
                }

            .popup_sharing_panel div.sharing_box p:nth-child(2) {
                position: relative;
                width: 100px;
                text-align: left;
            }

                .popup_sharing_panel div.sharing_box p:nth-child(2) button i {
                    position: relative;
                    line-height: 20px;
                }

                .popup_sharing_panel div.sharing_box p:nth-child(2) a span {
                    position: relative;
                    line-height: 27px;
                }

        .popup_sharing_panel div.sharing_box .segment p:last-child {
            width: 30px;
            background-image: url(../images/close.png);
            background-position: center;
            background-size: auto;
            background-repeat: no-repeat;
            margin: 0;
            top: -5px;
        }



.popup_panel {
    display: none;
}

    .popup_panel div.popup_bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: .5;
        filter: alpha(opacity=50);
        z-index: 100;
    }

    .popup_panel div.popup_contents {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: 800px;
        box-shadow: 0 10px 20px -10px rgb(0 0 0 / 35%);
        border: solid 1px #dddd;
        z-index: 20000;
    }

        .popup_panel div.popup_contents > a {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 45px;
            height: 45px;
            text-align: center;
            line-height: 45px;
            z-index: 1;
            font-size: 30px;
            background-image: url("../images/close.png");
            background-position: center;
            background-size: auto;
            background-repeat: no-repeat;
        }

.popup_panel1 div.popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.popup_panel1 div.popup_contents > .segment .flex_box {
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 500px;
    margin-bottom: 15px;
}

    .popup_panel1 div.popup_contents > .segment .flex_box:last-child {
        margin-bottom: 0;
    }

    .popup_panel1 div.popup_contents > .segment .flex_box > p {
        font-size: 15px;
        width: 130px;
        min-width: 130px;
    }

    .popup_panel1 div.popup_contents > .segment .flex_box > input {
        border: solid 1px #ccc;
        height: 40px;
        width: 290px;
        padding: 0 15px;
    }

    .popup_panel1 div.popup_contents > .segment .flex_box > select {
        border: solid 1px #ccc;
        height: 40px;
        width: 90px;
        text-align: center;
        padding-left: 10px;
        background: #fff;
    }

    .popup_panel1 div.popup_contents > .segment .flex_box.phone > input {
        width: 90px;
        margin-right: 10px;
        text-align: center;
    }

.popup_panel1 div.popup_contents > .segment .flex_box_v2 {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
    margin-bottom: 20px;
}

    .popup_panel1 div.popup_contents > .segment .flex_box_v2 > p {
        font-size: 15px;
    }

    .popup_panel1 div.popup_contents > .segment .flex_box_v2 > label {
        color: #666;
    }

        .popup_panel1 div.popup_contents > .segment .flex_box_v2 > label input {
            vertical-align: middle;
        }

.popup_panel1 div.popup_contents > .segment .area {
    display: block;
    height: 100px;
    overflow-y: auto;
    border: solid 1px #ccc;
    padding: 15px;
    margin: 0 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 22px;
}

.popup_panel1 div.popup_contents > .segment button {
    font-size: 15px;
    width: 105px;
    height: 35px;
    color: #12368C;
    border: 1px solid #12368C;
    background: #fff;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
}

.popup_panel2 div.popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.popup_panel2 .info_table {
    padding: 0 20px 20px 20px;
}

.popup_panel2 div.popup_contents > .segment .flex_box {
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    margin-bottom: 15px;
}

    .popup_panel2 div.popup_contents > .segment .flex_box:last-child {
        margin-bottom: 0;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box > p {
        font-size: 15px;
        width: 130px;
        min-width: 130px;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box > input {
        border: solid 1px #ccc;
        height: 40px;
        width: 350px;
        padding: 0 15px;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box > select {
        border: solid 1px #ccc;
        height: 40px;
        width: 110px;
        text-align: center;
        padding-left: 10px;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box.phone > input {
        width: 110px;
        margin-left: 10px;
        text-align: center;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box > textarea {
        width: 100%;
        height: 130px;
        border: solid 1px #ccc;
        padding: 15px;
    }

.popup_panel2 div.popup_contents > .segment .flex_box_v2 {
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    align-items: center;
}

    .popup_panel2 div.popup_contents > .segment .flex_box_v2 > p {
        font-size: 15px;
    }

    .popup_panel2 div.popup_contents > .segment .flex_box_v2 > label {
        color: #666;
    }

        .popup_panel2 div.popup_contents > .segment .flex_box_v2 > label input {
            vertical-align: middle;
        }

.popup_panel2 div.popup_contents > .segment .area {
    display: block;
    height: 100px;
    overflow-y: auto;
    border: solid 1px #ccc;
    padding: 15px;
    margin: 0 30px;
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 22px;
}

.popup_panel2 div.popup_contents > .segment .btn_box {
    display: flex;
    justify-content: space-between;
    margin: 0 30px;
}

.popup_panel2 div.popup_contents > .segment button {
    font-size: 15px;
    height: 35px;
    border: 1px solid #ddd;
    background: #fff;
    margin: 0 7px;
    display: block;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 0 13px;
}

    .popup_panel2 div.popup_contents > .segment button.active {
        color: #12368C;
        border: 1px solid #12368C;
    }

.popup_panel2 div.popup_contents > .segment .btn_box .fl {
    display: flex;
}

.popup_panel2 div.popup_contents > .segment .btn_box .fr {
    display: flex;
}

.popup_panel2 div.popup_contents > .segment .btn_box .fl button:first-child {
    margin-left: 0;
}

.popup_panel2 div.popup_contents > .segment .btn_box .fl button:last-child {
    margin-right: 0;
}

.popup_panel2 div.popup_contents > .segment .btn_box .fr button:first-child {
    margin-left: 0;
}

.popup_panel2 div.popup_contents > .segment .btn_box .fr button:last-child {
    margin-right: 0;
    width: 34px;
    height: 34px;
    background-image: url("../images/list.png");
    background-position: center;
    background-repeat: no-repeat;
    display: none;
}

.popup_panel2 div.popup_contents .pop_table {
    padding: 0 30px
}

    .popup_panel2 div.popup_contents .pop_table .list_ft {
        width: 100%;
        height: 50px;
        background: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        margin: 0 auto;
        max-width: 420px;
    }

        .popup_panel2 div.popup_contents .pop_table .list_ft li {
            width: 100%;
            text-align: center;
        }

            .popup_panel2 div.popup_contents .pop_table .list_ft li a {
            }

            .popup_panel2 div.popup_contents .pop_table .list_ft li.on a {
                color: #12368C;
            }

    .popup_panel2 div.popup_contents .pop_table table {
        width: 100%;
        table-layout: fixed;
    }

        .popup_panel2 div.popup_contents .pop_table table thead th {
            background: #f5f5f5;
            padding: 17px 0;
        }

        .popup_panel2 div.popup_contents .pop_table table tbody * {
            vertical-align: middle;
            padding: 20px 0;
        }

        .popup_panel2 div.popup_contents .pop_table table tbody tr {
            border-bottom: 1px solid #ddd;
        }

            .popup_panel2 div.popup_contents .pop_table table tbody tr td.number {
                text-align: center;
            }

            .popup_panel2 div.popup_contents .pop_table table tbody tr td.table_p {
                text-align: center;
            }

                .popup_panel2 div.popup_contents .pop_table table tbody tr td.table_p span {
                    background: #888;
                    color: #fff;
                    padding: 3px 10px;
                    border-radius: 5px;
                }

                    .popup_panel2 div.popup_contents .pop_table table tbody tr td.table_p span.active {
                        background: #12368C;
                    }

            .popup_panel2 div.popup_contents .pop_table table tbody tr td.tb_sg {
                white-space: nowrap;
                text-overflow: ellipsis;
                overflow: hidden;
            }

.popup_panel3 div.popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.popup_panel3 div.popup_contents > .segment .flex_box {
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    margin-bottom: 15px;
}

    .popup_panel3 div.popup_contents > .segment .flex_box:last-child {
        margin-bottom: 0;
    }

.popup_panel3 div.popup_contents > .segment {
    overflow-y: auto;
}

    .popup_panel3 div.popup_contents > .segment .flex_box > p {
        font-size: 15px;
        width: 130px;
        min-width: 130px;
    }

    .popup_panel3 div.popup_contents > .segment .flex_box > input {
        border: solid 1px #ccc;
        height: 40px;
        width: 350px;
        padding: 0 15px;
    }

    .popup_panel3 div.popup_contents > .segment .flex_box > select {
        border: solid 1px #ccc;
        height: 40px;
        width: 110px;
        text-align: center;
        padding-left: 10px;
        background: #fff;
    }

    .popup_panel3 div.popup_contents > .segment .flex_box.phone > input {
        width: 110px;
        margin-left: 10px;
        text-align: center;
    }

    .popup_panel3 div.popup_contents > .segment .flex_box > textarea {
        width: 100%;
        height: 130px;
        border: solid 1px #ccc;
        padding: 15px;
    }

    .popup_panel3 div.popup_contents > .segment .flex_box_v2 {
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
        align-items: center;
        margin-bottom: 20px;
    }

        .popup_panel3 div.popup_contents > .segment .flex_box_v2 > p {
            font-size: 15px;
        }

        .popup_panel3 div.popup_contents > .segment .flex_box_v2 > label {
            color: #666;
        }

            .popup_panel3 div.popup_contents > .segment .flex_box_v2 > label input {
                vertical-align: middle;
            }

    .popup_panel3 div.popup_contents > .segment .area {
        display: block;
        height: 100px;
        overflow-y: auto;
        border: solid 1px #ccc;
        padding: 15px;
        margin: 0 30px;
        margin-top: 10px;
        margin-bottom: 20px;
        line-height: 22px;
    }

    .popup_panel3 div.popup_contents > .segment .btn_box {
        display: flex;
        justify-content: center;
        ;
    }

    .popup_panel3 div.popup_contents > .segment button {
        font-size: 15px;
        width: 105px;
        height: 35px;
        border: 1px solid #ddd;
        background: #fff;
        margin: 0 7px;
        display: block;
        margin-top: 10px;
        margin-bottom: 40px;
    }

        .popup_panel3 div.popup_contents > .segment button.active {
            color: #12368C;
            border: 1px solid #12368C;
        }

.popup_panel4 div.popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.popup_panel4 div.popup_contents > .segment .flex_box {
    display: flex;
    align-items: center;
    padding: 0 30px;
    width: 100%;
    margin-bottom: 15px;
}

    .popup_panel4 div.popup_contents > .segment .flex_box:last-child {
        margin-bottom: 0;
    }

.popup_panel4 div.popup_contents > .segment {
    height: 500px;
    overflow-y: auto;
}

    .popup_panel4 div.popup_contents > .segment .flex_box > p {
        font-size: 15px;
        width: 130px;
        min-width: 130px;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box > input {
        border: solid 1px #ccc;
        height: 40px;
        width: 350px;
        padding: 0 15px;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box > .txt {
        border: solid 1px #ccc;
        min-height: 40px;
        max-height: 60px;
        width: 350px;
        padding: 10px 15px;
        display: flex;
        overflow: auto;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box > select {
        border: solid 1px #ccc;
        height: 40px;
        width: 110px;
        text-align: center;
        padding-left: 10px;
        background: #fff;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box.phone > input {
        width: 110px;
        margin-left: 10px;
        text-align: center;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box.phone > .txt {
        width: 110px;
        text-align: center;
        border: solid 1px #ccc;
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        align-items: center;
        margin-left: 10px;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box > .txt.phone {
        border: solid 1px #ccc;
        height: 40px;
        width: 110px;
        text-align: center;
        height: 40px;
        padding: 0 15px;
        overflow-x: auto;
        overflow-y: hidden;
        display: flex;
        align-items: center;
        margin-left: 0;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box > .textarea {
        width: 100%;
        min-height: 130px;
    }

    .popup_panel4 div.popup_contents > .segment .flex_box_v2 {
        display: block;
        justify-content: space-between;
        align-items: center;
        background: #f5f5f5;
        padding: 15px 30px;
        margin: 0 30px;
        margin-top: 30px;
        margin-bottom: 40px;
    }

        .popup_panel4 div.popup_contents > .segment .flex_box_v2 > p {
            font-size: 15px;
        }

        .popup_panel4 div.popup_contents > .segment .flex_box_v2 > label {
            color: #666;
        }

            .popup_panel4 div.popup_contents > .segment .flex_box_v2 > label input {
                vertical-align: middle;
            }

        .popup_panel4 div.popup_contents > .segment .flex_box_v2 > textarea {
            width: 100%;
            height: 130px;
            border: solid 1px #ccc;
            padding: 15px;
            margin: 0 auto;
            display: block;
            margin-top: 10px;
            margin-bottom: 20px;
        }

    .popup_panel4 div.popup_contents > .segment .area {
        display: block;
        height: 100px;
        overflow-y: auto;
        border: solid 1px #ccc;
        padding: 15px;
        margin: 0 30px;
        margin-top: 10px;
        margin-bottom: 20px;
        line-height: 22px;
    }

    .popup_panel4 div.popup_contents > .segment .btn_box {
        display: flex;
        justify-content: center;
    }

    .popup_panel4 div.popup_contents > .segment button {
        font-size: 15px;
        width: 105px;
        height: 35px;
        border: 1px solid #ddd;
        background: #fff;
        margin: 0 7px;
        display: block;
    }

        .popup_panel4 div.popup_contents > .segment button.active {
            color: #12368C;
            border: 1px solid #12368C;
        }

.container.map .marker {
    position: absolute;
    top: 30%;
    left: 40%;
    /*background: #8f489a; //보라*/
    background: #ffffff;
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 30px;
    padding-right: 25px;
    cursor: pointer;
    /*border: 1px solid #8f489a;*/
    border: 1px solid #12368c5e;
    box-shadow: rgba(0,0,0,0.5) 1px 1px;
}

    .container.map .marker.min {
        padding: 3px;
    }

        .container.map .marker.min .segment {
            display: none;
        }

        .container.map .marker.min .img {
            margin-right: 0;
        }

    .container.map .marker:hover {
        transform: scale(1.0);
    }

    .container.map .marker::before {
        width: 26px;
        height: 18px;
        content: '';
        display: block;
        position: absolute;
        background-image: url("../images/arrow0_wrap.png"); /*아래 화살표*/
        background-repeat: no-repeat;
        background-position: center;
        bottom: -12px;
        left: 8px;
        background-size: cover;
    }

    .container.map .marker.mouseover::before {
        background-image: url("../images/arrow1_wrap.png"); /*아래 화살표*/
    }

    .container.map .marker .img {
        background: rgb(87 125 163 / 0.10);
        border-radius: 70%;
        overflow: hidden;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        position: relative;
    }

        .container.map .marker .img::before {
            width: 13px;
            height: 13px;
            content: '';
            display: block;
            position: absolute;
            background-image: url("../images/arrow1.png");
            background-repeat: no-repeat;
            background-position: center;
            background-size: contain;
            bottom: -5px;
            left: 0;
            right: 0;
            margin: auto;
        }

    .container.map .marker p {
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
    }

        .container.map .marker p:nth-child(2) {
            font-size: 10px;
        }

.container.map .marker2 {
    top: 42%;
    left: 37%;
    background: #4b6ab7;
}

    .container.map .marker2::before {
        background-image: url("../images/arrow2_wrap.png");
    }

    .container.map .marker2 .img::before {
        background-image: url("../images/arrow2.png");
        top: -5px;
        bottom: auto;
        left: 0;
        right: 0;
    }

.container.map .marker3 {
    top: 54%;
    left: 40%;
    background: #b0b42b;
}

    .container.map .marker3::before {
        background-image: url("../images/arrow3_wrap.png");
    }

    .container.map .marker3 .img::before {
        background-image: url("../images/arrow3.png");
        top: 0;
        bottom: 0;
        left: -5px;
        right: auto;
    }

.container.map .marker4 {
    top: 53%;
    left: 70%;
    background: #a61b52;
}

    .container.map .marker4::before {
        background-image: url("../images/arrow4_wrap.png");
    }

    .container.map .marker4 .img::before {
        background-image: url("../images/arrow4.png");
        bottom: -5px;
        left: 0;
        right: 0;
    }

.container.map .marker5 {
    top: 45%;
    left: 58%;
    background: #df7a00;
}

    .container.map .marker5::before {
        background-image: url("../images/arrow5_wrap.png");
    }

    .container.map .marker5 .img::before {
        background-image: url("../images/arrow5.png");
        top: 0;
        bottom: 0;
        left: auto;
        right: -5px;
    }

.container.map .marker.left .img::before {
    transform: rotate( 90deg );
    left: -5px;
    right: auto;
    top: 0;
    bottom: 0;
}

.container.map .marker.right .img::before {
    transform: rotate( 270deg );
    left: auto;
    right: -5px;
    top: 0;
    bottom: 0;
}

.container.map .marker.top .img::before {
    transform: rotate( 180deg );
    left: 0;
    right: 0;
    top: -5px;
    bottom: auto;
}

.container.map .marker.top_right .img::before {
    transform: rotate( 225deg );
    left: auto;
    right: -5px;
    top: -25px;
    bottom: 0;
}

.container.map .marker.top_left .img::before {
    transform: rotate( 135deg );
    left: -5px;
    right: auto;
    top: -25px;
    bottom: 0;
}

.container.map .marker.bottom_right .img::before {
    transform: rotate( 315deg );
    left: auto;
    right: -5px;
    bottom: -25px;
    top: 0;
}

.container.map .marker.bottom_left .img::before {
    transform: rotate( 45deg );
    left: -5px;
    right: auto;
    bottom: -25px;
    top: 0;
}

.container.map .marker.none .img::before {
    display: none;
}

.container.map .more_marker {
    position: absolute;
    top: 34%;
    left: 60%;
    /*background: #8f489a;*/
    background: #12368C;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 100%;
    width: 42px;
    height: 42px;
    justify-content: center;
    cursor: pointer;
    /*z-index:200;*/
}

    .container.map .more_marker:hover {
        z-index: 200;
    }

    .container.map .more_marker .view {
    }

    .container.map .more_marker ul {
        position: absolute;
        background: #fff;
        border: solid 1px #ddd;
        bottom: 55px;
        display: none;
        /*height: 165px;*/
        overflow-y: auto;
        z-index: 300;
        max-height: 420px;
        box-shadow: rgb(108 103 103 / 0.43) 2px 2px;
    }

        .container.map .more_marker ul li {
            display: flex;
            align-items: center;
            width: 320px;
            padding: 8px 15px;
            border-bottom: 1px solid #ddd;
            z-index: 400;
        }

            .container.map .more_marker ul li:hover {
                background-color: rgb(136 136 136 / 0.15);
            }

            .container.map .more_marker ul li:active {
                background-color: rgb(233 218 235);
            }

            .container.map .more_marker ul li:last-child {
                border-bottom: none;
            }

            .container.map .more_marker ul li > img {
                min-width: 60px;
                min-height: 60px;
                height: 60px;
                width: 60px;
                object-fit: cover;
                border-radius: 3px;
            }

            .container.map .more_marker ul li > div {
                margin-left: 15px;
            }

                .container.map .more_marker ul li > div p {
                    font-size: 14px;
                    font-weight: 700;
                    line-height: 20px;
                }

                    .container.map .more_marker ul li > div p:nth-child(2) {
                        font-size: 12px;
                        font-weight: 500;
                        line-height: 20px;
                    }

.recommendation-menu {
    padding: 20px 20px 20px 20px;
    display: none;
    border-top: solid 1px lightgray;
    border-bottom: solid 1px lightgray;
    background-color: #12368C08;
}

    .recommendation-menu .recommend-title {
        /*border-bottom: solid 1px #ccc;*/
        text-align: left;
    }

        .recommendation-menu .recommend-title hr {
            border: 1px solid #12368C;
            margin-left: 55px;
            position: relative;
            top: -6px;
        }



        .recommendation-menu .recommend-title span.title {
            font-size: 20px;
            color: #15a5d4;
            line-height: 1.5;
        }

            .recommendation-menu .recommend-title span.title strong {
                font-size: 30px;
                /*color: #15a5d4;*/
            }

            .recommendation-menu .recommend-title span.title span {
                font-size: 18px;
            }

        .recommendation-menu .recommend-title img {
            width: 60px;
        }


    .recommendation-menu .ai-search {
        padding-top: 20px;
        border-top: 1px solid #ddd;
        padding: 0;
        margin-top: 20px;
        margin-bottom: 0;
        margin-left: 60px;
        /*text-align: center;*/
    }

        .recommendation-menu .ai-search > button {
            background: #fff;
            display: inline;
            width: 110px;
            height: 30px;
            border: solid 1px #ddd;
            color: gray;
            margin: 0 auto;
            margin-top: 20px;
            border-radius: 5px;
            border-right: solid 2px #ddd;
            border-bottom: solid 2px #ddd;
        }

            .recommendation-menu .ai-search > button:hover {
                font-weight: 600;
            }

            .recommendation-menu .ai-search > button:last-child {
                width: 160px;
                margin-left: 20px;
                color: #12368C;
            }
/*.recommendation-menu div.button {
    }*/

.button_group {
    position: flex;
    height: auto;
    width: 100%;
    padding: 10px 0 0 60px;
}

    .button_group .title {
        display: flex;
        align-items: center;
        /*padding: 0 20px;*/
        margin: 10px 0 5px 0;
        position: relative;
        /*height: 25px;*/
        /*border-bottom: 1px solid #ddd;*/
    }

        .button_group .title h4 {
            font-size: 14px;
            font-weight: 500;
        }

        .button_group .title button {
            width: 55px;
            height: 44px;
            background: #fff;
            background-image: url("../images/close.png");
            background-position: center;
            background-size: 14px;
            background-repeat: no-repeat;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
        }

    .button_group .segment {
        padding: 0;
    }

        .button_group .segment > div {
            /*padding: 0 20px;*/
            text-align: left;
        }

            .button_group .segment > div > ul {
                display: flex;
                /*border: solid 1px #ddd;*/
                width: 100%;
                /*margin-top: 10px;*/
                /*margin-bottom: 15px;*/
                /*border-radius: 5px;*/
                overflow: hidden;
            }

                .button_group .segment > div > ul li {
                    width: 30px;
                    height: 30px;
                    align-items: center;
                    justify-content: center;
                    display: flex;
                    width: 100%;
                    cursor: pointer;
                    border-left: solid 1px #ddd;
                    border-top: solid 1px #ddd;
                    font-weight: 400;
                    font-size: 12px;
                    background-color: #fff;
                }

                    .button_group .segment > div > ul li:hover {
                        font-weight: 500;
                        color: #12368C;
                    }

                .button_group .segment > div > ul:first-child li {
                    border-top: solid 1px #ddd;
                }

                    .button_group .segment > div > ul:first-child li:first-child {
                        border-top-left-radius: 5px;
                    }

                .button_group .segment > div > ul li:first-child {
                    border-left: solid 1px #ddd;
                }

                .button_group .segment > div > ul li:last-child {
                    border-right: solid 2px #ddd;
                }

                .button_group .segment > div > ul:first-child li:last-child {
                    border-top-right-radius: 5px;
                    border-top: solid 1px #ddd;
                    border-right: solid 2px #ddd;
                }

                .button_group .segment > div > ul:last-child li {
                    border-bottom: solid 2px #ddd;
                }


                    .button_group .segment > div > ul:last-child li:first-child {
                        border-bottom-left-radius: 5px;
                    }


                    .button_group .segment > div > ul:last-child li:last-child {
                        border-bottom-right-radius: 5px;
                    }

                .button_group .segment > div > ul li.active {
                    color: #fff;
                    background: #12368C;
                }

            .button_group .segment > div > .time_box {
                display: flex;
                align-items: center;
                margin-top: 10px;
            }

                .button_group .segment > div > .time_box span {
                    margin: 0 10px;
                }

                .button_group .segment > div > .time_box input {
                    width: 72px;
                    height: 28px;
                    border: solid 1px #ddd;
                    border-radius: 5px;
                    text-align: center;
                }

            .button_group .segment > div.btn_box {
                padding-top: 20px;
                border-top: 1px solid #ddd;
                padding: 0;
                margin-top: 20px;
            }

                .button_group .segment > div.btn_box > button {
                    background: #fff;
                    display: block;
                    margin: 0 auto;
                    width: 120px;
                    height: 30px;
                    border: solid 1px #ddd;
                    color: #ddd;
                    margin-top: 20px;
                }


.pop_v2 {
    position: absolute;
    top: 100px;
    margin: auto;
    background: #fff;
    height: auto;
    width: 250px;
    border: 1px solid #ddd;
    z-index: 1;
    top: 170px;
    right: 10px;
    border-radius: 5px;
    box-shadow: 0px 3px 14px 1.1px rgb(50 51 51 / 5%);
    display: none;
}

    .pop_v2 .title {
        display: flex;
        align-items: center;
        padding: 0 20px;
        position: relative;
        height: 45px;
        border-bottom: 1px solid #ddd;
    }

        .pop_v2 .title h4 {
            font-size: 14px;
            font-weight: 500;
        }

        .pop_v2 .title button {
            width: 55px;
            height: 44px;
            background: #fff;
            background-image: url("../images/close.png");
            background-position: center;
            background-size: 14px;
            background-repeat: no-repeat;
            display: block;
            position: absolute;
            right: 0;
            top: 0;
        }

    .pop_v2 .segment {
        padding: 15px 0;
    }

        .pop_v2 .segment > div {
            padding: 0 20px;
            text-align: left;
        }

            .pop_v2 .segment > div > ul {
                display: flex;
                border: solid 1px #ddd;
                width: 100%;
                margin-top: 10px;
                margin-bottom: 15px;
                border-radius: 5px;
                overflow: hidden;
            }

                .pop_v2 .segment > div > ul li {
                    width: 30px;
                    height: 30px;
                    align-items: center;
                    justify-content: center;
                    display: flex;
                    width: 100%;
                    cursor: pointer;
                }

                    .pop_v2 .segment > div > ul li:last-child {
                        border-right: none;
                    }

                    .pop_v2 .segment > div > ul li.active {
                        color: #fff;
                        background: #12368C;
                    }

            .pop_v2 .segment > div > .time_box {
                display: flex;
                align-items: center;
                margin-top: 10px;
            }

                .pop_v2 .segment > div > .time_box span {
                    margin: 0 10px;
                }

                .pop_v2 .segment > div > .time_box input {
                    width: 72px;
                    height: 28px;
                    border: solid 1px #ddd;
                    border-radius: 5px;
                    text-align: center;
                }

            .pop_v2 .segment > div.btn_box {
                padding-top: 20px;
                border-top: 1px solid #ddd;
                padding: 0;
                margin-top: 20px;
            }

                .pop_v2 .segment > div.btn_box > button {
                    background: #fff;
                    display: block;
                    margin: 0 auto;
                    width: 120px;
                    height: 30px;
                    border: solid 1px #12368C;
                    color: #12368C;
                    margin-top: 20px;
                }

.m_head {
    display: none;
}

.m_list {
    display: none;
}

.m_search_list {
    display: none !important;
}

.map_btn {
    display: none;
}

.map_btn_v2 {
    display: none;
}

.map_btn_v3 {
    display: none;
}

.img_more {
    display: block;
    height: 40px;
    margin: 0 auto;
    width: 100%;
    background: #f4f7f8;
    border: 1px solid #eaeef2;
    border-left: none;
    border-right: none;
    font-size: 15px;
    padding: 3px 5px;
    margin-top: 10px;
    cursor: pointer;
}

.road_more {
    display: block;
    height: 40px;
    margin: 0 auto;
    width: 100%;
    background: #f4f7f8;
    border: 1px solid #eaeef2;
    border-left: none;
    border-right: none;
    font-size: 15px;
    padding: 3px 5px;
    cursor: pointer;
}

.no_bottom {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.population_more {
    display: block;
    height: 40px;
    margin: 0 auto;
    width: 100%;
    background: rgb(235 246 250 / 0.82);
    border: 1px solid #eaeef2;
    border-left: none;
    border-right: none;
    font-size: 15px;
    padding: 3px 5px;
    color: black;
    font-weight: 500;
}

    .population_more:hover {
        background: #d4ecf4;
    }

    .population_more i {
        font-size: 17px;
        line-height: 25px;
    }

.popup_consulting {
    padding: 0 20px 0 20px;
}

    .popup_consulting button {
        display: block;
        height: 40px;
        margin: 0 auto;
        width: 100%;
        border: 1px solid #12368C;
        font-size: 15px;
        font-weight: 500;
        padding: 3px 5px;
        margin-top: 10px;
        border-radius: 2px;
        color: #12368C;
        background-color: white;
    }

        .popup_consulting button:hover {
            background-color: #12368C;
            font-weight: 500;
            color: white;
        }

#naverMap {
    /*height: 100%;*/
    width: 100%;
    /* 초기 높이값 지정 */
    height: calc(100vh - 60px);
    min-height: 200px;
    /* 중앙 정렬 */
    align-items: center;
    display: flex;
    justify-content: center;
}

    #naverMap > div > div > a > img {
        /*naver log*/
        display: none !important;
    }

.map_container .resizer[data-direction="vertical"] {
    background-color: #eaeef2;
    cursor: ns-resize;
    height: 10px;
    width: 100%;
    border-top: 1px solid navy;
    border-bottom: 1px solid navy;
    display: none;
}

#panoDiv {
    width: 100%;
    background-color: white;
    /* top이 차지하고 남은 공간에 따라 유동적으로 변화 */
    flex: 1;
    /* 중앙 정렬 */
    align-items: center;
    display: flex;
    justify-content: center;
}

.consulting_panel {
    display: block;
    padding: 20px;
}

consulting_panel input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.consulting_panel div.popup_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .5;
    filter: alpha(opacity=50);
    z-index: 100;
}


.consulting_panel .popup_contents {
    /*width: calc(100% - 20px);
        max-width: 382px;
        min-width: 355px;*/
    width: 100%
}

.consulting_panel div.popup_contents > a {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-size: 13px;
}

.consulting_panel div.popup_contents .popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}


.consulting_form div.popup_contents > .segment h5 {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}

.consulting_form div.popup_contents > .segment h6 {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: brown;
    font-weight: 400;
}

.consulting_form div.popup_contents > .segment .accordion-box {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: brown;
    font-weight: 400;
}


.consulting_form div.popup_contents > .segment .flex_box {
    display: flex;
    align-items: center;
    padding: 0;
    width: 100%;
    margin-bottom: 15px;
}

    .consulting_form div.popup_contents > .segment .flex_box .show_more {
        font-size: 14px;
        font-weight: 500;
        margin: 10px auto 10px auto;
        cursor: pointer;
    }


        .consulting_form div.popup_contents > .segment .flex_box .show_more img {
            transition: all .3s;
            transform: rotate(180deg);
        }

            .consulting_form div.popup_contents > .segment .flex_box .show_more img.active {
                transition: all .3s;
                transform: rotate(0deg);
            }

.consulting_form div.popup_contents > .segment .optional {
    display: none;
}

.consulting_form div.popup_contents > .segment .flex_box:last-child {
    margin-bottom: 0;
}

.consulting_form div.popup_contents > .segment {
    /*max-height: 800px;
    overflow-y: auto;*/
}

    .consulting_form div.popup_contents > .segment .flex_box > p {
        font-size: 15px;
        width: 100px;
        min-width: 100px;
    }

    .consulting_form div.popup_contents > .segment .flex_box > input {
        border: solid 1px #ccc;
        height: 40px;
        width: 350px;
        padding: 0 15px;
    }

    .consulting_form div.popup_contents > .segment .flex_box > select {
        border: solid 1px #ccc;
        height: 40px;
        width: 80px;
        text-align: center;
        padding-left: 10px;
        background: #fff;
    }

    .consulting_form div.popup_contents > .segment .flex_box > label:nth-child(1) {
        font-size: 15px;
        min-width: 100px;
    }

    .consulting_form div.popup_contents > .segment .flex_box > label:nth-child(3) {
        margin-left: 20px;
        font-size: 15px;
        min-width: 100px;
    }

    .consulting_form div.popup_contents > .segment .flex_box.options > select {
        width: 100%;
        text-align: left;
    }


    .consulting_form div.popup_contents > .segment .flex_box.phone > input {
        width: 78px;
        text-align: center;
        margin-right: 10px;
    }

    .consulting_form div.popup_contents > .segment .flex_box > textarea.longbody {
        width: 100%;
        height: 200px;
        border: solid 1px #ccc;
        padding: 15px;
    }

    .consulting_form div.popup_contents > .segment .flex_box > textarea.shortbody {
        width: 100%;
        height: 100px;
        border: solid 1px #ccc;
        padding: 15px;
    }

    .consulting_form div.popup_contents > .segment .flex_box_v2 {
        display: flex;
        align-items: center;
        flex-direction: row;
        align-content: center;
        margin: 10px auto;
        width: 100%;
    }

        .consulting_form div.popup_contents > .segment .flex_box_v2 > p {
            font-size: 15px;
            width: 100%
        }

        .consulting_form div.popup_contents > .segment .flex_box_v2 > label {
            color: #666;
            width: 120px;
        }

            .consulting_form div.popup_contents > .segment .flex_box_v2 > label input {
                vertical-align: middle;
            }

    .consulting_form div.popup_contents > .segment .area {
        display: block;
        height: 100px;
        overflow-y: auto;
        border: solid 1px #ccc;
        padding: 15px;
        /*margin: 0 30px;*/
        margin-top: 10px;
        margin-bottom: 20px;
        line-height: 22px;
    }

    .consulting_form div.popup_contents > .segment .btn_box {
        display: flex;
        justify-content: center;
    }

    .consulting_form div.popup_contents > .segment button {
        font-size: 15px;
        width: 150px;
        height: 35px;
        border: 1px solid #ddd;
        background: #fff;
        margin: 0 7px;
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

        .consulting_form div.popup_contents > .segment button.active {
            color: #12368C;
            border: 1px solid #12368C;
            width: 174px;
        }

    .consulting_form div.popup_contents > .segment hr {
        border-top: 1px solid rgb(108 103 103 / 0.43);
        margin-top: 20px;
        margin-bottom: 0;
    }



.compare {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
    /*bottom: -189px;*/
    top: -85px;
    background: #fff;
    border-radius: 5px 5px 0 0;
    border: solid 1px #dddddd;
    transition: all .3s;
    z-index: 1;
    display: none;
}

    .compare:hover {
        z-index: 1000;
    }

    .compare.active {
        /*top: 10px;
        box-shadow: 1px -1px 0px 0px rgb(170 170 170);*/
        z-index: 10000;
    }

    .compare .title {
        background: #fff;
        width: 300px;
        height: 45px;
        position: absolute;
        /*top: -45px;*/
        /*border: solid 1px #ddd;*/
        border-bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 500;
        border-radius: 0px 0px 5px 5px;
        cursor: pointer;
        box-shadow: 0px 3px 0px 0px #12368C;
        font-size: 16px;
    }

        .compare .title span {
            font-size: 16px;
            color: #FFF;
            width: 23px;
            height: 23px;
            background: #12368C;
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            box-shadow: 0px 3px 14px 1.1px rgba(50, 51, 51, 0.05);
        }

.compare_wrap {
    min-width: 590px;
    /*max-width: 640px;*/
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-shadow: 0px 3px 0px 0px #12368C;
    border-radius: 5px
}

    .compare_wrap > #compare_form > div.chk_box {
        display: flex;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
    }


    .compare_wrap > #compare_form > div > label {
        display: flex;
        padding-bottom: 10px;
        width: 160px
    }

        .compare_wrap > #compare_form > div > label > input {
            margin-right: 15px;
            margin-left: 20px;
            padding-top: 10px;
        }

        .compare_wrap > #compare_form > div > label:first-child > input {
            /*margin-left: 0px;*/
        }

        .compare_wrap > #compare_form > div > label > div {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 120px;
        }

            .compare_wrap > #compare_form > div > label > div > p {
                text-align: center;
                margin-top: 10px;
            }

            .compare_wrap > #compare_form > div > label > div > img {
                width: 110px;
                height: 110px;
                margin-bottom: 4px;
            }

    .compare_wrap > .btn_box {
        margin-left: 10px;
    }

    .compare_wrap #no_recent_items_box {
        width: 100%;
        vertical-align: middle;
        display: flex;
        line-height: 100%;
        align-items: center;
        justify-content: center;
        height: 140px;
    }

    .compare_wrap > .btn_box > a {
        width: 45px;
        height: 45px;
        background-image: url("../images/close.png");
        background-position: center;
        background-size: auto;
        background-repeat: no-repeat;
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .compare_wrap > .btn_box > button {
        width: 100px;
        height: 30px;
        background: #fff;
        border: 1px solid #ddd;
        display: block;
    }

        .compare_wrap > .btn_box > button:nth-child(2) {
            margin-top: 50px;
            margin-bottom: 10px;
        }

        .compare_wrap > .btn_box > button.active {
            color: #12368C;
            border-color: #12368C;
        }

.pano_info_window {
    padding: 10px;
    /*border: solid 2px #12368c;*/
    border-radius: 4px;
    max-width: 450px;
    /*min-height: 200px*/
}

    .pano_info_window .tool {
        position: absolute;
        right: 10px;
        background: #fff;
        top: 15px;
        transform: translateY(-50%);
        overflow: hidden;
        z-index: 100;
        width: 14px;
    }

    .pano_info_window h2 {
        font-size: 19px;
        font-weight: 700;
    }

    .pano_info_window .address {
        font-size: 14px;
        color: #666;
        font-weight: 500;
        margin: 9px 0;
    }

    .pano_info_window .tel {
        font-size: 14px;
        color: #666;
        font-weight: 500;
        margin: 9px 0;
    }

    .pano_info_window .info {
        border-radius: 4px;
        border: #b8babe 1px solid;
    }

        .pano_info_window .info div {
            padding: 6px 0px;
            margin: 0 10px;
            display: flex;
            border-bottom: 1px solid #ddd;
            align-items: center;
        }

            .pano_info_window .info div:last-child {
                border-bottom: none;
            }

            .pano_info_window .info div p:first-child {
                min-width: 80px;
                text-indent: 4px;
            }

            .pano_info_window .info div p {
                font-size: 12px;
                line-height: 14px;
            }


#top_header {
    width: 100%;
    height: 60px;
    position: absolute;
    top: 0;
    background-color: #12368c;
    z-index: 10000;
    display: flex;
    border-bottom: solid 1px #5871ae;
    align-items: center;
}

    #top_header .vertical {
        width: 1px;
        height: 20px;
        border: 1px solid #777777;
        margin: auto 10px;
    }

    #top_header .logo_box {
        min-width: 400px;
        left: 50%;
        padding: 0 20px 0 20px;
        display: flex;
        flex-direction: row;
    }

        #top_header .logo_box marquee {
            height: 40px;
            width: 200px; /* border:1px solid black; */
            margin-left: 20px;
            color: white;
            line-height: 150%;
            font-size: 11px;
        }

            #top_header .logo_box marquee div {
                font-size: 11px;
                color: white;
            }



        #top_header .logo_box img {
            width: 120px;
        }


    #top_header .menu_box {
        float: initial;
        font-size: 17px;
        cursor: pointer;
        min-width: 200px;
        height: 100%;
    }

        #top_header .menu_box .acc_menu {
            height: 100%;
            display: flex;
            font-size: 13px;
            font-weight: 400;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

            #top_header .menu_box .acc_menu .company:hover + .menu_list {
                display: block;
            }

            #top_header .menu_box .acc_menu a {
                color: #c8c8c8;
                width: 100%;
                font-size: 13px;
                font-weight: 400;
                text-align: center;
            }

                #top_header .menu_box .acc_menu a i {
                    line-height: 20px;
                    color: white;
                }

                #top_header .menu_box .acc_menu a:hover {
                    color: white;
                }

                #top_header .menu_box .acc_menu a:last-child {
                    border-right: none;
                    /*margin-right: 40px;*/
                }


        #top_header .menu_box .menu_list {
            position: absolute;
            top: 100px;
            margin: auto;
            height: auto;
            width: 150px;
            z-index: 1;
            top: 30px;
            right: 150px;
            display: none;
        }

            #top_header .menu_box .menu_list .blank {
                background-color: #ffffff00;
                height: 20px;
            }

            #top_header .menu_box .menu_list:hover {
                display: block;
            }

            #top_header .menu_box .menu_list ul {
                border-radius: 5px;
                box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
                border: 1px solid #565656;
                display: flex;
                align-items: center;
                position: relative;
                background: #f2f1f1;
                flex-direction: column;
                flex-wrap: nowrap;
            }

                #top_header .menu_box .menu_list ul li {
                    display: flex;
                    position: relative;
                    height: 35px;
                    background-color: white;
                    align-items: center;
                    border-bottom: 1px solid #acacac;
                    width: 100%;
                    justify-content: center;
                    cursor: pointer;
                    font-size: 13px;
                    font-weight: 400;
                }


                    #top_header .menu_box .menu_list ul li a {
                        text-decoration: none;
                        color: #333;
                        width: 100%;
                        height: 100%;
                        text-align: center;
                        vertical-align: middle;
                        display: flex;
                        align-items: center;
                        flex-wrap: nowrap;
                        justify-content: center;
                        flex-direction: row;
                    }

                    #top_header .menu_box .menu_list ul li:first-child {
                        border-top-left-radius: 5px;
                        border-top-right-radius: 5px;
                    }

                    #top_header .menu_box .menu_list ul li:last-child {
                        border-bottom-left-radius: 5px;
                        border-bottom-right-radius: 5px;
                    }


                    #top_header .menu_box .menu_list ul li:hover {
                        background-color: #acacac50;
                    }

                        #top_header .menu_box .menu_list ul li:hover a {
                            color: #333;
                        }

#mi-push-iframe-box {
    bottom: 60px!important;
}

#top_header2 {
    width: 100%;
    height: 40px;
    position: absolute;
    top: 60px;
    border-bottom: solid 2px #5871ae;
    background-color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
}

    #top_header2 .search_box {
        width: 480px;
    }

    #top_header2 .category_box {
        width: 100%;
        padding: 0 20px 0 20px;
        display: flex;
        flex-direction: row;
    }

    #top_header2 .item_tool {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }


        #top_header2 .item_tool > div {
            position: relative;
            margin: 0 20px;
            border-radius: 20px;
            cursor: pointer;
            border: 1px solid #666;
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 5px 10px 5px 10px;
            border-color: #dddddd63;
            min-width: 100px;
            /*overflow: hidden;*/
            text-overflow: ellipsis;
            word-break: break-all;
            white-space: nowrap;
            background-color: #ececec9f;
        }

            #top_header2 .item_tool > div.active {
                font-size: 12px;
                border-color: #ddd;
                background-color: #12368c;
                color: white !important;
                border: none;
            }

            #top_header2 .item_tool > div:not(.active):hover {
                background-color: #f5f5f5;
                font-weight: 500;
                color: gray;
            }

            #top_header2 .item_tool > div:first-child {
                margin-left: 0;
            }

            #top_header2 .item_tool > div:last-child {
                margin-right: 0;
            }

            #top_header2 .item_tool > div:not(.active):hover p {
                font-weight: 500;
            }

            #top_header2 .item_tool > div p {
                line-height: 16px;
                display: block;
                letter-spacing: 2px;
                font-size: 12px;
            }

            #top_header2 .item_tool > div.active p {
                color: white;
                font-weight: 500;
            }

            #top_header2 .item_tool > div > .detail_ballon {
                display: inline-block;
                margin: 0 auto 10px;
                font-size: 12px;
                font-weight: 400;
                top: -27px;
                padding: 5px 10px;
                background: white;
                color: #12368c;
                border-radius: 50px;
                left: 50px;
                box-shadow: 1px 1px 1px #12368c;
                letter-spacing: 0.5px;
                z-index: 100000;
                position: absolute;
                border: 1px solid #12368c;
                display: none;
            }

            #top_header2 .item_tool > div:hover > .detail_ballon {
                display: block;
            }


            #top_header2 .item_tool > div > .detail_ballon::before {
                width: 26px;
                height: 18px;
                content: '';
                display: block;
                position: absolute;
                background-image: url(../images/arrow0_wrap.png);
                background-repeat: no-repeat;
                background-position: center;
                bottom: -13px;
                left: 8px;
                background-size: cover;
            }


    #top_header2 .item_box {
        display: block;
        flex-direction: row;
        justify-content: left;
        align-items: center;
        width: fit-content;
        align-content: center;
        flex-wrap: nowrap;
        width: 100%;
        padding: 0 20px 0 40px;
    }

        #top_header2 .item_box .group {
            /*border: 1px solid #acacac66;*/
            border-radius: 20px;
            margin: 0 10px;
            /*display: none;*/
        }

        #top_header2 .item_box .check_item {
            display: flex;
            /*margin-right: 10px;*/
            font-size: 15px;
            cursor: pointer;
            /*border: 1px solid #acacac;*/
            border-radius: 20px;
            height: 40px;
            text-align: center;
            align-content: center;
            align-items: center;
            justify-content: center;
            flex-direction: row-reverse;
            justify-items: center;
            padding: 0 10px;
            font-weight: 500;
        }

            #top_header2 .item_box .check_item input {
                opacity: 0;
                cursor: pointer;
                width: 5px;
            }

        #top_header2 .item_box .checkmark {
            position: relative;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #eee;
            border-radius: 50%;
        }

        #top_header2 .item_box .check_item:hover input ~ .checkmark {
            background-color: #e8f1f8;
        }

        #top_header2 .item_box .check_item input:checked ~ .checkmark {
            background-color: #3F51B5;
        }

            #top_header2 .item_box .check_item input:checked ~ .checkmark.size {
                background-color: #8BC34A;
            }

        #top_header2 .item_box .check_item .checkmark:after {
            content: "";
            position: absolute;
            display: block;
        }

        #top_header2 .item_box .check_item input:checked ~ .checkmark:after {
            display: block;
        }

        #top_header2 .item_box .check_item .checkmark:after {
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg);
        }

#top_header .account_box {
    float: right;
    /*width: 600px;*/
    min-width: 160px;
    height: 100%;
}

    #top_header .account_box .acc_menu {
        height: 100%;
        display: flex;
        align-items: center;
    }

        #top_header .account_box .acc_menu:hover + .menu_list {
            display: block;
            color: white;
        }


        #top_header .account_box .acc_menu a {
            font-size: 13px;
            color: #c8c8c8;
            font-weight: 400;
            width: 100%;
            text-align: center;
        }

            #top_header .account_box .acc_menu a:hover {
                color: white;
            }

            #top_header .account_box .acc_menu a:last-child {
                border-right: none;
                margin-right: 10px;
            }


    #top_header .account_box .menu_list {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 150px;
        border: 1px solid #565656;
        z-index: 1;
        top: 50px;
        right: 10px;
        border-radius: 5px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .account_box .menu_list:hover {
            display: block;
        }

        #top_header .account_box .menu_list ul {
            display: flex;
            align-items: center;
            position: relative;
            background: #f2f1f1;
            border-radius: 5px;
            flex-direction: column;
            flex-wrap: nowrap;
        }

            #top_header .account_box .menu_list ul li {
                display: flex;
                position: relative;
                height: 40px;
                background-color: white;
                align-items: center;
                border-bottom: 1px solid #acacac;
                width: 100%;
                justify-content: center;
                cursor: pointer;
                font-size: 13px;
                font-weight: 400;
            }

                #top_header .account_box .menu_list ul li a {
                    text-decoration: none;
                    color: #333;
                    width: 100%;
                    height: 100%;
                    text-align: center;
                    vertical-align: middle;
                    display: flex;
                    align-items: center;
                    flex-wrap: nowrap;
                    justify-content: center;
                    flex-direction: row;
                }

                #top_header .account_box .menu_list ul li:first-child {
                    border-top-left-radius: 5px;
                    border-top-right-radius: 5px;
                }

                #top_header .account_box .menu_list ul li:last-child {
                    border-bottom-left-radius: 5px;
                    border-bottom-right-radius: 5px;
                }


                #top_header .account_box .menu_list ul li:hover {
                    background-color: #acacac50;
                }

#top_header .item_tool {
    margin-left: 0;
    margin-right: 20px;
    display: block;
    width: 100%;
    color: white;
}

    #top_header .item_tool > ul {
        display: flex;
        justify-content: flex-start;
        flex-direction: row;
    }

        #top_header .item_tool > ul > li {
            position: relative;
            margin: 0 5px;
            border-radius: 20px;
            cursor: pointer;
            /*box-shadow: 0px 3px 14px 1.1px rgb(50 51 51 / 10%);*/
            transition: all .3s;
            /*border: 1px solid #666;*/
            width: 130px;
            height: 40px;
            /*background: #fff;*/
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 500;
        }

            #top_header .item_tool > ul > li > i {
                color: white;
            }

            #top_header .item_tool > ul > li:first-child {
                margin-left: 0;
            }

            #top_header .item_tool > ul > li:last-child {
                margin-right: 0;
            }

    #top_header .item_tool > .opennav {
        display: none;
    }

    #top_header .item_tool > ul > li.active {
        border: solid 2px white;
        font-weight: 400;
    }

    #top_header .item_tool > ul > li p {
        font-size: 14px;
        line-height: 16px;
        color: white;
        display: block;
        /* width: 100%; */
        margin-right: 5px;
    }

    #top_header .item_tool > ul > li > p > a {
        color: white;
    }

    #top_header .item_tool > ul > li.active > p {
        color: white;
    }



    #top_header .item_tool .item.no_0 {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 300px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 300px;
        border-radius: 10px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .item_tool .item.no_0 .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_0 .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_0 .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_0 .segment {
            padding: 15px 0;
        }

            #top_header .item_tool .item.no_0 .segment > div {
                padding: 0 20px;
                text-align: left;
            }

                #top_header .item_tool .item.no_0 .segment > div > ul {
                    display: flex;
                    border: solid 1px #ddd;
                    width: 100%;
                    margin-top: 10px;
                    margin-bottom: 15px;
                    border-radius: 5px;
                    overflow: hidden;
                }

                    #top_header .item_tool .item.no_0 .segment > div > ul li {
                        width: 30px;
                        height: 30px;
                        align-items: center;
                        justify-content: center;
                        display: flex;
                        width: 100%;
                        cursor: pointer;
                        border-right: 2px solid #f2f1;
                    }


                        #top_header .item_tool .item.no_0 .segment > div > ul li:last-child {
                            border-right: none;
                        }

                    #top_header .item_tool .item.no_0 .segment > div > ul.push li:hover {
                        background-color: rgb(240 240 240);
                    }

                    #top_header .item_tool .item.no_0 .segment > div > ul.push li:active {
                        background-color: #12368C;
                        color: #ffffff;
                    }

                    #top_header .item_tool .item.no_0 .segment > div > ul:not(.push) li.active {
                        color: #fff;
                        background: #12368C;
                    }

                #top_header .item_tool .item.no_0 .segment > div > .time_box {
                    display: flex;
                    align-items: center;
                    margin-top: 10px;
                }

                    #top_header .item_tool .item.no_0 .segment > div > .time_box span {
                        margin: 0 10px;
                    }

                    #top_header .item_tool .item.no_0 .segment > div > .time_box input {
                        width: 72px;
                        height: 28px;
                        border: solid 1px #ddd;
                        border-radius: 5px;
                        text-align: center;
                    }

    #top_header .item_tool .item.no_3 {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 180px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 300px;
        border-radius: 10px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .item_tool .item.no_3 .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_3 .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_3 .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_3 .segment {
            /*padding: 5px 0;*/
        }

            #top_header .item_tool .item.no_3 .segment > div {
                padding: 0 10px;
                text-align: left;
            }

                #top_header .item_tool .item.no_3 .segment > div > ul {
                    display: flex;
                    width: 100%;
                    margin: 10px 0;
                    overflow: hidden;
                    flex-direction: column;
                }

                    #top_header .item_tool .item.no_3 .segment > div > ul li {
                        width: 30px;
                        height: 35px;
                        align-items: center;
                        justify-content: center;
                        display: flex;
                        width: 100%;
                        cursor: pointer;
                        border-radius: 5px;
                        margin: 2px 0 2px 0;
                        font-size: 14px;
                    }

                        #top_header .item_tool .item.no_3 .segment > div > ul li.active {
                            background-color: rgb(18 54 140);
                            font-weight: 400;
                            color: white;
                        }



                    #top_header .item_tool .item.no_3 .segment > div > ul.push li:not(.active):hover {
                        background-color: rgb(240 240 240);
                    }

                    #top_header .item_tool .item.no_3 .segment > div > ul.push li:active {
                        background-color: #12368C;
                        color: #ffffff;
                    }

                    #top_header .item_tool .item.no_3 .segment > div > ul:not(.push) li.active {
                        color: #fff;
                        background: #12368C;
                    }

                #top_header .item_tool .item.no_3 .segment > div > .time_box {
                    display: flex;
                    align-items: center;
                    margin-top: 10px;
                }

                    #top_header .item_tool .item.no_3 .segment > div > .time_box span {
                        margin: 0 10px;
                    }

                    #top_header .item_tool .item.no_3 .segment > div > .time_box input {
                        width: 72px;
                        height: 28px;
                        border: solid 1px #ddd;
                        border-radius: 5px;
                        text-align: center;
                    }

    #top_header .item_tool .item.no_4 {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 150px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 300px;
        border-radius: 10px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .item_tool .item.no_4 .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_4 .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_4 .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_4 .segment {
            /*padding: 5px 0;*/
        }

            #top_header .item_tool .item.no_4 .segment > div {
                padding: 0 10px;
                text-align: left;
            }

                #top_header .item_tool .item.no_4 .segment > div > ul {
                    display: flex;
                    width: 100%;
                    margin: 10px 0;
                    overflow: hidden;
                    flex-direction: column;
                }

                    #top_header .item_tool .item.no_4 .segment > div > ul li {
                        width: 30px;
                        height: 35px;
                        align-items: center;
                        justify-content: center;
                        display: flex;
                        width: 100%;
                        cursor: pointer;
                        border-radius: 5px;
                        margin: 2px 0 2px 0;
                        font-size: 14px;
                    }

                        #top_header .item_tool .item.no_4 .segment > div > ul li.active {
                            background-color: rgb(18 54 140);
                            font-weight: 400;
                            color: white;
                        }



                    #top_header .item_tool .item.no_4 .segment > div > ul.push li:not(.active):hover {
                        background-color: rgb(240 240 240);
                    }

                    #top_header .item_tool .item.no_4 .segment > div > ul.push li:active {
                        background-color: #12368C;
                        color: #ffffff;
                    }

                    #top_header .item_tool .item.no_4 .segment > div > ul:not(.push) li.active {
                        color: #fff;
                        background: #12368C;
                    }

                #top_header .item_tool .item.no_4 .segment > div > .time_box {
                    display: flex;
                    align-items: center;
                    margin-top: 10px;
                }

                    #top_header .item_tool .item.no_4 .segment > div > .time_box span {
                        margin: 0 10px;
                    }

                    #top_header .item_tool .item.no_4 .segment > div > .time_box input {
                        width: 72px;
                        height: 28px;
                        border: solid 1px #ddd;
                        border-radius: 5px;
                        text-align: center;
                    }


    #top_header .item_tool .item .segment > div.btn_box {
        padding-top: 20px;
        border-top: 1px solid #ddd;
        padding: 0;
        margin-top: 20px;
        display: flex;
    }

        #top_header .item_tool .item .segment > div.btn_box > button {
            background: #fff;
            display: block;
            margin: 0 auto;
            width: 120px;
            height: 40px;
            border: solid 1px #aaa;
            color: #12368C;
            margin-top: 20px;
            border-radius: 20px;
            margin: 20px 10px 0 10px;
            font-weight: 500;
        }

            #top_header .item_tool .item .segment > div.btn_box > button:hover {
                border: solid 1px #12368C;
            }

            #top_header .item_tool .item .segment > div.btn_box > button.reset {
                width: 40%;
            }

            #top_header .item_tool .item .segment > div.btn_box > button.submit {
                width: 60%;
                background-color: #f5f5f6;
            }

    /*2번째*/
    #top_header .item_tool .item.no_1 {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: 900px;
        max-height: 80vh;
        max-width: 90vh;
        width: 900px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 410px;
        border-radius: 10px;
        border-end-end-radius: unset;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
        overflow: auto;
        resize: both;
    }

        #top_header .item_tool .item.no_1 .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_1 .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_1 .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_1 .segment {
            padding: 15px 0;
            height: calc(100% - 45px - 80px);
        }

            #top_header .item_tool .item.no_1 .segment hr {
                border: solid 1px #dadada;
            }

            #top_header .item_tool .item.no_1 .segment .content {
                padding: 0 20px;
                text-align: left;
                height: 100%;
            }

                #top_header .item_tool .item.no_1 .segment .content p {
                    margin-bottom: 10px;
                }

                #top_header .item_tool .item.no_1 .segment .content .category_card_list {
                    width: 100%;
                    height: 100%;
                    display: flex;
                    padding-top: 10px;
                }

                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card {
                        width: 100%;
                        min-width: 250px;
                        max-width: calc(100% / 3);
                        /*border-right: 1px solid #cccccc;*/
                        padding: 10px;
                    }

                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card:first-child {
                            margin-left: 0;
                        }

                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card:last-child {
                            margin-right: 0;
                            /*border-right: none;*/
                        }

                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header {
                            margin-bottom: 20px;
                        }

                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header .title_container {
                                position: relative;
                                width: 100%;
                            }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header .title_container img {
                                    border-radius: 5px;
                                    margin-bottom: 10px;
                                    width: 100%;
                                    height: 120px;
                                    object-fit: cover;
                                }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header .title_container .overlay {
                                    position: absolute;
                                    top: 0;
                                    left: 0;
                                    width: 100%;
                                    height: 100%;
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                }

                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header .title_container .overlay p {
                                        color: white;
                                        font-size: 18px;
                                        background: linear-gradient(to bottom, rgb(0,0,0, 0.8), rgb(0,0,0, 0.0));
                                        width: 100%;
                                        text-align: center;
                                        height: 100%;
                                        vertical-align: middle;
                                        display: flex;
                                        align-items: flex-start;
                                        justify-content: flex-start;
                                        padding: 10px;
                                        border-radius: 10px;
                                        font-weight: 500;
                                    }

                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .header .desc {
                                margin-bottom: 20px;
                                font-weight: 500;
                                height: 20px;
                                display: block;
                            }

                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body {
                            margin-right: -6px;
                            height: calc(100% - 260px);
                            padding: 0 5px;
                            border-right: solid 1px #cccccc;
                        }

                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list {
                                width: 100%;
                                height: 100%;
                                overflow: scroll;
                                overflow-x: hidden;
                                overflow-y: auto;
                            }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item {
                                    width: 100%;
                                    /* border-bottom: solid 1px #cccccc; */
                                    display: flex;
                                    flex-direction: row;
                                    flex-wrap: nowrap;
                                    justify-content: flex-start;
                                    align-items: center;
                                    padding: 2px 10px 2px 5px;
                                    border-radius: 5px;
                                }

                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item.active {
                                        /*background: #e8e8e8;*/
                                    }


                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item:hover {
                                        background: #e8e8e86f;
                                        cursor: pointer;
                                    }

                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .left {
                                        position: relative;
                                    }

                                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .left img {
                                            width: 100px;
                                            min-width: 42px;
                                            height: 38px;
                                            object-fit: cover;
                                            border-radius: 4px;
                                            opacity: 0.5;
                                        }

                                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .left img.active {
                                                opacity: 1.0;
                                            }

                                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .left i {
                                            position: absolute;
                                            right: 0;
                                            top: -4px;
                                            color: #25a23b;
                                            background-color: white;
                                            border-radius: 10px;
                                            border: solid 1.5px white;
                                            display: none;
                                        }

                                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .left i.checked {
                                                display: block;
                                            }


                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .right .name {
                                        font-size: 12px;
                                        color: #12368c;
                                        font-weight: 500;
                                        margin: 0 0 5px 0;
                                    }

                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .right .desc {
                                        font-size: 11px;
                                        color: dimgray;
                                    }

                                    #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .body .list .item .right {
                                        height: 100%;
                                        padding: 5px;
                                        font-weight: 400;
                                        display: flex;
                                        align-items: flex-start;
                                        flex-direction: column;
                                        align-content: flex-start;
                                        flex-wrap: nowrap;
                                        overflow: hidden;
                                        white-space: nowrap;
                                        text-overflow: ellipsis;
                                    }

                        #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .bottom {
                            padding-top: 20px;
                            border-top: 1px solid #ddd;
                            padding: 0;
                            display: flex;
                            font-weight: 500;
                            justify-content: center;
                            height: 60px;
                        }

                            #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .bottom > button {
                                background: #fff;
                                display: block;
                                margin: 0 auto;
                                width: 120px;
                                border: solid 1px #aaa;
                                color: #12368C;
                                margin-top: 20px;
                                border-radius: 20px;
                                margin: 20px 10px;
                                height: 30px;
                                font-weight: 400;
                                font-size: 12px;
                            }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .bottom > button:hover {
                                    border: solid 1px #12368C;
                                }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .bottom > button.reset.all {
                                    width: 80px;
                                }

                                #top_header .item_tool .item.no_1 .segment .content .category_card_list .card .bottom > button.submit {
                                    width: 40%;
                                    min-width: 100px;
                                    background-color: #f5f5f6;
                                    height: 30px;
                                    font-weight: 400;
                                    font-size: 12px;
                                }

            #top_header .item_tool .item.no_1 .segment .btn_box.sticky {
                height: 80px;
                position: absolute;
                bottom: 0;
                width: 100%;
                display: flex;
                border: none;
                margin: 0;
                align-items: center;
                justify-content: center;
            }

                #top_header .item_tool .item.no_1 .segment .btn_box.sticky button {
                    width: 400px;
                    margin: 10px;
                }

            #top_header .item_tool .item.no_1 .segment .content > ul {
                display: flex;
                border: solid 1px #ddd;
                width: 100%;
                margin-top: 10px;
                margin-bottom: 15px;
                border-radius: 5px;
                overflow: hidden;
            }

                #top_header .item_tool .item.no_1 .segment .content > ul li {
                    width: 30px;
                    height: 30px;
                    align-items: center;
                    justify-content: center;
                    display: flex;
                    width: 100%;
                    cursor: pointer;
                }

                    #top_header .item_tool .item.no_1 .segment .content > ul li:last-child {
                        border-right: none;
                    }

                    #top_header .item_tool .item.no_1 .segment .content > ul li.active {
                        color: #fff;
                        background: #12368C;
                    }

            #top_header .item_tool .item.no_1 .segment .content > .time_box {
                display: flex;
                align-items: center;
                margin-top: 10px;
            }

                #top_header .item_tool .item.no_1 .segment .content > .time_box span {
                    margin: 0 10px;
                }

                #top_header .item_tool .item.no_1 .segment .content > .time_box input {
                    width: 72px;
                    height: 28px;
                    border: solid 1px #ddd;
                    border-radius: 5px;
                    text-align: center;
                }

    /*3번째(이벤트)*/
    #top_header .item_tool .item.no_2.event {
        position: absolute;
        top: 400px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 900px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 520px;
        border-radius: 10px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .item_tool .item.no_2.event .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_2.event .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_2.event .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_2.event .segment {
            padding: 5px 0;
        }

        #top_header .item_tool .item.no_2.event .segment {
            padding: 0;
        }

            #top_header .item_tool .item.no_2.event .segment > div {
                display: flex;
                flex-direction: row;
                padding: 0;
            }

            #top_header .item_tool .item.no_2.event .segment .item_list {
                max-width: 200px;
                min-width: 200px;
            }

                #top_header .item_tool .item.no_2.event .segment .item_list ul {
                    width: 100%;
                    text-align: center;
                    border: none;
                }

                    #top_header .item_tool .item.no_2.event .segment .item_list ul li {
                        width: 100%;
                        line-height: 1.5;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border-bottom: solid 1px rgb(170 170 170 / 0.50);
                        padding: 0 10px;
                        background-color: #d5e2f846;
                        font-size: 12px;
                        cursor: pointer;
                        min-height: 30px;
                        vertical-align: middle;
                        padding: 5px;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item_list ul li:hover {
                            text-decoration: underline;
                        }

                        #top_header .item_tool .item.no_2.event .segment .item_list ul li.active {
                            background-color: white;
                            border: solid 1px rgb(18 54 140);
                            border-right: solid 2px white;
                            font-size: 12px;
                            z-index: 100;
                            font-weight: 700;
                            position: relative;
                            color: #12368c;
                        }

            #top_header .item_tool .item.no_2.event .segment .item {
                padding: 5px;
                text-align: left;
                display: flex;
                flex-direction: row;
                border-left: solid 1px rgb(18 54 140);
                border-top: solid 1px rgb(18 54 140);
                left: -1px;
                position: relative;
                display: none;
                width: 100%;
                max-height: 350px;
                height: 350px;
            }

                #top_header .item_tool .item.no_2.event .segment .item.active {
                    display: flex;
                }

                #top_header .item_tool .item.no_2.event .segment .item .left {
                    width: 60%;
                    margin: 5px;
                    border: solid 1px rgb(170 170 170 / 0.50);
                    display: flex;
                    flex-direction: column;
                }

                    #top_header .item_tool .item.no_2.event .segment .item .left .top {
                        width: 100%;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item .left .top img {
                            width: 100%;
                            max-height: 270px;
                            border: none;
                            object-fit: cover;
                        }

                    #top_header .item_tool .item.no_2.event .segment .item .left .bottom {
                        width: 100%;
                        padding: 5px;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item .left .bottom p.subject {
                            font-size: 20px;
                            font-weight: 700;
                            color: rgb(14 72 152);
                        }

                        #top_header .item_tool .item.no_2.event .segment .item .left .bottom p.desc {
                            padding: 5px 0;
                            font-size: 15px;
                            font-weight: 500;
                        }

                #top_header .item_tool .item.no_2.event .segment .item .right {
                    width: 40%;
                    margin: 5px;
                    display: flex;
                    flex-direction: column;
                }

                #top_header .item_tool .item.no_2.event .segment .item .right {
                    border: solid 1px rgb(170 170 170 / 0.50);
                    /*min-height: 60%;*/
                    padding: 10px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    overflow: hidden;
                }

                    #top_header .item_tool .item.no_2.event .segment .item .right p.subject {
                        font-size: 18px;
                        font-weight: 700;
                        color: rgb(14 72 152);
                        text-align: center;
                        margin: 10px 0 10px 0;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item .right p.subject.sub {
                            margin-top: 5px;
                            font-size: 14px;
                            font-weight: 500;
                            color: rgb(14 72 152);
                            text-align: center;
                            text-decoration: underline;
                        }


                    #top_header .item_tool .item.no_2.event .segment .item .right p.desc {
                        margin-top: 10px;
                        font-size: 13px;
                        font-weight: 400;
                        line-height: 18px;
                        text-align: center;
                    }

                    #top_header .item_tool .item.no_2.event .segment .item .right .talk_box {
                        background: rgb(255 255 255 / 5%);
                        left: 120px;
                        margin: 20px 0 20px 0;
                        backdrop-filter: blur(50px);
                        border-radius: 10px;
                        box-shadow: inset 0px 0px 50px 50px white;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        vertical-align: middle;
                        line-height: 1.7;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk {
                            width: 190px;
                            height: 43px;
                            box-shadow: 2px 1px 5px 2px #00000012;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: row;
                            vertical-align: middle;
                            border-radius: 100px;
                            padding-right: 12px;
                            flex-wrap: nowrap;
                            cursor: pointer;
                            border: 1px solid #d9d9d9;
                            transition: all 0.1s ease-in-out;
                        }

                            #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk:hover {
                                box-shadow: 4px 2px 5px 2px #00000012;
                                transform: scale(1.02);
                            }

                                #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk:hover img {
                                    transform: scale(1.1);
                                }

                                #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk:hover span {
                                    color: black;
                                }


                            #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk img {
                                width: 60px;
                                position: relative;
                                left: -10px;
                                transition: all 0.1s ease-in-out;
                            }

                            #top_header .item_tool .item.no_2.event .segment .item .right .talk_box .chattalk span {
                                font-weight: 700;
                                position: relative;
                                left: -5px;
                                color: dimgray;
                            }


                    #top_header .item_tool .item.no_2.event .segment .item .right .bottom {
                        border: solid 1px rgb(170 170 170 / 0.50);
                        height: 40%;
                        border-bottom-right-radius: 10px;
                        padding: 10px;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                    }

                        #top_header .item_tool .item.no_2.event .segment .item .right .bottom p.subject {
                            font-size: 18px;
                            font-weight: 700;
                            color: rgb(14 72 152);
                            text-align: center;
                        }

                            #top_header .item_tool .item.no_2.event .segment .item .right .bottom p.subject.sub {
                                margin-top: 5px;
                                font-size: 14px;
                                font-weight: 500;
                                color: rgb(14 72 152);
                                text-align: center;
                                text-decoration: underline;
                            }


                        #top_header .item_tool .item.no_2.event .segment .item .right .bottom p.desc {
                            margin-top: 10px;
                            font-size: 13px;
                            font-weight: 400;
                            line-height: 18px;
                            text-align: center;
                        }

    /*3번째*/
    #top_header .item_tool .item.no_2 {
        position: absolute;
        top: 100px;
        margin: auto;
        background: #fff;
        height: auto;
        width: 300px;
        border: 1px solid #565656;
        z-index: 1;
        top: 70px;
        left: 520px;
        border-radius: 10px;
        box-shadow: 1px 1px 1px 1.1px rgb(50 51 51 / 50%);
        display: none;
    }

        #top_header .item_tool .item.no_2 .title {
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
            height: 45px;
            background: #f2f1f1;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

            #top_header .item_tool .item.no_2 .title h4 {
                font-size: 18px;
                font-weight: 700;
            }

            #top_header .item_tool .item.no_2 .title button {
                width: 55px;
                height: 44px;
                background: #f2f1f1;
                background-image: url("../images/close.png");
                background-position: center;
                background-size: 14px;
                background-repeat: no-repeat;
                display: block;
                position: absolute;
                right: 0;
                top: 0;
                border-top-right-radius: 10px;
            }

        #top_header .item_tool .item.no_2 .segment {
            padding: 15px 0;
        }

            #top_header .item_tool .item.no_2 .segment > div {
                padding: 0 20px;
                text-align: left;
            }

                #top_header .item_tool .item.no_2 .segment > div > ul {
                    display: flex;
                    border: solid 1px #ddd;
                    width: 100%;
                    margin-top: 10px;
                    margin-bottom: 15px;
                    border-radius: 5px;
                    overflow: hidden;
                }

                    #top_header .item_tool .item.no_2 .segment > div > ul li {
                        width: 30px;
                        height: 30px;
                        align-items: center;
                        justify-content: center;
                        display: flex;
                        width: 100%;
                        cursor: pointer;
                    }

                        #top_header .item_tool .item.no_2 .segment > div > ul li:last-child {
                            border-right: none;
                        }

                        #top_header .item_tool .item.no_2 .segment > div > ul li.active {
                            color: #fff;
                            background: #12368C;
                        }

                #top_header .item_tool .item.no_2 .segment > div > .time_box {
                    display: flex;
                    align-items: center;
                    margin-top: 10px;
                }

                    #top_header .item_tool .item.no_2 .segment > div > .time_box span {
                        margin: 0 10px;
                    }

                    #top_header .item_tool .item.no_2 .segment > div > .time_box input {
                        width: 72px;
                        height: 28px;
                        border: solid 1px #ddd;
                        border-radius: 5px;
                        text-align: center;
                    }


@media (max-width: 1600px) {

    #top_header .item_box .group {
        display: none;
    }
}

@media (max-width: 1200px) {

    #top_header .item_tool {
        display: none;
    }

    #top_header .item_box {
        display: none;
    }

    #top_header .menu_box {
        display: none;
    }

    #top_header .account_box {
        display: none;
    }

    #top_header .vertical {
        display: none;
    }
}
