.base_flex {
    display: flex;
    align-items: center;
}

.clear_area {
    width: 600px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: flex-end;
}

.cleart_area {
    width: 600px;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cleart_area .search_solutions {
    color: #184382;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 600;
}

.clear_area .clear_button {
    padding: 6px 15px;
    background: #184382;
    border-radius: 5px;
    color: #fff;
    width: fit-content;
    font-size: 14px;
}

.site_box {
    width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.05);
    padding: 12px;
    position: relative;
    background: linear-gradient(to bottom, #e9edf8, #fff);
    background-size: 100% 37px;
    background-position: top;
    background-repeat: no-repeat;
    margin-bottom: 15px;
}

.site_box .site_header {
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 25px;
    border-radius: 10px 10px 0 0;
}

.site_box .site_header .icons {
    color: #184382;
    font-size: 12px;
    margin-left: 8px;
}

.site_box .site_header span {
    color: #184382;
    font-size: 18px;
    margin-left: 12px;
}

.chooseTags {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 10px 25px 0 25px;
    gap: 8px;
}

.otherTags {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    /* padding: 10px 25px 0 25px; */
    gap: 10px;
}

.otherTags .p_label {
    box-sizing: border-box;
    height: 30px;
    padding: 0 10px;
    font-size: 15px;
    line-height: 30px;
    border: 1px solid #e2e5f2;
    border-radius: 30px;
    color: #184382;
}

.otherTags .p_label:hover {
    color: #fff;
    background-color: #1d398b;
    border: 1px solid #1d398b;
    cursor: pointer;
}

.otherTags .p_label:active {
    color: #fff;
    background-color: #1d398b;
    border: 1px solid #1d398b;
    cursor: pointer;
}

.otherTags .p_label.active {
    color: #fff;
    background-color: #1d398b;
    border: 1px solid #1d398b;
    cursor: pointer;
}

.chooseTags .tag_one {
    padding: 1px 13px;
    background-color: #184382;
    color: #fff;
    font-size: 14px;
    border-radius: 20px;
    height: 22px;
    display: flex;
    align-items: center;
}

.chooseTags .tag_one .tag_del {
    font-size: 12px;
    color: #fff;
    margin-left: 6px;
}

.pop_addr_area {
    position: absolute;
    width: 100%;
    height: 310px;
    bottom: -310px;
    background-color: #f5f6fb;
    z-index: 99;
    left: 0;
    right: 0;
    box-sizing: border-box;
    padding: 25px 0;
    transition: all 0.5s ease-in-out;
}

.pop_addr_area .addr_list {
    overflow-y: auto;
    height: 260px;
    padding: 0 15px;
}


/* 自定义滚动条样式 */

.pop_addr_area .addr_list::-webkit-scrollbar {
    width: 6px;
}

.pop_addr_area .addr_list::-webkit-scrollbar-track {
    background: #f5f6fb;
    border-radius: 3px;
}

.pop_addr_area .addr_list::-webkit-scrollbar-thumb {
    background: #8ca1c1;
    border-radius: 3px;
}

.pop_addr_area::-webkit-scrollbar-thumb:hover {
    background: #8ca1c1;
}

.pop_addr_area ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}


/* 选择更多勤務地按钮样式 */

#choose_addr {
    cursor: pointer;
    user-select: none;
}

#choose_addr:hover {
    opacity: 0.8;
}

.search_box_new {
    width: 600px;
    margin: 0 auto 12px;
    border: 1px solid #bfbfbf;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 3px;
}

.search_box_new img {
    width: 25px;
    height: auto;
    margin-left: 15px;
}

.search_box_new input {
    border: unset !important;
    flex: 1;
    margin: 0 15px;
}

.search_box_new .search_confirm {
    background-color: #184382;
    height: 100%;
    padding: 0 35px;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    white-space: nowrap;
}

.mobile_search_confirm {
    background-color: #184382;
    height: 50px;
    width: 96%;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-sizing: border-box;
    margin: 15px auto 10px;
}

.clear_btn {
    float: right;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: #6a5cb2;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.clear_btn_no {
    margin: 0 auto;
    width: 24%;
    padding: 8px 15px;
    border-radius: 6px;
    background-color: #6a5cb2;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.clear_btn img {
    height: 18px;
    width: auto;
}

.clear_btn span {
    margin-left: 6px;
}

.mobile_clear_btn {
    width: 96%;
    margin: 20px auto;
    padding: 15px 0;
    border-radius: 6px;
    background-color: #6a5cb2;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile_clear_btn img {
    height: 18px;
    width: auto;
}

.mobile_clear_btn span {
    margin-left: 6px;
}

@media (max-width: 600px) {
    .mobile_search_confirm {
        display: flex;
    }

    .search_box_new .search_confirm {
        display: none;
    }

    .clear_btn {
        display: none;
    }

    .clear_btn_no {
        display: none;
    }

    .cleart_area {
        margin-top: 0;
    }

    .mobile_clear_btn {
        display: flex;
    }
}

@media (min-width: 602px) {
    .search_box_new .search_confirm {
        display: flex;
    }

    .clear_btn {
        display: flex;
    }

    .mobile_clear_btn {
        display: none;
    }

    .mobile_search_confirm {
        display: none;
    }
}

@media (min-width:1025px) {

    .clear_area,
    .cleart_area,
    .site_box,
    .search_box_new {
        width: 600px;
    }
}

@media screen and (min-width:1025px) and (max-width:1170px) {

    .clear_area,
    .cleart_area,
    .site_box,
    .search_box_new {
        width: 450px;
    }
}

@media (max-width: 1024px) {

    .clear_area,
    .site_box,
    .search_box_new {
        width: 96%;
    }

    .clear_btn {
        display: none;
    }

    .clear_btn_no {
        display: none;
    }
}

.logo_m {
    height: 35px;
    width: auto;
    position: absolute;
    left: calc(50% - 100px);
    top: 5px;
}

.logo_s {
    height: 35px;
    width: auto;
    position: absolute;
    left: 50px;
    top: 5px;
}

@media (max-width: 900px) {
    .logo_m {
        display: none;
    }
    .logo_s{
        display: block;
    }

}
@media (min-width: 900px) {
    .logo_m {
        display: block;
    }
    .logo_s{
        display:  none;
    }

}