flies.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. .image {
  14. width: 58rpx;
  15. height: 58rpx;
  16. }
  17. .details {
  18. width: 500rpx;
  19. height: 100%;
  20. margin-left: 25rpx;
  21. .name {
  22. height: 40rpx;
  23. font-size: 28rpx;
  24. font-family: PingFang SC-Bold, PingFang SC;
  25. font-weight: bold;
  26. color: #333333;
  27. }
  28. .time {
  29. font-size: 20rpx;
  30. font-family: PingFang SC-Regular, PingFang SC;
  31. color: #999999;
  32. margin-top: 14rpx;
  33. }
  34. }
  35. }
  36. .flie-right {
  37. flex: 1;
  38. height: 100%;
  39. display: flex;
  40. align-items: center;
  41. justify-content: center;
  42. padding-left: 20rpx;
  43. }
  44. }