index.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. page{
  2. height: 100%;
  3. }
  4. .container{
  5. height: 100%;
  6. padding-bottom: calc(env(safe-area-inset-bottom) / 2 + 100rpx);
  7. }
  8. /*screen*/
  9. .tui-header-screen {
  10. width: 100%;
  11. box-sizing: border-box;
  12. background: #fff;
  13. position: fixed;
  14. z-index: 1000;
  15. }
  16. .tui-search-model {
  17. width: 100%;
  18. position: absolute;
  19. background: #fff;
  20. border-bottom-left-radius: 24rpx;
  21. border-bottom-right-radius: 24rpx;
  22. overflow: hidden;
  23. box-sizing: border-box;
  24. padding-top: 10rpx;
  25. padding-bottom: 26rpx;
  26. left: 0;
  27. top: 88rpx;
  28. visibility: hidden;
  29. transition: all 0.2s ease-in-out;
  30. z-index: 999;
  31. }
  32. .tui-search-model-show {
  33. visibility: visible;
  34. }
  35. .tui-search-model-mask {
  36. position: fixed;
  37. top: 0;
  38. left: 0;
  39. right: 0;
  40. bottom: 0;
  41. background: rgba(0, 0, 0, 0.6);
  42. z-index: -1;
  43. transition: all 0.2s ease-in-out;
  44. opacity: 0;
  45. visibility: hidden;
  46. }
  47. .tui-mask-show {
  48. opacity: 1;
  49. visibility: visible;
  50. }
  51. .tui-search-model-item {
  52. color: #333;
  53. font-size: 28rpx;
  54. box-sizing: border-box;
  55. align-items: center;
  56. justify-content: space-between;
  57. }
  58. .tui-attr-btnbox {
  59. width: 100%;
  60. box-sizing: border-box;
  61. padding: 0 30rpx;
  62. background: #fff;
  63. }
  64. .tui-attr-safearea {
  65. height: 100rpx;
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. }
  70. .tui-safearea-bottom {
  71. width: 100%;
  72. }
  73. .tui-attr-btnbox::before {
  74. content: '';
  75. position: absolute;
  76. top: 0;
  77. right: 0;
  78. left: 0;
  79. border-top: 1rpx solid #eaeef1;
  80. -webkit-transform: scaleY(0.5);
  81. transform: scaleY(0.5);
  82. }
  83. .tui-drawer-btn {
  84. width: 47%;
  85. text-align: center;
  86. height: 60rpx;
  87. border-radius: 30rpx;
  88. flex-shrink: 0;
  89. display: flex;
  90. align-items: center;
  91. justify-content: center;
  92. box-sizing: border-box;
  93. }
  94. .tui-drawerbtn-black {
  95. border: 1rpx solid #555;
  96. }
  97. .tui-drawerbtn-primary {
  98. background: #e41f19;
  99. color: #fff;
  100. }
  101. .tui-line-cell {
  102. width: 100%;
  103. box-sizing: border-box;
  104. display: flex;
  105. align-items: center;
  106. }
  107. .tui-title {
  108. font-size: 24rpx;
  109. line-height: 24rpx;
  110. flex-shrink: 0;
  111. }
  112. .tui-input {
  113. font-size: 24rpx;
  114. color: #333;
  115. padding-left: 20rpx;
  116. flex: 1;
  117. }
  118. .phcolor{
  119. font-size: 24rpx;
  120. }
  121. .tui-top-item {
  122. height: 28rpx;
  123. line-height: 28rpx;
  124. flex: 1;
  125. display: flex;
  126. align-items: center;
  127. justify-content: center;
  128. margin-left: 16rpx;
  129. }
  130. /**list**/
  131. .store-grid{
  132. margin-top: 200rpx;
  133. }
  134. .store-list-row{
  135. display: flex;
  136. align-items: center;
  137. position: relative;
  138. }
  139. .store-list-row .store-name{
  140. font-weight: 600;
  141. }
  142. .store-list-row .store-mobile{
  143. font-size:24rpx;
  144. color:#999;
  145. }
  146. .store-list-row .store-img{
  147. float:right;
  148. flex-direction: column;
  149. align-items: center;
  150. height:100rpx;
  151. width:100rpx;
  152. }
  153. .store-list-row .store-img image{
  154. height:100rpx;
  155. width:100rpx;
  156. }