index.wxss 1.2 KB

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