search.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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. .search_top_input {
  28. width: 80%;
  29. height: 54rpx;
  30. background-color: #E4E4E4;
  31. border-radius: 27rpx;
  32. position: absolute;
  33. top: 18rpx;
  34. right: 18rpx;
  35. padding-top: 8rpx;
  36. box-sizing: border-box;
  37. }
  38. .search_top_input input {
  39. width: 85%;
  40. text-indent: 1rem;
  41. font-size: 26rpx;
  42. }
  43. .search_top_input .icon {
  44. position: absolute;
  45. top: 8rpx;
  46. right: 26rpx;
  47. }
  48. .aftersaleinfo {
  49. width: 100%;
  50. position: relative;
  51. top: 98px;
  52. height: 100rpx;
  53. text-align: center;
  54. line-height: 100rpx;
  55. font-size: 32rpx;
  56. }
  57. .aftersale {
  58. width: 100%;
  59. position: relative;
  60. top: 98px;
  61. }
  62. .aftersale .aftersale_item {
  63. width: 90%;
  64. margin: 0 auto 30rpx;
  65. box-shadow: 0 0 10rpx #bcb9ca;
  66. padding: 30rpx 20rpx 20rpx;
  67. position: relative;
  68. box-sizing: border-box;
  69. }
  70. .aftersale .aftersale_item .aftersale_item_title {
  71. width: 100%;
  72. }
  73. .aftersale .aftersale_item .aftersale_item_title ._span {
  74. margin-left: 16rpx;
  75. font-weight: 700;
  76. }
  77. .aftersale .aftersale_item .aftersale_item_con {
  78. width: 92%;
  79. margin-left: 8%;
  80. margin-top: 20rpx;
  81. }
  82. .aftersale .aftersale_item .aftersale_item_con ._p {
  83. height: 48rpx;
  84. font-size: 24rpx;
  85. color: #BEBEBE;
  86. }
  87. .aftersale .aftersale_item .aftersale_item_operate {
  88. width: 70%;
  89. display: -webkit-box;
  90. display: -webkit-flex;
  91. display: flex;
  92. margin: 18rpx 0 0 30%;
  93. }
  94. .aftersale .aftersale_item .aftersale_item_operate button {
  95. width: 130rpx;
  96. padding: 0;
  97. font-size: 24rpx;
  98. color: #FFFFFF;
  99. }
  100. .aftersale .aftersale_item .aftersale_item_operate .fault {
  101. background-color: #F78E01;
  102. }
  103. .aftersale .aftersale_item .aftersale_item_operate .imgs {
  104. background-color: #71CD9A;
  105. }
  106. .aftersale .aftersale_item .aftersale_item_operate .video {
  107. background-color: #53C6E6;
  108. }
  109. .aftersale .aftersale_item .aftersale_item_operate .none {
  110. background-color: #F3F3F3;
  111. color: #B4B4B4;
  112. }
  113. .aftersale .aftersale_item .aftersale_item_icon {
  114. position: absolute;
  115. top: 0;
  116. right: 36rpx;
  117. }
  118. .aftersale .aftersale_item .aftersale_item_icon image {
  119. width: 68rpx;
  120. height: 64rpx;
  121. }
  122. .model {
  123. width: 90%;
  124. }
  125. .model .model_box {
  126. width: 90%;
  127. margin: 20rpx auto 48rpx;
  128. display: -webkit-box;
  129. display: -webkit-flex;
  130. display: flex;
  131. -webkit-box-pack: center;
  132. -webkit-justify-content: center;
  133. justify-content: center;
  134. }