index.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. border-radius: 50%;
  18. }
  19. .container .comments {
  20. flex: 5;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-around;
  24. padding: 0 20rpx;
  25. }
  26. .container .comments .product {
  27. width: 95%;
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. }
  32. .container .comments .comment-content {
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: space-around;
  36. }
  37. .container .comments .comment-content .imgs {
  38. width: 100%;
  39. display: flex;
  40. justify-content: flex-start;
  41. align-items: center;
  42. flex-wrap: wrap;
  43. }
  44. .container .comments .comment-content .imgs .comment-img {
  45. width: 32%;
  46. padding-right: 1.333333%;
  47. height: 158rpx;
  48. }
  49. .container .comments .comment-content .imgs .comment-img .comm-img {
  50. width: 100%;
  51. height: 150rpx;
  52. border-radius: 15rpx;
  53. }
  54. .f13 {
  55. font-size: 13px;
  56. }
  57. .fw300 {
  58. font-weight: 300;
  59. }
  60. .fw400 {
  61. font-weight: 400;
  62. }
  63. .color-gray {
  64. color: #999;
  65. }
  66. .padding5 {
  67. padding: 5rpx 0;
  68. }