flies.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 100rpx;
  8. padding: 10rpx 30rpx 0;
  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. display: flex;
  23. align-items: center;
  24. height: 40rpx;
  25. font-size: 28rpx;
  26. font-family: PingFang SC-Bold, PingFang SC;
  27. font-weight: bold;
  28. color: #333333;
  29. .line-1 {
  30. max-width: 400rpx;
  31. margin-right: 10rpx;
  32. }
  33. }
  34. .time {
  35. font-size: 20rpx;
  36. font-family: PingFang SC-Regular, PingFang SC;
  37. color: #999999;
  38. margin-top: 14rpx;
  39. }
  40. }
  41. }
  42. .flie-right {
  43. flex: 1;
  44. height: 100%;
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. padding-left: 20rpx;
  49. }
  50. }