/* 搜索框盒子 */
.content {
    border: 1px solid #e6e6e6;
    overflow: hidden;
    background: #fff;
    border-bottom: 0;
}

/* 搜索框上方内容 */
.screen_box {
    border-top: 1px solid #f6f6f6;
    margin-top: -1px;
    overflow: hidden;
    padding: 5px 20px;
    min-height: 60px;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screen_item {
    display: flex;
    align-items: center;
}

.screen_label {
    margin-right: 10px;
    color: #b2b2b2;
}

.screen_option {
    width: 120px;
    height: 33px;
    outline: none;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}

.screen_btn {
    color: #fff;
    width: 100px;
    height: 33px;
    line-height: 33px;
    background-color: #e80002;
    border-radius: 5px;
}

/* 搜索框下方排序按钮 */
.attribute {
    height: 42px;
    border: 1px solid #e6e6e6;
    border-top: 1px solid #000;
    background: #fafafa;
    padding: 0 460px 0 107px;
    line-height: 42px;
    position: relative;
}

.sort_ul {
    height: 42px;
    position: absolute;
    right: 260px;
    top: 0;
}

.sort_ul li {
    float: left;
    height: 42px;
    width: 65px;
    text-align: center;
    cursor: pointer;
}

.sort_ul li.hover {
    background: #e60000;
    color: #fff;
    cursor: default;
}

.flip_box {
    height: 42px;
    position: absolute;
    right: 20px;
    top: 0;
}

.flip_box span, .flip_box a {
    margin-left: 10px;
}

.flip_box a {
    font-weight: bold;
}


