particulars.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. .u-swiper-wrap {
  28. width: 95%;
  29. margin: 20rpx auto;
  30. }
  31. .quiz {
  32. width: 95%;
  33. margin: 20rpx auto;
  34. border-bottom: 4rpx dashed #E8E8E8;
  35. }
  36. .quiz .quiz_username {
  37. width: 100%;
  38. }
  39. .quiz .quiz_username image {
  40. width: 40rpx;
  41. height: 40rpx;
  42. vertical-align: middle;
  43. margin-right: 20rpx;
  44. }
  45. .quiz .quiz_username ._span {
  46. font-weight: 700;
  47. font-size: 32rpx;
  48. }
  49. .quiz .quiz_usertime {
  50. width: 100%;
  51. margin-top: 15rpx;
  52. display: -webkit-box;
  53. display: -webkit-flex;
  54. display: flex;
  55. -webkit-box-pack: justify;
  56. -webkit-justify-content: space-between;
  57. justify-content: space-between;
  58. }
  59. .quiz .quiz_usertime image {
  60. width: 50rpx;
  61. height: 50rpx;
  62. margin-right: 20rpx;
  63. }
  64. .quiz .quiz_usertime ._span {
  65. font-size: 24rpx;
  66. color: #C1C1C1;
  67. font-weight: 700;
  68. }
  69. .quiz .quiz_usercontert {
  70. padding: 20rpx;
  71. margin-bottom: 20rpx;
  72. }
  73. .comment {
  74. width: 95%;
  75. margin: 20rpx auto 0;
  76. }
  77. .comment .comment_title {
  78. font-weight: 700;
  79. font-size: 32rpx;
  80. }
  81. .comment .scroll-view_H {
  82. height: 600rpx;
  83. }
  84. .comment .comment_unit .comment_unit_user {
  85. display: -webkit-box;
  86. display: -webkit-flex;
  87. display: flex;
  88. -webkit-box-pack: justify;
  89. -webkit-justify-content: space-between;
  90. justify-content: space-between;
  91. margin-top: 20rpx;
  92. }
  93. .comment .comment_unit .comment_unit_user .username {
  94. display: -webkit-box;
  95. display: -webkit-flex;
  96. display: flex;
  97. -webkit-box-align: center;
  98. -webkit-align-items: center;
  99. align-items: center;
  100. }
  101. .comment .comment_unit .comment_unit_user .username image {
  102. width: 50rpx;
  103. height: 50rpx;
  104. margin-right: 20rpx;
  105. border-radius: 50%;
  106. }
  107. .comment .comment_unit .comment_unit_user .username ._p {
  108. width: 60rpx;
  109. height: 30rpx;
  110. color: white;
  111. background-color: #5CA348;
  112. font-size: 24rpx;
  113. text-align: center;
  114. line-height: 30rpx;
  115. padding: 0 10rpx;
  116. margin-left: 20rpx;
  117. border-radius: 8rpx;
  118. }
  119. .comment .comment_unit .comment_unit_con {
  120. padding-left: 60rpx;
  121. }
  122. .comment .comment_unit .comment_unit_con ._p {
  123. margin-top: 20rpx;
  124. }
  125. .comment .comment_unit .comment_unit_con ._p ._img {
  126. margin-top: 20rpx;
  127. display: block;
  128. width: 180rpx !important;
  129. height: 180rpx !important;
  130. }
  131. .issue_box {
  132. width: 100%;
  133. background-color: #FFFFFF;
  134. }
  135. .issue {
  136. width: 95%;
  137. margin: 0 auto;
  138. display: -webkit-box;
  139. display: -webkit-flex;
  140. display: flex;
  141. padding-bottom: 20rpx;
  142. }
  143. .issue input {
  144. width: 90%;
  145. background-color: #F3F3F3;
  146. height: 60rpx;
  147. text-indent: 1em;
  148. }
  149. .issue ._p {
  150. width: 10%;
  151. text-align: right;
  152. line-height: 60rpx;
  153. color: #7a7a7a;
  154. }