.searchBox {
    position: relative;
    padding-top: 5.5rem;
}

.searchBox .top_query {
    background-image: url('../img/query.png');
    background-size: 100% 100%;
    height: 9rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.searchBox .top_query .query_form {
    display: flex;
}

.searchBox .top_query .query_form .search_select {
    width: 6rem;
    height: 3.2rem;
}

.searchBox .top_query .query_form .search_select .form-control {
    height: 3.2rem;
}

.searchBox .top_query .query_form .search_input {
    width: 30rem;
    height: 3.2rem;
    cursor: pointer;
}

.searchBox .top_query .query_form .search_input .form-control {
    height: 3.2rem;
	padding-right: 2rem;
}
.searchBox .top_query .query_form .search_input .input-group-append {
    margin-left: -2rem;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.searchBox .top_query .query_form .search_input .input-group-append img {
    width: 1.6rem;
    height: 1.6rem;
}

.searchBox .query_list {
    background: #F1F4F8;
    box-sizing: border-box;
    padding: 1.2rem 12.05rem;
}

.searchBox .query_list .no_query {
    margin-bottom: 5rem;
}

.searchBox .query_list .content_ul {
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.searchBox .query_list .content_ul li {
    width: 100%;
    height: 100%;
}

.searchBox .query_list .content_ul li a {
    background: #ffffff;
    box-shadow: 0rem 0.8rem 1.2rem -0.8rem rgb(35 115 220 / 16%);
    border-radius: 0.1rem;
    margin-bottom: 0.95rem;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 0.8rem;
    cursor: pointer;
}

.searchBox .query_list .content_ul li a h2 {
    width: 65%;
    font-weight: 400;
    font-size: 1.05rem;
    color: #242939;
    white-space: nowrap;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
}

.searchBox .query_list .content_ul li a .ul_date {
    text-align: left;
    font-size: 1.05rem;
    font-weight: 400;
    color: #63709c;
}

@media (max-width: 768px) {
    .searchBox {
        position: relative;
        padding-top: 4.4rem;
    }

    .searchBox .top_query {
        height: 6rem;
        width: 100%;
    }

    .searchBox .top_query .query_form .search_select {
        width: 7rem;
    }
    .searchBox .top_query .query_form .search_input {
        width: 100%;
        height: 3.2rem;
        cursor: pointer;
    }

    .searchBox .query_list {
        padding: 1.1rem;
    }

    .searchBox .query_list .content_ul li a {
        display: block;
    }
    .searchBox .query_list .content_ul li a h2 {
        width: 100%;
        font-size: 1.05rem;
    }
    .searchBox .query_list .content_ul li a .ul_category {
        width: 60%;
        display: inline-block;
        text-align: left;
        font-size: 1.05rem;
        font-weight: 400;
        color: #63709c;
    }
    .searchBox .query_list .content_ul li a .ul_date {
         width: 30%;
         display: inline-block;
         text-align: left;
         font-size: 1.05rem;
     }
    .searchBox .query_list .content_ul li a .notice_content_ul_img {
        display: inline-block;
        text-align: right;
        background-image: url(../img/arrows.png);
        background-size: 100% 100%;
        height: 0.7rem;
        width: 1.25rem;
    }
    .navbar_box {
        margin: 3rem 0 0 0;
    }
}