style.css 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593
  1. html,body{
  2. height:100%;
  3. width: 100%;
  4. }
  5. body {
  6. /* set margin to 0 and overflow to hidden, to go fullscreen */
  7. margin: 0;
  8. overflow: hidden;
  9. /* background-image: url('./yaoimages/bg@2x.png');
  10. background-size:cover; */
  11. color:#ffffff;
  12. font-family: "Microsoft YaHei";
  13. /* width: 120vw; */
  14. }
  15. .navigation{
  16. display: flex;
  17. z-index: 10;
  18. position: fixed;
  19. top:15px;
  20. right:15px;
  21. user-select: none;
  22. -moz-user-select: none;
  23. -khtml-user-select: none;
  24. -webkit-user-select: none;
  25. -o-user-select: none;
  26. /* flex-direction: column;
  27. align-items: center; */
  28. }
  29. .navigation .map_img{
  30. width: 128px;
  31. height: 128px;
  32. }
  33. #map{
  34. position: absolute;
  35. /* z-index: 11;
  36. top:32px; */
  37. right:15px;
  38. }
  39. #cam{
  40. position: absolute;
  41. /* z-index: 12; */
  42. /* top:32px; */
  43. right:15px;
  44. /* transform: rotate(180deg); */
  45. }
  46. #redPoints{
  47. position: relative;
  48. right:15px;
  49. }
  50. .navigation .cam_img{
  51. width: 32px;
  52. height: 32px;
  53. }
  54. .navigation .point_img{
  55. width: 8px;
  56. height: 8px;
  57. }
  58. #tip{
  59. position: absolute;
  60. right:15px;
  61. bottom: 15px;
  62. color: gray;
  63. display: none;
  64. }
  65. #menuTip{
  66. position: absolute;
  67. left:20px;
  68. bottom: 20px;
  69. color: gray;
  70. display: flex;
  71. /* transform: translate(-50%,-50%); */
  72. font-size: 26px;
  73. z-index: 1;
  74. }
  75. #menuTitle{
  76. position: absolute;
  77. left:24px;
  78. top: 23px;
  79. color: #ffffff;
  80. display: none;
  81. /* transform: translate(-50%,-50%); */
  82. font-size: 27px;
  83. }
  84. #menu{
  85. position: absolute;
  86. z-index: 9;
  87. display: flex;
  88. bottom: 0px;
  89. width: 100%;
  90. overflow: auto;
  91. background-color: rgba(0,0,0,0);
  92. }
  93. #menu .pano{
  94. position: relative;
  95. /* margin: 10px; */
  96. cursor: pointer;
  97. }
  98. #menu .panoEnd{
  99. display: flex;
  100. justify-content: flex-end;
  101. align-items: flex-end;
  102. }
  103. #menu .panoSelect{
  104. position: relative;
  105. /* margin: 10px; */
  106. cursor: pointer;
  107. /* background-color: violet; */
  108. }
  109. #menu .pano .title,#menu .panoSelect .title{
  110. position: absolute;
  111. top: 180px;
  112. left: 50%;
  113. transform: translate(-50%,0%);
  114. font-size: 16px;
  115. width: 273px;
  116. color: #ffffff;
  117. overflow: hidden;
  118. max-width: 270px;
  119. text-overflow: ellipsis;
  120. white-space: nowrap;
  121. text-align: center;
  122. }
  123. #menu .panoSelect .thumb {
  124. width:327px;
  125. height:233px;
  126. background-image: url('../yaoimages/rangle.png');
  127. background-size: cover;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. }
  132. #menu .pano .thumb{
  133. width:327px;
  134. height:233px;
  135. background-size: cover;
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. }
  140. #menu .pano .thumb img,#menu .panoSelect .thumb img{
  141. width:273px;
  142. height:180px;
  143. margin-left: 5px;
  144. margin-top: 9px;
  145. }
  146. #menuControl{
  147. position: absolute;
  148. display: none;
  149. top: 220px;
  150. left: 33px;
  151. width: 89px;
  152. height: 177px;
  153. color: #fffff0;
  154. font-family: MicrosoftYaHei;
  155. justify-content: space-around;
  156. flex-direction: column;
  157. z-index: 1;
  158. }
  159. .menu_control_item{
  160. text-align: center;
  161. font-size: 20px;
  162. }
  163. #rotation_title,
  164. #zoom_title{
  165. height:26px;
  166. }
  167. #auto_rotation,
  168. #zoom{
  169. width: 53px;
  170. height: 53px;
  171. }
  172. #wholeDirection{
  173. position: absolute;
  174. display: none;
  175. bottom: 20px;
  176. right: 10px;
  177. /* width: 141px;
  178. height: 140px; */
  179. color: #ffffff;
  180. font-family: MicrosoftYaHei;
  181. justify-content: space-around;
  182. flex-direction: column;
  183. z-index: 1;
  184. }
  185. #wholeDirection .directionCenter{
  186. display: flex;
  187. justify-content: space-between;
  188. margin: 0px 10px;
  189. }
  190. #directionControl{
  191. /* position: absolute; */
  192. display: flex;
  193. bottom: 30px;
  194. right: 30px;
  195. width: 141px;
  196. height: 140px;
  197. color: #ffffff;
  198. font-family: MicrosoftYaHei;
  199. justify-content: space-around;
  200. flex-direction: column;
  201. background-image: url('../yaoimages/direction_board.png');
  202. background-size: cover;
  203. }
  204. #directionControl img{
  205. width: 15px;
  206. height: 14px;
  207. }
  208. #direct_top,
  209. #direct_bottom{
  210. display: flex;
  211. justify-content: center;
  212. flex-direction: column;
  213. align-items: center;
  214. }
  215. #direct_left,
  216. #direct_right{
  217. display: flex;
  218. justify-content: center;
  219. align-items: center;
  220. }
  221. #direct_left div,
  222. #direct_right div{
  223. margin: 0px 2px;
  224. }
  225. .direct_center{
  226. display: flex;
  227. justify-content: space-between;
  228. margin: 0px 10px;
  229. }
  230. #directionTop,
  231. #directionBottom{
  232. display: flex;
  233. justify-content: center;
  234. align-items: center;
  235. margin: 2px 0px;
  236. height: 21px;
  237. }
  238. #directionLeft{
  239. display: flex;
  240. justify-content: flex-end;
  241. align-items: center;
  242. margin: 0px 2px;
  243. width: 48px;
  244. text-align: center;
  245. }
  246. #directionRight{
  247. display: flex;
  248. justify-content: flex;
  249. align-items: center;
  250. margin: 0px 2px;
  251. width: 48px;
  252. text-align: center;
  253. }
  254. #direction_top_tip{
  255. display: flex;
  256. position: absolute;
  257. top: 10px;
  258. left: 50%;
  259. }
  260. /* --------------------------------------------------------------------- */
  261. .home{
  262. display: flex;
  263. flex-direction: column;
  264. margin-left: 39px;
  265. /* margin-top: 30px; */
  266. }
  267. .home .preview{
  268. display: flex;
  269. height: 40%;
  270. }
  271. .home .detail{
  272. }
  273. .home .detail .detailtitle{
  274. display: flex;
  275. align-items: center;
  276. margin-top: 37px ;
  277. margin-bottom: 27px ;
  278. }
  279. .home .detail .titlelogo{
  280. width: 5px;
  281. height: 33px;
  282. background-color: #316FEE;
  283. }
  284. .home .detail .title{
  285. font-size: 30px;
  286. margin-left: 15px ;
  287. }
  288. .home .detail .thumb{
  289. /* width:480px;
  290. height:360px; */
  291. /* max-width: 50%;
  292. max-height: 50%; */
  293. }
  294. .home .detail .thumb img{
  295. width: 600px;
  296. height: 334px;
  297. }
  298. .home .descript{
  299. margin-top: 94px;
  300. margin-left: 25px;
  301. min-width: 588px;
  302. max-height: 345px;
  303. display: flex;
  304. flex-direction: column;
  305. justify-content: space-between;
  306. }
  307. #descriptTitle{
  308. font-size: 33px;
  309. margin-bottom: 10px;
  310. }
  311. #descriptContent{
  312. font-size: 21px;
  313. font-weight: Light;
  314. font-weight: lighter;
  315. line-height: 34px;
  316. max-width: 570px;
  317. }
  318. .home .descript .play{
  319. display: flex;
  320. position: relative;
  321. /* top: 40%; */
  322. /* background-color: #384071; */
  323. background-image: url('../yaoimages/play_click.png');
  324. background-size: cover;
  325. width: 135px;
  326. height: 81px;
  327. justify-content: center;
  328. align-items: center;
  329. font-size: 20px;
  330. color: #ffffff;
  331. /* transform:translate(0,-50%); */
  332. cursor: pointer;
  333. flex-direction: column;
  334. }
  335. .home .descript .playlogo{
  336. width:0px;
  337. height:0px;
  338. border:13px solid transparent;
  339. border-left:24px solid #ffffff;
  340. transform: translate(6px, -6px);
  341. }
  342. .home .descript .playSelect{
  343. display: flex;
  344. position: relative;
  345. /* top: 40%; */
  346. background-color: #1F81FE;
  347. width: 135px;
  348. height: 81px;
  349. justify-content: center;
  350. align-items: center;
  351. font-size: 20px;
  352. color: #ffffff;
  353. /* transform:translate(0,-50%); */
  354. cursor: pointer;
  355. flex-direction: column;
  356. }
  357. #listTitle{
  358. font-size: 23px;
  359. margin-left: 42px;
  360. margin-top:32px;
  361. margin-bottom: -10px;
  362. /* margin: 30px 30px 10px 30px; */
  363. }
  364. #listContent{
  365. /* position: absolute;
  366. z-index: 9;
  367. display: flex;
  368. bottom: 0px;
  369. width: 100%;
  370. overflow: auto;
  371. background-color: #eaeee3; */
  372. /* position: absolute; */
  373. /* z-index: 9; */
  374. display: flex;
  375. bottom: 0px;
  376. width: 100vw;
  377. margin-left: 20px;
  378. /* margin-right: 30px; */
  379. /* height: 184px; */
  380. overflow: auto;
  381. background-color: rgba(0,0,0,0);
  382. /* min-width: 1280px; */
  383. width: calc( 1280px - 20px);
  384. /* display: flex;
  385. margin-top: 60px;
  386. margin-left: 30px;
  387. margin-right: 30px;
  388. height: 300px;
  389. overflow: auto;
  390. background-color: #eaeee3; */
  391. }
  392. #listContent .pano{
  393. position: relative;
  394. /* margin: 0px 16px; */
  395. cursor: pointer;
  396. }
  397. #listContent .panoEnd{
  398. /* display: flex;
  399. justify-content: flex-end;
  400. align-items: flex-end; */
  401. margin: 30px;
  402. }
  403. #listContent .panoSelect{
  404. position: relative;
  405. background-image: url('../yaoimages/rangle.png');
  406. background-size: cover;
  407. /*margin: 0px 16px;
  408. cursor: pointer;
  409. height: 184px;
  410. background-color: #ff00f2; */
  411. }
  412. #listContent .pano .title,#listContent .panoSelect .title{
  413. /* position: absolute;
  414. top:50%;
  415. left:50%;
  416. transform:translate(-50%,-50%);
  417. font-size: 18px;
  418. width: 120px;
  419. display: flex;
  420. justify-content: center;
  421. align-items: center;
  422. overflow: hidden;
  423. text-overflow: ellipsis;
  424. white-space: nowrap; */
  425. /* position: absolute;
  426. top: 156px;
  427. font-size: 16px;
  428. width: 273px;
  429. color: #ffffff;
  430. overflow: hidden;
  431. text-overflow: ellipsis;
  432. white-space: nowrap;
  433. display: flex;
  434. justify-content: center; */
  435. position: absolute;
  436. top: 176px;
  437. left: 50%;
  438. transform: translate(-50%,0%);
  439. font-size: 16px;
  440. width: 273px;
  441. color: #ffffff;
  442. overflow: hidden;
  443. max-width: 270px;
  444. text-overflow: ellipsis;
  445. white-space: nowrap;
  446. text-align: center;
  447. }
  448. #listContent .pano .thumb,#listContent .panoSelect .thumb{
  449. /* height:100%;
  450. width:100%;
  451. min-width:150px;
  452. max-width:200px;
  453. min-height:120px;
  454. max-height:150px; */
  455. /* width:277px;
  456. height: 184px;
  457. display: flex;
  458. align-items: center;
  459. justify-content: center; */
  460. width:327px;
  461. height:233px;
  462. display: flex;
  463. align-items: center;
  464. justify-content: center;
  465. }
  466. #listContent .pano .thumb img,#listContent .panoSelect .thumb img{
  467. /* height:97%;
  468. width:100%;
  469. min-height:120px;
  470. max-height:200px; */
  471. width:273px;
  472. height: 180px;
  473. margin-top: 8px;
  474. margin-left: 5px;
  475. }
  476. *::-webkit-scrollbar {
  477. /*滚动条整体样式*/
  478. width: 1px;/*定义纵向滚动条宽度*/
  479. height: 1px;/*定义横向滚动条高度*/
  480. display: none;
  481. }
  482. *::-webkit-scrollbar-thumb {
  483. /*滚动条内部滑块*/
  484. border-radius: 1px;
  485. background-color: hsla(220, 4%, 58%, 0.3);
  486. transition: background-color 0.3s;
  487. }
  488. *::-webkit-scrollbar-thumb:hover {
  489. /*鼠标悬停滚动条内部滑块*/
  490. background: #bbb;
  491. }
  492. *::-webkit-scrollbar-track {
  493. /*滚动条内部轨道*/
  494. background: #ededed;
  495. }