flies.scss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .my-card {
  2. width: 690rpx;
  3. background: #FFFFFF;
  4. border-radius: 16rpx;
  5. margin: 0 auto 20rpx;
  6. box-sizing: border-box;
  7. overflow: hidden;
  8. .mtitle {
  9. display: flex;
  10. align-items: center;
  11. justify-content: space-between;
  12. width: 100%;
  13. height: 90rpx;
  14. padding: 0 20rpx 0 30rpx;
  15. border-bottom: 1px solid #EEEEEE;
  16. box-sizing: border-box;
  17. .title-l {
  18. font-size: 28rpx;
  19. font-family: PingFang SC-Bold, PingFang SC;
  20. font-weight: bold;
  21. color: #333333;
  22. }
  23. }
  24. }
  25. .hover:hover {
  26. opacity: .95;
  27. // background: #f4f5f7;
  28. }
  29. .my-card {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. height: 100rpx;
  34. padding: 10rpx 30rpx 0;
  35. .flie-left {
  36. display: flex;
  37. align-items: center;
  38. height: 100%;
  39. .image {
  40. width: 58rpx;
  41. height: 58rpx;
  42. }
  43. .details {
  44. width: 500rpx;
  45. height: 100%;
  46. margin-left: 25rpx;
  47. .name {
  48. display: flex;
  49. align-items: center;
  50. height: 40rpx;
  51. font-size: 28rpx;
  52. font-family: PingFang SC-Bold, PingFang SC;
  53. font-weight: bold;
  54. color: #333333;
  55. .line-1 {
  56. max-width: 400rpx;
  57. margin-right: 10rpx;
  58. }
  59. }
  60. .time {
  61. font-size: 20rpx;
  62. font-family: PingFang SC-Regular, PingFang SC;
  63. color: #999999;
  64. margin-top: 14rpx;
  65. }
  66. }
  67. }
  68. .flie-right {
  69. flex: 1;
  70. height: 100%;
  71. display: flex;
  72. align-items: center;
  73. justify-content: center;
  74. padding-left: 20rpx;
  75. }
  76. }