hd.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. .main .card.data-v-d13b0a74 {
  28. display: flex;
  29. justify-content: flex-start;
  30. }
  31. .main .card .image.data-v-d13b0a74 {
  32. flex-shrink: 0;
  33. width: 150rpx;
  34. height: 150rpx;
  35. border-radius: 4px;
  36. }
  37. .main .card .text.data-v-d13b0a74 {
  38. margin-left: 10px;
  39. display: flex;
  40. flex-direction: column;
  41. justify-content: space-between;
  42. }
  43. .main .card .text .text_title.data-v-d13b0a74 {
  44. display: flex;
  45. align-items: center;
  46. }
  47. .main .card .text .text_title .manage.data-v-d13b0a74 {
  48. flex-shrink: 0;
  49. padding: 0 10rpx;
  50. font-size: 25rpx;
  51. display: flex;
  52. align-items: center;
  53. min-width: 50rpx;
  54. color: #00b2b6;
  55. border: 1px solid #00b2b6;
  56. border-radius: 3px;
  57. margin-right: 10rpx;
  58. }
  59. .main .card .text .text_title .t1.data-v-d13b0a74 {
  60. font-size: 35rpx;
  61. color: black;
  62. width: 350rpx;
  63. font-weight: 550;
  64. overflow: hidden;
  65. text-overflow: ellipsis;
  66. white-space: nowrap;
  67. }
  68. .main .hdxx .hd.data-v-d13b0a74 {
  69. color: black;
  70. font-size: 18px;
  71. font-weight: 400px;
  72. line-height: 42px;
  73. }
  74. .main .hdxx .textcolor.data-v-d13b0a74 {
  75. color: #999999;
  76. line-height: 42px;
  77. }
  78. .main .hdxx .textcolor .name.data-v-d13b0a74 {
  79. display: flex;
  80. justify-content: space-between;
  81. }
  82. .main .buttons.data-v-d13b0a74 {
  83. background-color: white;
  84. position: fixed;
  85. bottom: 0;
  86. left: 0;
  87. width: 100%;
  88. display: flex;
  89. justify-content: space-around;
  90. box-sizing: border-box;
  91. padding: 30rpx 0;
  92. padding-bottom: 50rpx;
  93. font-size: 30rpx;
  94. }
  95. .main .buttons .button-container.data-v-d13b0a74 {
  96. width: 100%;
  97. display: flex;
  98. justify-content: space-around;
  99. }
  100. .main .buttons .button-container .btn1.data-v-d13b0a74 {
  101. width: 45%;
  102. border: 1px solid #666666;
  103. border-radius: 50px;
  104. height: 70rpx;
  105. line-height: 70rpx;
  106. font-size: 35rpx;
  107. color: #666666;
  108. }
  109. .main .buttons .button-container .btn2.data-v-d13b0a74 {
  110. width: 45%;
  111. background-color: #0056a8;
  112. border-radius: 50px;
  113. height: 70rpx;
  114. line-height: 70rpx;
  115. font-size: 35rpx;
  116. color: #ffffff;
  117. }