lzb.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  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. }
  72. .toolBottom .toolLeft ul {
  73. overflow-y: auto;
  74. }
  75. .toolBottom .toolLeft li {
  76. display: inline-block;
  77. width: 100%;
  78. padding: 12px 0;
  79. opacity: 0.8;
  80. cursor: pointer;
  81. transition: background 0.1s, opacity 0.1s;
  82. }
  83. .toolBottom .toolLeft li label {
  84. cursor: pointer;
  85. }
  86. .toolBottom .toolLeft li.active {
  87. background: #00a2d4;
  88. opacity: 1;
  89. }
  90. .VREditIcon {
  91. background-size: 48% !important;
  92. }
  93. .toolBottom .toolLeft li span {
  94. display: inline-block;
  95. width: 100%;
  96. height: 20px !important;
  97. background-size: 55%;
  98. margin-bottom: 0px;
  99. background-repeat: no-repeat;
  100. background-position: center center;
  101. }
  102. .customizeHotStyle {
  103. width: 40% !important;
  104. float: right !important;
  105. border: none !important;
  106. }
  107. .toolBottom .toolLeft li span.hotpoint {
  108. background-image: url(../images/edit/hotpoint.png);
  109. }
  110. .toolBottom .toolLeft li span.screen {
  111. background-image: url(../images/edit/screen.png);
  112. }
  113. .toolBottom .toolLeft li span.information {
  114. background-image: url(../images/edit/information.png);
  115. }
  116. .toolBottom .toolLeft li span.music {
  117. background-image: url(../images/edit/music.png);
  118. }
  119. .toolBottom .toolLeft li span.snapTour {
  120. background-image: url(../images/edit/autoTour.png);
  121. }
  122. .toolBottom .toolLeft li span.VR {
  123. background-image: url(../images/edit/VR.png);
  124. }
  125. .toolBottom .toolLeft li span.overlay {
  126. background-image: url(../images/edit/box_video.png);
  127. }
  128. .toolBottom .toolLeft li span.panoVisible {
  129. background-image: url(../images/edit/panoVisi.png);
  130. }
  131. /* 底部中间 */
  132. .toolBottom .toolMid {
  133. border-left: 1px solid rgb(93, 93, 93);
  134. border-right: 1px solid rgb(0, 0, 0);
  135. width: calc(100% - 300px);
  136. height: 100%;
  137. }
  138. #webgl {
  139. width: 100%;
  140. height: calc(100% - 93px);
  141. padding: 15px;
  142. }
  143. #webgl .webgl-inside {
  144. width: 100%;
  145. height: 100%;
  146. position: relative;
  147. overflow: hidden;
  148. }
  149. .content {
  150. width: 100%;
  151. height: 100%;
  152. position: relative;
  153. overflow: hidden;
  154. }
  155. /* 底部右边 */
  156. .toolBottom .toolRight {
  157. width: 236px;
  158. border-left: 1px solid rgb(93, 93, 93);
  159. }
  160. .toolRight div.content {
  161. height: 100%;
  162. overflow-y: auto;
  163. user-select: none;
  164. /* overflow-x: hidden; */
  165. }
  166. .toolRight div.content>ul>li {
  167. border-top: 1px solid #5d5d5d;
  168. border-bottom: 1px solid #000000;
  169. padding: 10px;
  170. }
  171. .toolRight div.content>ul>li:last-child, .toolRight .noBorderbott {
  172. border-bottom: none !important;
  173. }
  174. .toolRight div.content>ul>li:first-child {
  175. border-top: none;
  176. }
  177. .toolRight div.content>ul>li>*:first-child {
  178. margin: 3px 0 10px 0;
  179. }
  180. .itemMargin {
  181. margin: 10px auto !important;
  182. }
  183. .toolRight .itemTitle {
  184. font-size: 14px;
  185. display: flex;
  186. line-height: 14px;
  187. position: relative;
  188. }
  189. .toolRight li[data-name=info] .itemTitle {
  190. margin: 0px 0 !important;
  191. }
  192. .toolRight .itemTitle::before {
  193. position: absolute;
  194. right: 0px;
  195. top: 2px;
  196. content: ""attr(data-size)"";
  197. color: #999;
  198. }
  199. .toolRight .link input:first-child {
  200. margin-bottom: 10px;
  201. }
  202. ul.MenuOptions {
  203. width: 100%;
  204. overflow: hidden;
  205. background: rgb(67, 67, 67);
  206. padding: 0px;
  207. cursor: pointer;
  208. flex-direction: row;
  209. align-items: center;
  210. display: flex;
  211. justify-content: space-between;
  212. }
  213. ul.MenuOptions li {
  214. text-align: center;
  215. display: inline-block;
  216. transition: color 0.1s;
  217. width: 100%;
  218. transition: background-color 0.3s;
  219. }
  220. ul.MenuOptions li.chosen {
  221. background-color: #00a2d4;
  222. }
  223. .toolRight div.content {
  224. border-color: #737373;
  225. width: calc(100% + 18px);
  226. }
  227. .toolRight div.content>ul {
  228. width: 236px;
  229. height: 100%;
  230. }
  231. .tourList>ul{
  232. height: 100%;
  233. overflow-y: scroll;
  234. /* overflow-x: hidden; */
  235. /* width: 100%; */
  236. }
  237. .toolRight .input, .toolRight .editText {
  238. width: 100%;
  239. outline: none;
  240. border: 1px solid #737373;
  241. background-color: #000;
  242. color: #fff;
  243. letter-spacing: 1px;
  244. border-radius: 2px;
  245. height: 32px;
  246. padding: 0 10px;
  247. }
  248. .toolRight .editText {
  249. height: 200px !important;
  250. line-height: 130% !important;
  251. padding: 10px;
  252. text-align: justify;
  253. }
  254. @keyframes warnFlash {
  255. 0% {
  256. background-color: rgba(2, 200, 174, 0);
  257. }
  258. 100% {
  259. background-color: rgba(2, 200, 174, 1);
  260. }
  261. }
  262. .warning {
  263. -webkit-animation: warnFlash 0.6s linear;
  264. -moz-animation: warnFlash 0.6s linear;
  265. -ms-animation: warnFlash 0.6s linear;
  266. -o-animation: warnFlash 0.6s linear;
  267. animation: warnFlash 0.6s linear animation-direction:alternate;
  268. -webkit-animation-direction: alternate;
  269. animation-iteration-count: infinite;
  270. border-color: #a7a7a7 !important;
  271. }
  272. .toolRight .secondary{
  273. height: 100%;
  274. position: fixed;
  275. top: 0;
  276. left: calc(100% - 235px);
  277. background: rgba(38, 39, 41, 1);
  278. width: 236px;
  279. box-shadow: 0px 0px 20px #090909;
  280. transition: left 0.2s;
  281. z-index: 100;
  282. }
  283. .toolRight .tourpointDetail {
  284. height: 100%;
  285. position: fixed;
  286. top: 0;
  287. left: calc(100% - 235px);
  288. background: rgba(38, 39, 41, 1);
  289. width: 236px;
  290. box-shadow: 0px 0px 20px #090909;
  291. transition: left 0.2s;
  292. z-index: 100;
  293. }
  294. .toolRight .secondary.atRight{
  295. left: 100%;
  296. }
  297. .toolRight div.content>ul>li {
  298. border-top: 1px solid #5d5d5d;
  299. border-bottom: 1px solid #000000;
  300. padding: 10px;
  301. }
  302. .toolRight div.content>ul>li:first-child {
  303. border-top: none;
  304. }
  305. .toolRight div.content>ul>li>* {
  306. margin: 6px 0 12px 0;
  307. line-height: 32px;
  308. height: 100%;
  309. }
  310. .buttons button {
  311. width: 100%;
  312. background-color: #00b4ed;
  313. line-height: 1 !important;
  314. color: #fff;
  315. border: none;
  316. cursor: pointer;
  317. }
  318. .toolRight .addSpot button, .toolRight .addTour button {
  319. /* position: fixed;
  320. width: inherit;
  321. height: 3.2vw;
  322. background-color: rgba(38, 39, 41, 1); */
  323. /* height:40px; */
  324. line-height: 40px;
  325. border-radius: 20px;
  326. font-size: 14px;
  327. }
  328. /*fyz, 修改添加导览样式*/
  329. .remark {
  330. display: block;
  331. text-align: left;
  332. color: #ababab;
  333. line-height: 1.5 !important;
  334. letter-spacing: 0.1px;
  335. /* text-align: justify; */
  336. }
  337. .toolRight .addSpot .buttons, .toolRight .addTour .buttons {
  338. margin: 0 !important;
  339. }
  340. .toolRight .hotStyle-item li {
  341. width: 38px;
  342. height: 38px;
  343. margin: 2px 6px 5px 0;
  344. float: left;
  345. cursor: pointer;
  346. background-size: 100%;
  347. background-repeat: no-repeat;
  348. border: 2px solid transparent;
  349. }
  350. .toolRight .hotStyle-item li.active {
  351. border: 2px solid #00b4ed;
  352. }
  353. .other-item {
  354. text-align: left;
  355. font-size: 14px;
  356. }
  357. .other-item .colorRed {
  358. color: #c77a7a;
  359. font-style: normal;
  360. }
  361. .other-item label {
  362. cursor: pointer;
  363. }
  364. .editCheckbox {
  365. position: absolute;
  366. opacity: 0;
  367. cursor: pointer;
  368. }
  369. .editCheckbox+label {
  370. background-color: #fff;
  371. border: 1px #ccc solid;
  372. border-radius: 2px;
  373. width: 16px;
  374. height: 16px;
  375. display: inline-block;
  376. text-align: center;
  377. vertical-align: middle;
  378. line-height: 16px;
  379. cursor: pointer;
  380. }
  381. .editCheckbox:checked+label {
  382. border: 0;
  383. background-color: #fff;
  384. }
  385. .editCheckbox:checked+label:after {
  386. content: "\2714";
  387. color: #00b4ed;
  388. }
  389. #tourItemList {
  390. padding-top: 1.4vw !important;
  391. height: calc(100% - 368px); /* 减去在它上面的部分 */
  392. }
  393. .switch {
  394. display: flex;
  395. /* justify-content: center; */
  396. margin-left:5px !important
  397. }
  398. .switch label {
  399. display: block;
  400. vertical-align: middle;
  401. }
  402. .switch input {
  403. vertical-align: middle;
  404. }
  405. .switch .mui-switch {
  406. width: 52px !important;
  407. height: 24px !important;
  408. position: relative !important;
  409. border: 1px solid #414141 !important;
  410. background-color: #fdfdfd;
  411. box-shadow: #dfdfdf 0 0 0 0 inset !important;
  412. border-radius: 20px !important;
  413. border-top-left-radius: 20px !important;
  414. border-top-right-radius: 20px !important;
  415. border-bottom-left-radius: 20px !important;
  416. border-bottom-right-radius: 20px !important;
  417. background-clip: content-box !important;
  418. display: inline-block !important;
  419. -webkit-appearance: none !important;
  420. user-select: none !important;
  421. outline: none !important;
  422. padding: 0 !important;
  423. background-color: #616161 !important;
  424. margin-right: 15px;
  425. top:-2px;
  426. }
  427. .switch .mui-switch:before {
  428. content: '';
  429. width: 22px;
  430. height: 22px;
  431. position: absolute;
  432. top: 0px;
  433. left: 0;
  434. border-radius: 20px;
  435. border-top-left-radius: 20px;
  436. border-top-right-radius: 20px;
  437. border-bottom-left-radius: 20px;
  438. border-bottom-right-radius: 20px;
  439. background-color: #fff;
  440. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  441. }
  442. .switch .mui-switch:checked {
  443. border-color: #00b4ed;
  444. box-shadow: #00b4ed 0 0 0 16px inset;
  445. background-color: #00b4ed;
  446. }
  447. .switch .mui-switch:checked:before {
  448. left: 29px;
  449. }
  450. .switch .mui-switch.mui-switch-animbg {
  451. transition: background-color ease 0.4s;
  452. }
  453. .switch .mui-switch.mui-switch-animbg:before {
  454. transition: left 0.3s;
  455. }
  456. .switch .mui-switch.mui-switch-animbg:checked {
  457. box-shadow: #dfdfdf 0 0 0 0 inset;
  458. background-color: #00b4ed !important;
  459. transition: border-color 0.4s, background-color ease 0.4s;
  460. }
  461. .switch .mui-switch.mui-switch-animbg:checked:before {
  462. transition: left 0.3s;
  463. }
  464. .switch .mui-switch.mui-switch-anim {
  465. transition: border cubic-bezier(0, 0, 0, 1) 0.4s, box-shadow cubic-bezier(0, 0, 0, 1) 0.4s;
  466. }
  467. .switch .mui-switch.mui-switch-anim:before {
  468. transition: left 0.3s;
  469. }
  470. .switch .mui-switch.mui-switch-anim:checked {
  471. box-shadow: #64bd63 0 0 0 16px inset;
  472. background-color: #64bd63;
  473. transition: border ease 0.4s, box-shadow ease 0.4s, background-color ease 1.2s;
  474. }
  475. .switch .mui-switch.mui-switch-anim:checked:before {
  476. transition: left 0.3s;
  477. }
  478. .toolRight .snapTour #tourList {
  479. padding-bottom: 20px;
  480. height: 100%;
  481. }
  482. .toolRight .snapTour .tourList li.guideItem {
  483. height: 75px;
  484. display: flex;
  485. margin: 16px 0;
  486. cursor: pointer;
  487. }
  488. .toolRight .snapTour .tourList li.guideItem:first-child {
  489. margin-top: 0;
  490. }
  491. .toolRight .snapTour .tourList li.guideItem>div:nth-child(2) {
  492. /* background: #3e1313; */
  493. width: calc(100% - 107px);
  494. height: 100%;
  495. position: relative;
  496. }
  497. .toolRight .snapTour .tourList li.guideItem>div:nth-child(2) span {
  498. text-align: left;
  499. margin: 0 10px 0 0;
  500. font-size: 14px;
  501. text-overflow: ellipsis;
  502. height: 66px;
  503. display: -webkit-box;
  504. -webkit-box-orient: vertical;
  505. overflow: hidden;
  506. -webkit-line-clamp: 2;
  507. color: #00b4ed;
  508. word-wrap: break-word;
  509. line-height: 22px;
  510. /* cursor: text; */
  511. }
  512. .toolRight .snapTour .tourList li.guideItem>div:first-child span {
  513. border-radius: 11px;
  514. background: #373939;
  515. width: 22px;
  516. display: block;
  517. text-align: center;
  518. height: 22px;
  519. line-height: 22px;
  520. font-size: 12px;
  521. margin-right: 10px;
  522. }
  523. .toolRight .snapTour .tourList li.guideItem:last-child>div:first-child span {
  524. background: #00b4ed
  525. }
  526. .snapTour {
  527. overflow-y: visible;
  528. overflow: visible;
  529. overflow-y: visible !important;
  530. height: 82% !important;
  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;
  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;
  617. }
  618. .toolRight .itemTitle::before {
  619. position: absolute;
  620. right: 0px;
  621. top: 2px;
  622. content: ""attr(data-size)"";
  623. color: #7b7b7b;
  624. }
  625. .toolRight .itemTitle {
  626. font-size: 14px;
  627. display: flex;
  628. line-height: 14px;
  629. position: relative;
  630. }
  631. .toolRight .mediaUpload .itemTitle span {
  632. position: absolute;
  633. left: 0;
  634. /*for Ie*/
  635. }
  636. .toolRight .secondary .itemTitle.head{
  637. height: 50px;
  638. padding:0 10px;
  639. line-height: 50px;
  640. border-bottom: 1px solid #000000;
  641. }
  642. .toolRight .secondary li.head .itemTitle{
  643. margin:0;
  644. line-height: 40px;
  645. }
  646. .innerBtn {
  647. border-radius: 17px;
  648. height: 34px;
  649. line-height: 34px;
  650. background-color: rgba(0, 0, 0, 0.3);
  651. border-color: rgba(0, 0, 0, 0.3);
  652. text-align: center;
  653. }
  654. .toolRight .music input[type="file"], .toolRight .audio input[type="file"] {
  655. opacity: 0;
  656. width: 200%;
  657. height: 100%;
  658. position: absolute;
  659. left: -100%;
  660. top: 0;
  661. cursor: pointer;
  662. z-index: 2;
  663. }
  664. .toolRight .playBox {
  665. border: 1px solid #5d5d5d;
  666. display: flex;
  667. padding: 6px;
  668. width: 215px;
  669. }
  670. .toolRight .playBox>div:first-child {
  671. width: 56px;
  672. height: 56px;
  673. background-size: 100%;
  674. margin-left: 2px;
  675. overflow: hidden;
  676. }
  677. .toolRight .video .playBox>div:first-child {
  678. background-size: cover;
  679. }
  680. .toolRight .playBox>div canvas {
  681. position: absolute;
  682. left: 0;
  683. top: 0;
  684. width: 100%;
  685. height: 100%;
  686. z-index: 100;
  687. }
  688. .toolRight .playBox .playBtn {
  689. display: none;
  690. z-index: 90;
  691. width: 30px;
  692. height: 30px;
  693. background-color: #00000014;
  694. }
  695. .toolRight .playBox .playBtn span {
  696. left: 10px;
  697. top: 7px;
  698. }
  699. .toolRight .playBox>div:first-child.hasVideo {
  700. background-color: #9ce3b9;
  701. position: relative;
  702. }
  703. .toolRight .playBox>div:first-child .playBtn {
  704. display: block;
  705. }
  706. .toolRight .playBox[data-type='music']>div:first-child {
  707. /* background-image: url("../images/soundPlay.png"); */
  708. background-image: url("../images/Volume btn_on.png");
  709. background-size: 50%;
  710. background-repeat:no-repeat;
  711. background-position:center;
  712. }
  713. .toolRight .playBox[data-type='music']>div:first-child.playing {
  714. background-image: url("../images/soundPause.png");
  715. }
  716. .toolRight .playBox>div:nth-child(2) {
  717. width: calc(100% - 60px);
  718. margin: 8px 0 4px 11px;
  719. text-align: left;
  720. font-size: 14px;
  721. }
  722. .toolRight .playBox>div:nth-child(2) span {
  723. color: #acacac;
  724. line-height: 1.1;
  725. display: block;
  726. }
  727. .toolRight .playBox>div:nth-child(2) .title {
  728. text-overflow: ellipsis;
  729. overflow: hidden;
  730. white-space: nowrap;
  731. }
  732. .toolRight .playBox>div:nth-child(2) .delete {
  733. color: #00b4ed;
  734. cursor: pointer;
  735. width: 2.3em;
  736. margin-top: 9px;
  737. }
  738. .toolRight #query-bgm {
  739. display: block;
  740. width: 100%;
  741. height: 100%;
  742. }
  743. .toolBottom .midBottom {
  744. width: 100%;
  745. height: 98px;
  746. position: relative;
  747. }
  748. .confirmSnap {
  749. }
  750. #webgl .overlayGui.snapshotGui {
  751. display: none;
  752. width: calc(84% - 36px);
  753. height: calc(100% - 180px);
  754. border: 1px dotted rgba(255, 255, 255, 0.8);
  755. left: calc(8% + 18px);
  756. top: 86px;
  757. }
  758. #webgl .overlayGui {
  759. position: absolute;
  760. z-index: 100;
  761. pointer-events: none;
  762. transition: opacity 0.3s, border 0.3s;
  763. }
  764. #webgl .snapshotGui .corner {
  765. width: 40px;
  766. height: 40px;
  767. position: absolute;
  768. transition: opacity 0.3s;
  769. opacity: 0.8;
  770. }
  771. #webgl .snapshotGui .corner.leftTop {
  772. border-top: 4px solid #fff;
  773. border-left: 4px solid #fff;
  774. left: -2px;
  775. top: -2px;
  776. }
  777. #webgl .snapshotGui .corner.rightTop {
  778. border-top: 4px solid #fff;
  779. border-right: 4px solid #fff;
  780. right: -2px;
  781. top: -2px;
  782. }
  783. #webgl .snapshotGui .corner.leftBott {
  784. border-left: 4px solid #fff;
  785. border-bottom: 4px solid #fff;
  786. left: -2px;
  787. bottom: -2px;
  788. }
  789. #webgl .snapshotGui .corner.rightBott {
  790. border-right: 4px solid #fff;
  791. border-bottom: 4px solid #fff;
  792. right: -2px;
  793. bottom: -2px;
  794. }
  795. .toolRight .screen .shotImg {
  796. height: 108px;
  797. border-radius: 5px;
  798. cursor: pointer;
  799. line-height: 105px;
  800. background-size: 100%;
  801. }
  802. .toolRight .screen .shotImg.blank {
  803. background-image: url("../images/myModel.jpg");
  804. opacity: 0.8;
  805. cursor: default;
  806. }
  807. .toolRight .listItem{
  808. height: 40px;
  809. margin: 0 0 8px -10px;
  810. background: #373938;
  811. cursor: pointer;
  812. width: calc(100% + 20px);
  813. line-height: 40px;
  814. font-size: 14px;
  815. letter-spacing: 0.5px;
  816. text-align: left;
  817. display: flex;
  818. transition: background 0.1s;
  819. position: relative;
  820. overflow: hidden;
  821. /* width: 100%; */
  822. }
  823. #tourList .listItem{
  824. width: calc(100% + 12px);
  825. }
  826. .toolRight .hotpoint .spotList>ul>li:hover, .toolRight .hotpoint .spotList>ul>li.active {
  827. background: #565a5b;
  828. }
  829. .toolRight .listItem .icon{
  830. width: 33px;
  831. margin-left: 10px;
  832. background-size: 70%;
  833. background-position-x: 0;
  834. background-repeat: no-repeat;
  835. background-position-y: center;
  836. }
  837. .toolRight .hotpoint .listItem .number{
  838. color:#828282;
  839. margin-right:10px;
  840. }
  841. .overlayList li .icon{
  842. background-image:url(../images/edit/box_video.png);
  843. }
  844. .toolRight .listItem .title{
  845. width: calc(100% - 70px);
  846. font-size: 14px;
  847. text-overflow: ellipsis;
  848. overflow: hidden;
  849. white-space: nowrap;
  850. }
  851. .toolRight .listItem .DelConfirm{
  852. width: 82px;
  853. background: #00b4ed;
  854. border-radius: 1px;
  855. box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.5);
  856. position: absolute;
  857. right: -82px;
  858. z-index: 99;
  859. text-align: center;
  860. transition: right 0.3s, opacity 0.1s;
  861. }
  862. .toolRight .listItem .DelConfirm.active {
  863. right: -3px;
  864. }
  865. .toolRight .listItem .del {
  866. width: 40px;
  867. background-image: url(../images/delete.png);
  868. background-size: 72%;
  869. opacity: 0.85;
  870. background-repeat: no-repeat;
  871. background-position: center;
  872. }
  873. .toolRight .spotList .icon {
  874. background-image: url(../images/edit/hotStyle_1.png);
  875. }
  876. .toolRight .secondary .content {
  877. height: calc(100% - 104px);
  878. border-bottom: 1px solid #000000;
  879. }
  880. .toolRight .secondary .buttons.tail {
  881. height: 65px;
  882. width: 100%;
  883. padding: 15px 10px;
  884. }
  885. .buttons {
  886. display: flex;
  887. justify-content: center;
  888. }
  889. .toolRight .secondary .itemTitle.head a.close {
  890. width: 40px;
  891. height: 100%;
  892. position: absolute;
  893. right: 0px;
  894. background-size: 30%;
  895. background-image: url("../images/phone_step_01.png");
  896. background-position: center center;
  897. background-repeat: no-repeat;
  898. }
  899. .toolRight .sign ul.chose li.upload .buttons, .toolRight .upload:not(.uploaded) .buttons {
  900. display: none;
  901. }
  902. .toolRight .sign ul.chose li .buttons button, .toolRight .upload button {
  903. pointer-events: auto;
  904. margin-top: -17px;
  905. width: 68%;
  906. left: 16%;
  907. top: 50%;
  908. position: absolute;
  909. box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  910. }
  911. .toolRight .upload {
  912. width: 97px;
  913. height: 97px !important;
  914. border-radius: 2px;
  915. border: 1px solid #5d5d5d;
  916. position: relative;
  917. margin: 5px;
  918. background-size: contain
  919. }
  920. .toolRight .sign ul.chose li>div, .toolRight .upload>div {
  921. position: relative;
  922. top: 0;
  923. width: 100%;
  924. height: 100%;
  925. left: 0;
  926. background-size: cover;
  927. cursor: pointer;
  928. }
  929. .toolRight .sign ul.chose li.upload>div, .toolRight .upload>div {
  930. background-image: url(../images/plus.png);
  931. background-position: center 42%;
  932. background-size: 15% 15%;
  933. background-repeat: no-repeat;
  934. }
  935. #userUploadStyle .upload>div{
  936. background-position: center center;
  937. }
  938. .toolRight .sign ul.chose li.upload span, .toolRight .upload span {
  939. color: #00b4ed;
  940. margin-top: 46%;
  941. display: inline-block;
  942. letter-spacing: 0.5px;
  943. }
  944. .toolRight .secondary .content>ul>li:first-child {
  945. border-top: 1px solid #5d5d5d !important;
  946. }
  947. .toolRight .secondary .buttons.tail {
  948. height: 65px;
  949. width: 100%;
  950. padding: 15px 10px;
  951. border-top: 1px solid #5d5d5d !important;
  952. }
  953. .buttons button.cancel {
  954. border: 1px solid #00b4ed !important;
  955. color: #00b4ed;
  956. background-color: transparent;
  957. }
  958. .buttons button:nth-child(2) {
  959. margin-left: 10px;
  960. }
  961. #midBtns{
  962. position: absolute;
  963. transform: translateX(-50%);
  964. width: 220px;
  965. left: 50%;
  966. flex-direction: column;
  967. }
  968. #midBtns>*{
  969. /* color: #fff; */
  970. border-radius: 21px;
  971. /* margin: 0 auto; */
  972. margin: 0px 0 0 0 !important;
  973. letter-spacing: 0.05em;
  974. height: 38px;
  975. text-align: center;
  976. line-height: 42px;
  977. font-size: 14px;
  978. pointer-events: all;
  979. cursor:pointer;
  980. transition:background 0.2s;
  981. width: 220px;
  982. }
  983. #midBtns button:nth-child(2) {
  984. margin: 10px 0 0 0 !important;
  985. }
  986. .toolRight .itemTitle .buttons, .toolRight .remark .buttons{
  987. position:absolute; right:0;
  988. }
  989. .toolRight .itemTitle button, .toolRight .remark button{
  990. padding:0 20px;
  991. }
  992. .toolRight .upload input {
  993. cursor: pointer;
  994. position: absolute;
  995. width: 100%;
  996. height: 100%;
  997. top: 0;
  998. left: 0;
  999. opacity: 0;
  1000. }
  1001. .fun-view-video {
  1002. position: fixed;
  1003. z-index: 99999;
  1004. width: 100%;
  1005. height: 100%;
  1006. background: rgba(0, 0, 0, 0.9);
  1007. /* display: flex; */
  1008. align-items: center;
  1009. justify-content: center;
  1010. left: 0;
  1011. top: 0;
  1012. display: none;
  1013. }
  1014. .fun-view-video span {
  1015. position: absolute;
  1016. right: 0;
  1017. top: 0;
  1018. transform: rotate(45deg);
  1019. font-size: 40px;
  1020. font-weight: 300;
  1021. color: #fff;
  1022. cursor: pointer;
  1023. }
  1024. .fun-view-video video {
  1025. max-width: 90%;
  1026. max-height: 90%;
  1027. }
  1028. .edit-fun-images>div {
  1029. vertical-align: top;
  1030. float: left;
  1031. margin: 5px;
  1032. position: relative;
  1033. }
  1034. .edit-fun-images a {
  1035. width: 96px;
  1036. height: 96px;
  1037. border: 1px dashed #fff;
  1038. color: #fff;
  1039. text-align: center;
  1040. position: relative;
  1041. display: block;
  1042. line-height: 90px;
  1043. font-size: 30px;
  1044. font-weight: 300;
  1045. box-sizing: content-box;
  1046. }
  1047. .edit-fun-images a.result>span::after {
  1048. content: '+'
  1049. }
  1050. .edit-fun-images a.result>span {
  1051. position: absolute;
  1052. right: -4px;
  1053. top: -4px;
  1054. width: 20px;
  1055. height: 20px;
  1056. line-height: 20px;
  1057. transform: rotateZ(45deg);
  1058. background: #c77a7a;
  1059. border-radius: 50%;
  1060. z-index:1000;
  1061. }
  1062. .edit-fun-images a.result>img {
  1063. max-width: 100%;
  1064. max-height: 100%;
  1065. }
  1066. .edit-fun-images a .play-video{
  1067. position:absolute;
  1068. transform: translate(50%,50%);
  1069. left: 0; top: 0;
  1070. opacity:0.3;
  1071. transition:opacity 0.2s;
  1072. }
  1073. .edit-fun-images a .play-video:hover{
  1074. opacity:1
  1075. }
  1076. .edit-fun-images .upload-thum {
  1077. display: block;
  1078. position: relative;
  1079. text-align: center;
  1080. }
  1081. .edit-fun-images input {
  1082. position: absolute;
  1083. left: 0;
  1084. top: 0;
  1085. width: 100%;
  1086. height: 100%;
  1087. opacity: 0;
  1088. z-index: 1;
  1089. cursor: pointer;
  1090. }
  1091. /* loading */
  1092. .edit-loading {
  1093. display: flex;
  1094. width: 100%;
  1095. height: 100%;
  1096. justify-content: center;
  1097. align-items: center;
  1098. position: fixed;
  1099. background: rgba(0, 0, 0, 0.6);
  1100. top: 0;
  1101. left: 0;
  1102. z-index: 101;
  1103. }
  1104. .square-move {
  1105. position: relative;
  1106. }
  1107. .square-split {
  1108. position: relative;
  1109. width: 75px;
  1110. height: 75px
  1111. }
  1112. .square-move .move:nth-child(1) {
  1113. animation: a-move 2s infinite linear
  1114. }
  1115. .square-move .move:nth-child(1) {
  1116. left: 0;
  1117. top: 0
  1118. }
  1119. .square-move .move {
  1120. position: absolute;
  1121. width: 20px;
  1122. height: 20px;
  1123. border-radius: 0;
  1124. background-color: #00b4ed;
  1125. display: block;
  1126. background-color: #00b4ed;
  1127. border-radius: 3px
  1128. }
  1129. .square-move .move:nth-child(2) {
  1130. animation: b-move 2s infinite linear
  1131. }
  1132. .square-move .move:nth-child(2) {
  1133. left: 25px;
  1134. top: 0
  1135. }
  1136. .square-move .move:nth-child(3) {
  1137. animation: c-move 2s infinite linear
  1138. }
  1139. .square-move .move:nth-child(3) {
  1140. left: 0;
  1141. top: 25px
  1142. }
  1143. @keyframes a-move {
  1144. 0% {
  1145. left: 0;
  1146. top: 0
  1147. }
  1148. 8% {
  1149. left: 0;
  1150. top: 0
  1151. }
  1152. 16% {
  1153. left: 25px;
  1154. top: 0
  1155. }
  1156. 24% {
  1157. left: 25px;
  1158. top: 0
  1159. }
  1160. 32% {
  1161. left: 25px;
  1162. top: 0
  1163. }
  1164. 40% {
  1165. left: 25px;
  1166. top: 25px
  1167. }
  1168. 48% {
  1169. left: 25px;
  1170. top: 25px
  1171. }
  1172. 56% {
  1173. left: 25px;
  1174. top: 25px
  1175. }
  1176. 64% {
  1177. left: 0;
  1178. top: 25px
  1179. }
  1180. 72% {
  1181. left: 0;
  1182. top: 25px
  1183. }
  1184. 80% {
  1185. left: 0;
  1186. top: 25px
  1187. }
  1188. 88% {
  1189. left: 0;
  1190. top: 0
  1191. }
  1192. 100% {
  1193. left: 0;
  1194. top: 0
  1195. }
  1196. }
  1197. @keyframes b-move {
  1198. 0% {
  1199. left: 25px;
  1200. top: 0
  1201. }
  1202. 8% {
  1203. left: 25px;
  1204. top: 25px
  1205. }
  1206. 16% {
  1207. left: 25px;
  1208. top: 25px
  1209. }
  1210. 24% {
  1211. left: 25px;
  1212. top: 25px
  1213. }
  1214. 32% {
  1215. left: 0;
  1216. top: 25px
  1217. }
  1218. 40% {
  1219. left: 0;
  1220. top: 25px
  1221. }
  1222. 48% {
  1223. left: 0;
  1224. top: 25px
  1225. }
  1226. 56% {
  1227. left: 0;
  1228. top: 0
  1229. }
  1230. 64% {
  1231. left: 0;
  1232. top: 0
  1233. }
  1234. 72% {
  1235. left: 0;
  1236. top: 0
  1237. }
  1238. 80% {
  1239. left: 25px;
  1240. top: 0
  1241. }
  1242. 88% {
  1243. left: 25px;
  1244. top: 0
  1245. }
  1246. 100% {
  1247. left: 25px;
  1248. top: 0
  1249. }
  1250. }
  1251. @keyframes c-move {
  1252. 0% {
  1253. left: 0;
  1254. top: 25px
  1255. }
  1256. 8% {
  1257. left: 0;
  1258. top: 25px
  1259. }
  1260. 16% {
  1261. left: 0;
  1262. top: 25px
  1263. }
  1264. 24% {
  1265. left: 0;
  1266. top: 0
  1267. }
  1268. 32% {
  1269. left: 0;
  1270. top: 0
  1271. }
  1272. 40% {
  1273. left: 0;
  1274. top: 0
  1275. }
  1276. 48% {
  1277. left: 25px;
  1278. top: 0
  1279. }
  1280. 56% {
  1281. left: 25px;
  1282. top: 0
  1283. }
  1284. 64% {
  1285. left: 25px;
  1286. top: 0
  1287. }
  1288. 72% {
  1289. left: 25px;
  1290. top: 25px
  1291. }
  1292. 80% {
  1293. left: 25px;
  1294. top: 25px
  1295. }
  1296. 88% {
  1297. left: 25px;
  1298. top: 25px
  1299. }
  1300. 100% {
  1301. left: 0;
  1302. top: 25px
  1303. }
  1304. }
  1305. .waiting {
  1306. display: none;
  1307. height: 100%;
  1308. position: absolute;
  1309. width: 100%;
  1310. top: 0;
  1311. right: 0;
  1312. z-index: 9995;
  1313. flex-direction: column;
  1314. justify-content: center;
  1315. align-items: center;
  1316. }
  1317. .waiting .overlay{
  1318. position:fixed;
  1319. /* z-index: 9990; */
  1320. width:100%;
  1321. height:100%;
  1322. left: 0;
  1323. top: 0;
  1324. background: rgba(57, 57, 57, 0.76);
  1325. }
  1326. .waiting.showloading {
  1327. display: flex;
  1328. }
  1329. .waiting .spinner {
  1330. width:300px;
  1331. text-align: center;
  1332. display: flex;
  1333. display: -webkit-flex;
  1334. justify-content: center;
  1335. margin-top: -70px;
  1336. align-items: center;
  1337. }
  1338. .waiting .spinner > div {
  1339. width: 15px;
  1340. height: 15px;
  1341. background-color: #fff;
  1342. margin: 15px;
  1343. border-radius: 100%;
  1344. display: inline-block;
  1345. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  1346. animation: bouncedelay 1.4s infinite ease-in-out;
  1347. /* Prevent first frame from flickering when animation starts */
  1348. -webkit-animation-fill-mode: both;
  1349. animation-fill-mode: both;
  1350. }
  1351. .waiting .spinner .bounce1 {
  1352. -webkit-animation-delay: -0.32s;
  1353. animation-delay: -0.32s;
  1354. }
  1355. .waiting .spinner .bounce2 {
  1356. -webkit-animation-delay: -0.16s;
  1357. animation-delay: -0.16s;
  1358. }
  1359. .waiting div.text{
  1360. margin-left: 10px;
  1361. letter-spacing:1px;
  1362. z-index: 9995;
  1363. }
  1364. .unable {
  1365. pointer-events: none !important;
  1366. opacity: .5 !important
  1367. }
  1368. .slider .Main {
  1369. height: 20px;
  1370. align-items: center;
  1371. /* display: flex; */
  1372. /* justify-content: space-between; */
  1373. position: relative;
  1374. }
  1375. .slider .Main .scrollBar {
  1376. position: relative;
  1377. width: 100%;
  1378. height: 4px;
  1379. /* background-color: #c7c7c7; */
  1380. cursor: pointer;
  1381. border: 1px solid #5d5d5d;
  1382. /* border-radius: 1px; */
  1383. border-left: none;
  1384. }
  1385. .slider .scrollBar .scroll_Track {
  1386. width: 0px;
  1387. height: 4px;
  1388. background-color: #00b4ed;
  1389. border: 1px solid #00b4ed;
  1390. margin: -1px 0 0 0;
  1391. }
  1392. .slider .scrollBar .scroll_Thumb {
  1393. height: 15px;
  1394. width: 15px;
  1395. background-color: #ffffff;
  1396. /*-webkit-border-radius: 8px;
  1397. -moz-border-radius: 8px;
  1398. border-radius: 4px;
  1399. -webkit-box-shadow: 0px 0px 5px #74b5f5;
  1400. -moz-box-shadow: 0px 0px 5px #74b5f5;
  1401. box-shadow: 0px 0px 4px #74b5f5; */
  1402. position: absolute;
  1403. border-radius: 10px;
  1404. margin-top: -9px;
  1405. cursor: pointer;
  1406. -webkit-user-select: none;
  1407. }
  1408. .slider .BarTxt {
  1409. position: absolute;
  1410. top: -38px;
  1411. right: 0px;
  1412. /* width: 45px; */
  1413. display: flex;
  1414. }
  1415. .slider .BarTxt .scrollBarTxt {
  1416. width: 40px;
  1417. text-align: center;
  1418. height: 24px;
  1419. padding: 4px 0;
  1420. text-align: center;
  1421. color: #fff;
  1422. letter-spacing: 0;
  1423. }
  1424. .slider .BarTxt span{
  1425. line-height: 24px;
  1426. margin-left:4px;
  1427. }
  1428. #overlayUpload .preview, .toolRight .hotpointDetail .preview{
  1429. border: 1px solid #555A5A;
  1430. border-radius: 2px;
  1431. background-color: #161A1A;
  1432. height: 100px;
  1433. /* line-height: 100px; */
  1434. position: relative;
  1435. color: #a0a0a0;
  1436. width: 200px;
  1437. background-repeat:no-repeat;
  1438. margin:15px 0 30px 0;
  1439. text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  1440. background-image:url("../images/img_videoview@2x.png");
  1441. background-position:center 40%;
  1442. background-size: 17%;
  1443. display: flex;
  1444. align-items: center;
  1445. text-align: center;
  1446. align-content: center;
  1447. justify-content: center;
  1448. }
  1449. .toolRight .hotpointDetail .preview{
  1450. cursor:pointer;
  1451. }
  1452. #overlayUpload .preview video{
  1453. width:100%;
  1454. height:100%;
  1455. object-fit: fill;
  1456. }
  1457. .preview .plus{
  1458. display: block;
  1459. position:absolute;
  1460. left: 50%;
  1461. top:50%;
  1462. transform:translate(-50%,-50%);
  1463. }
  1464. .preview .text{
  1465. display:inline-block;
  1466. color: #a7a7a7;
  1467. margin-top: 32px;
  1468. }
  1469. .preview.uploaded .text{
  1470. display:none;
  1471. }
  1472. #overlayUpload .preview [attr-type='height']{
  1473. position: absolute;
  1474. left: calc(100% + 5px);
  1475. line-height:100%;
  1476. display: block;
  1477. top: 50%;
  1478. transform: translate(0%,-50%);
  1479. }
  1480. #overlayUpload .preview [attr-type='width']{
  1481. position: absolute;
  1482. left: 50%;
  1483. transform:translateX(-50%);
  1484. display: block;
  1485. top: calc(100% - 4px);
  1486. }
  1487. #userUploadStyle ul{
  1488. display: flex;
  1489. }
  1490. #userUploadStyle .upload{
  1491. width: 70px;
  1492. height: 70px !important;
  1493. border-radius: 2px;
  1494. border: 1px solid #5d5d5d;
  1495. position: relative;
  1496. }
  1497. #userUploadStyle .upload>div{
  1498. background-color:transparent;
  1499. }
  1500. #userUploadStyle .uploaded>div{
  1501. background-size:cover;
  1502. }
  1503. #userUploadStyle .upload .del{
  1504. width:20px;
  1505. background-color: #c77a7a;
  1506. height: 20px;
  1507. transform:translate(60%,-40%);
  1508. display: block;
  1509. right:0;
  1510. top: 0;
  1511. border-radius: 50%;
  1512. position: absolute;
  1513. display:none;
  1514. z-index:9999;
  1515. }
  1516. #userUploadStyle .upload .del:before{
  1517. content:'X';
  1518. font-size:12px;
  1519. font-family:"iconfont" !important;
  1520. color:white;
  1521. position:relative;
  1522. top:-7px;
  1523. }
  1524. #userUploadStyle .upload.uploaded:hover .del{
  1525. display:block;
  1526. }
  1527. .cad-setting {
  1528. text-align: left;
  1529. }
  1530. /*
  1531. .cad-setting li {
  1532. display: flex;
  1533. align-items: center;
  1534. }
  1535. .cad-setting li label {
  1536. flex: none;
  1537. width: 65px;
  1538. text-align: right;
  1539. margin-right: 5px;
  1540. }
  1541. .cad-setting li select,
  1542. .cad-setting li input {
  1543. flex: 1;
  1544. margin: 0 10px;
  1545. padding-left: 0;
  1546. padding-right: 0;
  1547. outline: none;
  1548. border: 1px solid #737373;
  1549. background-color: #000;
  1550. color: #fff;
  1551. }
  1552. .cad-setting li input {
  1553. height: 30px;
  1554. } */
  1555. .cad-size {
  1556. width: 100%;
  1557. border: 1px solid #737373;
  1558. background-color: #000;
  1559. outline: none;
  1560. height: 32px;
  1561. padding: 0 10px;
  1562. color: #fff;
  1563. letter-spacing: 1px;
  1564. border-radius: 2px;
  1565. }