myEvaluation.scss 996 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* 我的评价 */
  2. .evaluation {
  3. min-height: calc(100vh - 44px);
  4. background-color: #F2F2F2;
  5. &-list {
  6. padding: 26rpx 30rpx;
  7. &-item {
  8. background-color: #fff;
  9. border-radius: 10rpx;
  10. padding: 22rpx 34rpx;
  11. margin-bottom: 20rpx;
  12. &-title {
  13. color: #000;
  14. font-size: 32rpx;
  15. margin-bottom: 24rpx;
  16. font-family: 'PingFangSC-Regular, PingFang SC';
  17. }
  18. &-content {
  19. display: flex;
  20. align-items: center;
  21. .left {
  22. margin-right: 24rpx;
  23. // image {
  24. // width: 96rpx;
  25. // height: 96rpx;
  26. // border-radius: 10rpx;
  27. // }
  28. }
  29. .right {
  30. font-size: 28rpx;
  31. color: #3D3D3D;
  32. line-height: 40rpx;
  33. view {
  34. &:nth-child(2) {
  35. color: #C4C4C4;
  36. font-size: 22rpx;
  37. display: flex;
  38. align-items: center;
  39. text {
  40. margin-left: 10rpx;
  41. }
  42. }
  43. &:last-child {
  44. color: #6C6C6C;
  45. font-size: 24rpx;
  46. }
  47. }
  48. }
  49. }
  50. }
  51. }
  52. }