| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | @import '../../components/My_card/index.scss';/* 附件 */.accessory {    display: flex;    align-items: center;    height: 122rpx;    background: #FFFFFF;    border: 1rpx solid #CCCCCC;    .icon {        width: 58rpx;        height: 58rpx;        margin-left: 30rpx;        .iconfont {            font-size: 58rpx;            color: var(--assist);        }    }    .explian {        display: flex;        flex-direction: column;        justify-content: space-between;        margin-left: 30rpx;        height: 80rpx;        .title {            width: 380rpx;            font-size: 28rpx;            font-family: PingFang SC-Bold, PingFang SC;            font-weight: bold;            color: #333333;        }        .time {            font-size: 20rpx;            font-family: PingFang SC-Regular, PingFang SC;            color: #999999;        }    }    .v-but {        width: 140rpx;        height: 60rpx;        border-radius: 30rpx;        margin-left: 30rpx;    }}
 |