#app {
    background: #F7F7F7;
}



/* select 选项 */
.select-container {
    padding: 34px 40px;
    box-sizing: border-box;
    border-radius: 20px;
    background: rgba(255, 255, 255, .6);
    margin-bottom: 35px;
}

.select-container .row {
    margin: 24px 0;
}

.select-container .label-title {
    width: 90px;
    font-size: 18px;
    color: #151515;
    margin-right: 25px;
    flex-shrink: 0;
    margin-top: 4px;
    margin-bottom: 4px;
}

.select-container .options .item {
    margin: 4px 15px;
    font-size: 18px;
    color: #717171;
    cursor: pointer;
}

.select-container .options .item.active {
    color: #004CA0;
}

.select-container .options .item:hover {
    color: #004CA0;
}

.select-container .options .all {
    font-size: 18px;
    font-weight: 500;
    color: #004CA0;
    cursor: pointer;
}

/* 排序搜索 */
.sort-container {
    margin-bottom: 35px;
}

.sort-container .left {
    font-size: 18px;
    font-weight: 500;
    color: #004CA0;
}

.sort-container .left .new {
    margin-right: 45px;
}

.sort-container .sort-t {
    display: none;
}

.sort-container .sort-item {
    cursor: pointer;
}

.sort-container .sort-item.active .sort-b {
    display: none;
}

.sort-container .sort-item.active .sort-t {
    display: block;
}

.sort-container .search {
    position: relative;
}

.sort-container .search::after {
    display: block;
    content: '';
    position: absolute;
    width: 1px;
    height: 18px;
    background: #004EA1;
    right: 25px;
    top: 50%;
    transform: translate(0, -50%);
}


.sort-container .search .search-icon {
    position: absolute;
    width: 11px;
    height: 11px;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    cursor: pointer;
}

.sort-container .search input.form-control {
    border: none;
    background: none;
    box-shadow: none;
    padding-left: 8px;
    padding-right: 40px;
    width: 176px;
    height: 30px;
    border-radius: 34px;
    box-sizing: border-box;
    border: 1px solid #004EA1;

    font-size: 14px;
    color: #767676;
}

/* 搜索结果 */
.searhc-res-container{
    margin-bottom: 50px;
}
.searhc-res-container .res-item {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(13, 35, 62, 0.05);
    border-radius: 10px;
    margin: 15px 0;
}

.searhc-res-container .cover {
    width: 100%;
    height: 221px;
    border-radius: 10px 10px 0px 0px;
}

.searhc-res-container .info {
    padding: 15px 12px;
    box-sizing: border-box;
}

.searhc-res-container .left .top span {
    font-size: 17px;
    font-weight: bold;
    color: #151515;
}

.searhc-res-container .left .top>span+span:before {
    color: #CCCCCC;
    content: "|";
    padding: 0 5px;
}

.searhc-res-container .left .bottom {
    margin-top: 10px;
}

.searhc-res-container .avatar {
    width: 26px;
    height: 26px;
    object-fit: cover;
    margin-right: 8px;
}

.searhc-res-container .username {
    font-size: 12px;
    color: #595959;
}

.searhc-res-container .addr {
    font-size: 17px;
    font-weight: bold;
    color: #151515;
    text-align: right;
}

.searhc-res-container .contact-btn {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    width: 96px;
    height: 30px;
    border-radius: 40px;
    cursor: pointer;
    background: linear-gradient(77deg, #8AB4E0 -6%, #3585DA 112%);
}

