index.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .task-map-container {
  2. height: 100%;
  3. .minemap-map {
  4. .minemap-popup-tip {
  5. display: none;
  6. }
  7. .minemap-popup-content {
  8. max-width: max-content;
  9. padding: unset;
  10. width: 350px;
  11. .title {
  12. width: 350px;
  13. height: 44px;
  14. line-height: 44px;
  15. padding: 0 20px;
  16. box-sizing: border-box;
  17. background: #003a8c;
  18. border-radius: 1px;
  19. font-size: 16px;
  20. color: #fff;
  21. }
  22. .action {
  23. padding: 0 24px 24px;
  24. }
  25. .content {
  26. height: max-content;
  27. padding: 24px;
  28. background: #fff;
  29. > div {
  30. display: flex;
  31. font-size: 14px;
  32. line-height: 20px;
  33. margin-bottom: 10px;
  34. > span:first-child {
  35. color: #666666;
  36. min-width: max-content;
  37. }
  38. > span:last-child {
  39. color: #333;
  40. word-break: break-all;
  41. }
  42. }
  43. }
  44. }
  45. }
  46. .address-type-card {
  47. position: absolute;
  48. top: 30px;
  49. right: 30px;
  50. width: max-content;
  51. min-width: 136px;
  52. background: rgba(255, 255, 255, 0.95);
  53. border-radius: 1px;
  54. padding: 20px;
  55. box-sizing: border-box;
  56. .card-item {
  57. display: flex;
  58. align-items: center;
  59. margin-right: 0;
  60. & > span {
  61. font-size: 14px;
  62. font-weight: 400;
  63. }
  64. }
  65. }
  66. }