.searchBox{
    width: 100%;
    background-color: #007ec3;
    margin-top: 20px;
    padding: 20px;
    padding-top: 30px;
    border-radius: 10px;
}

.searchInput{
    width: 100%;
    box-sizing: border-box;
    height: 38px;
    padding: 3px 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
    border-radius: 10px !important;
    overflow: hidden;
}

.searchButtonBox{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.searchButton{
    width: 200px;
    text-align: center;
    box-sizing: border-box;
    background-color: #FFF;
    font-size: 18px;
    color: #007ec3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
}

.listContent{
    margin-top: 20px;
    background-color: #e5e5e5;
    padding: 20px 0;
    border-radius: 10px;
    margin-bottom: 20px;
}

.listItem{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #FFF;
    padding: 0 20px 5px;
    box-sizing: border-box;
    margin-bottom: 10px;
}


.listItem{
    color: #333;
}

.listItem:hover {
    color: #007ac2;
}

.title {
    float: left;
    width: 85%;
    font-size: 15px;
    font-weight: 300;
}

.time{
    font-size: 15px;
    font-weight: 300;
}

@media (max-width: 572px) {
    .title{
        width: 70%;
    }
}