.item-wrap {
    height: 100px;
    width: 100%;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.item-date {
    min-width: 100px;
    -webkit-flex: 1;
    flex: 1;
    border-right: #e0e0e0 solid 1px;
    margin-right: 5px;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.item-date-day {
    color: #31b0d5;
    -webkit-flex: 3;
    flex: 3;
    font-size: 56px;
    text-align: center;
    line-height: 60px;
}

.item-date-month {
    -webkit-flex: 1;
    flex: 1;
    font-size: 18px;
    text-align: center;
}

.item-title {
    -webkit-flex: 4;
    flex: 4;
    padding-left: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 38px;
    text-indent: 2em;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-title {
    -webkit-flex: 4;
    flex: 4;
    padding-left: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 20px;
    text-indent: 2em;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.arrow {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 5px;
    top: 5px;
}