Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.css 1.8KB

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