| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | .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;}.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;    }}
 |