client.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* pages/nav/pages/tabs/index.wxss */
  2. .search-w {
  3. border: 2rpx solid #E5E5E5;
  4. border-radius: 8rpx;
  5. width: 658rpx;
  6. margin: 0 auto;
  7. display: flex;
  8. height: 80rpx;
  9. line-height: 80rpx;
  10. margin-bottom: 66rpx;
  11. justify-content: space-between;
  12. align-items: center;
  13. }
  14. .search-w-left {
  15. display: flex;
  16. }
  17. .search-w-left .cuIcon-search {
  18. width: 54rpx;
  19. text-align: right;
  20. margin-right: 12rpx;
  21. }
  22. .search-input {
  23. height: 80rpx;
  24. line-height: 80rpx;
  25. width: 470rpx;
  26. position: relative;
  27. margin-left: 26rpx;
  28. }
  29. .search-input::after {
  30. content: '';
  31. display: block;
  32. height: 36rpx;
  33. width: 2rpx;
  34. background: #e5e5e5;
  35. position: absolute;
  36. right: 0;
  37. top: 22rpx;
  38. }
  39. .action {
  40. padding-right: 36rpx;
  41. display: flex;
  42. align-items: center;
  43. }
  44. .action .iconfont{
  45. font-size: 32rpx;
  46. margin-right: 12rpx;
  47. color: #1FE4DC;
  48. }
  49. .location-icon {
  50. width: 26rpx;
  51. height: 30rpx;
  52. margin-right: 10rpx;
  53. }
  54. .icon-list{
  55. display: flex;
  56. box-sizing: border-box;
  57. flex-direction: row;
  58. background: #fff;
  59. z-index: 1111;
  60. width: 100%;
  61. margin: 0 0 8px;
  62. align-items: flex-end;
  63. box-shadow:0px 8px 8px #F5F5F5;
  64. position: relative;
  65. padding: 0 40rpx 20rpx;
  66. }
  67. .icon-list .iconfont{
  68. font-size: 18rpx;
  69. color: rgba(0, 0, 0, .3);
  70. margin-left: 10rpx;
  71. }
  72. .icon-list .iconhose_arrow_active{
  73. color: #1FE4DC;
  74. }
  75. .icon-item{
  76. display: flex;
  77. font-size: 28rpx;
  78. margin-right: 50rpx;
  79. position: relative;
  80. line-height: 42rpx;
  81. align-items: center;
  82. justify-content: space-between;
  83. }
  84. .icon-item image {
  85. width: 16rpx;
  86. height: 10rpx;
  87. margin-left: 10rpx;
  88. flex-shrink: 0;
  89. }
  90. .fixed {
  91. position: fixed;
  92. top: 0;
  93. }
  94. .house-list {
  95. padding: 0 48rpx 0 44rpx;
  96. background: #fff;
  97. }
  98. .hover-icon{
  99. position: fixed;
  100. right: 10rpx;
  101. bottom: 100rpx;
  102. font-size: 160rpx;
  103. color: #1FE4DC;
  104. }
  105. .dp-con{
  106. position: absolute;
  107. left: 0;
  108. top: 74rpx;
  109. width: 100%;
  110. background-color: rgba(0, 0, 0, .3);
  111. overflow: hidden;
  112. transition: all ease .3s;
  113. z-index: -1;
  114. height:calc(100vh - 290rpx);
  115. pointer-events: none;
  116. opacity: 0;
  117. }
  118. .dp-active{
  119. pointer-events: auto;
  120. opacity: 1;
  121. /* height:calc(100vh - 290rpx); */
  122. }