search.wxss 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306
  1. page{
  2. height: 100%;
  3. }
  4. .position{
  5. position: fixed;
  6. top:0;
  7. left: 0;
  8. right: 0;
  9. margin: 0 auto;
  10. }
  11. /* 头部搜索 */
  12. .top{
  13. height: 88rpx;
  14. display: flex;
  15. flex-direction:row;
  16. justify-content: center;
  17. align-items: center;
  18. background-color: #f8f8f8;
  19. }
  20. .search{
  21. width: 690rpx;
  22. }
  23. .search_arr {
  24. border: 1px solid #d0d0d0;
  25. border-radius: 50rpx;
  26. position: relative;
  27. background-color: #fff;
  28. display: flex;
  29. align-items: center;
  30. }
  31. .record{
  32. position: absolute;
  33. width: 48rpx;
  34. height: 48rpx;
  35. left: 0rpx;
  36. }
  37. .search-icon{
  38. width: 32rpx;
  39. height: 32rpx;
  40. position: absolute;
  41. left:40rpx;
  42. top:14rpx;
  43. }
  44. .search_arr input{
  45. height: 60rpx;
  46. border-radius: 5px;
  47. padding-left: 90rpx;
  48. font-size: 26rpx;
  49. width: 500rpx;
  50. }
  51. .search_arr button{
  52. width: 48rpx;
  53. height: 48rpx;
  54. border-style: none;
  55. background: transparent;
  56. }
  57. button::after{ border: none; }
  58. .placText{
  59. font-size: 28rpx;
  60. color:#666;
  61. padding-left: 90rpx;
  62. }
  63. .bc_text {
  64. line-height: 68rpx;
  65. height: 68rpx;
  66. margin-top: 34rpx;
  67. }
  68. .sousuo {
  69. margin-left: 15rpx;
  70. width: 15%;
  71. line-height: 150%;
  72. text-align: center;
  73. border: 1px solid #d0d0d0;
  74. border-radius: 10rpx;
  75. }
  76. .page_row{
  77. height: 60rpx;
  78. line-height: 88rpx;
  79. display: flex;
  80. flex-direction: row;
  81. justify-content:center;
  82. }
  83. .searchcion {
  84. position: absolute;
  85. left:40rpx;
  86. z-index: 2;
  87. height: 32rpx;
  88. width: 32rpx;
  89. top: 8rpx;
  90. }
  91. /* 咨询对象 */
  92. .object{
  93. width: 690rpx;
  94. margin:0 auto;
  95. }
  96. .object-title{
  97. font-size: 30rpx;
  98. color: #333;
  99. margin-top: 30rpx;
  100. }
  101. .object-content{
  102. display: flex;
  103. flex-wrap: wrap;
  104. }
  105. .object-content view{
  106. margin-top: 30rpx;
  107. height: 60rpx;
  108. font-size: 26rpx;
  109. color: #333;
  110. background-color: #efefef;
  111. margin-right: 30rpx;
  112. display: flex;
  113. align-items: center;
  114. justify-content: center;
  115. padding: 0rpx 30rpx 0rpx 30rpx;
  116. border-radius: 10rpx;
  117. }
  118. .object-title-search{
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. margin-top: 30rpx;
  123. }
  124. .object-title-search :first-child{
  125. color: #333;
  126. font-size: 30rpx;
  127. }
  128. .object-title-search :last-child{
  129. color: #32ad38;
  130. font-size: 26rpx;
  131. }
  132. /* 遮罩层 */
  133. .mask{
  134. width:100%;
  135. height:100%;
  136. position:fixed;
  137. background-color:rgba(70, 70, 70, 0.5);
  138. z-index:9999;
  139. top:0;
  140. left:0;
  141. opacity:1;
  142. display: flex;
  143. justify-content: center;
  144. align-items: flex-end;
  145. }
  146. .mask_content{
  147. width:542rpx;
  148. height: 320rpx;
  149. display: flex;
  150. flex-direction: column;
  151. align-items: center;
  152. background-color: #fff;
  153. border-radius: 20rpx;
  154. }
  155. .mask_content text{
  156. font-size: 30rpx;
  157. color:#333;
  158. margin-top: 54rpx;
  159. }
  160. .mask-input{
  161. height: 60rpx;
  162. border-bottom: 1rpx solid #000;
  163. text-align: center;
  164. margin-top: 30rpx;
  165. width: 388rpx;
  166. }
  167. .mask-btn{
  168. display: flex;
  169. justify-content: center;
  170. margin-top: 40rpx;
  171. }
  172. .mask-clear{
  173. width: 160rpx;
  174. height: 60rpx;
  175. border:1rpx solid #33ad37;
  176. border-radius: 60rpx;
  177. font-size: 26rpx;
  178. color: #33ad37;
  179. display: flex;
  180. justify-content: center;
  181. align-items: center;
  182. }
  183. .mask-true{
  184. width: 160rpx;
  185. height: 60rpx;
  186. background-color:#33ad37;
  187. border-radius: 60rpx;
  188. font-size: 26rpx;
  189. color: #fff;
  190. margin-left:50rpx;
  191. display: flex;
  192. justify-content: center;
  193. align-items: center;
  194. }
  195. .clear{
  196. display: flex;
  197. align-items: center;
  198. justify-content: center;
  199. margin-top: 60rpx;
  200. }
  201. .clear image{
  202. width: 60rpx;
  203. height: 60rpx;
  204. }
  205. /* 录音 */
  206. /* pages/myRecode/myRecode.wxss */
  207. .myRecode{
  208. /* padding-top:500rpx; */
  209. text-align: center;
  210. box-sizing: border-box;
  211. position: relative;
  212. bottom: 200rpx;
  213. z-index: 999;
  214. }
  215. .myRecode .recode{
  216. display: inline-block;
  217. width:200rpx;
  218. height:200rpx;
  219. /* background: #33ad37; */
  220. border-radius: 50%;
  221. text-align: center;
  222. /* color:#fff; */
  223. line-height: 200rpx;
  224. position: relative;
  225. z-index: 999;
  226. }
  227. .ripple{
  228. position: absolute;
  229. top:0;
  230. left:0;
  231. right:0;
  232. bottom:0;
  233. border-radius: 50%;
  234. border:2px solid #F6F1CC;
  235. }
  236. .rippleAnimation1{
  237. animation: ripple 1s infinite linear;
  238. }
  239. .rippleAnimation2{
  240. animation: ripple 1s infinite linear;
  241. animation-delay:0.3s;
  242. }
  243. .rippleAnimation3{
  244. animation: ripple 1s infinite linear;
  245. animation-delay:0.6s;
  246. }
  247. @keyframes ripple{
  248. from{
  249. opacity: 1;
  250. transform: scale(1,1)
  251. }
  252. to{
  253. opacity: 0;
  254. transform: scale(2,2)
  255. }
  256. }
  257. /* 全屏覆盖层 */
  258. .allMask{
  259. width: 100%;
  260. height: 100%;
  261. position: fixed;
  262. z-index: 99
  263. }
  264. /* 结果 */
  265. .search-content{
  266. width: 100%;
  267. display: flex;
  268. flex-direction: column;
  269. align-items: center;
  270. }
  271. .search-content-line{
  272. width: 690rpx;
  273. display: flex;
  274. justify-content: space-between;
  275. align-items: center;
  276. height: 80rpx;
  277. border-bottom: 1rpx solid #e5e5e5;
  278. }
  279. .search-content-line text{
  280. font-size: 26rpx;
  281. color: #666;
  282. }
  283. .search-content-line image{
  284. width: 30rpx;
  285. height: 30rpx;
  286. }
  287. /* 空数据 */
  288. .noList{
  289. display: flex;
  290. flex-direction: column;
  291. justify-content: center;
  292. align-items: center;
  293. }
  294. .noList view{
  295. margin-top: 30rpx;
  296. font-size: 28rpx;
  297. color: #999;
  298. }
  299. .noList image{
  300. width:278rpx;
  301. height:182rpx;
  302. text-align:center;
  303. margin-top:100rpx;
  304. }