city.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /* pages/city/city.wxss */
  2. .storeContent {
  3. width: 100%;
  4. height: 90rpx;
  5. padding: 0 32rpx;
  6. box-sizing: border-box;
  7. display: flex;
  8. align-items: center;
  9. justify-content: center;
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. background: #fff;
  14. z-index: 100;
  15. }
  16. .storeSearch {
  17. width: 614rpx;
  18. height: 64rpx;
  19. background: #F6F6F6;
  20. border-radius: 32rpx;
  21. display: flex;
  22. align-items: center;
  23. justify-content: flex-start;
  24. padding: 0 32rpx;
  25. box-sizing: border-box;
  26. margin-right: 10rpx;
  27. }
  28. .storeSearch image {
  29. width: 24rpx;
  30. height: 24rpx;
  31. }
  32. .storeSearch input {
  33. font-size: 24rpx;
  34. color: #333;
  35. margin-left: 8rpx;
  36. width: 80%;
  37. }
  38. .storeSearch .placeholderStyle {
  39. font-size: 24rpx;
  40. color: #B2B2B2;
  41. }
  42. .searchBtn {
  43. color: #0075DC;
  44. font-size: 28rpx;
  45. width: 60rpx;
  46. }
  47. .resulst {
  48. padding: 10rpx 32rpx;
  49. box-sizing: border-box;
  50. }
  51. page {
  52. height: 100%;
  53. background: #F6F6F6;
  54. }
  55. .scrollBox {
  56. height: calc(100vh - 74rpx);
  57. }
  58. .btn_jump {
  59. position: fixed;
  60. z-index: 9;
  61. top: 40%;
  62. right: 10rpx;
  63. transform: translateY(-50%);
  64. }
  65. .btn_jump .btn_item {
  66. font-size: 20rpx;
  67. color: #666666;
  68. margin: 10rpx 0;
  69. }
  70. .btn_jump .btn_item.active {
  71. color: #0075DC;
  72. }
  73. .jump_list {
  74. position: relative;
  75. height: 100%;
  76. }
  77. .list_item {
  78. height: 80rpx;
  79. }
  80. .list_item:nth-of-type(even) {
  81. background: #f8f8f8;
  82. }
  83. .cityTitle {
  84. background: #F6F6F6;
  85. color: #666666;
  86. font-size: 24rpx;
  87. height: 64rpx;
  88. padding: 0 32rpx;
  89. box-sizing: border-box;
  90. display: flex;
  91. align-items: center;
  92. }
  93. .cityItem {
  94. background: #fff;
  95. color: #333333;
  96. font-size: 28rpx;
  97. height: 88rpx;
  98. padding: 0 32rpx;
  99. box-sizing: border-box;
  100. display: flex;
  101. align-items: center;
  102. border-bottom: 2rpx solid #EDEDED;
  103. }