particulars.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .partitlteimg {
  28. width: 95%;
  29. margin: 0 auto;
  30. height: 428rpx;
  31. }
  32. .partitlteimg image {
  33. width: 100%;
  34. height: 100%;
  35. }
  36. .quiz {
  37. width: 95%;
  38. margin: 20rpx auto;
  39. border-bottom: 4rpx dashed #E8E8E8;
  40. }
  41. .quiz .quiz_username {
  42. width: 100%;
  43. }
  44. .quiz .quiz_username image {
  45. width: 40rpx;
  46. height: 40rpx;
  47. vertical-align: middle;
  48. margin-right: 20rpx;
  49. }
  50. .quiz .quiz_username ._span {
  51. font-weight: 700;
  52. font-size: 32rpx;
  53. }
  54. .quiz .quiz_usertime {
  55. width: 100%;
  56. margin-top: 15rpx;
  57. display: -webkit-box;
  58. display: -webkit-flex;
  59. display: flex;
  60. -webkit-box-pack: justify;
  61. -webkit-justify-content: space-between;
  62. justify-content: space-between;
  63. }
  64. .quiz .quiz_usertime image {
  65. width: 50rpx;
  66. height: 50rpx;
  67. margin-right: 20rpx;
  68. }
  69. .quiz .quiz_usertime ._span {
  70. font-size: 24rpx;
  71. color: #C1C1C1;
  72. font-weight: 700;
  73. }
  74. .quiz .quiz_usercontert {
  75. padding: 20rpx;
  76. margin-bottom: 20rpx;
  77. }
  78. .comment {
  79. width: 95%;
  80. margin: 20rpx auto 0;
  81. }
  82. .comment .comment_title {
  83. font-weight: 700;
  84. font-size: 32rpx;
  85. }
  86. .comment .scroll-view_H {
  87. height: 600rpx;
  88. }
  89. .comment .comment_unit .comment_unit_user {
  90. display: -webkit-box;
  91. display: -webkit-flex;
  92. display: flex;
  93. -webkit-box-pack: justify;
  94. -webkit-justify-content: space-between;
  95. justify-content: space-between;
  96. margin-top: 20rpx;
  97. }
  98. .comment .comment_unit .comment_unit_user .username {
  99. display: -webkit-box;
  100. display: -webkit-flex;
  101. display: flex;
  102. -webkit-box-align: center;
  103. -webkit-align-items: center;
  104. align-items: center;
  105. }
  106. .comment .comment_unit .comment_unit_user .username image {
  107. width: 50rpx;
  108. height: 50rpx;
  109. margin-right: 20rpx;
  110. border-radius: 50%;
  111. }
  112. .comment .comment_unit .comment_unit_user .username ._p {
  113. width: 60rpx;
  114. height: 30rpx;
  115. color: white;
  116. background-color: #5CA348;
  117. font-size: 24rpx;
  118. text-align: center;
  119. line-height: 30rpx;
  120. padding: 0 10rpx;
  121. margin-left: 20rpx;
  122. border-radius: 8rpx;
  123. }
  124. .comment .comment_unit .comment_unit_con {
  125. padding-left: 60rpx;
  126. }
  127. .comment .comment_unit .comment_unit_con ._p {
  128. margin-top: 20rpx;
  129. }
  130. .comment .comment_unit .comment_unit_con ._p ._img {
  131. margin-top: 20rpx;
  132. display: block;
  133. width: 180rpx !important;
  134. height: 180rpx !important;
  135. }
  136. .issue_box {
  137. width: 100%;
  138. background-color: #FFFFFF;
  139. }
  140. .issue {
  141. width: 95%;
  142. margin: 0 auto;
  143. display: -webkit-box;
  144. display: -webkit-flex;
  145. display: flex;
  146. padding-bottom: 20rpx;
  147. }
  148. .issue input {
  149. width: 90%;
  150. background-color: #F3F3F3;
  151. height: 60rpx;
  152. text-indent: 1em;
  153. }
  154. .issue ._p {
  155. width: 10%;
  156. text-align: right;
  157. line-height: 60rpx;
  158. color: #7a7a7a;
  159. }