popup.css 954 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* 弹窗样式 */
  2. #popup {
  3. position: absolute;
  4. width: fit-content;
  5. border-radius: 5px;
  6. color: #1c4a6f;
  7. font-size: 16px;
  8. box-shadow: 0px 0px 0px 0px #888888;
  9. }
  10. /* 弹窗下方的小三角形 */
  11. #popup::after {
  12. display: block;
  13. content: "";
  14. width: 0;
  15. height: 0;
  16. position: absolute;
  17. border: 12px solid transparent;
  18. border-top-color: #fff;
  19. bottom: -23px;
  20. left: 50%;
  21. transform: translateX(-50%);
  22. }
  23. #popup-content {
  24. width: fit-content;
  25. padding: 8px 16px;
  26. }
  27. .close_func {
  28. display: block;
  29. }
  30. /* 关闭弹窗按钮 */
  31. .ol-popup-closer {
  32. cursor: pointer;
  33. margin-top: 6px;
  34. margin-right: 10px;
  35. float: right;
  36. }
  37. #popup-content div {
  38. /* height: 30px; */
  39. height: fit-content;
  40. width: 360px;
  41. line-height: 30px;
  42. font-size: 16px;
  43. overflow: hidden;
  44. }
  45. #popup-content .moreInfo {
  46. float: right;
  47. }
  48. #popup-content .moreInfo a {
  49. color: #409EFF;
  50. }
  51. #popup-content .moreInfo a:hover {
  52. text-decoration: underline
  53. }