lzb.css 40 KB

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