2
0

style_amap.css 565 B

1234567891011121314151617181920212223242526272829303132333435
  1. .marker-label {
  2. color: #333;
  3. font-size: 12px;
  4. background: #fff;
  5. padding: 2px 6px;
  6. border: 1px solid #ccc;
  7. border-radius: 2px;
  8. white-space: nowrap;
  9. box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  10. display: flex;
  11. align-items: center;
  12. gap: 4px;
  13. }
  14. .amap-marker-label {
  15. border: none !important;
  16. background: none !important;
  17. }
  18. .status-dot {
  19. display: inline-block;
  20. width: 8px;
  21. height: 8px;
  22. border-radius: 50%;
  23. margin-left: 4px;
  24. }
  25. .status-dot.online {
  26. background-color: #4CAF50;
  27. }
  28. .status-dot.offline {
  29. background-color: #FF5252;
  30. }