popup.css 901 B

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