﻿.xiaoxi .appbar {
    background: #32dab9;
    height: 5rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: solid 1px #ccc;
}
.xiaoxi .appbar_title {
    color: #fff;
    font-size: 2rem;
}
.xiaoxi .message_icon {
    width: 2.5rem;
}

.xiaoxi_main{
    padding-top:5rem;
    padding-bottom:5rem;
}
.message_item{
    display:flex;
    padding:1rem 1.5rem;
    padding-right:0;
    padding-bottom:0.5rem;
}
.message_left{
    position:relative;
}
.message_number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    right: 5px;
    top: 0;
    color: #fff;
    background: #fa573e;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}
.message_user{

}
.message_user_type{
    color:#999;
    font-size:1.2rem;
    font-weight:normal;
    margin-left:10px;
}
.message_item_photo {
    height: 5rem;
    width: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 1rem;
}
.message_item_photo img{
    width:100%;
}
.message_item_info {
    width: calc(100% - 6rem);
    border-bottom: solid 0.5px #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-right: 1rem;
    padding: 0.5rem 1rem 1.5rem 0rem;
}
.message_title{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    font-weight:bold;
    font-size:1.5rem;
    color:#000;
    margin-bottom:0.5rem;
}
.message_time{
    color:#999;
    font-weight:normal;
    font-size:1rem;
}
.message_text{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
    color:#999;
    font-size:1.3rem;
}