talkInfo.wxss 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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. .u-line-1 {
  15. display: -webkit-box !important;
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. word-break: break-all;
  19. -webkit-line-clamp: 1;
  20. -webkit-box-orient: vertical !important;
  21. }
  22. .u-line-2 {
  23. display: -webkit-box !important;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. word-break: break-all;
  27. -webkit-line-clamp: 2;
  28. -webkit-box-orient: vertical !important;
  29. }
  30. .u-line-3 {
  31. display: -webkit-box !important;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. word-break: break-all;
  35. -webkit-line-clamp: 3;
  36. -webkit-box-orient: vertical !important;
  37. }
  38. .u-line-4 {
  39. display: -webkit-box !important;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. word-break: break-all;
  43. -webkit-line-clamp: 4;
  44. -webkit-box-orient: vertical !important;
  45. }
  46. .u-line-5 {
  47. display: -webkit-box !important;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. word-break: break-all;
  51. -webkit-line-clamp: 5;
  52. -webkit-box-orient: vertical !important;
  53. }
  54. .u-border {
  55. border-width: 0.5px !important;
  56. border-color: #dadbde !important;
  57. border-style: solid;
  58. }
  59. .u-border-top {
  60. border-top-width: 0.5px !important;
  61. border-color: #dadbde !important;
  62. border-top-style: solid;
  63. }
  64. .u-border-left {
  65. border-left-width: 0.5px !important;
  66. border-color: #dadbde !important;
  67. border-left-style: solid;
  68. }
  69. .u-border-right {
  70. border-right-width: 0.5px !important;
  71. border-color: #dadbde !important;
  72. border-right-style: solid;
  73. }
  74. .u-border-bottom {
  75. border-bottom-width: 0.5px !important;
  76. border-color: #dadbde !important;
  77. border-bottom-style: solid;
  78. }
  79. .u-border-top-bottom {
  80. border-top-width: 0.5px !important;
  81. border-bottom-width: 0.5px !important;
  82. border-color: #dadbde !important;
  83. border-top-style: solid;
  84. border-bottom-style: solid;
  85. }
  86. .u-reset-button {
  87. padding: 0;
  88. background-color: transparent;
  89. font-size: inherit;
  90. line-height: inherit;
  91. color: inherit;
  92. }
  93. .u-reset-button::after {
  94. border: none;
  95. }
  96. .u-hover-class {
  97. opacity: 0.7;
  98. }
  99. .u-primary-light {
  100. color: #ecf5ff;
  101. }
  102. .u-warning-light {
  103. color: #fdf6ec;
  104. }
  105. .u-success-light {
  106. color: #f5fff0;
  107. }
  108. .u-error-light {
  109. color: #fef0f0;
  110. }
  111. .u-info-light {
  112. color: #f4f4f5;
  113. }
  114. .u-primary-light-bg {
  115. background-color: #ecf5ff;
  116. }
  117. .u-warning-light-bg {
  118. background-color: #fdf6ec;
  119. }
  120. .u-success-light-bg {
  121. background-color: #f5fff0;
  122. }
  123. .u-error-light-bg {
  124. background-color: #fef0f0;
  125. }
  126. .u-info-light-bg {
  127. background-color: #f4f4f5;
  128. }
  129. .u-primary-dark {
  130. color: #398ade;
  131. }
  132. .u-warning-dark {
  133. color: #f1a532;
  134. }
  135. .u-success-dark {
  136. color: #53c21d;
  137. }
  138. .u-error-dark {
  139. color: #e45656;
  140. }
  141. .u-info-dark {
  142. color: #767a82;
  143. }
  144. .u-primary-dark-bg {
  145. background-color: #398ade;
  146. }
  147. .u-warning-dark-bg {
  148. background-color: #f1a532;
  149. }
  150. .u-success-dark-bg {
  151. background-color: #53c21d;
  152. }
  153. .u-error-dark-bg {
  154. background-color: #e45656;
  155. }
  156. .u-info-dark-bg {
  157. background-color: #767a82;
  158. }
  159. .u-primary-disabled {
  160. color: #9acafc;
  161. }
  162. .u-warning-disabled {
  163. color: #f9d39b;
  164. }
  165. .u-success-disabled {
  166. color: #a9e08f;
  167. }
  168. .u-error-disabled {
  169. color: #f7b2b2;
  170. }
  171. .u-info-disabled {
  172. color: #c4c6c9;
  173. }
  174. .u-primary {
  175. color: #3c9cff;
  176. }
  177. .u-warning {
  178. color: #f9ae3d;
  179. }
  180. .u-success {
  181. color: #5ac725;
  182. }
  183. .u-error {
  184. color: #f56c6c;
  185. }
  186. .u-info {
  187. color: #909399;
  188. }
  189. .u-primary-bg {
  190. background-color: #3c9cff;
  191. }
  192. .u-warning-bg {
  193. background-color: #f9ae3d;
  194. }
  195. .u-success-bg {
  196. background-color: #5ac725;
  197. }
  198. .u-error-bg {
  199. background-color: #f56c6c;
  200. }
  201. .u-info-bg {
  202. background-color: #909399;
  203. }
  204. .u-main-color {
  205. color: #303133;
  206. }
  207. .u-content-color {
  208. color: #606266;
  209. }
  210. .u-tips-color {
  211. color: #909193;
  212. }
  213. .u-light-color {
  214. color: #c0c4cc;
  215. }
  216. .u-safe-area-inset-top {
  217. padding-top: 0;
  218. padding-top: constant(safe-area-inset-top);
  219. padding-top: env(safe-area-inset-top);
  220. }
  221. .u-safe-area-inset-right {
  222. padding-right: 0;
  223. padding-right: constant(safe-area-inset-right);
  224. padding-right: env(safe-area-inset-right);
  225. }
  226. .u-safe-area-inset-bottom {
  227. padding-bottom: 0;
  228. padding-bottom: constant(safe-area-inset-bottom);
  229. padding-bottom: env(safe-area-inset-bottom);
  230. }
  231. .u-safe-area-inset-left {
  232. padding-left: 0;
  233. padding-left: constant(safe-area-inset-left);
  234. padding-left: env(safe-area-inset-left);
  235. }
  236. ::-webkit-scrollbar {
  237. display: none;
  238. width: 0 !important;
  239. height: 0 !important;
  240. -webkit-appearance: none;
  241. background: transparent;
  242. }
  243. /* 颜色变量 */
  244. /* 行为相关颜色 */
  245. /* 文字基本颜色 */
  246. /* 背景颜色 */
  247. /* 边框颜色 */
  248. /* 尺寸变量 */
  249. /* 文字尺寸 */
  250. /* 图片尺寸 */
  251. /* Border Radius */
  252. /* 水平间距 */
  253. /* 垂直间距 */
  254. /* 透明度 */
  255. /* 文章场景相关 */
  256. .submit {
  257. align-items: flex-start;
  258. box-sizing: border-box;
  259. padding: 18rpx 30rpx 0;
  260. position: fixed;
  261. bottom: 0;
  262. left: 0;
  263. right: 0;
  264. width: 750rpx;
  265. height: 166rpx;
  266. background: #FFFFFF;
  267. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0, 0, 0, 0.5);
  268. }
  269. .submit input {
  270. box-sizing: border-box;
  271. padding: 0 20rpx;
  272. width: 598rpx;
  273. height: 72rpx;
  274. line-height: 72rpx;
  275. background: #F1F1F1;
  276. border-radius: 36rpx;
  277. }
  278. .submit text {
  279. line-height: 72rpx;
  280. font-size: 36rpx;
  281. font-weight: bold;
  282. color: #222222;
  283. background: linear-gradient(180deg, #FFBAE7 0%, #9956FF 100%);
  284. -webkit-background-clip: text;
  285. -webkit-text-fill-color: transparent;
  286. }
  287. .comment {
  288. margin-top: 22rpx;
  289. position: relative;
  290. padding-bottom: 166rpx;
  291. }
  292. .comment .title {
  293. font-size: 34rpx;
  294. color: #131415;
  295. font-weight: bold;
  296. margin-bottom: 36rpx;
  297. }
  298. .commentItem {
  299. margin-top: 30rpx;
  300. }
  301. .commentItem .user .avatar {
  302. width: 64rpx;
  303. height: 64rpx;
  304. border-radius: 50%;
  305. vertical-align: middle;
  306. margin-right: 20rpx;
  307. }
  308. .commentItem .user .name {
  309. font-size: 32rpx;
  310. font-weight: bold;
  311. }
  312. .commentItem .content {
  313. margin-left: 84rpx;
  314. }
  315. .commentItem .content .word {
  316. font-size: 32rpx;
  317. margin-bottom: 20rpx;
  318. }
  319. .commentItem .content .contentBottom .date {
  320. font-size: 24rpx;
  321. color: #89898A;
  322. }
  323. .commentItem .content .contentBottom .reply {
  324. margin-right: 20rpx;
  325. font-size: 24rpx;
  326. }
  327. .commentItem .content .more {
  328. text-align: center;
  329. font-size: 20rpx;
  330. color: #444444;
  331. margin-top: 20rpx;
  332. width: 228rpx;
  333. height: 40rpx;
  334. line-height: 40rpx;
  335. background: #F1F1F1;
  336. border-radius: 20rpx;
  337. }
  338. .commentItem .content .more text {
  339. margin-right: 8rpx;
  340. }
  341. .popup {
  342. height: 800rpx;
  343. overflow: scroll;
  344. padding: 36rpx 30rpx 166rpx;
  345. }
  346. .popup .popupTitle {
  347. text-align: center;
  348. margin-bottom: 40rpx;
  349. font-size: 36rpx;
  350. font-weight: bold;
  351. }
  352. .popup .commentItem1 {
  353. border-bottom: 2rpx solid #EAEAEA;
  354. padding-bottom: 44rpx;
  355. }
  356. .popup .evenyComment {
  357. margin-top: 28rpx;
  358. }
  359. .popup .evenyComment .evenyTitle {
  360. font-size: 28rpx;
  361. font-weight: bold;
  362. margin-bottom: 32rpx;
  363. }