reply.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. @charset "UTF-8";
  2. .uni-load-more {
  3. display: -webkit-box;
  4. display: -webkit-flex;
  5. display: flex;
  6. -webkit-box-orient: horizontal;
  7. -webkit-box-direction: normal;
  8. -webkit-flex-direction: row;
  9. flex-direction: row;
  10. height: 80rpx;
  11. -webkit-box-align: center;
  12. -webkit-align-items: center;
  13. align-items: center;
  14. -webkit-box-pack: center;
  15. -webkit-justify-content: center;
  16. justify-content: center
  17. }
  18. .uni-load-more__text {
  19. font-size: 28rpx;
  20. color: #999
  21. }
  22. .uni-load-more__img {
  23. height: 24px;
  24. width: 24px;
  25. margin-right: 10px
  26. }
  27. .uni-load-more__img>.load {
  28. position: absolute
  29. }
  30. .uni-load-more__img>.load .item {
  31. width: 6px;
  32. height: 2px;
  33. border-top-left-radius: 1px;
  34. border-bottom-left-radius: 1px;
  35. background: #999;
  36. position: absolute;
  37. opacity: .2;
  38. -webkit-transform-origin: 50%;
  39. transform-origin: 50%;
  40. -webkit-animation: load 1.56s ease infinite;
  41. animation: load 1.56s ease infinite
  42. }
  43. .uni-load-more__img>.load .item:nth-child(1) {
  44. -webkit-transform: rotate(90deg);
  45. transform: rotate(90deg);
  46. top: 2px;
  47. left: 9px
  48. }
  49. .uni-load-more__img>.load .item:nth-child(2) {
  50. -webkit-transform: rotate(180deg);
  51. transform: rotate(180deg);
  52. top: 11px;
  53. right: 0
  54. }
  55. .uni-load-more__img>.load .item:nth-child(3) {
  56. -webkit-transform: rotate(270deg);
  57. transform: rotate(270deg);
  58. bottom: 2px;
  59. left: 9px
  60. }
  61. .uni-load-more__img>.load .item:nth-child(4) {
  62. top: 11px;
  63. left: 0
  64. }
  65. .load1,
  66. .load2,
  67. .load3 {
  68. height: 24px;
  69. width: 24px
  70. }
  71. .load2 {
  72. -webkit-transform: rotate(30deg);
  73. transform: rotate(30deg)
  74. }
  75. .load3 {
  76. -webkit-transform: rotate(60deg);
  77. transform: rotate(60deg)
  78. }
  79. .load1 .item:nth-child(1) {
  80. -webkit-animation-delay: 0s;
  81. animation-delay: 0s
  82. }
  83. .load2 .item:nth-child(1) {
  84. -webkit-animation-delay: .13s;
  85. animation-delay: .13s
  86. }
  87. .load3 .item:nth-child(1) {
  88. -webkit-animation-delay: .26s;
  89. animation-delay: .26s
  90. }
  91. .load1 .item:nth-child(2) {
  92. -webkit-animation-delay: .39s;
  93. animation-delay: .39s
  94. }
  95. .load2 .item:nth-child(2) {
  96. -webkit-animation-delay: .52s;
  97. animation-delay: .52s
  98. }
  99. .load3 .item:nth-child(2) {
  100. -webkit-animation-delay: .65s;
  101. animation-delay: .65s
  102. }
  103. .load1 .item:nth-child(3) {
  104. -webkit-animation-delay: .78s;
  105. animation-delay: .78s
  106. }
  107. .load2 .item:nth-child(3) {
  108. -webkit-animation-delay: .91s;
  109. animation-delay: .91s
  110. }
  111. .load3 .item:nth-child(3) {
  112. -webkit-animation-delay: 1.04s;
  113. animation-delay: 1.04s
  114. }
  115. .load1 .item:nth-child(4) {
  116. -webkit-animation-delay: 1.17s;
  117. animation-delay: 1.17s
  118. }
  119. .load2 .item:nth-child(4) {
  120. -webkit-animation-delay: 1.3s;
  121. animation-delay: 1.3s
  122. }
  123. .load3 .item:nth-child(4) {
  124. -webkit-animation-delay: 1.43s;
  125. animation-delay: 1.43s
  126. }
  127. @-webkit-keyframes load {
  128. 0% {
  129. opacity: 1
  130. }
  131. 100% {
  132. opacity: .2
  133. }
  134. }
  135. @charset "UTF-8";
  136. /* 页面左右间距 */
  137. /* 文字尺寸 */
  138. /*文字颜色*/
  139. /* 边框颜色 */
  140. /*颜色*/
  141. /* 图片加载中颜色 */
  142. /* 行为相关颜色 */
  143. /* 功能栏字体大小 */
  144. /*功能栏左侧小图标*/
  145. page {
  146. background: #ffffff;
  147. height: 100%;
  148. }
  149. page .container {
  150. height: 100%;
  151. padding: 25rpx 25rpx;
  152. }
  153. page .container .swiper-box {
  154. height: 100%;
  155. }
  156. page .container .swiper-box .list-scroll-content {
  157. height: 100%;
  158. }
  159. .reply_btn {
  160. padding: 15rpx 0rpx;
  161. position: fixed;
  162. }
  163. .reply_btn .btn {
  164. padding: 10rpx 25rpx;
  165. font-size: 24rpx;
  166. background: #f4f4f4;
  167. margin-right: 25rpx;
  168. }
  169. .reply_btn .current {
  170. background-color: #e93323 !important;
  171. color: #ffffff !important;
  172. }
  173. .eva-box {
  174. padding: 30rpx 0;
  175. }
  176. .eva-box .portrait {
  177. -webkit-flex-shrink: 0;
  178. flex-shrink: 0;
  179. width: 80rpx;
  180. height: 80rpx;
  181. border-radius: 100px;
  182. }
  183. .eva-box .right {
  184. -webkit-box-flex: 1;
  185. -webkit-flex: 1;
  186. flex: 1;
  187. display: -webkit-box;
  188. display: -webkit-flex;
  189. display: flex;
  190. -webkit-box-orient: vertical;
  191. -webkit-box-direction: normal;
  192. -webkit-flex-direction: column;
  193. flex-direction: column;
  194. font-size: 28rpx;
  195. color: #606266;
  196. padding-left: 26rpx;
  197. }
  198. .eva-box .Rate {
  199. padding-top: 25rpx;
  200. }
  201. .content-box {
  202. padding: 20rpx 0;
  203. }
  204. .content-box .con {
  205. font-size: 28rpx;
  206. color: #303133;
  207. }
  208. .content-box .bot {
  209. display: -webkit-box;
  210. display: -webkit-flex;
  211. display: flex;
  212. -webkit-box-pack: justify;
  213. -webkit-justify-content: space-between;
  214. justify-content: space-between;
  215. font-size: 24rpx;
  216. color: #909399;
  217. }
  218. .con_image {
  219. width: 130rpx;
  220. height: 130rpx;
  221. display: inline-block;
  222. padding: 15rpx;
  223. }
  224. .con_image image {
  225. width: 100%;
  226. height: 100%;
  227. }