lzb.css 22 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175
  1. i{ font-style: normal; }
  2. /* 新编辑界面 */
  3. body{
  4. background: rgba(38, 39, 41, 1);
  5. }
  6. .wrapper{
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .pinBottom-container, .pinTop{
  11. position: absolute;
  12. }
  13. /* 头部 */
  14. .toolTop {
  15. display: flex;
  16. height: 50px;
  17. justify-content: space-between;
  18. border-bottom: 1px solid rgb(0, 0, 0);
  19. vertical-align: middle;
  20. line-height: 50px;
  21. padding: 0;
  22. }
  23. .toolTop .model-title2 {
  24. font-size:16px;
  25. }
  26. .toolTop .btns {
  27. display: flex;
  28. }
  29. .toolTop .btns>div {
  30. margin: 0 10px;
  31. display: flex;
  32. cursor: pointer;
  33. }
  34. .toolTop .btns>div label {
  35. cursor: pointer;
  36. }
  37. .toolTop .btns span {
  38. width: 20px;
  39. height: 100%;
  40. display: block;
  41. margin-right: 4px;
  42. margin-top: 0px;
  43. }
  44. .toolTop .btns #save>span {
  45. background-image: url("../images/edit/save.png");
  46. background-size: 152%;
  47. background-repeat:no-repeat;
  48. background-position:center center;
  49. }
  50. /* 底部 */
  51. .toolBottom {
  52. height: calc(100% - 50px);
  53. border-top: 1px solid rgb(93, 93, 93);
  54. display: flex;
  55. font-size: 12px;
  56. text-align: center;
  57. }
  58. /* 底部左边 */
  59. .toolBottom .toolLeft {
  60. width: 64px;
  61. border-right: 1px solid black;
  62. padding: 10px 0;
  63. }
  64. .toolBottom .toolLeft ul {
  65. overflow-y: auto;
  66. }
  67. .toolBottom .toolLeft li {
  68. display: inline-block;
  69. width: 100%;
  70. padding: 12px 0;
  71. opacity: 0.8;
  72. cursor: pointer;
  73. transition: background 0.1s, opacity 0.1s;
  74. }
  75. .toolBottom .toolLeft li label {
  76. cursor: pointer;
  77. }
  78. .toolBottom .toolLeft li.active {
  79. background: #00a2d4;
  80. opacity: 1;
  81. }
  82. .toolBottom .toolLeft li span {
  83. display: inline-block;
  84. width: 100%;
  85. height: 20px;
  86. background-size: 55%;
  87. margin-bottom: 0px;
  88. background-repeat:no-repeat;
  89. background-position:center center;
  90. }
  91. .toolBottom .toolLeft li span.hotpoint {
  92. background-image: url(../images/edit/hotpoint.png);
  93. }
  94. .toolBottom .toolLeft li span.screen {
  95. background-image: url(../images/edit/screen.png);
  96. }
  97. .toolBottom .toolLeft li span.information {
  98. background-image: url(../images/edit/information.png);
  99. }
  100. .toolBottom .toolLeft li span.music {
  101. background-image: url(../images/edit/music.png);
  102. }
  103. .toolBottom .toolLeft li span.snapTour {
  104. background-image: url(../images/edit/autoTour.png);
  105. }
  106. /* 底部中间 */
  107. .toolBottom .toolMid {
  108. border-left: 1px solid rgb(93, 93, 93);
  109. border-right: 1px solid rgb(0,0,0);
  110. width: calc(100% - 300px);
  111. height:100%;
  112. }
  113. #webgl {
  114. width: 100%;
  115. height: calc(100% - 93px);
  116. padding: 15px;
  117. }
  118. #webgl .webgl-inside {
  119. width: 100%;
  120. height: 100%;
  121. position: relative;
  122. overflow: hidden;
  123. }
  124. .content{
  125. width: 100%;
  126. height: 100%;
  127. position: relative;
  128. overflow: hidden;
  129. }
  130. /* 底部右边 */
  131. .toolBottom .toolRight {
  132. width: 236px;
  133. border-left: 1px solid rgb(93, 93, 93);
  134. }
  135. .toolRight div.content {
  136. height: 100%;
  137. overflow-y: auto;
  138. user-select: none;
  139. /* overflow-x: hidden; */
  140. }
  141. .toolRight div.content>ul>li {
  142. border-top: 1px solid #5d5d5d;
  143. border-bottom: 1px solid #000000;
  144. padding: 10px;
  145. }
  146. .toolRight div.content>ul>li:last-child, .toolRight .noBorderbott{
  147. border-bottom: none !important;
  148. }
  149. .toolRight div.content>ul>li:first-child {
  150. border-top: none;
  151. }
  152. .toolRight div.content>ul>li>*:first-child {
  153. margin: 3px 0 10px 0;
  154. }
  155. .toolRight .itemTitle {
  156. font-size:14px;
  157. display: flex;
  158. line-height: 14px;
  159. position: relative;
  160. }
  161. .toolRight li[data-name=info] .itemTitle{
  162. margin: 0px 0 !important;
  163. }
  164. .toolRight .itemTitle::before {
  165. position: absolute;
  166. right: 0px;
  167. top: 2px;
  168. content: ""attr(data-size)"";
  169. color: #999;
  170. }
  171. .toolRight .link input:first-child{
  172. margin-bottom:10px;
  173. }
  174. ul.MenuOptions {
  175. width: 100%;
  176. overflow: hidden;
  177. background: rgb(67, 67, 67);
  178. padding: 0px;
  179. cursor: pointer;
  180. flex-direction: row;
  181. align-items: center;
  182. display: flex;
  183. justify-content: space-between;
  184. }
  185. ul.MenuOptions li {
  186. text-align: center;
  187. display: inline-block;
  188. transition: color 0.1s;
  189. width: 100%;
  190. transition: background-color 0.3s;
  191. }
  192. ul.MenuOptions li.chosen {
  193. background-color: #00a2d4;
  194. }
  195. .toolRight div.content {
  196. border-color: #737373;
  197. width: calc(100% + 18px);
  198. }
  199. .toolRight div.content>ul {
  200. width: 236px;
  201. }
  202. .toolRight .input, .toolRight .editText {
  203. width: 100%;
  204. outline: none;
  205. border: 1px solid #737373;
  206. background-color: #000;
  207. color: #fff;
  208. letter-spacing: 1px;
  209. border-radius: 2px;
  210. height: 32px;
  211. padding: 0 10px;
  212. }
  213. .toolRight .editText {
  214. height: 200px !important;
  215. line-height: 130% !important;
  216. padding: 10px;
  217. text-align: justify;
  218. }
  219. @keyframes warnFlash {
  220. 0% {
  221. background-color:rgba(2, 200, 174, 0);
  222. }
  223. 100% {
  224. background-color:rgba(2, 200, 174, 1);
  225. }
  226. }
  227. .warning{
  228. -webkit-animation: warnFlash 0.6s linear;
  229. -moz-animation: warnFlash 0.6s linear;
  230. -ms-animation: warnFlash 0.6s linear;
  231. -o-animation: warnFlash 0.6s linear;
  232. animation: warnFlash 0.6s linear
  233. animation-direction:alternate;
  234. -webkit-animation-direction:alternate;
  235. animation-iteration-count: infinite;
  236. border-color:#a7a7a7 !important;
  237. }
  238. .toolRight .hotpointDetail{
  239. height: 100%;
  240. position: fixed;
  241. top: 0;
  242. left: calc(100% - 235px);
  243. background: rgba(38, 39, 41, 1);
  244. width: 236px;
  245. box-shadow: 0px 0px 20px #090909;
  246. transition:left 0.2s;
  247. z-index: 100;
  248. }
  249. .toolRight .hotpointDetail.atRight{
  250. left:100%;
  251. }
  252. .toolRight div.content>ul>li {
  253. border-top: 1px solid #5d5d5d;
  254. border-bottom: 1px solid #000000;
  255. padding: 10px;
  256. }
  257. .toolRight div.content>ul>li:first-child {
  258. border-top: none;
  259. }
  260. .toolRight div.content>ul>li>* {
  261. margin: 6px 0 12px 0;
  262. line-height: 32px;
  263. height: 100%;
  264. }
  265. .buttons button {
  266. width: 100%;
  267. background-color: #00b4ed;
  268. line-height: 1 !important;
  269. color: #fff;
  270. border:none;
  271. cursor: pointer;
  272. }
  273. .toolRight .addSpot button,.toolRight .addTour button{
  274. height:40px;
  275. line-height:40px;
  276. border-radius: 20px;
  277. font-size:14px;
  278. }
  279. .remark {
  280. display: block;
  281. text-align: left;
  282. color: #ababab;
  283. line-height: 1.5 !important;
  284. letter-spacing: 0.1px;
  285. text-align: justify;
  286. }
  287. .toolRight .addSpot .buttons,.toolRight .addTour .buttons{
  288. margin:0 !important;
  289. }
  290. .toolRight .hotStyle-item li {
  291. width: 38px;
  292. height: 38px;
  293. margin: 2px 6px 5px 0;
  294. float:left;
  295. cursor:pointer;
  296. background-size: 100%;
  297. background-repeat: no-repeat;
  298. border: 2px solid transparent;
  299. }
  300. .toolRight .hotStyle-item li.active{
  301. border: 2px solid #00b4ed;
  302. }
  303. .other-item{
  304. text-align: left;
  305. font-size: 14px;
  306. }
  307. .other-item .colorRed{
  308. color: #c77a7a;
  309. font-style:normal;
  310. }
  311. .other-item label{cursor: pointer;}
  312. .editCheckbox{ position: absolute; opacity: 0; cursor: pointer; }
  313. .editCheckbox + label{
  314. background-color: #fff;
  315. border:1px #ccc solid;
  316. border-radius: 2px;
  317. width:16px;
  318. height:16px;
  319. display :inline-block;
  320. text-align: center;
  321. vertical-align: middle;
  322. line-height: 16px;
  323. cursor: pointer;
  324. }
  325. .editCheckbox:checked + label{
  326. border:0;
  327. background-color: #fff;
  328. }
  329. .editCheckbox:checked + label:after{
  330. content:"\2714";
  331. color: #00b4ed;
  332. }
  333. .toolRight .snapTour .tourList{
  334. padding-bottom: 209px;
  335. }
  336. .toolRight .snapTour .tourList li{
  337. height:75px;
  338. display:flex;
  339. margin: 16px 0;
  340. }
  341. .toolRight .snapTour .tourList li:first-child{
  342. margin-top:0;
  343. }
  344. .toolRight .snapTour .tourList li>div:nth-child(2){
  345. /* background: #3e1313; */
  346. width: calc(100% - 107px);
  347. height: 100%;
  348. position: relative;
  349. }
  350. .toolRight .snapTour .tourList li>div:nth-child(2) span{
  351. text-align:left;
  352. margin: 0 10px 0 0;
  353. font-size: 14px;
  354. text-overflow: ellipsis;
  355. height: 66px;
  356. display: -webkit-box;
  357. -webkit-box-orient: vertical;
  358. overflow:hidden;
  359. -webkit-line-clamp: 2;
  360. color: #00b4ed;
  361. word-wrap: break-word;
  362. line-height: 22px;
  363. cursor: text;
  364. }
  365. .toolRight .snapTour .tourList li>div:first-child span {
  366. border-radius: 11px;
  367. background: #373939;
  368. width: 22px;
  369. display: block;
  370. text-align: center;
  371. height: 22px;
  372. line-height: 22px;
  373. font-size: 12px;
  374. margin-right: 10px;
  375. }
  376. .toolRight .snapTour .tourList li:last-child >div:first-child span{
  377. background:#00b4ed
  378. }
  379. .toolRight .snapTour .tourList li>div:first-child{
  380. position:relative;
  381. }
  382. .toolRight .snapTour .tourList li>div:first-child div.line {
  383. border-left:2px solid #373939;
  384. height: 70px;
  385. position: absolute;
  386. left: 10px;
  387. top: 21px;
  388. z-index: 0;
  389. }
  390. .toolRight .snapTour .tourList li:last-child div.line{
  391. display:none;
  392. }
  393. .toolRight .snapTour .tourList li .preview{
  394. width: 75px;
  395. cursor:pointer;
  396. position: relative;
  397. overflow: hidden;
  398. }
  399. .toolRight .snapTour .tourList li .preview::before{
  400. content: '删除';
  401. width: 50px;
  402. height: 30px;
  403. position: absolute;
  404. border-radius: 20px;
  405. color: #fff;
  406. background: #c77a7a;
  407. left: 50%;
  408. top: 50%;
  409. transform: translate(-250%,-50%);
  410. }
  411. .toolRight .snapTour .tourList li .preview:hover::before{
  412. transform: translate(-50%,-50%);
  413. }
  414. .toolRight .snapTour .tourList li .preview div{
  415. width:100%;
  416. height:100%;
  417. border-radius: 3px;
  418. transition: opacity 0.3s;
  419. background-size:cover;
  420. background-position-y: bottom;
  421. }
  422. .toolRight .snapTour .tourList li .preview div:hover{
  423. opacity: 0.2;
  424. }
  425. .toolRight .snapTour .tourList li input{
  426. position:absolute;
  427. top: -5px;
  428. left: 0;
  429. width: 185px;
  430. z-index: 100;
  431. }
  432. .toolRight input, .toolRight div.editText {
  433. width: 100%;
  434. outline: none;
  435. border: 1px solid #737373;
  436. background-color: #000;
  437. padding: 0 10px;
  438. color: #fff;
  439. letter-spacing: 1px;
  440. border-radius: 2px;
  441. height: 32px;
  442. }
  443. .toolRight .mediaUpload .itemTitle{
  444. height: 32px;
  445. }
  446. .toolRight .itemTitle::before {
  447. position: absolute;
  448. right: 0px;
  449. top: 2px;
  450. content: ""attr(data-size)"";
  451. color: #999;
  452. }
  453. .toolRight .itemTitle {
  454. font-size:14px;
  455. display: flex;
  456. line-height: 14px;
  457. position: relative;
  458. }
  459. .toolRight .mediaUpload .itemTitle span{
  460. position:absolute; left:0; /*for Ie*/
  461. }
  462. .toolRight .mediaUpload .itemTitle .buttons{
  463. position:absolute;
  464. right:0;
  465. width: 70px;
  466. height: 100%;
  467. }
  468. .innerBtn {
  469. border-radius: 17px;
  470. height: 34px;
  471. line-height: 34px;
  472. background-color: rgba(0, 0, 0, 0.3);
  473. border-color: rgba(0, 0, 0, 0.3);
  474. text-align: center;
  475. }
  476. .toolRight .music input[type="file"], .toolRight .audio input[type="file"] {
  477. opacity: 0;
  478. width: 200%;
  479. height: 100%;
  480. position: absolute;
  481. left: -100%;
  482. top: 0;
  483. cursor: pointer;
  484. z-index: 2;
  485. }
  486. .toolRight .playBox{
  487. border:1px solid #5d5d5d;
  488. display:flex;
  489. padding: 6px;
  490. width: 215px;
  491. }
  492. .toolRight .playBox>div:first-child{
  493. width: 56px;
  494. height: 56px;
  495. background-size: 100%;
  496. margin-left: 2px;
  497. overflow:hidden;
  498. }
  499. .toolRight .video .playBox>div:first-child{
  500. background-size: cover;
  501. }
  502. .toolRight .playBox>div canvas{
  503. position:absolute;left:0;top:0;
  504. width: 100%;
  505. height: 100%;
  506. z-index:100;
  507. }
  508. .toolRight .playBox .playBtn{
  509. display:none;
  510. z-index:90;
  511. width: 30px;
  512. height: 30px;
  513. background-color: #00000014;
  514. }
  515. .toolRight .playBox .playBtn span{
  516. left: 10px;
  517. top: 7px;
  518. }
  519. .toolRight .playBox>div:first-child.hasVideo{
  520. background-color:#9ce3b9;
  521. position:relative;
  522. }
  523. .toolRight .playBox>div:first-child .playBtn{
  524. display:block;
  525. }
  526. .toolRight .playBox[data-type='music']>div:first-child{
  527. background-image:url("../images/soundPlay.png");
  528. }
  529. .toolRight .playBox[data-type='music']>div:first-child.playing{
  530. background-image:url("../images/soundPause.png");
  531. }
  532. .toolRight .playBox>div:nth-child(2){
  533. width: calc(100% - 60px);
  534. margin: 8px 0 4px 11px;
  535. text-align: left;
  536. font-size:14px;
  537. }
  538. .toolRight .playBox>div:nth-child(2) span{
  539. color: #acacac;
  540. line-height: 1.1;
  541. display:block;
  542. }
  543. .toolRight .playBox>div:nth-child(2) .title{
  544. text-overflow: ellipsis;
  545. overflow:hidden;
  546. white-space: nowrap;
  547. }
  548. .toolRight .playBox>div:nth-child(2) .delete{
  549. color:#00b4ed;
  550. cursor:pointer;
  551. width:2.3em;
  552. margin-top: 9px;
  553. }
  554. .toolRight #query-bgm{
  555. display: block;
  556. width: 100%;
  557. height: 100%;
  558. }
  559. .toolBottom .midBottom {
  560. width:100%;
  561. height: 93px;
  562. position: relative;
  563. }
  564. .confirmSnap{
  565. background: #00b4ed;
  566. color: #fff;
  567. border-radius: 21px;
  568. /* margin: 0 auto; */
  569. position: absolute;
  570. letter-spacing: 0.05em;
  571. height: 42px;
  572. text-align: center;
  573. line-height: 42px;
  574. font-size: 14px;
  575. pointer-events: all;
  576. cursor:pointer;
  577. transition:background 0.2s;
  578. top: 8px;
  579. width: 220px;
  580. left: 50%;
  581. transform: translateX(-50%);
  582. }
  583. #webgl .overlayGui.snapshotGui{
  584. display: none;
  585. width: calc(84% - 36px);
  586. height: calc(100% - 140px);
  587. border: 1px dotted rgba(255, 255, 255, 0.8);
  588. left: calc(8% + 18px);
  589. top: 86px;
  590. }
  591. #webgl .overlayGui{
  592. position:absolute;
  593. z-index: 100;
  594. pointer-events: none;
  595. transition: opacity 0.3s,
  596. border 0.3s;
  597. }
  598. #webgl .snapshotGui .corner{
  599. width:40px;
  600. height:40px;
  601. position:absolute;
  602. transition: opacity 0.3s;
  603. opacity: 0.8;
  604. }
  605. #webgl .snapshotGui .corner.leftTop{
  606. border-top:4px solid #fff;
  607. border-left:4px solid #fff;
  608. left:-2px;
  609. top:-2px;
  610. }
  611. #webgl .snapshotGui .corner.rightTop{
  612. border-top:4px solid #fff;
  613. border-right:4px solid #fff;
  614. right:-2px;
  615. top:-2px;
  616. }
  617. #webgl .snapshotGui .corner.leftBott{
  618. border-left:4px solid #fff;
  619. border-bottom:4px solid #fff;
  620. left:-2px;
  621. bottom:-2px;
  622. }
  623. #webgl .snapshotGui .corner.rightBott{
  624. border-right: 4px solid #fff;
  625. border-bottom: 4px solid #fff;
  626. right: -2px;
  627. bottom: -2px;
  628. }
  629. .toolRight .screen .shotImg{
  630. height: 108px;
  631. border-radius: 5px;
  632. cursor:pointer;
  633. line-height:105px;
  634. }
  635. .toolRight .screen .shotImg.blank{
  636. background-image:url("../images/myModel.jpg");
  637. opacity:0.8; cursor:default;
  638. background-size: 100%;
  639. }
  640. .toolRight .hotpoint .spotList>ul>li,.toolRight .hotpointDetail .setPos>ul>li{
  641. height: 40px;
  642. margin:0 0 8px -10px;
  643. background:#373938;
  644. cursor:pointer;
  645. width:calc(100% + 20px);
  646. line-height:40px;
  647. font-size:14px;
  648. letter-spacing:0.5px;
  649. text-align:left;
  650. display:flex;
  651. transition: background 0.1s;
  652. position: relative;
  653. overflow:hidden;
  654. }
  655. .toolRight .hotpoint .spotList>ul>li:hover, .toolRight .hotpoint .spotList>ul>li.active{
  656. background:#565a5b;
  657. }
  658. .toolRight .hotpoint .spotList li .icon,.toolRight .hotpointDetail .setPos li .icon{
  659. width: 30px;
  660. margin-left: 10px;
  661. background-size: 70%;
  662. background-position-x: 0;
  663. background-repeat: no-repeat;
  664. background-position-y: center;
  665. }
  666. .toolRight .hotpoint .spotList li .title,.toolRight .hotpointDetail .setPos li .title{
  667. width: calc(100% - 70px);
  668. font-size: 14px;
  669. text-overflow: ellipsis;
  670. overflow: hidden;
  671. white-space: nowrap;
  672. }
  673. .toolRight .hotpoint .spotList li .DelConfirm{
  674. width: 82px;
  675. background:#00b4ed;
  676. border-radius:1px;
  677. box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.5);
  678. position: absolute;
  679. right: -82px;
  680. z-index: 99;
  681. text-align: center;
  682. transition: right 0.3s, opacity 0.1s;
  683. }
  684. .toolRight .hotpoint .spotList li .DelConfirm.active{
  685. right: -3px;
  686. }
  687. .toolRight .hotpoint .spotList li .del{
  688. width: 40px;
  689. background-image: url(../images/delete.png);
  690. background-size: 72%;
  691. opacity:0.85;
  692. background-repeat: no-repeat;
  693. background-position: center;
  694. }
  695. .toolRight .spotList .icon{
  696. background-image: url(../images/edit/hotStyle_1.png);
  697. }
  698. .toolRight .hotpointDetail .itemTitle.head{
  699. height: 38px;
  700. padding:0 10px;
  701. line-height: 38px;
  702. border-bottom: 1px solid #000000;
  703. }
  704. .toolRight .hotpointDetail .content{
  705. height:calc(100% - 104px);
  706. border-bottom: 1px solid #000000;
  707. }
  708. .toolRight .hotpointDetail .buttons.tail{
  709. height: 65px;
  710. width:100%;
  711. padding:15px 10px;
  712. }
  713. .buttons {
  714. display: flex;
  715. justify-content: center;
  716. }
  717. .toolRight .hotpointDetail .itemTitle.head a.close{
  718. width:40px; height:100%;
  719. position:absolute; right:0px;
  720. background-size:30%;
  721. background-image:url("../images/phone_step_01.png");
  722. background-position: center center;
  723. background-repeat: no-repeat;
  724. }
  725. .toolRight .sign ul.chose li.upload .buttons, .toolRight .hotpointDetail .upload:not(.uploaded) .buttons{
  726. display:none;
  727. }
  728. .toolRight .sign ul.chose li .buttons button, .toolRight .hotpointDetail .upload button{
  729. pointer-events:auto;
  730. margin-top:-17px;
  731. width:68%;
  732. left:16%;
  733. top: 50%;
  734. position: absolute;
  735. box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  736. }
  737. .toolRight .hotpointDetail .upload{
  738. width:97px;
  739. height:97px;
  740. border-radius: 2px;
  741. border: 1px solid #5d5d5d;
  742. position: relative;
  743. margin: 5px;
  744. }
  745. .toolRight .sign ul.chose li>div, .toolRight .hotpointDetail .upload>div {
  746. position: relative;
  747. top: 0;
  748. width: 100%;
  749. height: 100%;
  750. left: 0;
  751. background-color: #414141;
  752. background-size:cover;
  753. cursor: pointer;
  754. }
  755. .toolRight .hotpointDetail .upload>div{
  756. background-color:transparent;
  757. }
  758. .toolRight .sign ul.chose li.upload>div, .toolRight .hotpointDetail .upload>div {
  759. background-image: url(../images/plus.png);
  760. background-position: center 42%;
  761. background-size: 15% 15%;
  762. background-repeat: no-repeat;
  763. }
  764. .toolRight .sign ul.chose li.upload span, .hotpointDetail .upload span {
  765. color: #00b4ed;
  766. margin-top: 46%;
  767. display: inline-block;
  768. letter-spacing: 0.5px;
  769. }
  770. .toolRight .hotpointDetail .content>ul>li:first-child{
  771. border-top: 1px solid #5d5d5d !important;
  772. }
  773. .toolRight .hotpointDetail .buttons.tail{
  774. height: 65px;
  775. width:100%;
  776. padding:15px 10px;
  777. border-top: 1px solid #5d5d5d !important;
  778. }
  779. .buttons button.cancel {
  780. border: 1px solid #00b4ed !important;
  781. color: #00b4ed;
  782. background-color: transparent;
  783. }
  784. .buttons button:nth-child(2) {
  785. margin-left: 10px;
  786. }
  787. .hotpointDetail .content .upload input{
  788. cursor: pointer;
  789. position: absolute;
  790. width: 100%;
  791. height: 100%;
  792. top: 0;
  793. left: 0;
  794. opacity: 0;
  795. }
  796. .fun-view-video {
  797. position: fixed;
  798. z-index: 99999;
  799. width: 100%;
  800. height: 100%;
  801. background: rgba(0,0,0,0.9);
  802. /* display: flex; */
  803. align-items: center;
  804. justify-content: center;
  805. left: 0;
  806. top: 0;
  807. display: none;
  808. }
  809. .fun-view-video span {
  810. position: absolute;
  811. right: 0;
  812. top: 0;
  813. transform: rotate(45deg);
  814. font-size: 40px;
  815. font-weight: 300;
  816. color: #fff;
  817. cursor: pointer;
  818. }
  819. .fun-view-video video {
  820. max-width: 90%;
  821. max-height: 90%;
  822. }
  823. .edit-fun-images > div {
  824. vertical-align: top;
  825. float: left;
  826. margin: 5px;
  827. position: relative;
  828. }
  829. .edit-fun-images a {
  830. width: 96px;
  831. height: 96px;
  832. border: 1px dashed #fff;
  833. color: #fff;
  834. text-align: center;
  835. position: relative;
  836. display: inline-block;
  837. line-height: 90px;
  838. font-size: 30px;
  839. font-weight: 300;
  840. }
  841. .edit-fun-images a.result > span::after {
  842. content: '+'
  843. }
  844. .edit-fun-images a.result > span {
  845. position: absolute;
  846. right: -4px;
  847. top: -4px;
  848. width: 20px;
  849. height: 20px;
  850. line-height: 20px;
  851. transform: rotateZ(45deg);
  852. background: #c77a7a;
  853. border-radius: 50%;
  854. }
  855. .edit-fun-images a.result > img {
  856. max-width: 100%;
  857. max-height: 100%;
  858. }
  859. .edit-fun-images .upload-thum {
  860. display: block;
  861. position: relative;
  862. text-align: center;
  863. }
  864. .edit-fun-images input {
  865. position: absolute;
  866. left: 0;
  867. top: 0;
  868. width: 100%;
  869. height: 100%;
  870. opacity: 0;
  871. z-index: 1;
  872. cursor: pointer;
  873. }
  874. /* loading */
  875. .edit-loading {
  876. display: flex;
  877. width: 100%;
  878. height: 100%;
  879. justify-content: center;
  880. align-items: center;
  881. position: fixed;
  882. background: rgba(0, 0, 0, 0.6);
  883. top: 0;
  884. left: 0;
  885. z-index: 101;
  886. }
  887. .square-move{
  888. position: relative;
  889. }
  890. .square-split {
  891. position: relative;
  892. width: 75px;
  893. height: 75px
  894. }
  895. .square-move .move:nth-child(1) {
  896. animation: a-move 2s infinite linear
  897. }
  898. .square-move .move:nth-child(1) {
  899. left: 0;
  900. top: 0
  901. }
  902. .square-move .move {
  903. position: absolute;
  904. width: 20px;
  905. height: 20px;
  906. border-radius: 0;
  907. background-color: #00b4ed;
  908. display: block;
  909. background-color: #00b4ed;
  910. border-radius: 3px
  911. }
  912. .square-move .move:nth-child(2) {
  913. animation: b-move 2s infinite linear
  914. }
  915. .square-move .move:nth-child(2) {
  916. left: 25px;
  917. top: 0
  918. }
  919. .square-move .move:nth-child(3) {
  920. animation: c-move 2s infinite linear
  921. }
  922. .square-move .move:nth-child(3) {
  923. left: 0;
  924. top: 25px
  925. }
  926. @keyframes a-move {
  927. 0% {
  928. left: 0;
  929. top: 0
  930. }
  931. 8% {
  932. left: 0;
  933. top: 0
  934. }
  935. 16% {
  936. left: 25px;
  937. top: 0
  938. }
  939. 24% {
  940. left: 25px;
  941. top: 0
  942. }
  943. 32% {
  944. left: 25px;
  945. top: 0
  946. }
  947. 40% {
  948. left: 25px;
  949. top: 25px
  950. }
  951. 48% {
  952. left: 25px;
  953. top: 25px
  954. }
  955. 56% {
  956. left: 25px;
  957. top: 25px
  958. }
  959. 64% {
  960. left: 0;
  961. top: 25px
  962. }
  963. 72% {
  964. left: 0;
  965. top: 25px
  966. }
  967. 80% {
  968. left: 0;
  969. top: 25px
  970. }
  971. 88% {
  972. left: 0;
  973. top: 0
  974. }
  975. 100% {
  976. left: 0;
  977. top: 0
  978. }
  979. }
  980. @keyframes b-move {
  981. 0% {
  982. left: 25px;
  983. top: 0
  984. }
  985. 8% {
  986. left: 25px;
  987. top: 25px
  988. }
  989. 16% {
  990. left: 25px;
  991. top: 25px
  992. }
  993. 24% {
  994. left: 25px;
  995. top: 25px
  996. }
  997. 32% {
  998. left: 0;
  999. top: 25px
  1000. }
  1001. 40% {
  1002. left: 0;
  1003. top: 25px
  1004. }
  1005. 48% {
  1006. left: 0;
  1007. top: 25px
  1008. }
  1009. 56% {
  1010. left: 0;
  1011. top: 0
  1012. }
  1013. 64% {
  1014. left: 0;
  1015. top: 0
  1016. }
  1017. 72% {
  1018. left: 0;
  1019. top: 0
  1020. }
  1021. 80% {
  1022. left: 25px;
  1023. top: 0
  1024. }
  1025. 88% {
  1026. left: 25px;
  1027. top: 0
  1028. }
  1029. 100% {
  1030. left: 25px;
  1031. top: 0
  1032. }
  1033. }
  1034. @keyframes c-move {
  1035. 0% {
  1036. left: 0;
  1037. top: 25px
  1038. }
  1039. 8% {
  1040. left: 0;
  1041. top: 25px
  1042. }
  1043. 16% {
  1044. left: 0;
  1045. top: 25px
  1046. }
  1047. 24% {
  1048. left: 0;
  1049. top: 0
  1050. }
  1051. 32% {
  1052. left: 0;
  1053. top: 0
  1054. }
  1055. 40% {
  1056. left: 0;
  1057. top: 0
  1058. }
  1059. 48% {
  1060. left: 25px;
  1061. top: 0
  1062. }
  1063. 56% {
  1064. left: 25px;
  1065. top: 0
  1066. }
  1067. 64% {
  1068. left: 25px;
  1069. top: 0
  1070. }
  1071. 72% {
  1072. left: 25px;
  1073. top: 25px
  1074. }
  1075. 80% {
  1076. left: 25px;
  1077. top: 25px
  1078. }
  1079. 88% {
  1080. left: 25px;
  1081. top: 25px
  1082. }
  1083. 100% {
  1084. left: 0;
  1085. top: 25px
  1086. }
  1087. }