inputtip.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. page {
  2. height: 100%;
  3. overflow-y: hidden;
  4. }
  5. .section {
  6. height: 89rpx;
  7. width: 100%;
  8. display: flex;
  9. border-bottom: 1px solid #eee;
  10. }
  11. .search_icon {
  12. flex-shrink: 0;
  13. padding: 24rpx;
  14. }
  15. .search_icon.active {
  16. background-color: #f4f4f4;
  17. }
  18. .search_icon image {
  19. width: 40rpx;
  20. height: 40rpx;
  21. }
  22. .section input {
  23. width: 100%;
  24. margin: 20rpx auto;
  25. background-color: #f4f4f4;
  26. color: #545253;
  27. height: 48rpx;
  28. line-height: 48rpx;
  29. min-height: 48rpx;
  30. border-radius: 24rpx;
  31. padding: 0 24rpx;
  32. font-size: 24rpx;
  33. font-family: 'Lucida Sans',
  34. 'Lucida Sans Regular',
  35. 'Lucida Grande',
  36. 'Lucida Sans Unicode',
  37. Geneva,
  38. Verdana,
  39. sans-serif;
  40. }
  41. .section_phcolor {
  42. color: #b5b5b5;
  43. }
  44. .cancel {
  45. flex-shrink: 0;
  46. width: 56rpx;
  47. height: 28rpx;
  48. line-height: 28rpx;
  49. min-height: 28rpx;
  50. padding: 30rpx 24rpx;
  51. font-size: 28rpx;
  52. color: #b4b4b4;
  53. }
  54. .no_result {
  55. width: 100%;
  56. height: 100%;
  57. padding-top: 60%;
  58. color: #dcdcdc;
  59. text-align: center;
  60. vertical-align: center;
  61. font-size: 24rpx;
  62. font-family: 'Lucida Sans',
  63. 'Lucida Sans Regular',
  64. 'Lucida Grande',
  65. 'Lucida Sans Unicode',
  66. Geneva,
  67. Verdana,
  68. sans-serif;
  69. }
  70. .context {
  71. height: calc(100% - 90rpx);
  72. }
  73. .text_box {
  74. width: 100%;
  75. border-bottom: 1px solid #eee;
  76. display: flex;
  77. }
  78. .text_box.active {
  79. background-color: #ebebeb;
  80. }
  81. .text_box .search {
  82. width: 40rpx;
  83. height: 40rpx;
  84. margin: 24rpx;
  85. flex-shrink: 0;
  86. }
  87. .text_box .search image {
  88. width: 40rpx;
  89. height: 40rpx;
  90. }
  91. .text_context {
  92. width: 100%;
  93. text-overflow: ellipsis;
  94. white-space: nowrap;
  95. overflow: hidden;
  96. }
  97. text {
  98. margin: 0 0 20rpx 0;
  99. display: block;
  100. font-size: 24rpx;
  101. font-family: 'Lucida Sans',
  102. 'Lucida Sans Regular',
  103. 'Lucida Grande',
  104. 'Lucida Sans Unicode',
  105. Geneva,
  106. Verdana,
  107. sans-serif;
  108. color: #545253;
  109. text-overflow: ellipsis;
  110. white-space: nowrap;
  111. overflow: hidden;
  112. line-height: 24rpx;
  113. height: 24rpx;
  114. min-height: 24rpx;
  115. min-width: 0;
  116. }
  117. text.bold {
  118. font-weight: bold;
  119. line-height: 24rpx;
  120. height: 24rpx;
  121. min-height: 24rpx;
  122. margin-top: 30rpx;
  123. margin-bottom: 10rpx;
  124. }
  125. text.h1 {
  126. margin: 0rpx 0rpx 30rpx 0rpx;
  127. font-size: 20rpx;
  128. line-height: 20rpx;
  129. height: 20rpx;
  130. min-height: 20rpx;
  131. color: #959595;
  132. }
  133. .right {
  134. margin: 30rpx;
  135. width: 144rpx;
  136. flex-shrink: 0;
  137. float: right;
  138. color: #b5b5b5;
  139. }