lzb.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  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: 93px;
  746. position: relative;
  747. }
  748. .confirmSnap {
  749. background: #00b4ed;
  750. color: #fff;
  751. border-radius: 21px;
  752. /* margin: 0 auto; */
  753. position: absolute;
  754. letter-spacing: 0.05em;
  755. height: 42px;
  756. text-align: center;
  757. line-height: 42px;
  758. font-size: 14px;
  759. pointer-events: all;
  760. cursor: pointer;
  761. transition: background 0.2s;
  762. top: 8px;
  763. width: 220px;
  764. left: 50%;
  765. transform: translateX(-50%);
  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 .screen .shotImg {
  813. height: 108px;
  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 .hotpoint .spotList>ul>li:hover, .toolRight .hotpoint .spotList>ul>li.active {
  844. background: #565a5b;
  845. }
  846. .toolRight .listItem .icon{
  847. width: 33px;
  848. margin-left: 10px;
  849. background-size: 70%;
  850. background-position-x: 0;
  851. background-repeat: no-repeat;
  852. background-position-y: center;
  853. }
  854. .toolRight .hotpoint .listItem .number{
  855. color:#828282;
  856. margin-right:10px;
  857. }
  858. .overlayList li .icon{
  859. background-image:url(../images/edit/box_video.png);
  860. }
  861. .toolRight .listItem .title{
  862. width: calc(100% - 70px);
  863. font-size: 14px;
  864. text-overflow: ellipsis;
  865. overflow: hidden;
  866. white-space: nowrap;
  867. }
  868. .toolRight .listItem .DelConfirm{
  869. width: 82px;
  870. background: #00b4ed;
  871. border-radius: 1px;
  872. box-shadow: -5px 0px 20px rgba(0, 0, 0, 0.5);
  873. position: absolute;
  874. right: -82px;
  875. z-index: 99;
  876. text-align: center;
  877. transition: right 0.3s, opacity 0.1s;
  878. }
  879. .toolRight .listItem .DelConfirm.active {
  880. right: -3px;
  881. }
  882. .toolRight .listItem .del {
  883. width: 40px;
  884. background-image: url(../images/delete.png);
  885. background-size: 72%;
  886. opacity: 0.85;
  887. background-repeat: no-repeat;
  888. background-position: center;
  889. }
  890. .toolRight .spotList .icon {
  891. background-image: url(../images/edit/hotStyle_1.png);
  892. }
  893. .toolRight .secondary .content {
  894. height: calc(100% - 104px);
  895. border-bottom: 1px solid #000000;
  896. }
  897. .toolRight .secondary .buttons.tail {
  898. height: 65px;
  899. width: 100%;
  900. padding: 15px 10px;
  901. }
  902. .buttons {
  903. display: flex;
  904. justify-content: center;
  905. }
  906. .toolRight .secondary .itemTitle.head a.close {
  907. width: 40px;
  908. height: 100%;
  909. position: absolute;
  910. right: 0px;
  911. background-size: 30%;
  912. background-image: url("../images/phone_step_01.png");
  913. background-position: center center;
  914. background-repeat: no-repeat;
  915. }
  916. .toolRight .sign ul.chose li.upload .buttons, .toolRight .upload:not(.uploaded) .buttons {
  917. display: none;
  918. }
  919. .toolRight .sign ul.chose li .buttons button, .toolRight .upload button {
  920. pointer-events: auto;
  921. margin-top: -17px;
  922. width: 68%;
  923. left: 16%;
  924. top: 50%;
  925. position: absolute;
  926. box-shadow: 0 0 5px rgba(0, 0, 0, 0.21);
  927. }
  928. .toolRight .upload {
  929. width: 97px;
  930. height: 97px !important;
  931. border-radius: 2px;
  932. border: 1px solid #5d5d5d;
  933. position: relative;
  934. margin: 5px;
  935. background-size: contain
  936. }
  937. .toolRight .sign ul.chose li>div, .toolRight .upload>div {
  938. position: relative;
  939. top: 0;
  940. width: 100%;
  941. height: 100%;
  942. left: 0;
  943. background-size: cover;
  944. cursor: pointer;
  945. }
  946. .toolRight .sign ul.chose li.upload>div, .toolRight .upload>div {
  947. background-image: url(../images/plus.png);
  948. background-position: center 42%;
  949. background-size: 15% 15%;
  950. background-repeat: no-repeat;
  951. }
  952. #userUploadStyle .upload>div{
  953. background-position: center center;
  954. }
  955. .toolRight .sign ul.chose li.upload span, .toolRight .upload span {
  956. color: #00b4ed;
  957. margin-top: 46%;
  958. display: inline-block;
  959. letter-spacing: 0.5px;
  960. }
  961. .toolRight .secondary .content>ul>li:first-child {
  962. border-top: 1px solid #5d5d5d !important;
  963. }
  964. .toolRight .secondary .buttons.tail {
  965. height: 65px;
  966. width: 100%;
  967. padding: 15px 10px;
  968. border-top: 1px solid #5d5d5d !important;
  969. }
  970. .buttons button.cancel {
  971. border: 1px solid #00b4ed !important;
  972. color: #00b4ed;
  973. background-color: transparent;
  974. }
  975. .buttons button:nth-child(2) {
  976. margin-left: 10px;
  977. }
  978. .toolRight .itemTitle .buttons, .toolRight .remark .buttons{
  979. position:absolute; right:0;
  980. }
  981. .toolRight .itemTitle button, .toolRight .remark button{
  982. padding:0 20px;
  983. }
  984. .toolRight .upload input {
  985. cursor: pointer;
  986. position: absolute;
  987. width: 100%;
  988. height: 100%;
  989. top: 0;
  990. left: 0;
  991. opacity: 0;
  992. }
  993. .fun-view-video {
  994. position: fixed;
  995. z-index: 99999;
  996. width: 100%;
  997. height: 100%;
  998. background: rgba(0, 0, 0, 0.9);
  999. /* display: flex; */
  1000. align-items: center;
  1001. justify-content: center;
  1002. left: 0;
  1003. top: 0;
  1004. display: none;
  1005. }
  1006. .fun-view-video span {
  1007. position: absolute;
  1008. right: 0;
  1009. top: 0;
  1010. transform: rotate(45deg);
  1011. font-size: 40px;
  1012. font-weight: 300;
  1013. color: #fff;
  1014. cursor: pointer;
  1015. }
  1016. .fun-view-video video {
  1017. max-width: 90%;
  1018. max-height: 90%;
  1019. }
  1020. .edit-fun-images>div {
  1021. vertical-align: top;
  1022. float: left;
  1023. margin: 5px;
  1024. position: relative;
  1025. }
  1026. .edit-fun-images a {
  1027. width: 96px;
  1028. height: 96px;
  1029. border: 1px dashed #fff;
  1030. color: #fff;
  1031. text-align: center;
  1032. position: relative;
  1033. display: inline-block;
  1034. line-height: 90px;
  1035. font-size: 30px;
  1036. font-weight: 300;
  1037. }
  1038. .edit-fun-images a.result>span::after {
  1039. content: '+'
  1040. }
  1041. .edit-fun-images a.result>span {
  1042. position: absolute;
  1043. right: -4px;
  1044. top: -4px;
  1045. width: 20px;
  1046. height: 20px;
  1047. line-height: 20px;
  1048. transform: rotateZ(45deg);
  1049. background: #c77a7a;
  1050. border-radius: 50%;
  1051. z-index:1000;
  1052. }
  1053. .edit-fun-images a.result>img {
  1054. max-width: 100%;
  1055. max-height: 100%;
  1056. }
  1057. .edit-fun-images .upload-thum {
  1058. display: block;
  1059. position: relative;
  1060. text-align: center;
  1061. }
  1062. .edit-fun-images input {
  1063. position: absolute;
  1064. left: 0;
  1065. top: 0;
  1066. width: 100%;
  1067. height: 100%;
  1068. opacity: 0;
  1069. z-index: 1;
  1070. cursor: pointer;
  1071. }
  1072. /* loading */
  1073. .edit-loading {
  1074. display: flex;
  1075. width: 100%;
  1076. height: 100%;
  1077. justify-content: center;
  1078. align-items: center;
  1079. position: fixed;
  1080. background: rgba(0, 0, 0, 0.6);
  1081. top: 0;
  1082. left: 0;
  1083. z-index: 101;
  1084. }
  1085. .square-move {
  1086. position: relative;
  1087. }
  1088. .square-split {
  1089. position: relative;
  1090. width: 75px;
  1091. height: 75px
  1092. }
  1093. .square-move .move:nth-child(1) {
  1094. animation: a-move 2s infinite linear
  1095. }
  1096. .square-move .move:nth-child(1) {
  1097. left: 0;
  1098. top: 0
  1099. }
  1100. .square-move .move {
  1101. position: absolute;
  1102. width: 20px;
  1103. height: 20px;
  1104. border-radius: 0;
  1105. background-color: #00b4ed;
  1106. display: block;
  1107. background-color: #00b4ed;
  1108. border-radius: 3px
  1109. }
  1110. .square-move .move:nth-child(2) {
  1111. animation: b-move 2s infinite linear
  1112. }
  1113. .square-move .move:nth-child(2) {
  1114. left: 25px;
  1115. top: 0
  1116. }
  1117. .square-move .move:nth-child(3) {
  1118. animation: c-move 2s infinite linear
  1119. }
  1120. .square-move .move:nth-child(3) {
  1121. left: 0;
  1122. top: 25px
  1123. }
  1124. @keyframes a-move {
  1125. 0% {
  1126. left: 0;
  1127. top: 0
  1128. }
  1129. 8% {
  1130. left: 0;
  1131. top: 0
  1132. }
  1133. 16% {
  1134. left: 25px;
  1135. top: 0
  1136. }
  1137. 24% {
  1138. left: 25px;
  1139. top: 0
  1140. }
  1141. 32% {
  1142. left: 25px;
  1143. top: 0
  1144. }
  1145. 40% {
  1146. left: 25px;
  1147. top: 25px
  1148. }
  1149. 48% {
  1150. left: 25px;
  1151. top: 25px
  1152. }
  1153. 56% {
  1154. left: 25px;
  1155. top: 25px
  1156. }
  1157. 64% {
  1158. left: 0;
  1159. top: 25px
  1160. }
  1161. 72% {
  1162. left: 0;
  1163. top: 25px
  1164. }
  1165. 80% {
  1166. left: 0;
  1167. top: 25px
  1168. }
  1169. 88% {
  1170. left: 0;
  1171. top: 0
  1172. }
  1173. 100% {
  1174. left: 0;
  1175. top: 0
  1176. }
  1177. }
  1178. @keyframes b-move {
  1179. 0% {
  1180. left: 25px;
  1181. top: 0
  1182. }
  1183. 8% {
  1184. left: 25px;
  1185. top: 25px
  1186. }
  1187. 16% {
  1188. left: 25px;
  1189. top: 25px
  1190. }
  1191. 24% {
  1192. left: 25px;
  1193. top: 25px
  1194. }
  1195. 32% {
  1196. left: 0;
  1197. top: 25px
  1198. }
  1199. 40% {
  1200. left: 0;
  1201. top: 25px
  1202. }
  1203. 48% {
  1204. left: 0;
  1205. top: 25px
  1206. }
  1207. 56% {
  1208. left: 0;
  1209. top: 0
  1210. }
  1211. 64% {
  1212. left: 0;
  1213. top: 0
  1214. }
  1215. 72% {
  1216. left: 0;
  1217. top: 0
  1218. }
  1219. 80% {
  1220. left: 25px;
  1221. top: 0
  1222. }
  1223. 88% {
  1224. left: 25px;
  1225. top: 0
  1226. }
  1227. 100% {
  1228. left: 25px;
  1229. top: 0
  1230. }
  1231. }
  1232. @keyframes c-move {
  1233. 0% {
  1234. left: 0;
  1235. top: 25px
  1236. }
  1237. 8% {
  1238. left: 0;
  1239. top: 25px
  1240. }
  1241. 16% {
  1242. left: 0;
  1243. top: 25px
  1244. }
  1245. 24% {
  1246. left: 0;
  1247. top: 0
  1248. }
  1249. 32% {
  1250. left: 0;
  1251. top: 0
  1252. }
  1253. 40% {
  1254. left: 0;
  1255. top: 0
  1256. }
  1257. 48% {
  1258. left: 25px;
  1259. top: 0
  1260. }
  1261. 56% {
  1262. left: 25px;
  1263. top: 0
  1264. }
  1265. 64% {
  1266. left: 25px;
  1267. top: 0
  1268. }
  1269. 72% {
  1270. left: 25px;
  1271. top: 25px
  1272. }
  1273. 80% {
  1274. left: 25px;
  1275. top: 25px
  1276. }
  1277. 88% {
  1278. left: 25px;
  1279. top: 25px
  1280. }
  1281. 100% {
  1282. left: 0;
  1283. top: 25px
  1284. }
  1285. }
  1286. .waiting {
  1287. display: none;
  1288. height: 100%;
  1289. position: absolute;
  1290. width: 100%;
  1291. top: 0;
  1292. right: 0;
  1293. z-index: 9995;
  1294. flex-direction: column;
  1295. justify-content: center;
  1296. align-items: center;
  1297. }
  1298. .waiting .overlay{
  1299. position:fixed;
  1300. /* z-index: 9990; */
  1301. width:100%;
  1302. height:100%;
  1303. left: 0;
  1304. top: 0;
  1305. background: rgba(57, 57, 57, 0.76);
  1306. }
  1307. .waiting.showloading {
  1308. display: flex;
  1309. }
  1310. .waiting .spinner {
  1311. width:300px;
  1312. text-align: center;
  1313. display: flex;
  1314. display: -webkit-flex;
  1315. justify-content: center;
  1316. margin-top: -70px;
  1317. align-items: center;
  1318. }
  1319. .waiting .spinner > div {
  1320. width: 15px;
  1321. height: 15px;
  1322. background-color: #fff;
  1323. margin: 15px;
  1324. border-radius: 100%;
  1325. display: inline-block;
  1326. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  1327. animation: bouncedelay 1.4s infinite ease-in-out;
  1328. /* Prevent first frame from flickering when animation starts */
  1329. -webkit-animation-fill-mode: both;
  1330. animation-fill-mode: both;
  1331. }
  1332. .waiting .spinner .bounce1 {
  1333. -webkit-animation-delay: -0.32s;
  1334. animation-delay: -0.32s;
  1335. }
  1336. .waiting .spinner .bounce2 {
  1337. -webkit-animation-delay: -0.16s;
  1338. animation-delay: -0.16s;
  1339. }
  1340. .waiting div.text{
  1341. margin-left: 10px;
  1342. letter-spacing:1px;
  1343. z-index: 9995;
  1344. }
  1345. .unable {
  1346. pointer-events: none !important;
  1347. opacity: .5 !important
  1348. }
  1349. .slider .Main {
  1350. height: 20px;
  1351. align-items: center;
  1352. /* display: flex; */
  1353. /* justify-content: space-between; */
  1354. position: relative;
  1355. }
  1356. .slider .Main .scrollBar {
  1357. position: relative;
  1358. width: 100%;
  1359. height: 4px;
  1360. /* background-color: #c7c7c7; */
  1361. cursor: pointer;
  1362. border: 1px solid #5d5d5d;
  1363. /* border-radius: 1px; */
  1364. border-left: none;
  1365. }
  1366. .slider .scrollBar .scroll_Track {
  1367. width: 0px;
  1368. height: 4px;
  1369. background-color: #00b4ed;
  1370. border: 1px solid #00b4ed;
  1371. margin: -1px 0 0 0;
  1372. }
  1373. .slider .scrollBar .scroll_Thumb {
  1374. height: 15px;
  1375. width: 15px;
  1376. background-color: #ffffff;
  1377. /*-webkit-border-radius: 8px;
  1378. -moz-border-radius: 8px;
  1379. border-radius: 4px;
  1380. -webkit-box-shadow: 0px 0px 5px #74b5f5;
  1381. -moz-box-shadow: 0px 0px 5px #74b5f5;
  1382. box-shadow: 0px 0px 4px #74b5f5; */
  1383. position: absolute;
  1384. border-radius: 10px;
  1385. margin-top: -9px;
  1386. cursor: pointer;
  1387. -webkit-user-select: none;
  1388. }
  1389. .slider .BarTxt {
  1390. position: absolute;
  1391. top: -38px;
  1392. right: 0px;
  1393. /* width: 45px; */
  1394. display: flex;
  1395. }
  1396. .slider .BarTxt .scrollBarTxt {
  1397. width: 40px;
  1398. text-align: center;
  1399. height: 24px;
  1400. padding: 4px 0;
  1401. text-align: center;
  1402. color: #fff;
  1403. letter-spacing: 0;
  1404. }
  1405. .slider .BarTxt span{
  1406. line-height: 24px;
  1407. margin-left:4px;
  1408. }
  1409. #overlayUpload .preview, .toolRight .hotpointDetail .preview{
  1410. border: 1px solid #555A5A;
  1411. border-radius: 2px;
  1412. background-color: #161A1A;
  1413. height: 100px;
  1414. /* line-height: 100px; */
  1415. position: relative;
  1416. color: #a0a0a0;
  1417. width: 200px;
  1418. background-repeat:no-repeat;
  1419. margin:15px 0 30px 0;
  1420. text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.4);
  1421. background-image:url("../images/img_videoview@2x.png");
  1422. background-position:center 40%;
  1423. background-size: 17%;
  1424. display: flex;
  1425. align-items: center;
  1426. text-align: center;
  1427. align-content: center;
  1428. justify-content: center;
  1429. }
  1430. .toolRight .hotpointDetail .preview{
  1431. cursor:pointer;
  1432. }
  1433. #overlayUpload .preview video{
  1434. width:100%;
  1435. height:100%;
  1436. object-fit: fill;
  1437. }
  1438. .preview .plus{
  1439. display: block;
  1440. position:absolute;
  1441. left: 50%;
  1442. top:50%;
  1443. transform:translate(-50%,-50%);
  1444. }
  1445. .preview .text{
  1446. display:inline-block;
  1447. color: #a7a7a7;
  1448. margin-top: 32px;
  1449. }
  1450. .preview.uploaded .text{
  1451. display:none;
  1452. }
  1453. #overlayUpload .preview [attr-type='height']{
  1454. position: absolute;
  1455. left: calc(100% + 5px);
  1456. line-height:100%;
  1457. display: block;
  1458. top: 50%;
  1459. transform: translate(0%,-50%);
  1460. }
  1461. #overlayUpload .preview [attr-type='width']{
  1462. position: absolute;
  1463. left: 50%;
  1464. transform:translateX(-50%);
  1465. display: block;
  1466. top: calc(100% - 4px);
  1467. }
  1468. #userUploadStyle ul{
  1469. display: flex;
  1470. }
  1471. #userUploadStyle .upload{
  1472. width: 70px;
  1473. height: 70px !important;
  1474. border-radius: 2px;
  1475. border: 1px solid #5d5d5d;
  1476. position: relative;
  1477. }
  1478. #userUploadStyle .upload>div{
  1479. background-color:transparent;
  1480. }
  1481. #userUploadStyle .uploaded>div{
  1482. background-size:cover;
  1483. }
  1484. #userUploadStyle .upload .del{
  1485. width:20px;
  1486. background-color: #c77a7a;
  1487. height: 20px;
  1488. transform:translate(60%,-40%);
  1489. display: block;
  1490. right:0;
  1491. top: 0;
  1492. border-radius: 50%;
  1493. position: absolute;
  1494. display:none;
  1495. z-index:9999;
  1496. }
  1497. #userUploadStyle .upload .del:before{
  1498. content:'X';
  1499. font-size:12px;
  1500. font-family:"iconfont" !important;
  1501. color:white;
  1502. position:relative;
  1503. top:-7px;
  1504. }
  1505. #userUploadStyle .upload.uploaded:hover .del{
  1506. display:block;
  1507. }
  1508. .cad-setting {
  1509. text-align: left;
  1510. }
  1511. /*
  1512. .cad-setting li {
  1513. display: flex;
  1514. align-items: center;
  1515. }
  1516. .cad-setting li label {
  1517. flex: none;
  1518. width: 65px;
  1519. text-align: right;
  1520. margin-right: 5px;
  1521. }
  1522. .cad-setting li select,
  1523. .cad-setting li input {
  1524. flex: 1;
  1525. margin: 0 10px;
  1526. padding-left: 0;
  1527. padding-right: 0;
  1528. outline: none;
  1529. border: 1px solid #737373;
  1530. background-color: #000;
  1531. color: #fff;
  1532. }
  1533. .cad-setting li input {
  1534. height: 30px;
  1535. } */
  1536. .cad-size {
  1537. width: 100%;
  1538. border: 1px solid #737373;
  1539. background-color: #000;
  1540. outline: none;
  1541. height: 32px;
  1542. padding: 0 10px;
  1543. color: #fff;
  1544. letter-spacing: 1px;
  1545. border-radius: 2px;
  1546. }