search.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. page {
  2. padding-bottom: 50rpx;
  3. }
  4. .page {
  5. padding: 0 46rpx;
  6. color: #131D34;
  7. }
  8. .search-w {
  9. display: flex;
  10. width: 658rpx;
  11. border: 2rpx solid #e5e5e5;
  12. border-radius: 8rpx;
  13. height: 80rpx;
  14. line-height: 76rpx;
  15. margin-top: 16rpx;
  16. }
  17. .search-left {
  18. width: 120rpx;
  19. font-size: 26rpx;
  20. padding-left: 26rpx;
  21. position: relative;
  22. font-weight: bold;
  23. }
  24. .search-left::after {
  25. content: '';
  26. width: 2rpx;
  27. height: 36rpx;
  28. position: absolute;
  29. top: 22rpx;
  30. right: 0;
  31. background: #E5E5E5;
  32. }
  33. .search-left .icon {
  34. position: absolute;
  35. right: 24rpx;
  36. }
  37. .select {
  38. position: absolute;
  39. background: #fff;
  40. left: 0;
  41. bottom: -180rpx;
  42. width: 100%;
  43. box-shadow:0px 2px 6px rgba(0,0,0,0.16);
  44. border: 2rpx solid #e5e5e5;
  45. border-radius: 8rpx;
  46. font-size: 26rpx;
  47. padding: 0 20rpx;
  48. z-index: 1111;
  49. }
  50. .select-w .mask {
  51. background: transparent;
  52. }
  53. .options {
  54. text-align: center;
  55. }
  56. .options:first-child {
  57. border-bottom: 2rpx solid #e5e5e5;
  58. }
  59. .options.active {
  60. color: #17D2D2;
  61. }
  62. .search-right {
  63. flex: 1;
  64. display: flex;
  65. font-size: 30rpx;
  66. padding-left: 24rpx;
  67. line-height: 76rpx;
  68. height: 76rpx;
  69. }
  70. .search-right input {
  71. height: 100%;
  72. flex: 1;
  73. margin-left: 12rpx;
  74. }
  75. .history-header {
  76. font-size: 26rpx;
  77. font-weight: bold;
  78. margin: 32rpx 0 26rpx;
  79. }
  80. .history-item {
  81. display: inline-block;
  82. padding: 0 26rpx;
  83. height: 40rpx;
  84. line-height: 40rpx;
  85. text-align: center;
  86. background: #F7F7F7;
  87. border-radius: 20rpx;
  88. font-size: 22rpx;
  89. margin: 0 20rpx 20rpx 0;
  90. }
  91. .search-tip {
  92. color: #909090;
  93. font-size: 22rpx;
  94. margin-bottom: 36rpx;
  95. margin-top: 34rpx;
  96. }
  97. .result-item {
  98. display: inline-block;
  99. width: 318rpx;
  100. margin-bottom: 34rpx;
  101. }
  102. .result-item:nth-child(2n) {
  103. margin-left: 22rpx;
  104. }
  105. .result-item .image {
  106. width: 100%;
  107. height: 238rpx;
  108. margin-bottom: 12rpx;
  109. background-repeat: no-repeat;
  110. background-position: center center;
  111. background-size: cover;
  112. }
  113. .result-name {
  114. font-size: 30rpx;
  115. font-weight: bold;
  116. line-height: 42rpx;
  117. }