index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. .uni-icons {
  28. font-size: 40rpx !important;
  29. }
  30. .utabs_box {
  31. width: 100%;
  32. position: fixed;
  33. top: 88px;
  34. background-color: #FFFFFF;
  35. z-index: 100;
  36. }
  37. .utabs_box .utabs {
  38. width: 95%;
  39. margin: 0 auto;
  40. }
  41. .list {
  42. width: 100%;
  43. background-color: #FDFDFD;
  44. margin-top: 280rpx;
  45. margin-bottom: 100rpx;
  46. }
  47. .list .list_item {
  48. width: 90%;
  49. margin: 20rpx auto;
  50. padding: 20rpx 20rpx;
  51. box-sizing: border-box;
  52. position: relative;
  53. background-color: #FFFFFF;
  54. box-shadow: 0 0 10rpx #bcb9ca;
  55. }
  56. .list .list_item .list_item_top {
  57. display: -webkit-box;
  58. display: -webkit-flex;
  59. display: flex;
  60. -webkit-box-pack: justify;
  61. -webkit-justify-content: space-between;
  62. justify-content: space-between;
  63. }
  64. .list .list_item .list_item_top .p1 {
  65. height: 60rpx;
  66. line-height: 60rpx;
  67. font-size: 28rpx;
  68. }
  69. .list .list_item .list_item_top .p1 image {
  70. width: 40rpx;
  71. height: 40rpx;
  72. vertical-align: text-top;
  73. margin-right: 20rpx;
  74. }
  75. .list .list_item .list_item_top .p2 {
  76. height: 60rpx;
  77. line-height: 60rpx;
  78. font-size: 28rpx;
  79. color: #42b983;
  80. }
  81. .list .list_item .list_item_top .p_out {
  82. height: 60rpx;
  83. line-height: 60rpx;
  84. font-size: 28rpx;
  85. color: red;
  86. }
  87. .list .list_item .list_item_text {
  88. margin-top: 20rpx;
  89. }
  90. .list .list_item .list_item_text ._p {
  91. font-size: 24rpx;
  92. color: #636363;
  93. margin-top: 10rpx;
  94. }
  95. .list .list_item .list_item_text ._p:first-child {
  96. font-size: 28rpx;
  97. font-weight: 700;
  98. }
  99. .list .list_item .list_item_btn {
  100. width: 126rpx;
  101. color: #42b983;
  102. height: 40rpx;
  103. text-align: center;
  104. border: 1rpx solid #42b983;
  105. border-radius: 25rpx;
  106. font-size: 24rpx;
  107. line-height: 35rpx;
  108. position: absolute;
  109. top: 136rpx;
  110. right: 20rpx;
  111. }
  112. .top {
  113. position: fixed;
  114. right: 30px;
  115. bottom: 100px;
  116. z-index: 100;
  117. }
  118. .top image {
  119. width: 100rpx;
  120. height: 100rpx;
  121. }