lzb.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190
  1. i {
  2. font-style: normal;
  3. }
  4. /* 新编辑界面 */
  5. body {
  6. background: rgba(38, 39, 41, 1);
  7. }
  8. .wrapper {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. .pinBottom-container, .pinTop {
  13. position: absolute;
  14. }
  15. ul li {
  16. list-style-type: none;
  17. }
  18. ::-webkit-scrollbar {
  19. display: none
  20. }
  21. /* 头部 */
  22. .toolTop {
  23. display: flex;
  24. height: 50px;
  25. justify-content: space-between;
  26. border-bottom: 1px solid rgb(0, 0, 0);
  27. vertical-align: middle;
  28. line-height: 50px;
  29. padding: 0;
  30. }
  31. .toolTop .model-title2 {
  32. font-size: 16px;
  33. }
  34. .toolTop .btns {
  35. display: flex;
  36. }
  37. .toolTop .btns>div {
  38. margin: 0 10px;
  39. display: flex;
  40. cursor: pointer;
  41. }
  42. .toolTop .btns>div label {
  43. cursor: pointer;
  44. }
  45. .toolTop .btns span {
  46. width: 20px;
  47. height: 100%;
  48. display: block;
  49. margin-right: 4px;
  50. margin-top: 0px;
  51. }
  52. .toolTop .btns #save>span {
  53. background-image: url("../images/edit/save.png");
  54. background-size: 152%;
  55. background-repeat: no-repeat;
  56. background-position: center center;
  57. }
  58. /* 底部 */
  59. .toolBottom {
  60. height: calc(100% - 50px);
  61. border-top: 1px solid rgb(93, 93, 93);
  62. display: flex;
  63. font-size: 12px;
  64. text-align: center;
  65. }
  66. /* 底部左边 */
  67. .toolBottom .toolLeft {
  68. width: 64px;
  69. border-right: 1px solid black;
  70. padding: 10px 0;
  71. overflow-y: auto;
  72. }
  73. .toolBottom .toolLeft ul {
  74. /* overflow-y: auto; */
  75. }
  76. .toolBottom .toolLeft li {
  77. display: inline-block;
  78. width: 100%;
  79. padding: 12px 0;
  80. opacity: 0.8;
  81. cursor: pointer;
  82. transition: background 0.1s, opacity 0.1s;
  83. }
  84. .toolBottom .toolLeft li label {
  85. cursor: pointer;
  86. }
  87. .toolBottom .toolLeft li.active {
  88. background: #409eff;
  89. opacity: 1;
  90. }
  91. .VREditIcon {
  92. background-size: 48% !important;
  93. }
  94. .toolBottom .toolLeft li span {
  95. display: inline-block;
  96. width: 100%;
  97. height: 20px !important;
  98. background-size: 55%;
  99. margin-bottom: 0px;
  100. background-repeat: no-repeat;
  101. background-position: center center;
  102. }
  103. .customizeHotStyle {
  104. width: 40% !important;
  105. float: right !important;
  106. border: none !important;
  107. }
  108. .toolBottom .toolLeft li span.hotpoint {
  109. background-image: url(../images/edit/hotpoint.png);
  110. }
  111. .toolBottom .toolLeft li span.screen {
  112. background-image: url(../images/edit/screen.png);
  113. }
  114. .toolBottom .toolLeft li span.information {
  115. background-image: url(../images/edit/information.png);
  116. }
  117. .toolBottom .toolLeft li span.music {
  118. background-image: url(../images/edit/music.png);
  119. }
  120. .toolBottom .toolLeft li span.snapTour {
  121. background-image: url(../images/edit/autoTour.png);
  122. }
  123. .toolBottom .toolLeft li span.VR {
  124. background-image: url(../images/edit/VR.png);
  125. }
  126. .toolBottom .toolLeft li span.overlay {
  127. background-image: url(../images/edit/box_video.png);
  128. }
  129. .toolBottom .toolLeft li span.panoVisible {
  130. background-image: url(../images/edit/panoVisi.png);
  131. }
  132. /* 底部中间 */
  133. .toolBottom .toolMid {
  134. border-left: 1px solid rgb(93, 93, 93);
  135. border-right: 1px solid rgb(0, 0, 0);
  136. width: calc(100% - 300px);
  137. height: 100%;
  138. }
  139. #webgl {
  140. width: 100%;
  141. height: calc(100% - 93px);
  142. padding: 15px;
  143. }
  144. #webgl .webgl-inside {
  145. width: 100%;
  146. height: 100%;
  147. position: relative;
  148. overflow: hidden;
  149. }
  150. .content {
  151. width: 100%;
  152. height: 100%;
  153. position: relative;
  154. overflow: hidden;
  155. }
  156. /* 底部右边 */
  157. .toolBottom .toolRight {
  158. width: 236px;
  159. border-left: 1px solid rgb(93, 93, 93);
  160. }
  161. .toolRight div.content {
  162. height: 100%;
  163. overflow-y: auto;
  164. user-select: none;
  165. /* overflow-x: hidden; */
  166. }
  167. .toolRight div.content>ul>li:not(.group-widget) {
  168. border-top: 1px solid #5d5d5d;
  169. border-bottom: 1px solid #000000;
  170. padding: 10px;
  171. }
  172. .toolRight div.content>ul>li:last-child, .toolRight .noBorderbott {
  173. border-bottom: none !important;
  174. }
  175. .toolRight div.content>ul>li:first-child {
  176. border-top: none;
  177. }
  178. .itemMargin {
  179. margin: 10px auto !important;
  180. }
  181. .toolRight li[data-name=info] .itemTitle {
  182. margin: 0px 0 !important;
  183. }
  184. .toolRight .link input:first-child {
  185. margin-bottom: 10px;
  186. }
  187. ul.MenuOptions {
  188. width: 100%;
  189. overflow: hidden;
  190. background: rgb(67, 67, 67);
  191. padding: 0px;
  192. cursor: pointer;
  193. flex-direction: row;
  194. align-items: center;
  195. display: flex;
  196. justify-content: space-between;
  197. }
  198. ul.MenuOptions li {
  199. text-align: center;
  200. display: inline-block;
  201. transition: color 0.1s;
  202. width: 100%;
  203. transition: background-color 0.3s;
  204. border-right: 1px solid #303030;
  205. }
  206. ul.MenuOptions li:last-child{
  207. border-right: none;
  208. }
  209. ul.MenuOptions li.chosen {
  210. background-color: #409eff;
  211. }
  212. .toolRight div.content {
  213. border-color: #737373;
  214. width: calc(100% + 18px);
  215. }
  216. .toolRight div.content>ul {
  217. width: 236px;
  218. height: 100%;
  219. }
  220. .tourList>ul{
  221. height: 100%;
  222. }
  223. .toolRight .input, .toolRight .editText {
  224. width: 100%;
  225. outline: none;
  226. border: 1px solid #737373;
  227. background-color: #000;
  228. color: #fff;
  229. letter-spacing: 1px;
  230. border-radius: 2px;
  231. height: 32px;
  232. padding: 0 10px;
  233. }
  234. .toolRight .editText {
  235. min-height: 150px;
  236. line-height: 130% !important;
  237. padding: 10px;
  238. text-align: justify;
  239. resize: vertical;
  240. }
  241. @keyframes warnFlash {
  242. 0% {
  243. background-color: rgba(2, 200, 174, 0);
  244. }
  245. 100% {
  246. background-color: rgba(2, 200, 174, 1);
  247. }
  248. }
  249. .warning {
  250. -webkit-animation: warnFlash 0.6s linear;
  251. -moz-animation: warnFlash 0.6s linear;
  252. -ms-animation: warnFlash 0.6s linear;
  253. -o-animation: warnFlash 0.6s linear;
  254. animation: warnFlash 0.6s linear animation-direction:alternate;
  255. -webkit-animation-direction: alternate;
  256. animation-iteration-count: infinite;
  257. border-color: #a7a7a7 !important;
  258. }
  259. .toolRight .secondary{
  260. height: 100%;
  261. position: fixed;
  262. top: 0;
  263. left: calc(100% - 235px);
  264. background: rgba(38, 39, 41, 1);
  265. width: 236px;
  266. box-shadow: 0px 0px 20px #090909;
  267. transition: left 0.2s;
  268. z-index: 100;
  269. }
  270. .toolRight .tourpointDetail {
  271. height: 100%;
  272. position: fixed;
  273. top: 0;
  274. left: calc(100% - 235px);
  275. background: rgba(38, 39, 41, 1);
  276. width: 236px;
  277. box-shadow: 0px 0px 20px #090909;
  278. transition: left 0.2s;
  279. z-index: 100;
  280. }
  281. .toolRight .secondary.atRight{
  282. left: 100%;
  283. }
  284. .toolRight div.content>ul>li:not(.group-widget) {
  285. border-top: 1px solid #636363;
  286. border-bottom: 1px solid #000000;
  287. padding: 15px 10px;
  288. }
  289. .toolRight div.content>ul>li:first-child {
  290. border-top: none;
  291. }
  292. .toolRight div.content ul>li:not(.group-widget)>*, .group-widget .inner>.widget-wrapper>*{
  293. margin: 7px 0 12px 0;
  294. line-height: 32px;
  295. height: 100%;
  296. }
  297. .toolRight div.content ul>li label{
  298. margin: 6px 6px 13px 0 !important;
  299. }
  300. .buttons button {
  301. width: 100%;
  302. background-color: #409eff;
  303. line-height: 1 !important;
  304. color: #fff;
  305. border: none;
  306. cursor: pointer;
  307. }
  308. .buttons.tail button, .buttons.bigger button{
  309. height:34px;
  310. font-size: 14px;
  311. }
  312. .toolRight .addSpot button, .toolRight .addTour button {
  313. /* position: fixed;
  314. width: inherit;
  315. height: 3.2vw;
  316. background-color: rgba(38, 39, 41, 1); */
  317. /* height:40px; */
  318. line-height: 40px;
  319. border-radius: 20px;
  320. font-size: 14px;
  321. }
  322. /*fyz, 修改添加导览样式*/
  323. .remark {
  324. display: block;
  325. text-align: left;
  326. color: #ababab;
  327. line-height: 1.5 !important;
  328. letter-spacing: 0.1px;
  329. /* text-align: justify; */
  330. }
  331. .toolRight .addSpot .buttons, .toolRight .addTour .buttons {
  332. margin: 0 !important;
  333. }
  334. .toolRight .hotStyle-item li {
  335. width: 38px;
  336. height: 38px;
  337. margin: 2px 6px 5px 0;
  338. float: left;
  339. cursor: pointer;
  340. background-size: 100%;
  341. background-repeat: no-repeat;
  342. border: 2px solid transparent;
  343. }
  344. .toolRight .hotStyle-item li.active {
  345. border: 2px solid #00b4ed;
  346. }
  347. .other-item {
  348. font-size: 14px;
  349. }
  350. .other-item .colorRed {
  351. color: #c77a7a;
  352. font-style: normal;
  353. }
  354. .other-item label {
  355. cursor: pointer;
  356. }
  357. .editCheckbox{
  358. text-align:left;
  359. }
  360. .editCheckbox input{
  361. position: absolute;
  362. opacity: 0;
  363. cursor: pointer;
  364. }
  365. .editCheckbox input+label {
  366. background-color: #fff;
  367. border: 1px #ccc solid;
  368. border-radius: 2px;
  369. width: 16px;
  370. height: 16px !important;
  371. display: inline-block;
  372. text-align: center;
  373. position: relative;
  374. vertical-align: middle;
  375. line-height: 16px;
  376. cursor: pointer;
  377. bottom: -2px;
  378. margin-right: 6px !important;
  379. }
  380. #hotpointDetail .editCheckbox{
  381. margin-left: 37px;
  382. }
  383. .editCheckbox input:checked+label {
  384. border: 0;
  385. background-color: #fff;
  386. }
  387. .editCheckbox input:checked+label:after {
  388. content: "\2714";
  389. color: #409eff;
  390. position:relative;
  391. bottom: 7px;
  392. /* vertical-align: middle; */
  393. }
  394. #tourItemList {
  395. padding-top: 1.4vw !important;
  396. height: calc(100% - 368px); /* 减去在它上面的部分 */
  397. }
  398. .switch {
  399. text-align: left;
  400. /* display: flex; */
  401. /* justify-content: center; */
  402. /* margin-left:5px !important */
  403. }
  404. .switch label {
  405. display: block;
  406. vertical-align: middle;
  407. margin:2px 0;
  408. }
  409. .switch input {
  410. vertical-align: middle;
  411. }
  412. .switch .mui-switch {
  413. width: 52px !important;
  414. height: 24px !important;
  415. position: relative !important;
  416. border: 1px solid #414141 !important;
  417. background-color: #fdfdfd;
  418. box-shadow: #dfdfdf 0 0 0 0 inset !important;
  419. border-radius: 20px !important;
  420. border-top-left-radius: 20px !important;
  421. border-top-right-radius: 20px !important;
  422. border-bottom-left-radius: 20px !important;
  423. border-bottom-right-radius: 20px !important;
  424. background-clip: content-box !important;
  425. display: inline-block !important;
  426. -webkit-appearance: none !important;
  427. user-select: none !important;
  428. outline: none !important;
  429. padding: 0 !important;
  430. background-color: #616161 !important;
  431. margin-right: 15px;
  432. top:-2px;
  433. }
  434. .switch .mui-switch:before {
  435. content: '';
  436. width: 22px;
  437. height: 22px;
  438. position: absolute;
  439. top: 0px;
  440. left: 0;
  441. border-radius: 20px;
  442. border-top-left-radius: 20px;
  443. border-top-right-radius: 20px;
  444. border-bottom-left-radius: 20px;
  445. border-bottom-right-radius: 20px;
  446. background-color: #fff;
  447. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  448. }
  449. .switch .mui-switch:checked {
  450. border-color: #00b4ed;
  451. box-shadow: #00b4ed 0 0 0 16px inset;
  452. background-color: #00b4ed;
  453. }
  454. .switch .mui-switch:checked:before {
  455. left: 29px;
  456. }
  457. .switch .mui-switch.mui-switch-animbg {
  458. transition: background-color ease 0.4s;
  459. }
  460. .switch .mui-switch.mui-switch-animbg:before {
  461. transition: left 0.3s;
  462. }
  463. .switch .mui-switch.mui-switch-animbg:checked {
  464. box-shadow: #dfdfdf 0 0 0 0 inset;
  465. background-color: #409eff !important;
  466. transition: border-color 0.4s, background-color ease 0.4s;
  467. }
  468. .switch .mui-switch.mui-switch-animbg:checked:before {
  469. transition: left 0.3s;
  470. }
  471. .switch .mui-switch.mui-switch-anim {
  472. transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s;
  473. }
  474. .switch .mui-switch.mui-switch-anim:before {
  475. transition: left 0.3s;
  476. }
  477. .switch .mui-switch.mui-switch-anim:checked {
  478. box-shadow: #64bd63 0 0 0 16px inset;
  479. background-color: #64bd63;
  480. transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s;
  481. }
  482. .switch .mui-switch.mui-switch-anim:checked:before {
  483. transition: left 0.3s;
  484. }
  485. .toolRight .snapTour #tourList {
  486. padding-bottom: 20px;
  487. height: 100%;
  488. }
  489. .toolRight .snapTour .tourList li.guideItem {
  490. height: 75px;
  491. display: flex;
  492. margin: 16px 0;
  493. cursor: pointer;
  494. }
  495. .toolRight .snapTour .tourList li.guideItem:first-child {
  496. margin-top: 0;
  497. }
  498. .toolRight .snapTour .tourList li.guideItem>div:nth-child(2) {
  499. /* background: #3e1313; */
  500. width: calc(100% - 107px);
  501. height: 100%;
  502. position: relative;
  503. }
  504. .toolRight .snapTour .tourList li.guideItem>div:nth-child(2) span {
  505. text-align: left;
  506. margin: 0 10px 0 0;
  507. font-size: 14px;
  508. text-overflow: ellipsis;
  509. height: 66px;
  510. display: -webkit-box;
  511. -webkit-box-orient: vertical;
  512. overflow: hidden;
  513. -webkit-line-clamp: 2;
  514. color: #00b4ed;
  515. word-wrap: break-word;
  516. line-height: 22px;
  517. /* cursor: text; */
  518. }
  519. .toolRight .snapTour .tourList li.guideItem>div:first-child span {
  520. border-radius: 11px;
  521. background: #373939;
  522. width: 22px;
  523. display: block;
  524. text-align: center;
  525. height: 22px;
  526. line-height: 22px;
  527. font-size: 12px;
  528. margin-right: 10px;
  529. }
  530. .toolRight .snapTour .tourList li.guideItem:last-child>div:first-child span {
  531. background: #00b4ed
  532. }
  533. .snapTour {
  534. }
  535. .toolRight .snapTour .tourList li.guideItem>div:first-child {
  536. position: relative;
  537. }
  538. .toolRight .snapTour .tourList li.guideItem>div:first-child div.line {
  539. border-left: 2px solid #373939;
  540. height: 70px;
  541. position: absolute;
  542. left: 10px;
  543. top: 21px;
  544. z-index: 0;
  545. }
  546. .toolRight .snapTour .tourList li.guideItem:last-child div.line {
  547. display: none;
  548. }
  549. .toolRight .snapTour .tourList li.guideItem .preview {
  550. width: 75px;
  551. cursor: pointer;
  552. position: relative;
  553. overflow: hidden;
  554. }
  555. .toolRight .snapTour .tourList li.guideItem .preview::before {
  556. content: '删除';
  557. width: 50px;
  558. height: 30px;
  559. position: absolute;
  560. border-radius: 20px;
  561. color: #fff;
  562. background: #c77a7a;
  563. left: 50%;
  564. top: 50%;
  565. transform: translate(-250%, -50%);
  566. }
  567. .toolRight .snapTour .tourList li.guideItem .preview:hover::before {
  568. transform: translate(-50%, -50%);
  569. }
  570. .toolRight .snapTour .tourList li.guideItem .preview div {
  571. width: 100%;
  572. height: 100%;
  573. border-radius: 3px;
  574. transition: opacity 0.3s;
  575. background-size: cover;
  576. background-position: 50% 50%;
  577. }
  578. .hotListSwitch {
  579. padding: 10px !important;
  580. }
  581. .hotListSwitchTitle {
  582. margin: 0 !important;
  583. }
  584. .toolRight .snapTour .tourList li.guideItem .preview div:hover {
  585. opacity: 0.2;
  586. }
  587. .toolRight .snapTour .tourList li.guideItem input {
  588. position: absolute;
  589. top: -5px;
  590. left: 0;
  591. width: 185px;
  592. z-index: 100;
  593. }
  594. .toolRight input, .toolRight div.editText {
  595. width: 100%;
  596. outline: none;
  597. border: 1px solid #737373;
  598. background-color: #000;
  599. padding: 0 10px;
  600. color: #fff;
  601. letter-spacing: 1px;
  602. border-radius: 2px;
  603. /* height: 32px; */
  604. height: 34px !important;
  605. font-size: 14px;
  606. }
  607. .colorWrap {
  608. display: flex;
  609. }
  610. .color-text {
  611. width: 46% !important;
  612. }
  613. .toolRight input[type="color"] {
  614. background: none;
  615. border: none;
  616. width: 25%;
  617. }
  618. .toolRight .mediaUpload .itemTitle {
  619. height: 32px !important;
  620. }
  621. .toolRight .itemTitle::before {
  622. position: absolute;
  623. right: 0px;
  624. top: 2px;
  625. content: ""attr(data-size)"";
  626. color: #7b7b7b; font-size: 14px;
  627. }
  628. .toolRight .itemTitle {
  629. font-size: 17px;
  630. display: flex;
  631. line-height: 16px;
  632. position: relative;
  633. }
  634. .toolRight .itemTitle:not(:first-child) {
  635. margin: 13px 0 2px 0 !important;
  636. }
  637. .toolRight .secondFontSize{
  638. font-size: 15px;
  639. line-height: 14px;
  640. }
  641. .toolRight .thirdFontSize{
  642. font-size: 13px;
  643. line-height: 12px;
  644. }
  645. .toolRight li[name="content"] .widget-wrapper>ul>li {
  646. background: #212121;
  647. padding: 8px 5px 8px 10px;
  648. margin: 18px 0;
  649. border-radius: 2px;
  650. }
  651. .toolRight .mediaUpload .itemTitle span {
  652. position: absolute;
  653. left: 0;
  654. /*for Ie*/
  655. }
  656. .toolRight .secondary .itemTitle.head{
  657. height: 50px;
  658. padding:0 10px;
  659. line-height: 50px;
  660. border-bottom: 1px solid #000000;
  661. }
  662. .toolRight .secondary li.head .itemTitle{
  663. margin:0;
  664. line-height: 40px;
  665. }
  666. .innerBtn {
  667. border-radius: 17px;
  668. height: 30px;
  669. line-height: 34px;
  670. background-color: rgba(0, 0, 0, 0.3);
  671. border-color: rgba(0, 0, 0, 0.3);
  672. text-align: center;
  673. }
  674. .toolRight .mediaUpload input[type="file"], .toolRight li[name=audio] input[type="file"] {
  675. opacity: 0;
  676. width: 200%;
  677. height: 100%;
  678. position: absolute;
  679. left: -100%;
  680. top: 0;
  681. cursor: pointer;
  682. z-index: 2;
  683. }
  684. .toolRight .playBox {
  685. border: 1px solid #5d5d5d;
  686. display: flex;
  687. padding: 6px;
  688. width: 215px;
  689. }
  690. .toolRight .playBox>div:first-child {
  691. width: 56px;
  692. height: 56px;
  693. background-size: 100%;
  694. margin-left: 2px;
  695. overflow: hidden;
  696. }
  697. .toolRight .video .playBox>div:first-child {
  698. background-size: cover;
  699. }
  700. .toolRight .playBox>div canvas {
  701. position: absolute;
  702. left: 0;
  703. top: 0;
  704. width: 100%;
  705. height: 100%;
  706. z-index: 100;
  707. }
  708. .toolRight .playBox .playBtn {
  709. display: none;
  710. z-index: 90;
  711. width: 30px;
  712. height: 30px;
  713. background-color: #00000014;
  714. }
  715. .toolRight .playBox .playBtn span {
  716. left: 10px;
  717. top: 7px;
  718. }
  719. .toolRight .playBox>div:first-child.hasVideo {
  720. background-color: #9ce3b9;
  721. position: relative;
  722. }
  723. .toolRight .playBox>div:first-child .playBtn {
  724. display: block;
  725. }
  726. .toolRight .playBox[data-type='music']>div:first-child {
  727. /* background-image: url("../images/soundPlay.png"); */
  728. background-image: url("../images/Volume btn_on.png");
  729. background-size: 50%;
  730. background-repeat:no-repeat;
  731. background-position:center;
  732. }
  733. .toolRight .playBox[data-type='music']>div:first-child.playing {
  734. background-image: url("../images/soundPause.png");
  735. }
  736. .toolRight .playBox>div:nth-child(2) {
  737. width: calc(100% - 60px);
  738. margin: 8px 0 4px 11px;
  739. text-align: left;
  740. font-size: 14px;
  741. }
  742. .toolRight .playBox>div:nth-child(2) span {
  743. color: #acacac;
  744. line-height: 1.1;
  745. display: block;
  746. }
  747. .toolRight .playBox>div:nth-child(2) .title {
  748. text-overflow: ellipsis;
  749. overflow: hidden;
  750. white-space: nowrap;
  751. }
  752. .toolRight .playBox>div:nth-child(2) .delete {
  753. color: #00b4ed;
  754. cursor: pointer;
  755. width: 2.3em;
  756. margin-top: 9px;
  757. }
  758. .toolRight #query-bgm {
  759. display: block;
  760. width: 100%;
  761. height: 100%;
  762. }
  763. .toolBottom .midBottom {
  764. width: 100%;
  765. height: 98px;
  766. position: relative;
  767. }
  768. .confirmSnap {
  769. }
  770. #webgl .overlayGui.snapshotGui {
  771. display: none;
  772. width: calc(84% - 36px);
  773. height: calc(100% - 180px);
  774. border: 1px dotted rgba(255, 255, 255, 0.8);
  775. left: calc(8% + 18px);
  776. top: 86px;
  777. }
  778. #webgl .overlayGui {
  779. position: absolute;
  780. z-index: 100;
  781. pointer-events: none;
  782. transition: opacity 0.3s, border 0.3s;
  783. }
  784. #webgl .snapshotGui .corner {
  785. width: 40px;
  786. height: 40px;
  787. position: absolute;
  788. transition: opacity 0.3s;
  789. opacity: 0.8;
  790. }
  791. #webgl .snapshotGui .corner.leftTop {
  792. border-top: 4px solid #fff;
  793. border-left: 4px solid #fff;
  794. left: -2px;
  795. top: -2px;
  796. }
  797. #webgl .snapshotGui .corner.rightTop {
  798. border-top: 4px solid #fff;
  799. border-right: 4px solid #fff;
  800. right: -2px;
  801. top: -2px;
  802. }
  803. #webgl .snapshotGui .corner.leftBott {
  804. border-left: 4px solid #fff;
  805. border-bottom: 4px solid #fff;
  806. left: -2px;
  807. bottom: -2px;
  808. }
  809. #webgl .snapshotGui .corner.rightBott {
  810. border-right: 4px solid #fff;
  811. border-bottom: 4px solid #fff;
  812. right: -2px;
  813. bottom: -2px;
  814. }
  815. .toolRight .shotImg {
  816. height: 108px !important;
  817. border-radius: 5px;
  818. cursor: pointer;
  819. line-height: 105px;
  820. background-size: 100%;
  821. }
  822. .toolRight .screen .shotImg.blank {
  823. background-image: url("../images/myModel.jpg");
  824. opacity: 0.8;
  825. cursor: default;
  826. }
  827. .toolRight .listItem{
  828. height: 40px;
  829. margin: 0 0 8px -10px;
  830. background: #373938;
  831. cursor: pointer;
  832. width: calc(100% + 20px);
  833. line-height: 40px;
  834. font-size: 14px;
  835. letter-spacing: 0.5px;
  836. text-align: left;
  837. display: flex;
  838. transition: background 0.1s;
  839. position: relative;
  840. overflow: hidden;
  841. /* width: 100%; */
  842. }
  843. #tourList .listItem{
  844. width: calc(100% + 12px);
  845. }
  846. .toolRight .listItem>*{
  847. margin:0 !important;
  848. line-height:40px !important;
  849. }
  850. .toolRight .hotpoint .spotList>ul>li:hover, .toolRight .hotpoint .spotList>ul>li.active {
  851. background: #565a5b;
  852. }
  853. .toolRight .listItem .icon{
  854. width: 33px;
  855. margin-left: 10px !important;
  856. background-size: 70%;
  857. background-position-x: 0;
  858. background-repeat: no-repeat;
  859. background-position-y: center;
  860. }
  861. .toolRight .hotpoint .listItem .number{
  862. color:#828282;
  863. margin-right:10px !important;
  864. }
  865. .overlayList li .icon{
  866. background-image:url(../images/edit/box_video.png);
  867. }
  868. .toolRight .listItem .title{
  869. width: calc(100% - 70px);
  870. font-size: 14px;
  871. text-overflow: ellipsis;
  872. overflow: hidden;
  873. white-space: nowrap;
  874. }
  875. .toolRight .listItem .DelConfirm{
  876. width: 82px;
  877. background: #00b4ed;
  878. border-radius: 1px;
  879. box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.5);
  880. position: absolute;
  881. right: -82px;
  882. z-index: 99;
  883. text-align: center;
  884. transition: right 0.3s, opacity 0.1s;
  885. }
  886. .toolRight .listItem .DelConfirm.active {
  887. right: -3px;
  888. }
  889. .toolRight .listItem .del {
  890. width: 40px;
  891. background-image: url(../images/delete.png);
  892. background-size: 72%;
  893. opacity: 0.85;
  894. background-repeat: no-repeat;
  895. background-position: center;
  896. }
  897. .toolRight .spotList .icon {
  898. background-image: url(../images/edit/hotStyle_1.png);
  899. }
  900. .toolRight .spotList .icon[type='shine']{
  901. background-image: url(../images/style_point.png);
  902. }
  903. .toolRight .spotList .icon[type='photo']{
  904. background-image: url(../images/edit/image.png);
  905. }
  906. .toolRight .spotList .icon[type='video']{
  907. background-image: url(../images/edit/box_video.png);
  908. background-size: 107%;
  909. background-position: -5px center;
  910. }
  911. .toolRight .roomLabels [name="list"] .icon{
  912. background-image: url(../images/hotlist.png);
  913. background-size: 45%;
  914. }
  915. .toolRight .secondary .content {
  916. height: calc(100% - 104px);
  917. border-bottom: 1px solid #000000;
  918. }
  919. .toolRight .secondary .buttons.tail {
  920. height: 65px;
  921. width: 100%;
  922. padding: 15px 10px;
  923. }
  924. .buttons {
  925. display: flex;
  926. justify-content: center;
  927. margin: 5px 0;
  928. }
  929. .toolRight .secondary .itemTitle.head a.close {
  930. width: 40px;
  931. height: 100%;
  932. position: absolute;
  933. right: 0px;
  934. background-size: 30%;
  935. background-image: url("../images/phone_step_01.png");
  936. background-position: center center;
  937. background-repeat: no-repeat;
  938. }
  939. .toolRight .sign ul.chose li.upload .buttons, .toolRight .upload:not(.uploaded) .buttons {
  940. display: none;
  941. }
  942. .toolRight .sign ul.chose li .buttons button, .toolRight .upload button {
  943. pointer-events: auto;
  944. margin-top: -17px;
  945. width: 68%;
  946. left: 16%;
  947. top: 50%;
  948. position: absolute;
  949. box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  950. }
  951. .toolRight .upload {
  952. width: 97px;
  953. height: 97px !important;
  954. border-radius: 2px;
  955. border: 1px solid #5d5d5d;
  956. position: relative;
  957. margin: 5px;
  958. background-size: contain;
  959. }
  960. .toolRight .upload:hover{
  961. background-color:#3d3d3d;
  962. }
  963. .toolRight .sign ul.chose li>div, .toolRight .upload>div {
  964. position: relative;
  965. top: 0;
  966. width: 100%;
  967. height: 100%;
  968. left: 0;
  969. background-size: cover;
  970. cursor: pointer;
  971. }
  972. .toolRight .sign ul.chose li.upload>div, .toolRight .upload>div {
  973. background-image: url(../images/plus.png);
  974. background-position: center 49%;
  975. background-size: 15% 15%;
  976. background-repeat: no-repeat;
  977. margin: 0 !important;
  978. }
  979. #userUploadStyle .upload>div{
  980. background-position: center center;
  981. }
  982. .toolRight .sign ul.chose li.upload span, .toolRight .upload span {
  983. color: #00b4ed;
  984. margin-top: 52%;
  985. display: inline-block;
  986. letter-spacing: 0.5px;
  987. }
  988. .toolRight .secondary .content>ul>li:first-child {
  989. border-top: 1px solid #5d5d5d !important;
  990. }
  991. .toolRight .secondary .buttons.tail {
  992. height: 65px;
  993. width: 100%;
  994. padding: 9px 10px;
  995. border-top: 1px solid #5d5d5d !important;
  996. }
  997. .buttons button.cancel {
  998. border: 1px solid #00b4ed !important;
  999. color: #00b4ed;
  1000. background-color: transparent;
  1001. }
  1002. .buttons button.delete {
  1003. border: 1px solid #b93636 !important;
  1004. color: #b93636;
  1005. background-color: transparent;
  1006. }
  1007. .buttons button:nth-child(2) {
  1008. margin-left: 10px;
  1009. }
  1010. #midBtns{
  1011. position: absolute;
  1012. transform: translateX(-50%);
  1013. width: 220px;
  1014. left: 50%;
  1015. flex-direction: column;
  1016. }
  1017. #midBtns>*{
  1018. /* color: #fff; */
  1019. border-radius: 21px;
  1020. /* margin: 0 auto; */
  1021. margin: 0px 0 0 0 !important;
  1022. letter-spacing: 0.05em;
  1023. height: 38px;
  1024. text-align: center;
  1025. line-height: 42px;
  1026. font-size: 14px;
  1027. pointer-events: all;
  1028. cursor:pointer;
  1029. transition:background 0.2s;
  1030. width: 220px;
  1031. }
  1032. #midBtns button:nth-child(2) {
  1033. margin: 10px 0 0 0 !important;
  1034. }
  1035. .toolRight .itemTitle .buttons, .toolRight .remark .buttons{
  1036. position:absolute; right:0;
  1037. }
  1038. .toolRight .itemTitle button, .toolRight .remark button{
  1039. padding:0 20px;
  1040. height: 28px;
  1041. margin-top: -3px;
  1042. font-size:14px;
  1043. }
  1044. .toolRight .upload input {
  1045. cursor: pointer;
  1046. position: absolute;
  1047. width: 100%;
  1048. height: 100% !important;
  1049. top: 0;
  1050. left: 0;
  1051. opacity: 0;
  1052. }
  1053. .fun-view-video {
  1054. position: fixed;
  1055. z-index: 99999;
  1056. width: 100%;
  1057. height: 100%;
  1058. background: rgba(0, 0, 0, 0.9);
  1059. /* display: flex; */
  1060. align-items: center;
  1061. justify-content: center;
  1062. left: 0;
  1063. top: 0;
  1064. display: none;
  1065. }
  1066. .fun-view-video span {
  1067. position: absolute;
  1068. right: 0;
  1069. top: 0;
  1070. transform: rotate(45deg);
  1071. font-size: 40px;
  1072. font-weight: 300;
  1073. color: #fff;
  1074. cursor: pointer;
  1075. }
  1076. .fun-view-video video {
  1077. max-width: 90%;
  1078. max-height: 90%;
  1079. }
  1080. .edit-fun-images>div {
  1081. vertical-align: top;
  1082. float: left;
  1083. margin:0 6px 6px 0;
  1084. position: relative;
  1085. }
  1086. .edit-fun-images a {
  1087. width: 92px;
  1088. height: 92px;
  1089. border: 1px solid #353535;
  1090. color: #fff;
  1091. text-align: center;
  1092. position: relative;
  1093. display: block;
  1094. line-height: 90px;
  1095. font-weight: 300;
  1096. box-sizing: content-box;
  1097. }
  1098. /* .edit-fun-images a.result>span::after {
  1099. content: '+'
  1100. } */
  1101. .edit-fun-images a.result>span {
  1102. position: absolute;
  1103. right: 0px;
  1104. top: 0px;
  1105. width: 20px;
  1106. height: 20px;
  1107. line-height: 20px;
  1108. /* transform: rotateZ(45deg); */
  1109. background-color: #000000c2;
  1110. /* border-radius: 50%; */
  1111. z-index:1000;
  1112. background-image: url("../images/phone_step_01.png");
  1113. background-size: 52%;
  1114. background-repeat: no-repeat;
  1115. background-position: center;
  1116. }
  1117. .edit-fun-images a.result>span:hover{
  1118. background-color: #f13737c2;
  1119. }
  1120. .edit-fun-images a.result>img {
  1121. max-width: 100%;
  1122. max-height: 100%;
  1123. position: absolute;
  1124. left: 50%;
  1125. top: 50%;
  1126. transform: translate(-50%, -50%);
  1127. }
  1128. .edit-fun-images a .play-video{
  1129. position:absolute;
  1130. transform: translate(50%,50%);
  1131. left: 0; top: 0;
  1132. opacity:0.3;
  1133. transition:opacity 0.2s;
  1134. }
  1135. .edit-fun-images a .play-video:hover{
  1136. opacity:1
  1137. }
  1138. .edit-fun-images .upload-thum {
  1139. display: block;
  1140. position: relative;
  1141. text-align: center;
  1142. }
  1143. .edit-fun-images input {
  1144. position: absolute;
  1145. left: 0;
  1146. top: 0;
  1147. width: 100%;
  1148. height: 100%;
  1149. opacity: 0;
  1150. z-index: 1;
  1151. cursor: pointer;
  1152. }
  1153. .edit-fun-images .mediaItem .descBtn {
  1154. position: absolute;
  1155. left: 0;
  1156. bottom: 0;
  1157. width: 100%;
  1158. color: #e0e0e0;
  1159. height: 30px;
  1160. background: #3a3a3ab0;
  1161. display:none;
  1162. z-index: 100;
  1163. line-height: 30px;
  1164. }
  1165. .edit-fun-images .mediaItem .descBtn:hover{
  1166. color: #fff;
  1167. }
  1168. .edit-fun-images .mediaItem .descBtn.hasDesc{
  1169. background:#000000e0;
  1170. }
  1171. .edit-fun-images .mediaItem .descBtn.chosen{
  1172. border: 1px dashed #fff;
  1173. }
  1174. .edit-fun-images.hasDescBtn .descBtn{
  1175. display:block;
  1176. cursor:pointer;
  1177. }
  1178. /* loading */
  1179. .edit-loading {
  1180. display: flex;
  1181. width: 100%;
  1182. height: 100%;
  1183. justify-content: center;
  1184. align-items: center;
  1185. position: fixed;
  1186. background: rgba(0, 0, 0, 0.6);
  1187. top: 0;
  1188. left: 0;
  1189. z-index: 10001;
  1190. }
  1191. .square-move {
  1192. position: relative;
  1193. }
  1194. .square-split {
  1195. position: relative;
  1196. width: 75px;
  1197. height: 75px
  1198. }
  1199. .square-move .move:nth-child(1) {
  1200. animation: a-move 2s infinite linear
  1201. }
  1202. .square-move .move:nth-child(1) {
  1203. left: 0;
  1204. top: 0
  1205. }
  1206. .square-move .move {
  1207. position: absolute;
  1208. width: 20px;
  1209. height: 20px;
  1210. border-radius: 0;
  1211. background-color: #00b4ed;
  1212. display: block;
  1213. background-color: #00b4ed;
  1214. border-radius: 3px
  1215. }
  1216. .square-move .move:nth-child(2) {
  1217. animation: b-move 2s infinite linear
  1218. }
  1219. .square-move .move:nth-child(2) {
  1220. left: 25px;
  1221. top: 0
  1222. }
  1223. .square-move .move:nth-child(3) {
  1224. animation: c-move 2s infinite linear
  1225. }
  1226. .square-move .move:nth-child(3) {
  1227. left: 0;
  1228. top: 25px
  1229. }
  1230. @keyframes a-move {
  1231. 0% {
  1232. left: 0;
  1233. top: 0
  1234. }
  1235. 8% {
  1236. left: 0;
  1237. top: 0
  1238. }
  1239. 16% {
  1240. left: 25px;
  1241. top: 0
  1242. }
  1243. 24% {
  1244. left: 25px;
  1245. top: 0
  1246. }
  1247. 32% {
  1248. left: 25px;
  1249. top: 0
  1250. }
  1251. 40% {
  1252. left: 25px;
  1253. top: 25px
  1254. }
  1255. 48% {
  1256. left: 25px;
  1257. top: 25px
  1258. }
  1259. 56% {
  1260. left: 25px;
  1261. top: 25px
  1262. }
  1263. 64% {
  1264. left: 0;
  1265. top: 25px
  1266. }
  1267. 72% {
  1268. left: 0;
  1269. top: 25px
  1270. }
  1271. 80% {
  1272. left: 0;
  1273. top: 25px
  1274. }
  1275. 88% {
  1276. left: 0;
  1277. top: 0
  1278. }
  1279. 100% {
  1280. left: 0;
  1281. top: 0
  1282. }
  1283. }
  1284. @keyframes b-move {
  1285. 0% {
  1286. left: 25px;
  1287. top: 0
  1288. }
  1289. 8% {
  1290. left: 25px;
  1291. top: 25px
  1292. }
  1293. 16% {
  1294. left: 25px;
  1295. top: 25px
  1296. }
  1297. 24% {
  1298. left: 25px;
  1299. top: 25px
  1300. }
  1301. 32% {
  1302. left: 0;
  1303. top: 25px
  1304. }
  1305. 40% {
  1306. left: 0;
  1307. top: 25px
  1308. }
  1309. 48% {
  1310. left: 0;
  1311. top: 25px
  1312. }
  1313. 56% {
  1314. left: 0;
  1315. top: 0
  1316. }
  1317. 64% {
  1318. left: 0;
  1319. top: 0
  1320. }
  1321. 72% {
  1322. left: 0;
  1323. top: 0
  1324. }
  1325. 80% {
  1326. left: 25px;
  1327. top: 0
  1328. }
  1329. 88% {
  1330. left: 25px;
  1331. top: 0
  1332. }
  1333. 100% {
  1334. left: 25px;
  1335. top: 0
  1336. }
  1337. }
  1338. @keyframes c-move {
  1339. 0% {
  1340. left: 0;
  1341. top: 25px
  1342. }
  1343. 8% {
  1344. left: 0;
  1345. top: 25px
  1346. }
  1347. 16% {
  1348. left: 0;
  1349. top: 25px
  1350. }
  1351. 24% {
  1352. left: 0;
  1353. top: 0
  1354. }
  1355. 32% {
  1356. left: 0;
  1357. top: 0
  1358. }
  1359. 40% {
  1360. left: 0;
  1361. top: 0
  1362. }
  1363. 48% {
  1364. left: 25px;
  1365. top: 0
  1366. }
  1367. 56% {
  1368. left: 25px;
  1369. top: 0
  1370. }
  1371. 64% {
  1372. left: 25px;
  1373. top: 0
  1374. }
  1375. 72% {
  1376. left: 25px;
  1377. top: 25px
  1378. }
  1379. 80% {
  1380. left: 25px;
  1381. top: 25px
  1382. }
  1383. 88% {
  1384. left: 25px;
  1385. top: 25px
  1386. }
  1387. 100% {
  1388. left: 0;
  1389. top: 25px
  1390. }
  1391. }
  1392. .waiting {
  1393. display: none;
  1394. height: 100%;
  1395. position: absolute;
  1396. width: 100%;
  1397. top: 0;
  1398. right: 0;
  1399. z-index: 9995;
  1400. flex-direction: column;
  1401. justify-content: center;
  1402. align-items: center;
  1403. }
  1404. .waiting .overlay{
  1405. position:fixed;
  1406. /* z-index: 9990; */
  1407. width:100%;
  1408. height:100%;
  1409. left: 0;
  1410. top: 0;
  1411. background: rgba(57, 57, 57, 0.76);
  1412. }
  1413. .waiting.showloading {
  1414. display: flex;
  1415. }
  1416. .waiting .spinner {
  1417. width:300px;
  1418. text-align: center;
  1419. display: flex;
  1420. display: -webkit-flex;
  1421. justify-content: center;
  1422. margin-top: -70px;
  1423. align-items: center;
  1424. }
  1425. .waiting .spinner > div {
  1426. width: 15px;
  1427. height: 15px;
  1428. background-color: #fff;
  1429. margin: 15px;
  1430. border-radius: 100%;
  1431. display: inline-block;
  1432. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  1433. animation: bouncedelay 1.4s infinite ease-in-out;
  1434. /* Prevent first frame from flickering when animation starts */
  1435. -webkit-animation-fill-mode: both;
  1436. animation-fill-mode: both;
  1437. }
  1438. .waiting .spinner .bounce1 {
  1439. -webkit-animation-delay: -0.32s;
  1440. animation-delay: -0.32s;
  1441. }
  1442. .waiting .spinner .bounce2 {
  1443. -webkit-animation-delay: -0.16s;
  1444. animation-delay: -0.16s;
  1445. }
  1446. .waiting div.text{
  1447. margin-left: 10px;
  1448. letter-spacing:1px;
  1449. z-index: 9995;
  1450. }
  1451. .unable {
  1452. pointer-events: none !important;
  1453. opacity: .5 !important
  1454. }
  1455. .slider .Main {
  1456. height: 20px;
  1457. align-items: center;
  1458. /* display: flex; */
  1459. /* justify-content: space-between; */
  1460. position: relative;
  1461. }
  1462. .slider .Main .scrollBar {
  1463. position: relative;
  1464. width: 100%;
  1465. height: 4px;
  1466. /* background-color: #c7c7c7; */
  1467. cursor: pointer;
  1468. border: 1px solid #5d5d5d;
  1469. /* border-radius: 1px; */
  1470. border-left: none;
  1471. }
  1472. .slider .scrollBar .scroll_Track {
  1473. width: 0px;
  1474. height: 4px;
  1475. background-color: #409eff;
  1476. border: 1px solid #409eff;
  1477. margin: -1px 0 0 0;
  1478. }
  1479. .slider .scrollBar .scroll_Thumb {
  1480. height: 15px;
  1481. width: 15px;
  1482. background-color: #ffffff;
  1483. /*-webkit-border-radius: 8px;
  1484. -moz-border-radius: 8px;
  1485. border-radius: 4px;
  1486. -webkit-box-shadow: 0px 0px 5px #74b5f5;
  1487. -moz-box-shadow: 0px 0px 5px #74b5f5;
  1488. box-shadow: 0px 0px 4px #74b5f5; */
  1489. position: absolute;
  1490. border-radius: 10px;
  1491. margin-top: -9px;
  1492. cursor: pointer;
  1493. -webkit-user-select: none;
  1494. }
  1495. .slider .BarTxt {
  1496. position: absolute;
  1497. top: -38px;
  1498. right: 0px;
  1499. /* width: 45px; */
  1500. display: flex;
  1501. }
  1502. .slider .BarTxt .scrollBarTxt {
  1503. width: 40px;
  1504. text-align: center;
  1505. height: 24px !important;
  1506. padding: 4px 0;
  1507. text-align: center;
  1508. color: #fff;
  1509. letter-spacing: 0;
  1510. }
  1511. .slider .BarTxt span{
  1512. line-height: 24px;
  1513. margin-left:4px;
  1514. }
  1515. #overlayUpload .preview, .toolRight .hotpointDetail .preview{
  1516. border: 1px solid #555A5A;
  1517. border-radius: 2px;
  1518. background-color: #161A1A;
  1519. height: 100px;
  1520. /* line-height: 100px; */
  1521. position: relative;
  1522. color: #a0a0a0;
  1523. width: 200px;
  1524. background-repeat:no-repeat;
  1525. margin:15px 0 30px 0;
  1526. text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  1527. background-image:url("../images/img_videoview@2x.png");
  1528. background-position:center 40%;
  1529. background-size: 17%;
  1530. display: flex;
  1531. align-items: center;
  1532. text-align: center;
  1533. align-content: center;
  1534. justify-content: center;
  1535. }
  1536. .toolRight .hotpointDetail .preview{
  1537. cursor:pointer;
  1538. }
  1539. #overlayUpload .preview video{
  1540. width:100%;
  1541. height:100%;
  1542. object-fit: fill;
  1543. }
  1544. .preview .plus{
  1545. display: block;
  1546. position:absolute;
  1547. left: 50%;
  1548. top:50%;
  1549. transform:translate(-50%,-50%);
  1550. }
  1551. .preview .text{
  1552. display:inline-block;
  1553. color: #a7a7a7;
  1554. margin-top: 32px;
  1555. }
  1556. .preview.uploaded .text{
  1557. display:none;
  1558. }
  1559. #overlayUpload .preview [attr-type='height']{
  1560. position: absolute;
  1561. left: calc(100% + 5px);
  1562. line-height:100%;
  1563. display: block;
  1564. top: 50%;
  1565. transform: translate(0%,-50%);
  1566. }
  1567. #overlayUpload .preview [attr-type='width']{
  1568. position: absolute;
  1569. left: 50%;
  1570. transform:translateX(-50%);
  1571. display: block;
  1572. top: calc(100% - 4px);
  1573. }
  1574. #shineTexSelect ul.hotTexUpload{
  1575. display: flex; margin:0;
  1576. }
  1577. .selectList.texList li{
  1578. display:flex
  1579. }
  1580. .selectList.texList .upload{
  1581. border-radius: 2px;
  1582. position: relative;
  1583. }
  1584. .selectList.texList .list .upload{
  1585. width: 70px;
  1586. height: 70px !important;
  1587. }
  1588. .selectList.texList.text .list .upload{
  1589. height: 100% !important;
  1590. width: 150px;
  1591. margin:0;
  1592. }
  1593. .selectList.texList.text .list :first-child .upload{
  1594. }
  1595. .selectList.texList .uploaded:not(:hover){
  1596. border: 1px solid transparent;
  1597. }
  1598. .selectList.texList .upload>div{
  1599. background-color:transparent;
  1600. }
  1601. #shineTexSelect .uploaded>div {
  1602. background-size:cover;
  1603. margin: 0;
  1604. }
  1605. .selectList.texList .uploaded>div {
  1606. background-size:contain;
  1607. }
  1608. .selectList.texList .upload .del{
  1609. width:20px;
  1610. background-color: #c77a7a;
  1611. height: 20px;
  1612. transform:translate(60%,-40%);
  1613. display: block;
  1614. right:0;
  1615. top: 0;
  1616. border-radius: 50%;
  1617. position: absolute;
  1618. display:none;
  1619. z-index:9999;
  1620. }
  1621. .selectList.texList .upload .del:before{
  1622. content:'X';
  1623. font-size:12px;
  1624. font-family:"iconfont" !important;
  1625. color:white;
  1626. position:relative;
  1627. top:-5px;
  1628. right:-6px;
  1629. }
  1630. .selectList.texList li:not(.forbitEdit):not(.cannotDelete) .upload.uploaded:hover .del{
  1631. display:block;
  1632. }
  1633. .selectList.texList .showCount{
  1634. display: block;
  1635. color:#aeaeae;
  1636. white-space:break-spaces;
  1637. line-height:25px ;
  1638. }
  1639. #shineTexSelect .showCount{
  1640. width:40px;
  1641. margin-left:10px;
  1642. }
  1643. #photoTexSelect .showCount{
  1644. width:70px;
  1645. margin:25px;
  1646. }
  1647. .selectList.texList.text .showCount{
  1648. width:50px;
  1649. margin-left:10px;
  1650. line-height:20px
  1651. }
  1652. .cad-setting {
  1653. text-align: left;
  1654. }
  1655. /*
  1656. .cad-setting li {
  1657. display: flex;
  1658. align-items: center;
  1659. }
  1660. .cad-setting li label {
  1661. flex: none;
  1662. width: 65px;
  1663. text-align: right;
  1664. margin-right: 5px;
  1665. }
  1666. .cad-setting li select,
  1667. .cad-setting li input {
  1668. flex: 1;
  1669. margin: 0 10px;
  1670. padding-left: 0;
  1671. padding-right: 0;
  1672. outline: none;
  1673. border: 1px solid #737373;
  1674. background-color: #000;
  1675. color: #fff;
  1676. }
  1677. .cad-setting li input {
  1678. height: 30px;
  1679. } */
  1680. .cad-size {
  1681. width: 100%;
  1682. border: 1px solid #737373;
  1683. background-color: #000;
  1684. outline: none;
  1685. height: 32px;
  1686. padding: 0 10px;
  1687. color: #fff;
  1688. letter-spacing: 1px;
  1689. border-radius: 2px;
  1690. }
  1691. .selectList {
  1692. position: relative;
  1693. text-align: left;
  1694. height: 32px;
  1695. overflow: visible;
  1696. background: #151515;
  1697. }
  1698. .selectList.texList{
  1699. height: 50px !important;
  1700. }
  1701. #photoTexSelect{
  1702. height: 130px !important;
  1703. }
  1704. .selectList .selection {
  1705. display: block;
  1706. position: relative;
  1707. overflow: hidden;
  1708. color: #fff;
  1709. padding-right: 40px;
  1710. padding-left: 4px;
  1711. text-overflow: ellipsis;
  1712. white-space: nowrap;
  1713. cursor: pointer;
  1714. outline: none;
  1715. height: 100%;
  1716. line-height: 30px;
  1717. transition-duration: 0.1s;
  1718. border: 1px solid #737373;
  1719. }
  1720. .selectList .selection:after {
  1721. content: "\f0d7";
  1722. display: block;
  1723. position: absolute;
  1724. top: 0;
  1725. right: 0;
  1726. width: 30px;
  1727. height: 45px;
  1728. font-family: FontAwesome;
  1729. text-align: center;
  1730. line-height: 51px;
  1731. }
  1732. .selectList .selection.focus {
  1733. color: #fff;
  1734. }
  1735. .selectList.texList.text .selection{
  1736. line-height: 46px;
  1737. font-size:14px;
  1738. padding:0 10px;
  1739. }
  1740. .selectList>ul {
  1741. position: absolute;
  1742. border: 1px solid #737373;
  1743. z-index: 15400;
  1744. width: 100%;
  1745. /* overflow: hidden; */
  1746. background: #151515;
  1747. box-shadow: 0 5px 5px rgba(0,0,0,.3);
  1748. padding: 0;
  1749. margin-top: -1px;
  1750. cursor: pointer;
  1751. /* width: 100%; */
  1752. }
  1753. .selectList ul>li {
  1754. height: 80px;
  1755. list-style-type: none;
  1756. /* padding: 0 7px; */
  1757. line-height: 30px;
  1758. /* overflow: hidden; */
  1759. width: 100%;
  1760. white-space: nowrap;
  1761. margin: 0px;
  1762. }
  1763. .selectList.text ul>li {
  1764. height:50px;
  1765. }
  1766. .selectList.text ul>li:not(:first-child) div.upload>div{
  1767. line-height:50px;
  1768. background:none;
  1769. padding: 0 10px;
  1770. overflow: hidden;text-overflow: ellipsis;
  1771. }
  1772. .selectList.text ul>li:first-child div.upload>div{
  1773. background-size:7% 20%;
  1774. }
  1775. .selectList ul>li.selected {
  1776. background: #333333;
  1777. }
  1778. .selectList ul>li:hover {
  1779. background: #2d2d2d;
  1780. }
  1781. .selectList .selection .upload{
  1782. width: 45px !important;
  1783. height: 45px !important;
  1784. margin:1px;
  1785. }
  1786. #photoTexSelect .selection .uploaded{
  1787. width: 126px !important;
  1788. height: 126px !important;
  1789. margin:1px;
  1790. background-size:100% 100%;
  1791. }
  1792. .toolRight #gifInfoEdit{
  1793. text-align : left;
  1794. }
  1795. .toolRight #gifInfoEdit input {
  1796. width: 49px;
  1797. height:25px !important;
  1798. margin:0 4px;
  1799. padding: 0 1px;
  1800. text-align: center;
  1801. }
  1802. .toolRight #gifInfoEdit span {
  1803. margin:0 3px;
  1804. }
  1805. .toolRight .hr{
  1806. /* height:1px; */
  1807. /* background: #4c4c4c; */
  1808. margin: 17px 0px;
  1809. border-bottom: 1px dotted #404040;
  1810. }
  1811. /* from 4dmodel: */
  1812. .layout-widget{
  1813. display:-webkit-box;
  1814. display:-webkit-flex;
  1815. display:-ms-flexbox;
  1816. display:flex;
  1817. -webkit-box-orient:vertical;
  1818. -webkit-box-direction:normal;
  1819. -webkit-flex-direction:column;
  1820. -ms-flex-direction:column;
  1821. flex-direction:column;
  1822. height:inherit;
  1823. }
  1824. .widget-wrapper>.header{
  1825. background: #616161;
  1826. position:relative;
  1827. height:32px;
  1828. border-top: 1px solid #18232e;
  1829. border-bottom: 1px solid #18232e;
  1830. padding-left: 10px;
  1831. font-size:12px;
  1832. line-height:29px;
  1833. color: #ffffff;
  1834. opacity:1;
  1835. cursor:pointer;
  1836. transition: color 0.1s;
  1837. text-align:left;
  1838. }
  1839. .widget-wrapper>.header:before{
  1840. content: "\f0d7";
  1841. display: block;
  1842. position: absolute;
  1843. left: 0;
  1844. right: 0;
  1845. width: 20px;
  1846. height: 29px;
  1847. font-family: FontAwesome;
  1848. text-align: center;
  1849. line-height: 29px;
  1850. }
  1851. .widget-wrapper>.header.closed:before{
  1852. content: "\f0da";
  1853. }
  1854. .inner>.widget-wrapper{
  1855. position:relative;
  1856. margin: 13px 0 19px 0;
  1857. }
  1858. .group-widget > .widget-wrapper > .header .pic{
  1859. position:absolute;
  1860. top:6px;
  1861. }
  1862. .group-widget > .widget-wrapper > .header a{
  1863. margin-left: 12px;
  1864. font-size: 14px;
  1865. letter-spacing: 3px;
  1866. /* font-weight: 700; */
  1867. }
  1868. .group-widget > .widget-wrapper > .inner {
  1869. padding: 0px 13px;
  1870. overflow: visible;
  1871. max-height: 1000px;
  1872. transition:all 0.2s; /* 透明度和高度 */
  1873. }
  1874. [name="content"] .group-widget > .widget-wrapper > .inner {
  1875. max-height: 2800px;
  1876. }
  1877. .group-widget > .widget-wrapper > .inner.closed{
  1878. max-height:0;
  1879. overflow: hidden;
  1880. }