searchCity.wxss 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .search-container {
  2. width: 750rpx;
  3. display: flex;
  4. flex-direction: column;
  5. align-items: flex-start;
  6. background: #ffffff;
  7. }
  8. .search-container .search-bar {
  9. width: calc(100% - 88rpx);
  10. height: 68rpx;
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. display: flex;
  15. align-items: center;
  16. background: #ffffff;
  17. padding: 0 44rpx 34rpx 44rpx;
  18. z-index: 10;
  19. }
  20. .search-container .search-bar .close-img {
  21. width: 22rpx;
  22. height: 22rpx;
  23. margin-right: 20rpx;
  24. }
  25. .search-container .search-bar .search-input {
  26. flex: 1;
  27. }
  28. .search-container .search-result-content {
  29. width: 100%;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: flex-start;
  33. background: #ffffff;
  34. padding-top: 102rpx;
  35. padding-bottom: 80rpx;
  36. }
  37. .search-container .search-result-content .search-item {
  38. width: 100%;
  39. }