.switch-group{
    margin-top: 30px;
    margin-bottom: 30px;
    padding-left: 30px;
    overflow: hidden;
}

.switch-group .switch-text:not(.switch-active):hover{
    cursor: pointer;
    color: #337ab7;
}

.switch-text{
    float: left;
    height: 30px;
    padding: 0 15px;
    line-height: 30px;
    border-radius: 15px;
    text-align: center;
}

.switch-active{
    background-color: #629FE9;
    color: #fff;
}

.switch-arrow{
    float: left;
    height: 30px;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 30px;
    text-align: center;
}

.msg-list{
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 12px;
    padding: 5px 20px;
}

.msg-item{
    position: relative;
    height: 120px;
    background-color: #F5F7F8;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s,box-shadow 0.3s;
}

.msg-item:hover{
    transform: scale(1.1);
    box-shadow: 2px 2px 5px #c7c7c7;
    transition: transform 0.3s,box-shadow 0.3s;
}

.msg-img-box{
    position: absolute;
    left: 10px;
    top: 10%;
    bottom: 10%;
}

.msg-img-place{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background-color: #fff;
    padding: 10px;
}

.msg-img-box img{
    width: 100%;
    background-color: #fff;
}

.msg-content{
    padding: 30px 20px;
}

.msg-title{
    font-size: 20px;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-text{
    color: #666666;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.msg-date{
    margin-top: 60px;
    text-align: right;
    font-size: 14px;
    color: #ADADAD;
}

.msg-date-month{
    font-size: 22px;
}

.pop-box{
    position: absolute;
    top: 100%;
    left: 0;
}

@media screen and (max-width: 992px) {
    .msg-item{
        margin-top: 10px;
        height: 120px;
    }

    .msg-img-box{
        display: none;
    }

    .msg-content{
        padding: 10px 20px;
        max-height: 100px;
    }

    .msg-date{
        display: none;
    }
}

@media screen and (max-width: 750px) {

    .switch-group{
        margin-top: 15px;
        margin-bottom: 15px;
        padding-left: 0;
        overflow: hidden;
    }

    .switch-arrow{
        margin-left: 15px;
        margin-right: 15px;
    }

    .msg-item{
        margin-top: 10px;
        height: 120px;
    }

    .msg-img-box{
        display: none;
    }

    .msg-content{
        padding: 10px 20px;
        max-height: 100px;
    }

    .msg-date{
        display: none;
    }
}