yaolistyle.css 10 KB

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