darenList.less 2.07 KB
.daren-list {
    .box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 auto;
        width: 690px;
        .left-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 550px;
            height: auto;
            .avatar-box {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                overflow: hidden;
                .avatar-img {
                    display: block;
                    width: 80px;
                    height: 80px;
                }
            }
            .user-info {
                width: 440px;
                .name {
                    color: #4A4A4A;
                    font-size: 28px;
                    font-weight: 400;
                    width: 100%;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    /deep/ .k {
                        color: #FC1541;
                    }
                }
                .desc {
                    margin-top: 10px;
                    color: #B4B4B4;
                    font-size: 22px;
                    font-weight:400;
                    width: 100%;
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                }
            }
        }
        .right-box {
            .arrow-box {
                width: 25px;
                height: 25px;
                .arrow-right{
                    display: block;
                    width: 25px;
                    height: 25px;
                }
            }
            .btn {
                display: flex;
                justify-content: center;
                align-items: center;
                background: #FFF2F5;
                color: #FC1541;
                width: 120px;
                height: 48px;
                border-radius: 10px;
                font-size: 26px;
            }       
        }
    }
}