flies.scss 1.9 KB

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