home.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. @import "system.css";
  2. * {
  3. letter-spacing: 1px;
  4. }
  5. #homeBox {
  6. width: calc(100% - 20px);
  7. height: 100vh;
  8. margin-left: 10px;
  9. display: flex;
  10. flex-direction: column;
  11. flex-wrap: nowrap;
  12. justify-content: center;
  13. align-items: center;
  14. }
  15. #homeBox::after {
  16. position: absolute;
  17. bottom: 0;
  18. content: "";
  19. width: 100vw;
  20. height: 30%;
  21. background-image: url("../images/loginBackGround2.png");
  22. background-repeat: no-repeat;
  23. background-size: 100% 100%;
  24. z-index: -1;
  25. }
  26. #homeBox p {
  27. width: 100%;
  28. align-items: center;
  29. text-align: center;
  30. font-weight: 600;
  31. font-size: 16px;
  32. color: #303133;
  33. margin-bottom: 10px;
  34. letter-spacing: 2px;
  35. }
  36. #homeBox p:nth-child(2) {
  37. margin-top: 2rem;
  38. letter-spacing: 5px;
  39. font-size: 32px;
  40. color: #000000;
  41. }
  42. #form_box {
  43. margin-top: 3rem;
  44. display: flex;
  45. flex-direction: column;
  46. flex-wrap: nowrap;
  47. justify-content: center;
  48. align-items: flex-start;
  49. width: calc(100% - 60px);
  50. min-width: 300px;
  51. }
  52. .home_auto_login {
  53. background-color: #00000000;
  54. margin-top: 10px;
  55. width: calc(100% - 60px);
  56. min-width: 300px;
  57. }
  58. /* 登录按钮样式 */
  59. #homeBox #loginButton {
  60. font-size: 1rem;
  61. margin-top: 40px;
  62. width: calc(100% - 60px);
  63. min-width: 100px;
  64. padding: 5px 0 !important;
  65. border-radius: 2rem;
  66. }
  67. /* 用户名和密码和输入框宽度样式 */
  68. #form_box ::before {
  69. height: 0px !important;
  70. }
  71. .mui-input-row {
  72. width: 100%;
  73. overflow: auto;
  74. }
  75. .mui-input-row input {
  76. width: 100%;
  77. background-color: #F5F5F5;
  78. border-radius: 2rem;
  79. }
  80. .mui-main-box {
  81. padding: 10px;
  82. }
  83. .flex-auto {
  84. width: 100%;
  85. padding-bottom: 30px;
  86. display: flex;
  87. align-items: center;
  88. align-content: center;
  89. justify-content: space-around;
  90. }
  91. .flex-auto>div {
  92. width: 60px;
  93. height: 60px;
  94. padding: 0 10px;
  95. /* margin: 10px; */
  96. border-radius: 50%;
  97. display: flex;
  98. justify-content: center;
  99. align-items: center;
  100. position: relative;
  101. background-repeat: no-repeat;
  102. background-size: 100% 100%;
  103. }
  104. .flex-auto>div:nth-child(1) {
  105. background-image: url("../images/myTasks2.png");
  106. /* background-image: linear-gradient(-45deg, #409EFF, #409EFF64); */
  107. }
  108. .flex-auto>div:nth-child(2) {
  109. background-image: url("../images/customMarking2.png");
  110. /* background-image: linear-gradient(-45deg, #67C23A, #67C23A64); */
  111. }
  112. .flex-auto>div:nth-child(3) {
  113. background-image: url("../images/knowledgeRetrieval2.png");
  114. /* background-image: linear-gradient(-45deg, #E6A23C, #E6A23C64); */
  115. }
  116. .flex-auto>div:nth-child(4) {
  117. background-image: url("../images/myMarks2.png");
  118. /* background-image: linear-gradient(-45deg, #F56C6C, #F56C6C64); */
  119. }
  120. .flex-auto>div>div {
  121. font-size: 30px;
  122. color: aliceblue;
  123. }
  124. .flex-auto .mui-icon::before {
  125. font-weight: bold;
  126. text-shadow: 2px 2px 5px #303133;
  127. }
  128. .flex-auto .tag_title {
  129. position: absolute;
  130. bottom: -30px;
  131. color: #909399;
  132. letter-spacing: 2px;
  133. font-size: 12px;
  134. }
  135. .mui-search input {
  136. box-shadow: 1px 1px 5px 0px #cccccc64;
  137. }
  138. .mui-search input[type=search] {
  139. border-radius: 2rem;
  140. background-color: #FFF;
  141. }
  142. .data-list-box {
  143. padding: 20px 0px;
  144. border-radius: 10px;
  145. }
  146. .data-list-box>div:nth-child(1) {
  147. color: #303133;
  148. font-weight: bold;
  149. }
  150. /* 主色 */
  151. @BrandColor #409EFF;
  152. @SuccessColor #67C23A;
  153. @WarningColor #E6A23C;
  154. @DangerColor #F56C6C;
  155. @InfoColor #909399;
  156. /* 字体或背景 */
  157. @TextColor1 #303133;
  158. @TextColor2 #606266;
  159. @TextColor3 #909399;
  160. @TextColor4 #C0C4CC;
  161. @BorderColor1 #DCDFE6;
  162. @BorderColor2 #E4E7ED;
  163. @BorderColor3 #EBEEF5;
  164. @BorderColor4 #F2F6FC;
  165. .list-time {
  166. float: right;
  167. color: #C0C4CC;
  168. font-size: 14px;
  169. margin-right: 10px;
  170. }
  171. /* 数据列表右上角的tag公共样式 */
  172. .list-tag {
  173. position: absolute;
  174. top: 10px;
  175. right: 0px;
  176. text-align: center;
  177. text-indent: 0px;
  178. margin: 10px;
  179. font-size: 10px;
  180. padding: 5px 10px;
  181. border-radius: 4px;
  182. border: none;
  183. background-image: none;
  184. }
  185. .BrandTag {
  186. color: #303133;
  187. font-size: 14px;
  188. padding-left: 10px;
  189. padding: 5px 0;
  190. text-indent: 10px;
  191. font-weight: 400;
  192. border-left: 5px solid #409EFF;
  193. background-image: linear-gradient(90deg, #409EFF64, #00000000);
  194. }
  195. .BrandTag .list-tag {
  196. background-color: #409EFF32;
  197. color: #409EFF;
  198. }
  199. .SuccessTag {
  200. color: #303133;
  201. font-size: 14px;
  202. padding-left: 10px;
  203. padding: 5px 0;
  204. text-indent: 10px;
  205. font-weight: 400;
  206. border-left: 5px solid #67C23A;
  207. background-image: linear-gradient(90deg, #67C23A64, #00000000);
  208. }
  209. .SuccessTag .list-tag {
  210. background-color: #67C23A32;
  211. color: #67C23A;
  212. }
  213. .WarningTag {
  214. color: #303133;
  215. font-size: 14px;
  216. padding-left: 10px;
  217. padding: 5px 0;
  218. text-indent: 10px;
  219. font-weight: 400;
  220. border-left: 5px solid #E6A23C;
  221. background-image: linear-gradient(90deg, #E6A23C64, #00000000);
  222. }
  223. .WarningTag .list-tag {
  224. background-color: #E6A23C32;
  225. color: #E6A23C;
  226. }
  227. .DangerTag {
  228. color: #303133;
  229. font-size: 14px;
  230. padding-left: 10px;
  231. padding: 5px 0;
  232. text-indent: 10px;
  233. font-weight: 400;
  234. border-left: 5px solid #F56C6C;
  235. background-image: linear-gradient(90deg, #F56C6C64, #00000000);
  236. }
  237. .DangerTag .list-tag {
  238. background-color: #F56C6C32;
  239. color: #F56C6C;
  240. }
  241. .InfoTag {
  242. font-size: 14px;
  243. color: #303133;
  244. padding-left: 10px;
  245. padding: 5px 0;
  246. text-indent: 10px;
  247. font-weight: 400;
  248. border-left: 5px solid #303133;
  249. background-image: linear-gradient(90deg, #C0C4CC64, #00000000);
  250. }
  251. .InfoTag .list-tag {
  252. background-color: #30313332;
  253. color: #303133;
  254. }
  255. .data-list-title {
  256. height: 30px;
  257. display: flex;
  258. justify-content: space-between;
  259. color: #303133;
  260. padding: 0 10px;
  261. align-items: center;
  262. }
  263. .data-list {
  264. padding: 0 10px;
  265. overflow-x: hidden;
  266. max-height: calc(100vh - 320px);
  267. }
  268. .data-list p:not(.nonePadding) {
  269. padding: 0 10px;
  270. margin-bottom: 0px;
  271. }
  272. /* 时间样式 */
  273. .data-list p span {
  274. color: #999999;
  275. }
  276. .data-list p:nth-child(2) {
  277. color: #CCCCCC;
  278. text-overflow: ellipsis;
  279. display: -webkit-box;
  280. -webkit-line-clamp: 2;
  281. -webkit-box-orient: vertical;
  282. display: -moz-box;
  283. -moz-line-clamp: 2;
  284. -moz-box-orient: vertical;
  285. overflow-wrap: break-word;
  286. word-break: break-all;
  287. white-space: normal;
  288. overflow: hidden;
  289. }
  290. .data-list .content {
  291. padding: 10px 0 5px 0;
  292. text-indent: 2rem;
  293. }
  294. .dataListHr p:nth-child(1) {
  295. color: #409EFF;
  296. }
  297. .dataListHr p:nth-child(2) {
  298. color: #909399;
  299. }
  300. .data-list h4 {
  301. width: calc(100% - 60px);
  302. text-overflow: ellipsis;
  303. display: -webkit-box;
  304. -webkit-line-clamp: 2;
  305. -webkit-box-orient: vertical;
  306. display: -moz-box;
  307. -moz-line-clamp: 2;
  308. -moz-box-orient: vertical;
  309. overflow-wrap: break-word;
  310. word-break: break-all;
  311. white-space: normal;
  312. overflow: hidden;
  313. text-shadow: 0px 0px 0px;
  314. }
  315. .displayFlex {
  316. position: relative;
  317. display: flex;
  318. margin: 10px 0px;
  319. padding: 15px;
  320. background-color: #FFFFFF;
  321. flex-direction: column;
  322. border-radius: 5px;
  323. box-shadow: 1px 1px 3px #CCC;
  324. }
  325. .displayFlex2 {
  326. position: relative;
  327. display: flex;
  328. margin: 20px 0px;
  329. align-items: center;
  330. }
  331. .displayFlex3 {
  332. position: relative;
  333. display: flex;
  334. align-items: center;
  335. }
  336. .displayFlex2 input {
  337. font-size: 16px;
  338. margin-left: 10px;
  339. }
  340. .bottom-bar {
  341. position: fixed;
  342. width: 100%;
  343. bottom: 0;
  344. height: 2em;
  345. display: flex;
  346. justify-content: center;
  347. align-items: center;
  348. color: #EBEEF5;
  349. font-size: 0.75em;
  350. background-color: #409EFF;
  351. }
  352. .loginOut {
  353. padding: 10px;
  354. float: right;
  355. }
  356. #upTitle {
  357. font-size: 14px;
  358. color: #C0C4CC;
  359. width: 100%;
  360. display: flex;
  361. align-items: center;
  362. justify-content: center;
  363. align-content: center;
  364. flex-wrap: nowrap;
  365. flex-direction: column;
  366. }
  367. #reSearch {
  368. align-items: center;
  369. color: #409EFF;
  370. padding: 10px 0 20px 10px;
  371. }
  372. .pageParam {
  373. display: none;
  374. }
  375. .dataListHr {
  376. border-radius: 3px;
  377. padding: 10px;
  378. background-image: linear-gradient(90deg, #F3F6FA, #00000000);
  379. }
  380. #searchState {
  381. position: relative;
  382. bottom: 5px;
  383. padding: 10px 10px 10px 0;
  384. }
  385. #autoLogin {
  386. width: 1.5rem;
  387. }
  388. #autoLoginText {
  389. color: #909399;
  390. font-size: 14px;
  391. }
  392. #autoLoginText2 {
  393. position: absolute;
  394. right: 0;
  395. color: #909399;
  396. font-size: 14px;
  397. }
  398. .changeType {
  399. position: fixed;
  400. bottom: 36px;
  401. right: 10px;
  402. /* background-color: #409EFF; */
  403. background-image: linear-gradient(-45deg, #409EFF, #409EFFaa);
  404. font-size: 14px;
  405. width: 3rem;
  406. height: 3rem;
  407. border-radius: 3rem;
  408. display: flex;
  409. flex-direction: column;
  410. flex-wrap: nowrap;
  411. align-content: center;
  412. justify-content: center;
  413. align-items: center;
  414. box-shadow: 3px 3px 5px #00000064;
  415. text-shadow: 1px 1px 2px #00000064;
  416. font-weight: bold;
  417. color: #FFFFFF;
  418. z-index: 999;
  419. }
  420. .changeType2 {
  421. position: fixed;
  422. top: 120px;
  423. left: 5px;
  424. background-color: #FFF;
  425. /* background-image: linear-gradient(-45deg, #409EFF, #409EFFaa); */
  426. font-size: 14px;
  427. width: 2rem;
  428. border-radius: 0.15rem;
  429. display: flex;
  430. flex-direction: column;
  431. flex-wrap: nowrap;
  432. align-content: center;
  433. justify-content: center;
  434. align-items: center;
  435. box-shadow: 3px 3px 5px #00000064;
  436. text-shadow: 1px 1px 2px #00000064;
  437. font-weight: bold;
  438. color: #000;
  439. z-index: 999;
  440. }
  441. .changeType2 div{
  442. padding: 5px;
  443. }
  444. .mui-bar .mui-title {
  445. font-weight: bold;
  446. }
  447. #taskName {
  448. position: fixed;
  449. top: 50px;
  450. font-weight: bold;
  451. color: #409EFF;
  452. right: 5px;
  453. z-index: 999;
  454. background-color: #FFFFFF;
  455. padding: 3px 5px;
  456. border-radius: 3px;
  457. display: none;
  458. }
  459. .fileTitle {
  460. font-size: 20px;
  461. font-weight: bold;
  462. color: #000000;
  463. padding: 10px 0;
  464. text-overflow: ellipsis;
  465. display: -webkit-box;
  466. -webkit-line-clamp: 2;
  467. -webkit-box-orient: vertical;
  468. display: -moz-box;
  469. -moz-line-clamp: 2;
  470. -moz-box-orient: vertical;
  471. overflow-wrap: break-word;
  472. word-break: break-all;
  473. white-space: normal;
  474. overflow: hidden;
  475. }
  476. .fileBox .dataListHr {
  477. padding: 10px 0;
  478. background-image: none;
  479. }
  480. #mapBottomBox {
  481. position: absolute;
  482. transition: linear 0.3s;
  483. padding: 20px;
  484. bottom: -100%;
  485. z-index: 9997;
  486. width: 100%;
  487. background-color: #FFFFFF;
  488. border-top-left-radius: 1rem;
  489. border-top-right-radius: 1rem;
  490. box-shadow: 0 0 3px 5px #000;
  491. }
  492. #mapBottomBox .title {
  493. position: relative;
  494. font-size: 20px;
  495. font-weight: bold;
  496. max-width: 40vw;
  497. }
  498. #mapBottomBox #mapImageList>div {
  499. background-color: #F2F6FC;
  500. border-radius: 5px;
  501. width: calc(50vw - 25px);
  502. height: calc(50vw - 25px);
  503. margin: 5px 0px;
  504. box-shadow: 1px 1px 5px 0px #ccc;
  505. overflow: hidden;
  506. display: flex;
  507. align-items: center;
  508. position: relative;
  509. }
  510. #mapBottomBox #mapImageList .removeImage {
  511. /* position: absolute;
  512. right: 5px;
  513. top: 5px;
  514. background-color: #F56C6C;
  515. color: #FFF;
  516. box-shadow: 0 0 2px 1px;
  517. border-radius: 50%; */
  518. }
  519. #mapBottomBox #mapImageList>div>img {
  520. width: 100%;
  521. }
  522. #uploadImage {
  523. display: flex;
  524. flex-direction: column;
  525. flex-wrap: nowrap;
  526. align-content: center;
  527. justify-content: center;
  528. align-items: center;
  529. font-weight: bold;
  530. color: #909399;
  531. }
  532. #uploadImage div:nth-child(1) span {
  533. font-size: 40px;
  534. }
  535. #uploadImage div:nth-child(2) span {
  536. font-size: 20px;
  537. }
  538. #mapBottomBox #mapImageList {
  539. display: flex;
  540. flex-wrap: wrap;
  541. align-content: center;
  542. align-items: center;
  543. justify-content: space-between;
  544. }
  545. #mapBottomBox .mapBrandTag {
  546. background-color: #409EFF32;
  547. color: #409EFF;
  548. padding: 5px;
  549. border-radius: 5px;
  550. font-weight: bold;
  551. box-shadow: 0 0 5px 1px;
  552. margin-bottom: 10px;
  553. }
  554. #mapBottomBox .mapSuccessTag {
  555. /* background-color: #67C23A32; */
  556. color: #67C23A;
  557. padding: 5px;
  558. border-radius: 5px;
  559. font-weight: bold;
  560. /* box-shadow: 0 0 5px 1px; */
  561. margin-bottom: 10px;
  562. }
  563. #mapBottomBox .mapWarning {
  564. /* background-color: #E6A23C32; */
  565. color: #E6A23C;
  566. padding: 5px;
  567. border-radius: 5px;
  568. font-weight: bold;
  569. /* box-shadow: 0 0 5px 1px; */
  570. margin-bottom: 10px;
  571. }
  572. #mapBottomBox .mapDangerTag {
  573. background-color: #F56C6C32;
  574. color: #F56C6C;
  575. padding: 5px;
  576. border-radius: 5px;
  577. font-weight: bold;
  578. box-shadow: 0 0 5px 1px;
  579. margin-bottom: 10px;
  580. }
  581. #mapBottomBox .mapInfoTag {
  582. background-color: #90939932;
  583. color: #909399;
  584. padding: 5px;
  585. border-radius: 5px;
  586. font-weight: bold;
  587. box-shadow: 0 0 5px 1px;
  588. margin-bottom: 10px;
  589. }
  590. .arrowdown {
  591. position: absolute;
  592. left: 50%;
  593. top: 5px;
  594. padding: 12px;
  595. transform: translate(-50%, 0);
  596. }
  597. /* 隐藏底部菜单 */
  598. /* .paperplane{
  599. position: absolute;
  600. top: 10px;
  601. right: 10px;
  602. color: #409EFF;
  603. font-weight: bold;
  604. } */
  605. /* 提交 */
  606. .paperplaneMyMarker {
  607. background-color: #499DF2;
  608. width: 100%;
  609. color: #FFFFFF;
  610. border-radius: 2rem;
  611. font-size: 17px;
  612. text-align: center;
  613. padding: 5px 0;
  614. letter-spacing: 10px;
  615. }
  616. .paperplaneMyMarker2 {
  617. border: 1px solid #499DF2;
  618. width: 100%;
  619. color: #499DF2;
  620. border-radius: 2rem;
  621. font-size: 17px;
  622. text-align: center;
  623. padding: 5px 0;
  624. letter-spacing: 10px;
  625. }
  626. .displayFlex3 .paperplane {
  627. background-color: #499DF2;
  628. width: 100%;
  629. color: #FFFFFF;
  630. border-radius: 2rem;
  631. font-size: 17px;
  632. text-align: center;
  633. padding: 5px 0;
  634. letter-spacing: 10px;
  635. margin-left: 5px;
  636. }
  637. .displayFlex3 .paperplaneMyMarker2 {
  638. border: 1px solid #499DF2;
  639. width: 100%;
  640. color: #499DF2;
  641. border-radius: 2rem;
  642. font-size: 17px;
  643. text-align: center;
  644. padding: 5px 0;
  645. letter-spacing: 10px;
  646. margin-right: 5px;
  647. }
  648. #mapTextArea {
  649. width: 100%;
  650. border-radius: 5px;
  651. background-color: #F5F5F5;
  652. }
  653. .my-div-icon {
  654. animation-name: example;
  655. animation-duration: 2s;
  656. animation-iteration-count: infinite;
  657. /* box-shadow: 0 0 2px 3px #FFF; */
  658. }
  659. .my-div-icon2 {
  660. width: 10px;
  661. height: 10px;
  662. animation-name: example2;
  663. background-color: #FFbb00;
  664. animation-duration: 2s;
  665. border-radius: 50%;
  666. animation-iteration-count: infinite;
  667. box-shadow: 0 0 2px 3px #FFbb00cc;
  668. }
  669. /* 动画代码 */
  670. @keyframes example {
  671. 0% {
  672. opacity: 1;
  673. }
  674. 50% {
  675. opacity: 0.5;
  676. }
  677. 100% {
  678. opacity: 1;
  679. }
  680. }
  681. /* 动画代码 */
  682. @keyframes example2 {
  683. 0% {
  684. box-shadow: 0 0 2px 3px #FFbb00cc;
  685. }
  686. 100% {
  687. box-shadow: 0 0 2px 15px #FFbb0064;
  688. }
  689. }
  690. #myMarkerId,
  691. #addMyMarker {
  692. display: none;
  693. }
  694. .mui-poppicker {
  695. z-index: 9999 !important;
  696. }
  697. .mui-backdrop {
  698. z-index: 9998;
  699. position: fixed;
  700. top: 0;
  701. right: 0;
  702. bottom: 0;
  703. left: 0;
  704. background-color: rgba(0, 0, 0, .3);
  705. }
  706. /* .mui-backdrop::before{
  707. content: "图片过大,压缩中!!!";
  708. font-weight: bold;
  709. text-shadow: 1px 1px 3px black;
  710. position: absolute;
  711. left: 50%;
  712. top: 50%;
  713. color: #FFFFFF;
  714. transform: translate(-50%,-50%);
  715. } */
  716. .leaflet-left .leaflet-control {
  717. margin-left: 5px;
  718. }
  719. .leaflet-top .leaflet-control {
  720. margin-top: 55px;
  721. }
  722. /* 详细信息 */
  723. .detailedInformation,.relevantLawsAndRegulations{
  724. color: #409EFF !important;
  725. }
  726. /* 疑点图斑 */
  727. .patternSpot{
  728. max-width: 50vw;
  729. }
  730. /* .openMyPhoneMap {
  731. position: absolute;
  732. padding: 10px;
  733. top: 60px;
  734. right: 10px;
  735. color: #34c6d8;
  736. display: flex;
  737. align-items: center;
  738. } */
  739. .mui-preview-image.mui-fullscreen {
  740. position: fixed;
  741. z-index: 20;
  742. background-color: #000;
  743. }
  744. .mui-preview-header,
  745. .mui-preview-footer {
  746. position: absolute;
  747. width: 100%;
  748. left: 0;
  749. z-index: 10;
  750. }
  751. .mui-preview-header {
  752. height: 44px;
  753. top: 0;
  754. }
  755. .mui-preview-footer {
  756. height: 50px;
  757. bottom: 0px;
  758. }
  759. .mui-preview-header .mui-preview-indicator {
  760. display: block;
  761. line-height: 25px;
  762. color: #fff;
  763. text-align: center;
  764. margin: 15px auto 4;
  765. width: 70px;
  766. background-color: rgba(0, 0, 0, 0.4);
  767. border-radius: 12px;
  768. font-size: 16px;
  769. }
  770. .mui-preview-image {
  771. display: none;
  772. -webkit-animation-duration: 0.5s;
  773. animation-duration: 0.5s;
  774. -webkit-animation-fill-mode: both;
  775. animation-fill-mode: both;
  776. }
  777. .mui-preview-image.mui-preview-in {
  778. -webkit-animation-name: fadeIn;
  779. animation-name: fadeIn;
  780. }
  781. .mui-preview-image.mui-preview-out {
  782. background: none;
  783. -webkit-animation-name: fadeOut;
  784. animation-name: fadeOut;
  785. }
  786. .mui-preview-image.mui-preview-out .mui-preview-header,
  787. .mui-preview-image.mui-preview-out .mui-preview-footer {
  788. display: none;
  789. }
  790. .mui-zoom-scroller {
  791. position: absolute;
  792. display: -webkit-box;
  793. display: -webkit-flex;
  794. display: flex;
  795. -webkit-box-align: center;
  796. -webkit-align-items: center;
  797. align-items: center;
  798. -webkit-box-pack: center;
  799. -webkit-justify-content: center;
  800. justify-content: center;
  801. left: 0;
  802. right: 0;
  803. bottom: 0;
  804. top: 0;
  805. width: 100%;
  806. height: 100%;
  807. margin: 0;
  808. -webkit-backface-visibility: hidden;
  809. }
  810. .mui-zoom {
  811. -webkit-transform-style: preserve-3d;
  812. transform-style: preserve-3d;
  813. }
  814. .mui-slider .mui-slider-group .mui-slider-item img {
  815. width: auto;
  816. height: auto;
  817. max-width: 100%;
  818. max-height: 100%;
  819. }
  820. .mui-android-4-1 .mui-slider .mui-slider-group .mui-slider-item img {
  821. width: 100%;
  822. }
  823. .mui-android-4-1 .mui-slider.mui-preview-image .mui-slider-group .mui-slider-item {
  824. display: inline-table;
  825. }
  826. .mui-android-4-1 .mui-slider.mui-preview-image .mui-zoom-scroller img {
  827. display: table-cell;
  828. vertical-align: middle;
  829. }
  830. .mui-preview-loading {
  831. position: absolute;
  832. width: 100%;
  833. height: 100%;
  834. top: 0;
  835. left: 0;
  836. display: none;
  837. }
  838. .mui-preview-loading.mui-active {
  839. display: block;
  840. }
  841. .mui-preview-loading .mui-spinner-white {
  842. position: absolute;
  843. top: 50%;
  844. left: 50%;
  845. margin-left: -25px;
  846. margin-top: -25px;
  847. height: 50px;
  848. width: 50px;
  849. }
  850. .mui-preview-image img.mui-transitioning {
  851. -webkit-transition: -webkit-transform 0.5s ease, opacity 0.5s ease;
  852. transition: transform 0.5s ease, opacity 0.5s ease;
  853. }
  854. @-webkit-keyframes fadeIn {
  855. 0% {
  856. opacity: 0;
  857. }
  858. 100% {
  859. opacity: 1;
  860. }
  861. }
  862. @keyframes fadeIn {
  863. 0% {
  864. opacity: 0;
  865. }
  866. 100% {
  867. opacity: 1;
  868. }
  869. }
  870. @-webkit-keyframes fadeOut {
  871. 0% {
  872. opacity: 1;
  873. }
  874. 100% {
  875. opacity: 0;
  876. }
  877. }
  878. @keyframes fadeOut {
  879. 0% {
  880. opacity: 1;
  881. }
  882. 100% {
  883. opacity: 0;
  884. }
  885. }
  886. .img {
  887. max-width: 100%;
  888. height: auto;
  889. }