| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 | .user-box {    width: 750rpx;    background-color: var(--bgColor);    padding: 30rpx;    box-sizing: border-box;    color: #FFFFFF;    font-family: PingFang SC-Regular, PingFang SC;    /* 用户展示内容 */    .user-con {        display: flex;        height: 128rpx;        align-items: center;        background: none;        .v-img {            margin-top: 5rpx;        }        .user-msg {            flex: 1;            height: 100%;            margin-left: 30rpx;            .user-name {                height: 50rpx;                font-size: 36rpx;                font-weight: bold;                margin-top: 16rpx;                text {                    display: inline-block;                    height: 40rpx;                    font-size: 28rpx;                    margin-left: 40rpx;                }            }            .user-phone {                height: 38rpx;                font-size: 24rpx;                font-family: PingFang SC-Regular, PingFang SC;                line-height: 38rpx;                margin-top: 10rpx;            }        }    }    /* 行动力 */    .display-data {        display: flex;        height: 182rpx;        background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, .5) 100%);        &_l,        &_r {            display: flex;            flex-direction: column;            justify-content: center;            align-items: center;            height: 100%;        }        &_l {            width: 320rpx;            .first-line {                height: 66rpx;                line-height: 66rpx;                font-size: 48rpx;                font-family: PingFang SC-Bold, PingFang SC;                font-weight: bold;            }            .tow-line {                height: 40rpx;                line-height: 40rpx;                font-size: 28rpx;                margin-top: 16rpx;            }        }        &_r {            flex: 1;            font-size: 28rpx;            line-height: 40rpx;            .tow-line {                margin-top: 25rpx;            }        }    }}.operating {    .item {        width: 100%;        .con {            display: flex;            justify-content: space-between;            width: calc(100% - 30rpx);            height: 90rpx;            line-height: 90rpx;            border-bottom: 1rpx solid #eeeeee;            margin-left: 30rpx;            padding-right: 20rpx;            box-sizing: border-box;            .label {                display: flex;                align-items: center;                font-size: 28rpx;                font-family: PingFang SC-Medium, PingFang SC;                font-weight: 500;                color: #333333;                text {                    font-size: 50rpx;                    margin-right: 10rpx;                }            }        }    }    .item:last-child .con {        border-bottom: 0;    }    .item-right {        display: flex;        align-items: center;        line-height: 20rpx;    }    .tips {        font-size: 24rpx !important;        margin-top: -4rpx;        margin-right: 10rpx;        color: #333333;    }    .right-false {        color: var(--error);    }}/* 退出登录 */.out-login {    width: 500rpx;    height: 90rpx;    border-radius: 90rpx !important;    font-size: 28rpx;    font-family: PingFang SC-Regular, PingFang SC;    color: #333333 !important;}
 |