descInfo.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. .descbox.data-v-5d721f2d {
  28. padding: 0 32rpx;
  29. margin-bottom: 20rpx;
  30. background-color: #fff;
  31. font-family: PingFang SC, PingFang SC;
  32. font-weight: 400;
  33. font-size: 28rpx;
  34. color: #222222;
  35. line-height: 42rpx;
  36. word-break: break-word;
  37. }
  38. .descbox-title.data-v-5d721f2d {
  39. padding: 24rpx 0;
  40. font-weight: 500;
  41. font-size: 32rpx;
  42. }
  43. .descbox-info.data-v-5d721f2d {
  44. padding-top: 24rpx;
  45. display: flex;
  46. flex-direction: row;
  47. align-items: center;
  48. justify-content: space-between;
  49. font-size: 26rpx;
  50. color: #757575;
  51. }
  52. .descbox-info-l.data-v-5d721f2d {
  53. flex: 1;
  54. display: flex;
  55. flex-direction: row;
  56. align-items: center;
  57. justify-content: flex-start;
  58. }
  59. .descbox-info-time.data-v-5d721f2d {
  60. margin-left: 18rpx;
  61. padding-left: 18rpx;
  62. position: relative;
  63. }
  64. .descbox-info-time.data-v-5d721f2d::after {
  65. content: "";
  66. width: 4rpx;
  67. height: 4rpx;
  68. background: #999999;
  69. border-radius: 50%;
  70. position: absolute;
  71. left: 0;
  72. top: 50%;
  73. -webkit-transform: translateY(-50%);
  74. transform: translateY(-50%);
  75. }
  76. .descbox-info-r.data-v-5d721f2d {
  77. background: transparent;
  78. }
  79. .descbox-desc.data-v-5d721f2d {
  80. overflow: hidden;
  81. position: relative;
  82. margin-top: 20rpx;
  83. }
  84. .expand.data-v-5d721f2d {
  85. flex-shrink: 0;
  86. display: flex;
  87. flex-direction: row;
  88. align-items: center;
  89. justify-content: flex-end;
  90. color: #FF5C03;
  91. font-weight: 400;
  92. font-size: 24rpx;
  93. }
  94. .expand image.data-v-5d721f2d {
  95. width: 32rpx;
  96. height: 32rpx;
  97. }
  98. .expand-ab.data-v-5d721f2d {
  99. position: absolute;
  100. top: 0;
  101. right: 0;
  102. box-shadow: -50rpx 0 20rpx 8rpx #FFFFFF;
  103. background-color: #fff;
  104. }