search.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /* 返回 */
  2. .nav {
  3. background-color: #101010;
  4. z-index: 3;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. width: 100%;
  9. /* height: 10%; */
  10. height: .88rem;
  11. display: flex;
  12. }
  13. .back{
  14. position: absolute;
  15. left: 0;
  16. top: 0;
  17. z-index: 3;
  18. width: 10%;
  19. height: .88rem;
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. }
  24. .back img {
  25. width: .18rem;
  26. }
  27. /* 页面标题 */
  28. .pageTitle {
  29. height: .88rem;
  30. width: 100%;
  31. display: flex;
  32. justify-content: center;
  33. align-items: center;
  34. background-color: #000;
  35. }
  36. /* 页面容器 */
  37. .container {
  38. width: 100%;
  39. min-height: 100vh;
  40. position: relative;
  41. }
  42. /* 搜索 */
  43. .searchContent {
  44. padding: 1.2rem .26rem 0;
  45. }
  46. .search {
  47. display: flex;
  48. justify-content: space-between;
  49. align-items: center;
  50. height: 50px;
  51. border-radius: 8px;
  52. background-color: #1C1A1B;
  53. }
  54. .searchLeft {
  55. display: flex;
  56. justify-content: center;
  57. align-items: center;
  58. width: 80px;
  59. }
  60. .searchImg {
  61. width: 20px;
  62. height: 20px;
  63. }
  64. .searchInput {
  65. background-color: #1C1A1B;
  66. border: none;
  67. outline: none;
  68. resize: none;
  69. height: 100%;
  70. line-height: 100%;
  71. width: 100%;
  72. color: #fff;
  73. text-align: left;
  74. /* font-size: .3rem; */
  75. }
  76. .clearTextImg {
  77. width: 20px;
  78. height: 20px;
  79. margin-right: .3rem;
  80. }
  81. .main {
  82. margin: .26rem .26rem 0;
  83. min-height: 73vh;
  84. }
  85. .title {
  86. margin-top: .3rem;
  87. font-size: .3rem;
  88. color: #E4E4E4;
  89. }
  90. .history {
  91. }
  92. .history li {
  93. margin-top: .22rem;
  94. display: flex;
  95. justify-content: space-between;
  96. align-items: center;
  97. }
  98. .history li p {
  99. color: #E4E4E4;
  100. font-size: .28rem;
  101. }
  102. .history li img {
  103. width: .4rem;
  104. height: .4rem;
  105. }
  106. .footer {
  107. width: 100%;
  108. position: relative;
  109. bottom: 0;
  110. }