jys.wxss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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-7a9fa890 {
  28. display: flex;
  29. justify-content: flex-start;
  30. }
  31. .main .card .image.data-v-7a9fa890 {
  32. width: 100px;
  33. height: 100px;
  34. border-radius: 4px;
  35. object-fit: cover;
  36. }
  37. .main .card .text.data-v-7a9fa890 {
  38. margin-left: 10px;
  39. line-height: 35px;
  40. }
  41. .main .card .text .text_title.data-v-7a9fa890 {
  42. display: flex;
  43. align-items: center;
  44. }
  45. .main .card .text .text_title ._span.data-v-7a9fa890 {
  46. display: inline-block;
  47. height: 20px;
  48. line-height: 20px;
  49. text-align: center;
  50. }
  51. .main .card .text .text_title ._span.data-v-7a9fa890:last-child {
  52. margin-left: 5px;
  53. }
  54. .main .card .text .manage.data-v-7a9fa890 {
  55. padding: 2px;
  56. padding-left: 5px;
  57. padding-right: 5px;
  58. color: #00b2b6;
  59. border: 1px solid #00b2b6;
  60. border-radius: 3px;
  61. }
  62. .main .card .text .t1.data-v-7a9fa890 {
  63. font-size: 18px;
  64. color: black;
  65. font-weight: 550;
  66. }
  67. .main .card .text .fzr ._p.data-v-7a9fa890 {
  68. margin-left: 5px;
  69. color: #999999;
  70. }
  71. .main .hdxx .hd.data-v-7a9fa890 {
  72. color: black;
  73. font-size: 18px;
  74. font-weight: 400px;
  75. line-height: 42px;
  76. }
  77. .main .hdxx .textcolor.data-v-7a9fa890 {
  78. color: #999999;
  79. line-height: 42px;
  80. }
  81. .main .hdxx .textcolor .name.data-v-7a9fa890 {
  82. display: flex;
  83. justify-content: space-between;
  84. }
  85. .main .buttons.data-v-7a9fa890 {
  86. background-color: white;
  87. position: fixed;
  88. bottom: 0;
  89. left: 0;
  90. width: 100%;
  91. display: flex;
  92. justify-content: center;
  93. padding: 20px;
  94. box-sizing: border-box;
  95. }
  96. .main .buttons .button-container.data-v-7a9fa890 {
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. }
  101. .main .buttons .button-container .button-spacing.data-v-7a9fa890 {
  102. margin: 0 10px;
  103. /* 添加按钮间距 */
  104. }
  105. .main .buttons button.data-v-7a9fa890 {
  106. font-size: 16px;
  107. color: #999999;
  108. width: 326rpx;
  109. /* 设置按钮宽度 */
  110. border-radius: 50px;
  111. /* 设置圆角 */
  112. }
  113. .main .buttons .btn1.data-v-7a9fa890 {
  114. border: 1px solid #999999;
  115. }
  116. .main .buttons .btn2.data-v-7a9fa890 {
  117. color: white;
  118. background-color: #0056a8;
  119. }