index.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "../../setclient/modules/address/head.scss";
  2. .my-card {
  3. display: flex;
  4. justify-content: space-between;
  5. align-items: center;
  6. width: 690rpx;
  7. margin: 0 auto 10rpx;
  8. height: 100rpx;
  9. padding: 10rpx 30rpx 0;
  10. background-color: #fff;
  11. box-sizing: border-box;
  12. border-radius: 8rpx;
  13. .flie {
  14. display: flex;
  15. align-items: center;
  16. height: 100%;
  17. .image {
  18. width: 58rpx;
  19. height: 58rpx;
  20. }
  21. .details {
  22. width: 500rpx;
  23. height: 100%;
  24. margin-left: 25rpx;
  25. .name {
  26. display: flex;
  27. align-items: center;
  28. height: 40rpx;
  29. font-size: 28rpx;
  30. font-family: PingFang SC-Bold, PingFang SC;
  31. font-weight: bold;
  32. color: #333333;
  33. margin-right: 10rpx;
  34. }
  35. .time {
  36. font-size: 20rpx;
  37. font-family: PingFang SC-Regular, PingFang SC;
  38. color: #999999;
  39. margin-top: 14rpx;
  40. }
  41. }
  42. }
  43. }