.entrance {
    padding-top: 30px;
}

.entrance .item {
    display: block;
    margin-bottom: 30px;
    box-shadow: 0px 10px 20px rgba(119, 119, 119, 0.2);
}

.entrance .item .msg.right {
    padding: 10px 10px 10px 20px;
    width: calc(100% - 600px);
    height: 235px;
    background-color: rgba(250, 250, 250, 1);
}

.entrance .item .msg.left {
    padding: 10px 20px 10px 10px;
    width: calc(100% - 600px);
    height: 235px;
    background-color: rgba(250, 250, 250, 1);
}

.entrance .item .msg .title {
    font-size: 24px;
}

.entrance .item .msg .title::after {
    content: '';
    display: block;
    margin-top: 10px;
    height: 2px;
    width: 100px;
    background-color: #ccc;
}

.entrance .item .msg .msgContent {
    margin-top: 15px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.entrance .item .msg .btn {
    margin-top: 10px;
    display: inline-block;
    padding: 0 10px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background-color: #0090FF;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}

.entrance img {
    width: 600px;
    height: 235px;
}

@media screen and (max-width:768px) {

    .entrance .item .msg.right,
    .entrance .item .msg.left {
        width: 100%;
        height: auto;
    }

    .entrance img {
        width: 100%;
        height: auto;
    }
}