index.wxss 575 B

123456789101112131415161718192021222324252627282930313233343536
  1. .city-bar {
  2. overflow: scroll;
  3. height: 100vh;
  4. }
  5. .city-item {
  6. background: #eee;
  7. }
  8. .city-item .city-value-row {
  9. background: #fff;
  10. }
  11. .city-item .city-value-row.current-city-value {
  12. height: 50px;
  13. line-height: 50px;
  14. text-align: center;
  15. color: #409EFF;
  16. }
  17. .city-item .city-value-item {
  18. text-align: center;
  19. height: 50px;
  20. line-height: 50px;
  21. border-bottom: 2px solid #eee;
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. }
  25. .city-item .city-value-item.not-border {
  26. border: 2px solid transparent;
  27. }
  28. .city-item .city-value-item.changed {
  29. color: #409EFF;
  30. }