style.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. body {
  2. /* set margin to 0 and overflow to hidden, to go fullscreen */
  3. margin: 0;
  4. overflow: hidden;
  5. }
  6. .navigation{
  7. display: flex;
  8. z-index: 10;
  9. position: fixed;
  10. top:15px;
  11. right:15px;
  12. user-select: none;
  13. -moz-user-select: none;
  14. -khtml-user-select: none;
  15. -webkit-user-select: none;
  16. -o-user-select: none;
  17. /* flex-direction: column;
  18. align-items: center; */
  19. }
  20. .navigation .map_img{
  21. width: 128px;
  22. height: 128px;
  23. }
  24. #map{
  25. position: absolute;
  26. /* z-index: 11;
  27. top:32px; */
  28. right:15px;
  29. }
  30. #cam{
  31. position: absolute;
  32. /* z-index: 12; */
  33. /* top:32px; */
  34. right:15px;
  35. /* transform: rotate(180deg); */
  36. }
  37. #redPoints{
  38. position: relative;
  39. right:15px;
  40. }
  41. .navigation .cam_img{
  42. width: 32px;
  43. height: 32px;
  44. }
  45. .navigation .point_img{
  46. width: 8px;
  47. height: 8px;
  48. }
  49. #tip{
  50. position: absolute;
  51. right:15px;
  52. bottom: 15px;
  53. color: gray;
  54. display: none;
  55. }
  56. #menuTip{
  57. position: absolute;
  58. left:50%;
  59. top: 50%;
  60. color: gray;
  61. display: none;
  62. transform: translate(-50%,-50%);
  63. font-size: 26px;
  64. }
  65. #menu{
  66. position: absolute;
  67. z-index: 9;
  68. display: none;
  69. bottom: 0px;
  70. width: 100%;
  71. overflow: auto;
  72. background-color: #eaeee3;
  73. }
  74. #menu .pano{
  75. position: relative;
  76. margin: 10px;
  77. cursor: pointer;
  78. }
  79. #menu .panoEnd{
  80. display: flex;
  81. justify-content: flex-end;
  82. align-items: flex-end;
  83. }
  84. #menu .panoSelect{
  85. position: relative;
  86. margin: 10px;
  87. cursor: pointer;
  88. background-color: violet;
  89. }
  90. #menu .pano .title,#menu .panoSelect .title{
  91. /* position: absolute;
  92. top:50%;
  93. left:50%;
  94. transform:translate(-50%,-50%);
  95. font-size: 18px;
  96. width: 120px;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. overflow: hidden;
  101. text-overflow: ellipsis;
  102. white-space: nowrap; */
  103. position: absolute;
  104. top: 90%;
  105. left: 50%;
  106. transform: translate(-50%,-50%);
  107. font-size: 16px;
  108. width: 100px;
  109. color: #eb9713;
  110. overflow: hidden;
  111. text-overflow: ellipsis;
  112. white-space: nowrap;
  113. }
  114. #menu .pano .thumb img,#menu .panoSelect .thumb img{
  115. width:120px;
  116. }
  117. /* ---------------------------------- */
  118. .home{
  119. display: flex;
  120. flex-direction: column;
  121. margin-left: 30px;
  122. margin-top: 30px;
  123. }
  124. .home .preview{
  125. display: flex;
  126. }
  127. .home .detail{
  128. }
  129. .home .detail .title{
  130. font-size: 24px;
  131. margin: 10px 5px;
  132. }
  133. .home .detail .thumb{
  134. width:480px;
  135. height:360px;
  136. }
  137. .home .detail .thumb img{
  138. width: 100%;
  139. max-width: 100%;
  140. max-height: 100%;
  141. }
  142. .home .descript{
  143. margin: 20px 25px;
  144. }
  145. #descriptTitle{
  146. font-size: 20px;
  147. margin: 10px 0px;
  148. }
  149. #descriptContent{
  150. }
  151. .home .descript .play{
  152. display: flex;
  153. position: relative;
  154. top: 40%;
  155. background-color: cadetblue;
  156. width: 90px;
  157. height: 40px;
  158. justify-content: center;
  159. align-items: center;
  160. font-size: 20px;
  161. color: #ffffff;
  162. transform:translate(0,-50%);
  163. cursor: pointer;
  164. }
  165. #listTitle{
  166. font-size: 20px;
  167. margin: 30px 30px 20px 30px;
  168. }
  169. #listContent{
  170. /* position: absolute;
  171. z-index: 9;
  172. display: flex;
  173. bottom: 0px;
  174. width: 100%;
  175. overflow: auto;
  176. background-color: #eaeee3; */
  177. /* position: absolute; */
  178. /* z-index: 9; */
  179. display: flex;
  180. bottom: 0px;
  181. width: 100%;
  182. margin-left: 30px;
  183. margin-right: 30px;
  184. overflow: auto;
  185. background-color: #eaeee3;
  186. /* display: flex;
  187. margin-top: 60px;
  188. margin-left: 30px;
  189. margin-right: 30px;
  190. height: 300px;
  191. overflow: auto;
  192. background-color: #eaeee3; */
  193. }
  194. #listContent .pano{
  195. position: relative;
  196. margin: 10px;
  197. cursor: pointer;
  198. }
  199. #listContent .panoEnd{
  200. /* display: flex;
  201. justify-content: flex-end;
  202. align-items: flex-end; */
  203. margin: 30px;
  204. }
  205. #listContent .panoSelect{
  206. position: relative;
  207. margin: 10px;
  208. cursor: pointer;
  209. background-color: violet;
  210. }
  211. #listContent .pano .title,#listContent .panoSelect .title{
  212. /* position: absolute;
  213. top:50%;
  214. left:50%;
  215. transform:translate(-50%,-50%);
  216. font-size: 18px;
  217. width: 120px;
  218. display: flex;
  219. justify-content: center;
  220. align-items: center;
  221. overflow: hidden;
  222. text-overflow: ellipsis;
  223. white-space: nowrap; */
  224. position: absolute;
  225. top: 90%;
  226. left: 50%;
  227. transform: translate(-50%,-50%);
  228. font-size: 16px;
  229. width: 100px;
  230. color: #eb9713;
  231. overflow: hidden;
  232. text-overflow: ellipsis;
  233. white-space: nowrap;
  234. }
  235. #listContent .pano .thumb img,#listContent .panoSelect .thumb img{
  236. width:200px;
  237. }
  238. *::-webkit-scrollbar {
  239. /*滚动条整体样式*/
  240. width: 8px;/*定义纵向滚动条宽度*/
  241. height: 8px;/*定义横向滚动条高度*/
  242. }
  243. *::-webkit-scrollbar-thumb {
  244. /*滚动条内部滑块*/
  245. border-radius: 8px;
  246. background-color: hsla(220, 4%, 58%, 0.3);
  247. transition: background-color 0.3s;
  248. }
  249. *::-webkit-scrollbar-thumb:hover {
  250. /*鼠标悬停滚动条内部滑块*/
  251. background: #bbb;
  252. }
  253. *::-webkit-scrollbar-track {
  254. /*滚动条内部轨道*/
  255. background: #ededed;
  256. }