search.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /***********search************/
  2. .content{
  3. }
  4. .search_space{
  5. height: 78rpx;
  6. }
  7. .search{
  8. display: block;
  9. height: 78rpx;
  10. background: #fede18;
  11. width:100%;
  12. position: fixed;
  13. z-index: 10;
  14. }
  15. .search_input_b{
  16. position: absolute;
  17. height: 52rpx;
  18. width:600rpx;
  19. top:13rpx;
  20. left:75rpx;
  21. background: white;
  22. border-radius: 10rpx;
  23. transition:all 0.5s;
  24. }
  25. .search_input_ani{
  26. position: absolute;
  27. top:13rpx;
  28. left:315rpx;
  29. display: flex;
  30. align-items:center;
  31. transition:all 0.5s;
  32. }
  33. .search_input_ic{
  34. width:22rpx;
  35. height:22rpx;
  36. }
  37. .search_input{
  38. margin-left:10rpx;
  39. width:500rpx;
  40. line-height: 52rpx;
  41. font-size: 24rpx;
  42. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  43. }
  44. .search_input_holder{
  45. color: rgba(183, 183, 183, 1);
  46. }
  47. .cancel_search{
  48. margin-left:60rpx;
  49. top:13rpx;
  50. height: 52rpx;
  51. line-height: 52rpx;
  52. color: rgba(56, 55, 53, 1);
  53. font-size: 26rpx;
  54. font-family: PingFangSC-Regular,NotoSansHans-DemiLight;
  55. }
  56. .input_supernatant{
  57. position: absolute;
  58. top: 13rpx;
  59. height: 52rpx;
  60. width: 100%;
  61. background: rgba(235, 235, 235, 0);
  62. z-index: 1;
  63. }
  64. .inputbind_focus{
  65. height: 52rpx;
  66. width:600rpx;
  67. margin-left:75rpx;
  68. }
  69. /*************hotsearch**************/
  70. .hot_search{
  71. position: absolute;
  72. top:78rpx;
  73. left: 100%;
  74. width:100%;
  75. padding-top: 30px;
  76. background:white;
  77. transition:all 0.5s;
  78. }
  79. .hot_search_t{
  80. text-indent: 38rpx;
  81. height: 33rpx;
  82. line-height: 33rpx;
  83. color: rgba(56, 55, 53, 1);
  84. font-size: 22rpx;
  85. }
  86. .hot_search_w{
  87. width:702rpx;
  88. margin-left:18rpx;
  89. display: flex;
  90. flex-wrap:wrap;
  91. }
  92. .hot_search_i{
  93. display: block;
  94. /* width:142rpx;*/
  95. padding:0rpx 25rpx;
  96. height: 52rpx;
  97. margin-top:30rpx;
  98. margin-left:28rpx;
  99. border-radius: 6rpx;
  100. border: 1px solid rgba(235, 235, 235, 1);
  101. line-height: 52rpx;
  102. color: rgba(56, 55, 53, 1);
  103. font-size: 24rpx;
  104. text-align: center;
  105. font-family: PingFangSC-Regular,NotoSansHans-Regular;
  106. }
  107. /*******focus*******/
  108. .search_focus .search_input_b{
  109. left:38rpx;
  110. }
  111. .search_focus .search_input_ani{
  112. left:75rpx;
  113. }
  114. .search_focus .hot_search{
  115. left:0rpx;
  116. }