123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @import '../../../../components/My_card/index.scss';
- @import "../../../../static/font-icon.wxss";
- .my-card {
- display: flex;
- justify-content: space-between;
- align-items: center;
- height: 122rpx;
- padding: 20rpx 30rpx;
- .flie-left {
- display: flex;
- align-items: center;
- height: 100%;
- .image {
- width: 58rpx;
- height: 58rpx;
- }
- .details {
- width: 500rpx;
- height: 100%;
- margin-left: 25rpx;
- .name {
- height: 40rpx;
- 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;
- margin-top: 14rpx;
- }
- }
- }
- .flie-right {
- flex: 1;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding-left: 20rpx;
- }
- }
|