index.wxss 3.8 KB

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