dresserList.less 1.57 KB
.item_box{
    margin: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px #F2F2F2;
    display: flex;
    align-items: center;
    .head_portrait{
        width: 100px;
        height: 100px;
        border-radius: 100px;
    }
    .user_info{
        margin-left: 30px;
        text-align: left;
        flex: 1;
        .name{
            height:40px;
            font-size:28px;
            font-weight:500;
            color:rgba(51,51,51,1);
            line-height:40px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            /*! autoprefixer: off */
            -webkit-box-orient: vertical;
            /*! autoprefixer: on */
            text-overflow: ellipsis;
            overflow: hidden;
        }
        .desc{
            max-height:63px;
            font-size:24px;
            font-weight:400;
            color:rgba(102,102,102,1);
            line-height:33px;
            margin-top: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            /*! autoprefixer: off */
            -webkit-box-orient: vertical;
            /*! autoprefixer: on */
            text-overflow: ellipsis;
            overflow: hidden;
        }
    }
    .arrow_right{
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
    .btn{
        width:120px;
        height:48px;
        background:rgba(255,236,239,1);
        border-radius:26px;
        color: #FC1541;
        font-size: 26px;
        text-align: center;
        line-height: 48px;
    }
}