您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.css 1.9KB

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