style.css 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. body {
  2. /* set margin to 0 and overflow to hidden, to go fullscreen */
  3. margin: 0;
  4. overflow: hidden;
  5. background-image: url('./images/bg@2x.png');
  6. background-size:cover;
  7. color:#ffffff;
  8. font-family: "Microsoft YaHei";
  9. }
  10. .navigation{
  11. display: flex;
  12. z-index: 10;
  13. position: fixed;
  14. top:15px;
  15. right:15px;
  16. user-select: none;
  17. -moz-user-select: none;
  18. -khtml-user-select: none;
  19. -webkit-user-select: none;
  20. -o-user-select: none;
  21. /* flex-direction: column;
  22. align-items: center; */
  23. }
  24. .navigation .map_img{
  25. width: 128px;
  26. height: 128px;
  27. }
  28. #map{
  29. position: absolute;
  30. /* z-index: 11;
  31. top:32px; */
  32. right:15px;
  33. }
  34. #cam{
  35. position: absolute;
  36. /* z-index: 12; */
  37. /* top:32px; */
  38. right:15px;
  39. /* transform: rotate(180deg); */
  40. }
  41. #redPoints{
  42. position: relative;
  43. right:15px;
  44. }
  45. .navigation .cam_img{
  46. width: 32px;
  47. height: 32px;
  48. }
  49. .navigation .point_img{
  50. width: 8px;
  51. height: 8px;
  52. }
  53. #tip{
  54. position: absolute;
  55. right:15px;
  56. bottom: 15px;
  57. color: gray;
  58. display: none;
  59. }
  60. #menuTip{
  61. position: absolute;
  62. left:50%;
  63. top: 50%;
  64. color: gray;
  65. display: none;
  66. transform: translate(-50%,-50%);
  67. font-size: 26px;
  68. }
  69. #menuTitle{
  70. position: absolute;
  71. left:24px;
  72. top: 23px;
  73. color: #ffffff;
  74. display: none;
  75. /* transform: translate(-50%,-50%); */
  76. font-size: 27px;
  77. }
  78. #menu{
  79. position: absolute;
  80. z-index: 9;
  81. display: none;
  82. bottom: 0px;
  83. width: 100%;
  84. overflow: auto;
  85. background-color: rgba(0,0,0,0);
  86. }
  87. #menu .pano{
  88. position: relative;
  89. /* margin: 10px; */
  90. cursor: pointer;
  91. }
  92. #menu .panoEnd{
  93. display: flex;
  94. justify-content: flex-end;
  95. align-items: flex-end;
  96. }
  97. #menu .panoSelect{
  98. position: relative;
  99. /* margin: 10px; */
  100. cursor: pointer;
  101. /* background-color: violet; */
  102. }
  103. #menu .pano .title,#menu .panoSelect .title{
  104. position: absolute;
  105. top: 180px;
  106. left: 50%;
  107. transform: translate(-50%,0%);
  108. font-size: 16px;
  109. width: 273px;
  110. color: #ffffff;
  111. overflow: hidden;
  112. max-width: 270px;
  113. text-overflow: ellipsis;
  114. white-space: nowrap;
  115. text-align: center;
  116. }
  117. #menu .panoSelect .thumb {
  118. width:327px;
  119. height:233px;
  120. background-image: url('./images/rangle.png');
  121. background-size: cover;
  122. display: flex;
  123. align-items: center;
  124. justify-content: center;
  125. }
  126. #menu .pano .thumb{
  127. width:327px;
  128. height:233px;
  129. background-size: cover;
  130. display: flex;
  131. align-items: center;
  132. justify-content: center;
  133. }
  134. #menu .pano .thumb img,#menu .panoSelect .thumb img{
  135. width:273px;
  136. height:180px;
  137. margin-left: 5px;
  138. margin-top: 9px;
  139. }
  140. /* --------------------------------------------------------------------- */
  141. .home{
  142. display: flex;
  143. flex-direction: column;
  144. margin-left: 39px;
  145. /* margin-top: 30px; */
  146. }
  147. .home .preview{
  148. display: flex;
  149. height: 40%;
  150. }
  151. .home .detail{
  152. }
  153. .home .detail .detailtitle{
  154. display: flex;
  155. align-items: center;
  156. }
  157. .home .detail .titlelogo{
  158. width: 5px;
  159. height: 33px;
  160. background-color: #316FEE;
  161. }
  162. .home .detail .title{
  163. font-size: 30px;
  164. margin: 27px 15px;
  165. }
  166. .home .detail .thumb{
  167. /* width:480px;
  168. height:360px; */
  169. /* max-width: 50%;
  170. max-height: 50%; */
  171. }
  172. .home .detail .thumb img{
  173. width: 600px;
  174. height: 334px;
  175. }
  176. .home .descript{
  177. margin-top: 94px;
  178. margin-left: 25px;
  179. min-width: 588px;
  180. max-height: 334px;
  181. display: flex;
  182. flex-direction: column;
  183. justify-content: space-between;
  184. }
  185. #descriptTitle{
  186. font-size: 33px;
  187. margin-bottom: 10px;
  188. }
  189. #descriptContent{
  190. font-size: 21px;
  191. font-weight: Light;
  192. font-weight: lighter;
  193. line-height: 34px;
  194. max-width: 570px;
  195. }
  196. .home .descript .play{
  197. display: flex;
  198. position: relative;
  199. /* top: 40%; */
  200. background-color: #384071;
  201. width: 135px;
  202. height: 81px;
  203. justify-content: center;
  204. align-items: center;
  205. font-size: 20px;
  206. color: #ffffff;
  207. /* transform:translate(0,-50%); */
  208. cursor: pointer;
  209. flex-direction: column;
  210. }
  211. .home .descript .playlogo{
  212. width:0px;
  213. height:0px;
  214. border:13px solid transparent;
  215. border-left:24px solid #ffffff;
  216. transform: translate(6px, -6px);
  217. }
  218. .home .descript .playSelect{
  219. display: flex;
  220. position: relative;
  221. /* top: 40%; */
  222. background-color: #ff00f2;
  223. width: 135px;
  224. height: 81px;
  225. justify-content: center;
  226. align-items: center;
  227. font-size: 20px;
  228. color: #ffffff;
  229. /* transform:translate(0,-50%); */
  230. cursor: pointer;
  231. flex-direction: column;
  232. }
  233. #listTitle{
  234. font-size: 23px;
  235. margin-left: 42px;
  236. margin-top:42px;
  237. margin-bottom: 13px;
  238. /* margin: 30px 30px 10px 30px; */
  239. }
  240. #listContent{
  241. /* position: absolute;
  242. z-index: 9;
  243. display: flex;
  244. bottom: 0px;
  245. width: 100%;
  246. overflow: auto;
  247. background-color: #eaeee3; */
  248. /* position: absolute; */
  249. /* z-index: 9; */
  250. display: flex;
  251. bottom: 0px;
  252. width: 100%;
  253. margin-left: 44px;
  254. margin-right: 30px;
  255. height: 184px;
  256. overflow: auto;
  257. background-color: rgba(0,0,0,0);
  258. /* display: flex;
  259. margin-top: 60px;
  260. margin-left: 30px;
  261. margin-right: 30px;
  262. height: 300px;
  263. overflow: auto;
  264. background-color: #eaeee3; */
  265. }
  266. #listContent .pano{
  267. position: relative;
  268. margin: 0px 16px;
  269. cursor: pointer;
  270. }
  271. #listContent .panoEnd{
  272. /* display: flex;
  273. justify-content: flex-end;
  274. align-items: flex-end; */
  275. margin: 30px;
  276. }
  277. #listContent .panoSelect{
  278. position: relative;
  279. /* margin: 10px 16px; */
  280. cursor: pointer;
  281. height: 184px;
  282. background-color: #ff00f2;
  283. }
  284. #listContent .pano .title,#listContent .panoSelect .title{
  285. /* position: absolute;
  286. top:50%;
  287. left:50%;
  288. transform:translate(-50%,-50%);
  289. font-size: 18px;
  290. width: 120px;
  291. display: flex;
  292. justify-content: center;
  293. align-items: center;
  294. overflow: hidden;
  295. text-overflow: ellipsis;
  296. white-space: nowrap; */
  297. position: absolute;
  298. top: 156px;
  299. /* top: 90%;
  300. left: 50%;
  301. transform: translate(-50%,-50%); */
  302. font-size: 16px;
  303. width: 273px;
  304. color: #ffffff;
  305. overflow: hidden;
  306. text-overflow: ellipsis;
  307. white-space: nowrap;
  308. display: flex;
  309. justify-content: center;
  310. }
  311. #listContent .pano .thumb,#listContent .panoSelect .thumb{
  312. /* height:100%;
  313. width:100%;
  314. min-width:150px;
  315. max-width:200px;
  316. min-height:120px;
  317. max-height:150px; */
  318. width:277px;
  319. height: 184px;
  320. display: flex;
  321. align-items: center;
  322. justify-content: center;
  323. }
  324. #listContent .pano .thumb img,#listContent .panoSelect .thumb img{
  325. /* height:97%;
  326. width:100%;
  327. min-height:120px;
  328. max-height:200px; */
  329. width:273px;
  330. height: 180px;
  331. }
  332. *::-webkit-scrollbar {
  333. /*滚动条整体样式*/
  334. width: 1px;/*定义纵向滚动条宽度*/
  335. height: 1px;/*定义横向滚动条高度*/
  336. display: none;
  337. }
  338. *::-webkit-scrollbar-thumb {
  339. /*滚动条内部滑块*/
  340. border-radius: 1px;
  341. background-color: hsla(220, 4%, 58%, 0.3);
  342. transition: background-color 0.3s;
  343. }
  344. *::-webkit-scrollbar-thumb:hover {
  345. /*鼠标悬停滚动条内部滑块*/
  346. background: #bbb;
  347. }
  348. *::-webkit-scrollbar-track {
  349. /*滚动条内部轨道*/
  350. background: #ededed;
  351. }