| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 | .my-card {    width: 690rpx;    background: #FFFFFF;    border-radius: 16rpx;    margin: 0 auto;    margin-top: 20rpx;    box-sizing: border-box;    overflow: hidden;    .mtitle {        display: flex;        align-items: center;        justify-content: space-between;        width: 100%;        height: 90rpx;        padding: 0 20rpx 0 30rpx;        border-bottom: 1px solid #EEEEEE;        box-sizing: border-box;        .title-l {            font-size: 28rpx;            font-family: PingFang SC-Bold, PingFang SC;            font-weight: bold;            color: #333333;        }    }}.hover:hover {    opacity: .95;    // background: #f4f5f7;}page {    padding: 0 !important;    overflow: hidden !important;}.user-item {    display: flex;    padding: 20rpx 30rpx;    .user-img {        display: flex;        align-items: center;        height: 130rpx;    }    .details {        width: 507rpx;        height: 130rpx;        margin-left: 30rpx;        .user-name {            display: flex;            height: 42rpx !important;            font-size: 30rpx;            font-family: PingFang SC-Bold, PingFang SC;            font-weight: bold;            color: #333333;            .line-1 {                max-width: 250rpx;            }            .position {                font-size: 24rpx;                font-family: PingFang SC-Bold, PingFang SC;                font-weight: bold;                color: #333333;                margin-top: 6rpx;                margin-left: 30rpx;            }            .icon {                flex: 1;                .iconfont {                    float: right;                    margin-top: 4rpx;                }            }        }        .base-msg {            margin-top: 10rpx;            height: 34rpx;            line-height: 34rpx;            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #666666;            .iconfont {                margin-left: 60rpx;                color: var(--assist);                font-size: 26rpx;            }        }    }}/* 角色 */.role-item {    padding: 20rpx 30rpx;    display: flex;    justify-content: space-between;    .role-l {        height: 86rpx;        width: 580rpx;        .first-line {            height: 42rpx;            .label {                display: inline-block;                max-width: 250rpx;                font-size: 30rpx;                font-family: PingFang SC-Bold, PingFang SC;                font-weight: bold;                color: #333333;            }            .role {                display: inline-block;                max-width: 250rpx;                font-size: 24rpx;                font-family: PingFang SC-Regular, PingFang SC;                color: #333333;                margin-left: 20rpx;            }        }        .creator {            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #666666;            margin-top: 10rpx;        }    }    .role-r {        display: flex;        align-items: center;        height: 86rpx;        width: 30rpx;        text {            font-size: 28rpx;        }    }}/* 吸底 */.footer {    position: fixed;    width: 100vw;    text-align: center;    padding: 20rpx 0;    background-color: #ffffff;    bottom: 0;    .add-but {        width: 500rpx;        height: 90rpx;        border-radius: 45rpx;    }}
 |