index.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  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. .expertimages {
  28. width: 100%;
  29. height: 154rpx;
  30. position: fixed;
  31. top: 88px;
  32. z-index: 100;
  33. }
  34. .aftersale_search {
  35. position: fixed;
  36. z-index: 100;
  37. top: 104rpx;
  38. right: 20rpx;
  39. }
  40. .aftersale_search .sp_icon {
  41. font-size: 36rpx;
  42. margin-left: 16rpx;
  43. }
  44. .aftersaleTF {
  45. width: 100%;
  46. position: relative;
  47. top: 340rpx;
  48. text-align: center;
  49. padding-top: 40rpx;
  50. font-size: 20px;
  51. }
  52. .loading {
  53. position: fixed;
  54. top: 440px;
  55. width: 95%;
  56. left: 2.5%;
  57. text-align: center;
  58. }
  59. .loading .img {
  60. width: 300rpx;
  61. height: 40rpx;
  62. }
  63. .inputs {
  64. height: 54rpx;
  65. background-color: #E4E4E4;
  66. border-radius: 27rpx;
  67. position: absolute;
  68. right: 20rpx;
  69. top: 24rpx;
  70. -webkit-transition: width 0.5s;
  71. transition: width 0.5s;
  72. overflow: hidden;
  73. padding-top: 8rpx;
  74. box-sizing: border-box;
  75. }
  76. .inputs .inputbox {
  77. width: 85%;
  78. text-indent: 1rem;
  79. font-size: 26rpx;
  80. }
  81. .inputs .icon {
  82. position: absolute;
  83. top: 8rpx;
  84. right: 26rpx;
  85. }
  86. .aftersale {
  87. width: 100%;
  88. position: relative;
  89. top: 340rpx;
  90. margin-bottom: 80rpx;
  91. }
  92. .aftersale .aftersale_item {
  93. width: 90%;
  94. margin: 0 auto 30rpx;
  95. box-shadow: 0 0 10rpx #bcb9ca;
  96. padding: 30rpx 20rpx 20rpx;
  97. position: relative;
  98. box-sizing: border-box;
  99. }
  100. .aftersale .aftersale_item .aftersale_item_title {
  101. width: 100%;
  102. }
  103. .aftersale .aftersale_item .aftersale_item_title ._span {
  104. margin-left: 16rpx;
  105. font-weight: 700;
  106. }
  107. .aftersale .aftersale_item .aftersale_item_con {
  108. width: 92%;
  109. margin-left: 8%;
  110. margin-top: 20rpx;
  111. }
  112. .aftersale .aftersale_item .aftersale_item_con ._p {
  113. height: 48rpx;
  114. font-size: 24rpx;
  115. color: #BEBEBE;
  116. }
  117. .aftersale .aftersale_item .aftersale_item_operate {
  118. width: 70%;
  119. display: -webkit-box;
  120. display: -webkit-flex;
  121. display: flex;
  122. margin: 18rpx 0 0 30%;
  123. }
  124. .aftersale .aftersale_item .aftersale_item_operate button {
  125. width: 130rpx;
  126. padding: 0;
  127. font-size: 24rpx;
  128. color: #FFFFFF;
  129. }
  130. .aftersale .aftersale_item .aftersale_item_operate .fault {
  131. background-color: #F78E01;
  132. }
  133. .aftersale .aftersale_item .aftersale_item_operate .imgs {
  134. background-color: #71CD9A;
  135. }
  136. .aftersale .aftersale_item .aftersale_item_operate .video {
  137. background-color: #53C6E6;
  138. }
  139. .aftersale .aftersale_item .aftersale_item_operate .none {
  140. background-color: #F3F3F3;
  141. color: #B4B4B4;
  142. }
  143. .aftersale .aftersale_item .aftersale_item_icon {
  144. position: absolute;
  145. top: 0;
  146. right: 36rpx;
  147. }
  148. .aftersale .aftersale_item .aftersale_item_icon image {
  149. width: 68rpx;
  150. height: 64rpx;
  151. }
  152. .model {
  153. width: 90%;
  154. }
  155. .model .model_box {
  156. width: 90%;
  157. margin: 40rpx auto 48rpx;
  158. display: -webkit-box;
  159. display: -webkit-flex;
  160. display: flex;
  161. -webkit-box-pack: center;
  162. -webkit-justify-content: center;
  163. justify-content: center;
  164. }
  165. .top {
  166. position: fixed;
  167. right: 30px;
  168. bottom: 100px;
  169. z-index: 100;
  170. }
  171. .top image {
  172. width: 100rpx;
  173. height: 100rpx;
  174. }
  175. .addindent {
  176. width: 100%;
  177. position: fixed;
  178. bottom: 0;
  179. left: 0;
  180. height: 80rpx;
  181. text-align: center;
  182. line-height: 80rpx;
  183. background-color: #71cd9a;
  184. color: #ffffff;
  185. font-size: 16px;
  186. }