index.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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-popup .content.data-v-78e2cce2 {
  28. padding: 40rpx;
  29. max-height: 80%;
  30. }
  31. .u-popup .title.data-v-78e2cce2 {
  32. display: flex;
  33. justify-content: space-between;
  34. font-size: 50rpx;
  35. font-weight: 900;
  36. margin-bottom: 60rpx;
  37. }
  38. .u-popup .commentBox.data-v-78e2cce2 {
  39. width: 100%;
  40. display: flex;
  41. color: #000;
  42. font-size: 32rpx;
  43. margin-bottom: 20rpx;
  44. }
  45. .u-popup .commentBox .left.data-v-78e2cce2 {
  46. height: 80rpx;
  47. display: flex;
  48. align-items: center;
  49. margin-right: 30rpx;
  50. }
  51. .u-popup .commentBox .left .comment_round.data-v-78e2cce2 {
  52. width: 20rpx;
  53. height: 20rpx;
  54. background-color: #ff2950;
  55. border-radius: 50%;
  56. margin-right: 20rpx;
  57. }
  58. .u-popup .commentBox .comment_detail.data-v-78e2cce2 {
  59. width: 100%;
  60. }
  61. .u-popup .commentBox .comment_detail .comment_info.data-v-78e2cce2 {
  62. display: flex;
  63. justify-content: space-between;
  64. }
  65. .u-popup .commentBox .comment_detail .comment_info .name.data-v-78e2cce2 {
  66. font-weight: 600;
  67. }
  68. .u-popup .commentBox .comment_detail .comment_info .landlord.data-v-78e2cce2 {
  69. display: inline-block;
  70. margin-left: 10rpx;
  71. font-size: 28rpx;
  72. width: 100rpx;
  73. height: 50rpx;
  74. line-height: 50rpx;
  75. color: #f87f2d;
  76. background-color: #fef2e9;
  77. text-align: center;
  78. border-radius: 50rpx;
  79. }
  80. .u-popup .commentBox .comment_detail .comment_info .likeNum.data-v-78e2cce2 {
  81. font-size: 28rpx;
  82. }
  83. .u-popup .commentBox .comment_detail .comment_info .custom-icon.data-v-78e2cce2 {
  84. margin-right: 10rpx;
  85. font-size: 40rpx;
  86. }
  87. .u-popup .commentBox .comment_detail .comment_info .custom-icon.data-v-78e2cce2::before {
  88. background: -webkit-linear-gradient(top, #f84a1a, #ffa53e);
  89. -webkit-background-clip: text;
  90. -webkit-text-fill-color: transparent;
  91. font-weight: bold;
  92. }
  93. .u-popup .commentBox .comment_detail .comment_content.data-v-78e2cce2 {
  94. margin: 20rpx 0;
  95. color: #333;
  96. }
  97. .u-popup .commentBox .comment_detail .time.data-v-78e2cce2 {
  98. color: #999;
  99. font-size: 28rpx;
  100. }
  101. .u-popup .commentBox .comment_detail .comment_func.data-v-78e2cce2 {
  102. display: flex;
  103. justify-content: space-between;
  104. align-items: center;
  105. }
  106. .u-popup .commentBox .comment_detail .comment_func .reply.data-v-78e2cce2 {
  107. color: #f87f2d;
  108. font-size: 28rpx;
  109. margin-right: 10rpx;
  110. font-weight: 600;
  111. }
  112. .u-popup .commentBox .comment_detail .comment_func .time.data-v-78e2cce2 {
  113. color: #999;
  114. font-size: 28rpx;
  115. }
  116. .u-popup .commentBox .comment_detail .comment_func .delete.data-v-78e2cce2 {
  117. font-size: 28rpx;
  118. width: 100rpx;
  119. height: 50rpx;
  120. line-height: 50rpx;
  121. background-color: #eae8e7;
  122. text-align: center;
  123. border-radius: 50rpx;
  124. }