search.wxss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* parents/pages/search/search.wxss */
  2. @import '../../../templates/nodata/nodata.wxss';
  3. @import '../../../templates/loading/loading.wxss';
  4. page{
  5. background: #fff
  6. }
  7. .search-cancel{
  8. color: #00B7FF;
  9. font-size: 30rpx;
  10. margin: auto;
  11. }
  12. .history{
  13. color: #393939;
  14. font-size: 30rpx;
  15. margin: 40rpx;
  16. }
  17. .history-items{
  18. display: flex;
  19. justify-content: space-between;
  20. }
  21. .history-item{
  22. display: inline-block;
  23. margin: 20rpx 20rpx 0 0;
  24. padding: 15rpx 27rpx;
  25. background: #F6F5FB;
  26. border-radius:34rpx;
  27. font-size: 24rpx;
  28. color: #6C6C80;
  29. }
  30. .history-img{
  31. width: 30rpx;
  32. height: 30rpx;
  33. }
  34. .header {
  35. /* background: #FAFAFA; */
  36. padding: 24rpx 40rpx;
  37. }
  38. .header-active {
  39. background: #fff;
  40. }
  41. .nodata{
  42. text-align: center;
  43. color: #999999;
  44. font-size: 30rpx;
  45. }
  46. .nodata-img{
  47. width: 122rpx;
  48. height: 138rpx;
  49. margin: 0 0 50rpx 0;
  50. }
  51. .items {
  52. position: relative;
  53. z-index: 99;
  54. }
  55. .item {
  56. padding: 24rpx 30rpx;
  57. display: flex;
  58. justify-content: flex-end;
  59. align-items: center;
  60. background: #fff;
  61. }
  62. .item-text {
  63. color: #00B7FF;
  64. font-size: 28rpx;
  65. }
  66. .item-icon {
  67. width: 14rpx;
  68. height: 14rpx;
  69. margin-left: 20rpx;
  70. transition: all .3s;
  71. }
  72. .item-icon-active {
  73. transform: rotate(180deg);
  74. }
  75. .items-modal {
  76. position: absolute;
  77. top: 100%;
  78. left: 0;
  79. width: 100%;
  80. height: 1500rpx;
  81. background: rgba(0, 0, 0, .5);
  82. }
  83. .items-modal-list {
  84. background: #fff;
  85. border-top: solid 1rpx #e6e6e6;
  86. padding-left: 30rpx;
  87. }
  88. .items-modal-li {
  89. padding: 30rpx 30rpx 30rpx 0;
  90. border-bottom: solid 1rpx #e6e6e6;
  91. display: flex;
  92. justify-content: space-between;
  93. align-items: center;
  94. }
  95. .items-modal-li:nth-last-of-type(1) {
  96. border-bottom: solid 1rpx transparent;
  97. }
  98. .items-modal-text {
  99. font-size: 28rpx;
  100. color: #999;
  101. }
  102. .items-modal-icon {
  103. width: 26rpx;
  104. height: 20rpx;
  105. }
  106. .topic{
  107. color: #333333;
  108. font-size: 30rpx;
  109. padding: 24rpx 20rpx;
  110. background: #fff;
  111. }
  112. .topic-img{
  113. height: 26rpx;
  114. width: 26rpx;
  115. margin-right: 8rpx;
  116. margin-bottom: 5rpx;
  117. }
  118. .topic>view{
  119. display: inline-block;
  120. }