search.wxss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. page {
  2. background: #fff;
  3. }
  4. .no-result {
  5. display: flex;
  6. align-items: center;
  7. flex-direction: column;
  8. color: #666;
  9. font-size: 30rpx;
  10. padding-top: 394rpx;
  11. }
  12. .no-result image {
  13. width: 218rpx;
  14. height: 218rpx;
  15. margin-bottom: 30rpx;
  16. }
  17. .header-content {
  18. display: flex;
  19. align-items: center;
  20. justify-content: center;
  21. height: 104rpx;
  22. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  23. }
  24. .search-content {
  25. width: 670rpx;
  26. height: 64rpx;
  27. border-radius: 64rpx;
  28. background: #f8f8f8;
  29. position: relative;
  30. display: flex;
  31. }
  32. .search-content .city-content {
  33. height: 64rpx;
  34. padding: 0 16rpx;
  35. box-sizing: border-box;
  36. display: flex;
  37. align-items: center;
  38. font-size: 26rpx;
  39. color: #444;
  40. white-space: nowrap;
  41. font-weight: bold;
  42. }
  43. .search-content .city-content .search-icon {
  44. width: 28rpx;
  45. height: 28rpx;
  46. margin-right: 20rpx;
  47. margin-top: -2rpx;
  48. }
  49. .search-content .city-content .bottom-arrow {
  50. width: 12rpx;
  51. height: 6rpx;
  52. margin-left: 8rpx;
  53. }
  54. .search-content .search-ipt {
  55. flex: 1;
  56. }
  57. .search-content .ipt-class {
  58. line-height: 64rpx;
  59. height: 64rpx;
  60. font-size: 26rpx;
  61. color: #444;
  62. }
  63. .search-content .input-placeholder {
  64. color: #999;
  65. }
  66. .load-more {
  67. padding: 40rpx 0;
  68. }