index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .container {
  2. width: 100%;
  3. display: flex;
  4. justify-content: flex-start;
  5. padding: 20rpx 20rpx;
  6. background-color: #fff;
  7. border-bottom: 1rpx solid #ECECEC;
  8. /* 头像 */
  9. .photo {
  10. flex: 1;
  11. .head-img {
  12. width: 100rpx;
  13. height: 100rpx;
  14. }
  15. }
  16. .comments {
  17. flex: 5;
  18. display: flex;
  19. flex-direction: column;
  20. justify-content: space-around;
  21. padding: 0 20rpx;
  22. .product {
  23. width: 95%;
  24. display: flex;
  25. justify-content: space-between;
  26. align-items: center;
  27. }
  28. .comment-content {
  29. display: flex;
  30. flex-direction: column;
  31. justify-content: space-around;
  32. .imgs {
  33. width: 100%;
  34. display: flex;
  35. justify-content: flex-start;
  36. align-items: center;
  37. flex-wrap: wrap;
  38. .comment-img {
  39. width: 32%;
  40. padding-right: 1.333333%;
  41. height: 158rpx;
  42. .comm-img {
  43. width: 100%;
  44. height: 150rpx;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. }
  51. .f13 {
  52. font-size: 13px;
  53. }
  54. .fw300 {
  55. font-weight: 300;
  56. }
  57. .fw400 {
  58. font-weight: 400;
  59. }
  60. .color-gray {
  61. color: #999
  62. }
  63. .padding5 {
  64. padding: 5rpx 0;
  65. }