.box2 {
    /*height: 86px;*/
    cursor: pointer;
    border-radius: 16px;
    padding: 0px 30px 0px 30px;
    background-color: #fff;
    /*border: 1px solid #e4ecf3;*/
    margin: 20px 0 0 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    box-shadow: 1px 1px 2px #dfd6d6;
    min-height: 7em;
}

.box2:hover {
    transform: translateY(-6px);
    -webkit-transform: translateY(-6px);
    -moz-transform: translateY(-6px);
    box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -moz-box-shadow: 0 26px 40px -24px rgba(0, 36, 100, 0.3);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.xe-comment-entry img {
    float: left;
    display: block;
    border-radius: 50%;

}

.xe-user-img{
        display: flex;
    align-items: center;
}

.img-circle {
    border-radius: 50%;
    width: 3.6em;
    height: 3.6em;
    margin-right: 10px;
    box-shadow: 1px 1px 2px #dfd6d6;
}

.xe-comment{
    margin-top: 0.5em;
    overflow: hidden; /* 确保超出部分被隐藏 */

}

.xe-comment p {
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%; 
    display: inline-block;
}
.overflowClip_1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 1.8em;
    padding-top: 0.25em;
    font-weight: 300;
}
.overflowClip_2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 1.8em;
    margin-bottom: 0.25em;
    font-weight: 300;
}


.submit-tag{
    margin-top: 50px;

}