city.wxss 479 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* pages/city/city.wxss */
  2. .cityList {
  3. padding: 56rpx;
  4. }
  5. .city-title {
  6. font-size: 36rpx;
  7. font-weight: 500;
  8. line-height: 36rpx;
  9. margin-bottom: 56rpx;
  10. }
  11. .city-list {
  12. display: flex;
  13. justify-content: space-between;
  14. flex-wrap: wrap;
  15. }
  16. .city-list:after {
  17. content: '';
  18. display: block;
  19. height: 0;
  20. width: 200rpx;
  21. }
  22. .cityObj {
  23. background: #F6F6F6;
  24. width: 200rpx;
  25. height: 64rpx;
  26. line-height: 64rpx;
  27. text-align: center;
  28. border-radius: 10rpx;
  29. margin-bottom: 16rpx;
  30. }