| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 | @import '../../../../components/My_card/index.scss';@import "../../../../static/font-icon.wxss";.my-card {    display: flex;    justify-content: space-between;    align-items: center;    height: 100rpx;    padding: 10rpx 30rpx 0;    .flie-left {        display: flex;        align-items: center;        height: 100%;        .image {            width: 58rpx;            height: 58rpx;        }        .details {            width: 500rpx;            height: 100%;            margin-left: 25rpx;            .name {                display: flex;                align-items: center;                height: 40rpx;                font-size: 28rpx;                font-family: PingFang SC-Bold, PingFang SC;                font-weight: bold;                color: #333333;                .line-1 {                    max-width: 400rpx;                    margin-right: 10rpx;                }            }            .time {                font-size: 20rpx;                font-family: PingFang SC-Regular, PingFang SC;                color: #999999;                margin-top: 14rpx;            }        }    }    .flie-right {        flex: 1;        height: 100%;        display: flex;        align-items: center;        justify-content: center;        padding-left: 20rpx;    }}
 |