prodComm.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. page{
  2. padding-bottom:90rpx;
  3. background: #f4f4f4;
  4. }
  5. .comm-list{
  6. background: #f4f4f4;
  7. }
  8. .comm-item{
  9. margin-bottom:5px;
  10. background: #fff;
  11. padding:20rpx 0;
  12. }
  13. .comm-item .item-top{
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. padding:10rpx 20rpx;
  18. border-bottom:2rpx solid #f4f4f4;
  19. }
  20. .comm-item .item-top .top-pic {
  21. display: inline-block;
  22. width: 90rpx;
  23. height: 90rpx;
  24. border-radius: 6rpx;
  25. }
  26. .comm-item .item-top .top-pic image{
  27. width: 100%;
  28. height: 100%;
  29. }
  30. .comm-item .item-top .top-tit{
  31. font-size:28rpx;
  32. font-weight: bold;
  33. white-space: nowrap;
  34. text-overflow:ellipsis;
  35. overflow: hidden;
  36. margin-left:20rpx;
  37. }
  38. .comm-item .item-con{
  39. padding:20rpx;
  40. font-size: 28rpx;
  41. }
  42. .comm-item .item-con textarea{
  43. width:100%;
  44. height:180rpx;
  45. }
  46. .comm-item .item-pics{
  47. display: flex;
  48. padding-bottom: 15rpx;
  49. border: 1prpx solid #f2f2f2;
  50. }
  51. .comm-item .item-pics image{
  52. width:130rpx;
  53. margin-left:20rpx;
  54. }
  55. /* 缩略图 */
  56. .question-images {
  57. display: flex;
  58. flex-wrap: wrap;
  59. }
  60. .q-image-wrap {
  61. margin-right: 10rpx;
  62. }
  63. .q-image {
  64. flex: 1;
  65. height: 130rpx;
  66. width: 100%;
  67. }
  68. .q-image-remover {
  69. text-align: center;
  70. font-size: 25rpx;
  71. }
  72. .img-tip {
  73. font-size: 24rpx;
  74. color: grey;
  75. padding: 15rpx 0;
  76. margin-left: 20rpx;
  77. }
  78. /* + */
  79. .comm-item .item-pics .add-pic{
  80. width:130rpx;
  81. height:130rpx;
  82. line-height: 130rpx;
  83. text-align: center;
  84. font-size: 80rpx;
  85. margin-left:20rpx;
  86. color:#ddd;
  87. border:2px dashed #f4f4f4;
  88. }
  89. .item-btm{
  90. padding:20rpx;
  91. font-size: 26rpx;
  92. }
  93. /*checkbox 选项框大小 */
  94. checkbox .wx-checkbox-input {
  95. border-radius: 50%;
  96. width: 35rpx;
  97. height: 35rpx;
  98. }
  99. /*checkbox选中后样式 */
  100. checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  101. background: #e43130;
  102. border-color: #e43130;
  103. }
  104. /*checkbox选中后图标样式 */
  105. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  106. text-align: center;
  107. font-size: 22rpx;
  108. color: #fff;
  109. background: transparent;
  110. transform: translate(-50%, -50%) scale(1);
  111. -webkit-transform: translate(-50%, -50%) scale(1);
  112. }
  113. .item-star{
  114. padding:20rpx;
  115. display: flex;
  116. align-items: center;
  117. font-size: 28rpx;
  118. height:50rpx;
  119. line-height: 50rpx;
  120. background: #fcfcfc;
  121. }
  122. comm-star{
  123. margin-left:20rpx;
  124. }
  125. .comm-btn{
  126. position: fixed;
  127. bottom:0;
  128. width:100%;
  129. font-size: 32rpx;
  130. border-top:1px solid #f4f4f4;
  131. height:90rpx;
  132. line-height: 90rpx;
  133. color:#e43130;
  134. text-align: center;
  135. background: #fff;
  136. }