.search {
    display: flex;
    justify-content: center;
    margin-top: 56px;
    height: 51px;
}
.search label input {
    width: 562px;
    height: 100%;
    box-sizing: border-box;
    padding-left: 60px;
    border: 2px solid #cc0000;
    font-size: 14px;
}
.search label input::placeholder {
    font-size: 14px;
    color: #999;
}
.search input[type='submit'] {
    width: 102px;
    height: 100%;
    line-height: 51px;
    text-align: center;
    background-color: #e84252;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}

.list {
    width: 1200px;
    margin: 50px auto 0;
}
.list > .item {
    display: flex;
    align-items: center;
    margin-top: 6px;
    height: 142px;
    background-color: #fff;
}
.list > .item > .img {
    flex-shrink: 0;
    width: 123px;
    line-height: 142px;
    text-align: center;
    background-color: #738be8;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}
.list > .item > .img.want-rent {
    background-color: #32ae9e;
}
.list > .item > .content {
    flex-grow: 1;
    margin-left: 30px;
}
.list > .item > .content > div:first-child {
    font-size: 18px;
    font-weight: bold;
    color: #cc0000;
}
.list > .item > .content > div:nth-child(2) {
    margin-top: 12px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}
.list > .item > .content > div:nth-child(3) {
    margin-top: 6px;
    line-height: 2;
}
.list > .item > .btn {
    flex-shrink: 0;
    margin: 0 38px 0 30px;
    width: 108px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    box-sizing: border-box;
    border: 1px solid #b8b8b8;
    border-radius: 3px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.list > .item > .btn:hover {
    background-color: #738be8;
    border-color: #738be8;
    color: #fff;
}