| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 | @import "../../components/My_card/index.scss";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;        min-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;            min-height: 34rpx;            line-height: 34rpx;            font-size: 24rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #666666;            .tag {                margin-right: 4rpx;            }            .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;        }    }}/* 订单 */.orderForm {    position: relative;    padding: 20rpx 30rpx;    .label {        line-height: 42rpx;        font-size: 30rpx;        font-family: PingFang SC-Bold, PingFang SC;        font-weight: bold;        color: #333333;        margin-top: 0rpx;    }    view {        line-height: 34rpx;        font-size: 24rpx;        color: #666666;        margin-top: 10rpx;        .price {            color: #FF3B30;        }    }    .status {        display: block;        position: absolute;        top: 20rpx;        right: 30rpx;        width: 96rpx;        height: 36rpx;        line-height: 36rpx;        text-align: center;        border-radius: 4rpx;        font-size: 20rpx;        color: #FFFFFF;    }}/* 吸底 */.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;    }}
 |