flies.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import '../../../../components/My_card/index.scss';
  2. @import "../../../../static/font-icon.wxss";
  3. .my-card {
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. height: 122rpx;
  8. padding: 20rpx 30rpx;
  9. .flie-left {
  10. display: flex;
  11. align-items: center;
  12. height: 100%;
  13. .iconfont {
  14. display: flex;
  15. width: 58rpx;
  16. height: 58rpx;
  17. line-height: 58rpx;
  18. font-size: 54rpx;
  19. }
  20. .details {
  21. width: 500rpx;
  22. height: 100%;
  23. margin-left: 25rpx;
  24. .name {
  25. height: 40rpx;
  26. font-size: 28rpx;
  27. font-family: PingFang SC-Bold, PingFang SC;
  28. font-weight: bold;
  29. color: #333333;
  30. }
  31. .time {
  32. font-size: 20rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: #999999;
  35. margin-top: 14rpx;
  36. }
  37. }
  38. }
  39. .flie-right {
  40. flex: 1;
  41. height: 100%;
  42. display: flex;
  43. align-items: center;
  44. justify-content: center;
  45. padding-left: 20rpx;
  46. }
  47. }