style.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  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. height: 40%;
  127. }
  128. .home .detail{
  129. }
  130. .home .detail .title{
  131. font-size: 24px;
  132. margin: 10px 0px;
  133. }
  134. .home .detail .thumb{
  135. /* width:480px;
  136. height:360px; */
  137. /* max-width: 50%;
  138. max-height: 50%; */
  139. }
  140. .home .detail .thumb img{
  141. height: 50vh;
  142. min-width: 360px;
  143. min-height: 240px;
  144. max-height: 360px;
  145. max-width: 480px;
  146. }
  147. .home .descript{
  148. margin: 20px 25px;
  149. }
  150. #descriptTitle{
  151. font-size: 20px;
  152. margin: 10px 0px;
  153. }
  154. #descriptContent{
  155. }
  156. .home .descript .play{
  157. display: flex;
  158. position: relative;
  159. top: 40%;
  160. background-color: cadetblue;
  161. width: 90px;
  162. height: 40px;
  163. justify-content: center;
  164. align-items: center;
  165. font-size: 20px;
  166. color: #ffffff;
  167. transform:translate(0,-50%);
  168. cursor: pointer;
  169. }
  170. .home .descript .playSelect{
  171. display: flex;
  172. position: relative;
  173. top: 40%;
  174. background-color: #5f68a0;
  175. width: 90px;
  176. height: 40px;
  177. justify-content: center;
  178. align-items: center;
  179. font-size: 20px;
  180. color: #ffffff;
  181. transform:translate(0,-50%);
  182. cursor: pointer;
  183. }
  184. #listTitle{
  185. font-size: 20px;
  186. margin: 30px 30px 10px 30px;
  187. }
  188. #listContent{
  189. /* position: absolute;
  190. z-index: 9;
  191. display: flex;
  192. bottom: 0px;
  193. width: 100%;
  194. overflow: auto;
  195. background-color: #eaeee3; */
  196. /* position: absolute; */
  197. /* z-index: 9; */
  198. display: flex;
  199. bottom: 0px;
  200. width: 100%;
  201. margin-left: 30px;
  202. margin-right: 30px;
  203. overflow: auto;
  204. background-color: #eaeee3;
  205. /* display: flex;
  206. margin-top: 60px;
  207. margin-left: 30px;
  208. margin-right: 30px;
  209. height: 300px;
  210. overflow: auto;
  211. background-color: #eaeee3; */
  212. }
  213. #listContent .pano{
  214. position: relative;
  215. margin: 10px;
  216. cursor: pointer;
  217. }
  218. #listContent .panoEnd{
  219. /* display: flex;
  220. justify-content: flex-end;
  221. align-items: flex-end; */
  222. margin: 30px;
  223. }
  224. #listContent .panoSelect{
  225. position: relative;
  226. margin: 10px;
  227. cursor: pointer;
  228. background-color: violet;
  229. }
  230. #listContent .pano .title,#listContent .panoSelect .title{
  231. /* position: absolute;
  232. top:50%;
  233. left:50%;
  234. transform:translate(-50%,-50%);
  235. font-size: 18px;
  236. width: 120px;
  237. display: flex;
  238. justify-content: center;
  239. align-items: center;
  240. overflow: hidden;
  241. text-overflow: ellipsis;
  242. white-space: nowrap; */
  243. position: absolute;
  244. top: 90%;
  245. left: 50%;
  246. transform: translate(-50%,-50%);
  247. font-size: 16px;
  248. width: 100px;
  249. color: #eb9713;
  250. overflow: hidden;
  251. text-overflow: ellipsis;
  252. white-space: nowrap;
  253. }
  254. #listContent .pano .thumb,#listContent .panoSelect .thumb{
  255. height:100%;
  256. width:100%;
  257. min-width:150px;
  258. max-width:200px;
  259. min-height:120px;
  260. max-height:150px;
  261. }
  262. #listContent .pano .thumb img,#listContent .panoSelect .thumb img{
  263. height:97%;
  264. width:100%;
  265. min-height:120px;
  266. max-height:200px;
  267. }
  268. *::-webkit-scrollbar {
  269. /*滚动条整体样式*/
  270. width: 8px;/*定义纵向滚动条宽度*/
  271. height: 8px;/*定义横向滚动条高度*/
  272. }
  273. *::-webkit-scrollbar-thumb {
  274. /*滚动条内部滑块*/
  275. border-radius: 8px;
  276. background-color: hsla(220, 4%, 58%, 0.3);
  277. transition: background-color 0.3s;
  278. }
  279. *::-webkit-scrollbar-thumb:hover {
  280. /*鼠标悬停滚动条内部滑块*/
  281. background: #bbb;
  282. }
  283. *::-webkit-scrollbar-track {
  284. /*滚动条内部轨道*/
  285. background: #ededed;
  286. }