index.scss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. .head {
  2. display: flex;
  3. align-items: center;
  4. width: 100vw;
  5. height: 120rpx;
  6. padding: 0 20rpx 0 30rpx;
  7. box-sizing: border-box;
  8. .count {
  9. font-size: 28rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #333333;
  12. }
  13. .expand {
  14. flex: 1;
  15. display: flex;
  16. align-items: center;
  17. justify-content: flex-end;
  18. .but {
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. flex-shrink: 0;
  23. width: 80rpx;
  24. height: 80rpx;
  25. background: #FFFFFF;
  26. border-radius: 8rpx;
  27. border: 2rpx solid #CCCCCC;
  28. margin-left: 20rpx;
  29. color: #666666;
  30. }
  31. }
  32. }
  33. .my-card {
  34. display: flex;
  35. justify-content: space-between;
  36. align-items: center;
  37. width: 690rpx;
  38. margin: 0 auto 10rpx;
  39. height: 100rpx;
  40. padding: 10rpx 30rpx 0;
  41. background-color: #fff;
  42. box-sizing: border-box;
  43. border-radius: 8rpx;
  44. .flie {
  45. display: flex;
  46. align-items: center;
  47. height: 100%;
  48. .image {
  49. width: 58rpx;
  50. height: 58rpx;
  51. }
  52. .details {
  53. width: 500rpx;
  54. height: 100%;
  55. margin-left: 25rpx;
  56. .name {
  57. display: flex;
  58. align-items: center;
  59. height: 40rpx;
  60. font-size: 28rpx;
  61. font-family: PingFang SC-Bold, PingFang SC;
  62. font-weight: bold;
  63. color: #333333;
  64. margin-right: 10rpx;
  65. }
  66. .time {
  67. font-size: 20rpx;
  68. font-family: PingFang SC-Regular, PingFang SC;
  69. color: #999999;
  70. margin-top: 14rpx;
  71. }
  72. }
  73. }
  74. }