| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 | /* 数据 */.head {    display: flex;    justify-content: space-between;    background: none !important;    .box {        width: 690rpx;        height: 184rpx;        background: #ffffff;        border-radius: 16rpx;        padding: 20rpx 30rpx;        box-sizing: border-box;        .title {            display: flex;            align-items: center;            height: 40rpx;            font-size: 28rpx !important;            font-family: PingFang SC-Bold, PingFang SC;            font-weight: bold;            color: #333333;            text {                color: var(--assist);                font-size: 40rpx;                margin-right: 10rpx;            }        }        .data {            display: flex;            width: 100%;            height: 84rpx;            margin-top: 20rpx;            text-align: center;            .subarea {                flex: 1;                .nubmer {                    height: 40rpx;                    font-size: 28rpx;                    font-family: PingFang SC-Bold, PingFang SC;                    font-weight: bold;                    color: var(--assist);                }                .string {                    height: 34rpx;                    font-size: 24rpx;                    font-family: PingFang SC-Regular, PingFang SC;                    color: #666666;                    margin-top: 10rpx;                }            }            .vertical {                width: 2rpx;                height: 74rpx;                margin-top: 10rpx;                background: #EEEEEE;            }        }    }}.data-main {    background: none !important;    .data-content {        padding: 30rpx;        padding-right: 0;        background-color: #ffffff;        .title {            display: flex;            justify-content: space-between;            width: 630rpx;            height: 40rpx;            &_l {                font-size: 28rpx;                font-family: PingFang SC-Bold, PingFang SC;                font-weight: bold;                color: #333333;            }            &_r {                height: 34rpx;                font-size: 24rpx;                font-family: PingFang SC-Regular, PingFang SC;                color: #999999;                margin-top: 6rpx;            }        }        .user-list {            width: 100%;            margin-top: 24rpx;            width: 630rpx;            background: #F5F5F5;            border-radius: 16rpx;            padding: 30rpx 0;            .user {                display: flex;                justify-content: space-between;                width: 600rpx;                height: 40rpx;                margin-top: 40rpx;                margin-left: 30rpx;                padding-right: 20rpx;                box-sizing: border-box;                view {                    width: 530rpx;                    font-size: 28rpx;                    font-family: PingFang SC-Regular, PingFang SC;                    color: #666666;                }                text {                    font-size: 40rpx;                    color: var(--warning);                }            }            .user:first-child {                margin-top: 0;            }        }        .line-between {            height: 1rpx;            width: 100%;            background-color: #EEEEEE;            margin: 30rpx 0;        }    }}
 |