You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.css 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html,
  6. body,
  7. #viewer-container {
  8. width: 100%;
  9. height: 100%;
  10. overflow: hidden;
  11. }
  12. .custom-popup {
  13. background: rgba(39, 39, 39, 0.6);
  14. border-radius: 4px;
  15. color: #fff;
  16. text-align: center;
  17. }
  18. .custom-popup::after {
  19. position: absolute;
  20. content: '';
  21. left: calc(50% - 3.5px);
  22. bottom: -15px;
  23. border-width: 7px;
  24. border-style: solid;
  25. border-color: rgba(39, 39, 39, 0.6) transparent transparent transparent;
  26. }
  27. .dc-hawkeye-map {
  28. left: unset !important;
  29. bottom: unset !important;
  30. top: 20px !important;
  31. right: 20px !important;
  32. }
  33. .btn-box,.check-wrapper,.info-box{
  34. position: fixed;
  35. top: 20px;
  36. left: 80px;
  37. z-index: 1000;
  38. min-height: 40px;
  39. background: rgba(0,0,0,0.6);
  40. padding: 10px 10px 0 10px;
  41. border-radius: 10px;
  42. color:#fff;
  43. user-select: none;
  44. }
  45. .check-wrapper {
  46. height: 30px;
  47. padding-top: 10px;
  48. }
  49. #video{
  50. position: fixed;
  51. visibility: hidden;
  52. }
  53. .btn-box ul:nth-of-type(n+2){
  54. margin-top: 20px;
  55. margin-bottom: 10px;
  56. }
  57. .btn-box ul li {
  58. display: inline-block;
  59. }
  60. .btn-box ul li button {
  61. width: 60px;
  62. height: 30px;
  63. margin: 0 5px;
  64. background-color: rgba(32,160,255,.2);
  65. border: 1px solid #cecece;
  66. border-radius: 4px;
  67. color:#fff;
  68. cursor: pointer;
  69. outline: none;
  70. }
  71. .info-box{
  72. top: 80px;
  73. left: 10px;
  74. width: 310px;
  75. }
  76. .info-box ul{
  77. text-align: left;
  78. list-style: none;
  79. }
  80. .info-box ul li{
  81. margin: 10px 5px;
  82. }
  83. .info-box ul li:nth-of-type(1){
  84. text-align: center;
  85. font-size: 20px;
  86. }
  87. .sz-container{
  88. background-image: url("../images/bg/bg_xk.jpg");
  89. }
  90. .dg.ac{
  91. left: 90px !important;
  92. top:20px;
  93. right: unset;
  94. }
  95. .dg.main{
  96. border-top: 1px solid #9d9c9c;
  97. border-right: 1px solid #9d9c9c;
  98. }
  99. @media (max-width: 768px) {
  100. .btn-box,.check-wrapper{
  101. left: 20px !important;
  102. }
  103. .dg.ac{
  104. display: none;
  105. }
  106. }