commentinfo.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. .container {
  2. // background-color: #F7F7F7;
  3. letter-spacing: 8rpx;
  4. .shop-stars,
  5. .product-stars {
  6. height: 100rpx;
  7. display: flex;
  8. justify-content: flex-start;
  9. margin: 10rpx 0;
  10. background-color: #fff;
  11. .title {
  12. margin: 0 30rpx;
  13. line-height: 100rpx;
  14. }
  15. .info {
  16. display: flex;
  17. justify-content: flex-start;
  18. margin: 20rpx;
  19. .star {
  20. margin: 0 5rpx;
  21. }
  22. }
  23. }
  24. .comment-text {
  25. width: 100%;
  26. background-color: #fff;
  27. .words {
  28. width: 90%;
  29. margin: 10rpx auto;
  30. padding-top: 20rpx;
  31. background-color: #fcfcfc;
  32. .commtext {}
  33. .words-num {
  34. display: flex;
  35. justify-content: flex-end;
  36. margin-bottom: 20rpx;
  37. color: #707070;
  38. .red {
  39. color: red;
  40. }
  41. }
  42. }
  43. }
  44. .comment-img {
  45. background-color: #fff;
  46. margin-top: 30rpx;
  47. padding-top: 10rpx;
  48. min-height: 400rpx;
  49. position: relative;
  50. .weui-uploader {
  51. .weui-uploader__bd {
  52. display: flex;
  53. justify-content: flex-start;
  54. flex-wrap: wrap;
  55. padding: 30rpx 0;
  56. .pic {
  57. width: 30%;
  58. height: 200rpx;
  59. margin-left: 1.111111%;
  60. margin-bottom: 1%;
  61. position: relative;
  62. .weui-uploader__img {
  63. width: 100%;
  64. height: 100%;
  65. position: relative;
  66. }
  67. .delete-btn {
  68. width: 35rpx;
  69. height: 35rpx;
  70. border-radius: 50%;
  71. z-index: 9;
  72. position: absolute;
  73. right: -10rpx;
  74. top: -7rpx;
  75. background-color: red;
  76. text-align: center;
  77. line-height: 35rpx;
  78. color: #fff;
  79. &::after {
  80. content: '';
  81. width: 20rpx;
  82. height: 2rpx;
  83. background-color: #fff;
  84. position: absolute;
  85. top: 16rpx;
  86. left: 8rpx;
  87. }
  88. }
  89. }
  90. .add {
  91. width: 200rpx;
  92. height: 200rpx;
  93. color: #999;
  94. margin-left: 10rpx;
  95. background-color: rgb(238, 238, 238);
  96. position: relative;
  97. >.title {
  98. width: 100%;
  99. text-align: center;
  100. position: absolute;
  101. top: 60%;
  102. left: 105rpx;
  103. transform: translateX(-50%);
  104. }
  105. >.camera {
  106. width: 80rpx;
  107. height: 80rpx;
  108. margin: 0 auto;
  109. position: absolute;
  110. left: 50%;
  111. top: 20%;
  112. transform: translateX(-50%);
  113. }
  114. }
  115. }
  116. }
  117. .upload-img-btn {}
  118. }
  119. .comment-btn {
  120. width: 80%;
  121. height: 110rpx;
  122. background-color: #BA9D6E;
  123. color: #fff;
  124. margin: 30rpx auto;
  125. text-align: center;
  126. line-height: 110rpx;
  127. }
  128. }