.item {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #eee;
    transition: box-shadow 1s;
}

.item:hover .more {
    /* animation: ainmon 2s; */
    color: #1372ff;
}

.item:hover {
    cursor: pointer;
    box-shadow: 10px 10px 5px #eee;
}

.item:hover .left>img {
    transform: scale(1.2);
    /* animation: ainmon 2s; */
}

.item:hover .rigth .more {
    background-color: #1372ff;
    color: #fff;
}

.lefts {
    /* margin-right: 40px; */
    margin: 20px 40px 20px 0;
    overflow: hidden;
    width: 350px;
    height: 250px;
}

.lefts>img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 1s;
}

.rigth {
    width: 70%;
    margin: 20px 0;

}

.time {
    color: #c5c5c5;
    font-size: 10px;
}

.msg span {
    display: inline-block;
    /* border: 1px solid #eee; */
}

.more {
    float: right;
    margin-right: 20px;
    font-size: 10px;
    width: 50px;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: background-color 2s;
    /* border: 1px solid #eee; */
    /* text-align: center; */
    /* width: 100px; */
    /* height: 40px; */
    /* line-height: 40px; */
}

@keyframes ainmon {
    0% {
        width: 200px;
        height: 200px;
    }

    100% {
        width: 210px;
        height: 210px;
    }
}