city.wxss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /* pages/Components/city/city.wxss */
  2. .container{
  3. padding: 0;
  4. margin: 0;
  5. }
  6. image{
  7. width: 40rpx;
  8. height: 40rpx;
  9. }
  10. .localView{
  11. display: flex;
  12. width: 700rpx;
  13. margin: 0 25rpx;
  14. color: #999;
  15. font-size: 28rpx;
  16. height: 80rpx;
  17. line-height: 80rpx;
  18. }
  19. .localView image{
  20. padding-top: 20rpx;
  21. margin-right: 10rpx;
  22. }
  23. .localName{
  24. margin-left: 20rpx;
  25. color: #333 !important;
  26. font-size: 36rpx;
  27. width: 500rpx;
  28. overflow: hidden;
  29. white-space: nowrap;
  30. text-overflow: ellipsis;
  31. }
  32. .middle-title{
  33. height: 100rpx;
  34. line-height: 100rpx;
  35. width: 750rpx;
  36. background: #f1f1f1;
  37. text-indent: 25rpx;
  38. margin-top: 20rpx;
  39. color: #666;
  40. }
  41. .hot-view{
  42. display: grid;
  43. justify-content: space-between;
  44. grid-template-columns: repeat(auto-fill, 150rpx);
  45. grid-gap: 10px;
  46. width: 700rpx;
  47. margin: 20rpx 25rpx;
  48. height: 160rpx;
  49. }
  50. .hot-list{
  51. width: 148rpx;
  52. height: 58rpx;
  53. line-height: 60rpx;
  54. text-align: center;
  55. border: 1rpx solid #999 ;
  56. color: #999;
  57. align-items: space-around;
  58. border-radius: 10rpx;
  59. font-size: 24rpx;
  60. margin-bottom: 20rpx;
  61. }
  62. .city-title{
  63. width: 750rpx;
  64. }
  65. .city-title-view{
  66. background: #f1f1f1;
  67. height: 60rpx;
  68. line-height: 60rpx;
  69. color: #999;
  70. font-size: 24rpx;
  71. text-indent: 25rpx;
  72. }
  73. .city-name-view{
  74. height: 100rpx;
  75. line-height: 100rpx;
  76. font-size: 32rpx;
  77. border-bottom: 1px solid #eee;
  78. width: 725rpx;
  79. margin-left: 25rpx;
  80. }
  81. .select-view{
  82. position: fixed;
  83. right: 20rpx;
  84. top: 25%;
  85. font-size: 24rpx;
  86. text-align: center;
  87. height: 40rpx;
  88. line-height: 40rpx;
  89. /* color: #EC3A4E; */
  90. color: #cc6031;
  91. }
  92. .tip-view{
  93. position: fixed;
  94. height: 100rpx;
  95. width: 100rpx;
  96. top: 50%;
  97. margin-top: -50rpx;
  98. left: 50%;
  99. margin-left: -50rpx;
  100. font-size: 80rpx;
  101. }
  102. .tip-view-hide{
  103. opacity: 0;
  104. }