layer.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. .layui-layer-imgbar,
  2. .layui-layer-imgtit a,
  3. .layui-layer-tab .layui-layer-title span,
  4. .layui-layer-title {
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }
  8. html #layuicss-layer {
  9. display: none;
  10. position: absolute;
  11. width: 1989px;
  12. }
  13. .layui-layer,
  14. .layui-layer-shade {
  15. position: fixed;
  16. _position: absolute;
  17. pointer-events: auto;
  18. }
  19. .layui-layer-shade {
  20. top: 0;
  21. left: 0;
  22. width: 100%;
  23. height: 100%;
  24. _height: expression(document.body.offsetHeight + "px");
  25. }
  26. .layui-layer {
  27. -webkit-overflow-scrolling: touch;
  28. top: 150px;
  29. left: 0;
  30. margin: 0;
  31. padding: 0;
  32. background-color: #fff;
  33. -webkit-background-clip: content;
  34. border-radius: 2px;
  35. box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
  36. }
  37. .layui-layer-close {
  38. position: absolute;
  39. }
  40. .layui-layer-content {
  41. position: relative;
  42. }
  43. .layui-layer-border {
  44. border: 1px solid #b2b2b2;
  45. border: 1px solid rgba(0, 0, 0, 0.1);
  46. box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  47. }
  48. .layui-layer-load {
  49. background: url(loading-1.gif) center center no-repeat #eee;
  50. }
  51. .layui-layer-ico {
  52. background: url(icon.png) no-repeat;
  53. }
  54. .layui-layer-btn a,
  55. .layui-layer-dialog .layui-layer-ico,
  56. .layui-layer-setwin a {
  57. display: inline-block;
  58. *display: inline;
  59. *zoom: 1;
  60. vertical-align: top;
  61. }
  62. .layui-layer-move {
  63. display: none;
  64. position: fixed;
  65. *position: absolute;
  66. left: 0;
  67. top: 0;
  68. width: 100%;
  69. height: 100%;
  70. cursor: move;
  71. opacity: 0;
  72. filter: alpha(opacity=0);
  73. background-color: #fff;
  74. z-index: 2147483647;
  75. }
  76. .layui-layer-resize {
  77. position: absolute;
  78. width: 15px;
  79. height: 15px;
  80. right: 0;
  81. bottom: 0;
  82. cursor: se-resize;
  83. }
  84. .layer-anim {
  85. -webkit-animation-fill-mode: both;
  86. animation-fill-mode: both;
  87. -webkit-animation-duration: 0.3s;
  88. animation-duration: 0.3s;
  89. }
  90. @-webkit-keyframes layer-bounceIn {
  91. 0% {
  92. opacity: 0;
  93. -webkit-transform: scale(0.5);
  94. transform: scale(0.5);
  95. }
  96. 100% {
  97. opacity: 1;
  98. -webkit-transform: scale(1);
  99. transform: scale(1);
  100. }
  101. }
  102. @keyframes layer-bounceIn {
  103. 0% {
  104. opacity: 0;
  105. -webkit-transform: scale(0.5);
  106. -ms-transform: scale(0.5);
  107. transform: scale(0.5);
  108. }
  109. 100% {
  110. opacity: 1;
  111. -webkit-transform: scale(1);
  112. -ms-transform: scale(1);
  113. transform: scale(1);
  114. }
  115. }
  116. .layer-anim-00 {
  117. -webkit-animation-name: layer-bounceIn;
  118. animation-name: layer-bounceIn;
  119. }
  120. @-webkit-keyframes layer-zoomInDown {
  121. 0% {
  122. opacity: 0;
  123. -webkit-transform: scale(0.1) translateY(-2000px);
  124. transform: scale(0.1) translateY(-2000px);
  125. -webkit-animation-timing-function: ease-in-out;
  126. animation-timing-function: ease-in-out;
  127. }
  128. 60% {
  129. opacity: 1;
  130. -webkit-transform: scale(0.475) translateY(60px);
  131. transform: scale(0.475) translateY(60px);
  132. -webkit-animation-timing-function: ease-out;
  133. animation-timing-function: ease-out;
  134. }
  135. }
  136. @keyframes layer-zoomInDown {
  137. 0% {
  138. opacity: 0;
  139. -webkit-transform: scale(0.1) translateY(-2000px);
  140. -ms-transform: scale(0.1) translateY(-2000px);
  141. transform: scale(0.1) translateY(-2000px);
  142. -webkit-animation-timing-function: ease-in-out;
  143. animation-timing-function: ease-in-out;
  144. }
  145. 60% {
  146. opacity: 1;
  147. -webkit-transform: scale(0.475) translateY(60px);
  148. -ms-transform: scale(0.475) translateY(60px);
  149. transform: scale(0.475) translateY(60px);
  150. -webkit-animation-timing-function: ease-out;
  151. animation-timing-function: ease-out;
  152. }
  153. }
  154. .layer-anim-01 {
  155. -webkit-animation-name: layer-zoomInDown;
  156. animation-name: layer-zoomInDown;
  157. }
  158. @-webkit-keyframes layer-fadeInUpBig {
  159. 0% {
  160. opacity: 0;
  161. -webkit-transform: translateY(2000px);
  162. transform: translateY(2000px);
  163. }
  164. 100% {
  165. opacity: 1;
  166. -webkit-transform: translateY(0);
  167. transform: translateY(0);
  168. }
  169. }
  170. @keyframes layer-fadeInUpBig {
  171. 0% {
  172. opacity: 0;
  173. -webkit-transform: translateY(2000px);
  174. -ms-transform: translateY(2000px);
  175. transform: translateY(2000px);
  176. }
  177. 100% {
  178. opacity: 1;
  179. -webkit-transform: translateY(0);
  180. -ms-transform: translateY(0);
  181. transform: translateY(0);
  182. }
  183. }
  184. .layer-anim-02 {
  185. -webkit-animation-name: layer-fadeInUpBig;
  186. animation-name: layer-fadeInUpBig;
  187. }
  188. @-webkit-keyframes layer-zoomInLeft {
  189. 0% {
  190. opacity: 0;
  191. -webkit-transform: scale(0.1) translateX(-2000px);
  192. transform: scale(0.1) translateX(-2000px);
  193. -webkit-animation-timing-function: ease-in-out;
  194. animation-timing-function: ease-in-out;
  195. }
  196. 60% {
  197. opacity: 1;
  198. -webkit-transform: scale(0.475) translateX(48px);
  199. transform: scale(0.475) translateX(48px);
  200. -webkit-animation-timing-function: ease-out;
  201. animation-timing-function: ease-out;
  202. }
  203. }
  204. @keyframes layer-zoomInLeft {
  205. 0% {
  206. opacity: 0;
  207. -webkit-transform: scale(0.1) translateX(-2000px);
  208. -ms-transform: scale(0.1) translateX(-2000px);
  209. transform: scale(0.1) translateX(-2000px);
  210. -webkit-animation-timing-function: ease-in-out;
  211. animation-timing-function: ease-in-out;
  212. }
  213. 60% {
  214. opacity: 1;
  215. -webkit-transform: scale(0.475) translateX(48px);
  216. -ms-transform: scale(0.475) translateX(48px);
  217. transform: scale(0.475) translateX(48px);
  218. -webkit-animation-timing-function: ease-out;
  219. animation-timing-function: ease-out;
  220. }
  221. }
  222. .layer-anim-03 {
  223. -webkit-animation-name: layer-zoomInLeft;
  224. animation-name: layer-zoomInLeft;
  225. }
  226. @-webkit-keyframes layer-rollIn {
  227. 0% {
  228. opacity: 0;
  229. -webkit-transform: translateX(-100%) rotate(-120deg);
  230. transform: translateX(-100%) rotate(-120deg);
  231. }
  232. 100% {
  233. opacity: 1;
  234. -webkit-transform: translateX(0) rotate(0);
  235. transform: translateX(0) rotate(0);
  236. }
  237. }
  238. @keyframes layer-rollIn {
  239. 0% {
  240. opacity: 0;
  241. -webkit-transform: translateX(-100%) rotate(-120deg);
  242. -ms-transform: translateX(-100%) rotate(-120deg);
  243. transform: translateX(-100%) rotate(-120deg);
  244. }
  245. 100% {
  246. opacity: 1;
  247. -webkit-transform: translateX(0) rotate(0);
  248. -ms-transform: translateX(0) rotate(0);
  249. transform: translateX(0) rotate(0);
  250. }
  251. }
  252. .layer-anim-04 {
  253. -webkit-animation-name: layer-rollIn;
  254. animation-name: layer-rollIn;
  255. }
  256. @keyframes layer-fadeIn {
  257. 0% {
  258. opacity: 0;
  259. }
  260. 100% {
  261. opacity: 1;
  262. }
  263. }
  264. .layer-anim-05 {
  265. -webkit-animation-name: layer-fadeIn;
  266. animation-name: layer-fadeIn;
  267. }
  268. @-webkit-keyframes layer-shake {
  269. 0%,
  270. 100% {
  271. -webkit-transform: translateX(0);
  272. transform: translateX(0);
  273. }
  274. 10%,
  275. 30%,
  276. 50%,
  277. 70%,
  278. 90% {
  279. -webkit-transform: translateX(-10px);
  280. transform: translateX(-10px);
  281. }
  282. 20%,
  283. 40%,
  284. 60%,
  285. 80% {
  286. -webkit-transform: translateX(10px);
  287. transform: translateX(10px);
  288. }
  289. }
  290. @keyframes layer-shake {
  291. 0%,
  292. 100% {
  293. -webkit-transform: translateX(0);
  294. -ms-transform: translateX(0);
  295. transform: translateX(0);
  296. }
  297. 10%,
  298. 30%,
  299. 50%,
  300. 70%,
  301. 90% {
  302. -webkit-transform: translateX(-10px);
  303. -ms-transform: translateX(-10px);
  304. transform: translateX(-10px);
  305. }
  306. 20%,
  307. 40%,
  308. 60%,
  309. 80% {
  310. -webkit-transform: translateX(10px);
  311. -ms-transform: translateX(10px);
  312. transform: translateX(10px);
  313. }
  314. }
  315. .layer-anim-06 {
  316. -webkit-animation-name: layer-shake;
  317. animation-name: layer-shake;
  318. }
  319. @-webkit-keyframes fadeIn {
  320. 0% {
  321. opacity: 0;
  322. }
  323. 100% {
  324. opacity: 1;
  325. }
  326. }
  327. .layui-layer-title {
  328. padding: 0 80px 0 20px;
  329. height: 42px;
  330. line-height: 42px;
  331. border-bottom: 1px solid #eee;
  332. font-size: 14px;
  333. color: #333;
  334. overflow: hidden;
  335. background-color: #f8f8f8;
  336. border-radius: 2px 2px 0 0;
  337. }
  338. .layui-layer-setwin {
  339. position: absolute;
  340. right: 15px;
  341. *right: 0;
  342. top: 15px;
  343. font-size: 0;
  344. line-height: initial;
  345. }
  346. .layui-layer-setwin a {
  347. position: relative;
  348. width: 16px;
  349. height: 16px;
  350. margin-left: 10px;
  351. font-size: 12px;
  352. _overflow: hidden;
  353. }
  354. .layui-layer-setwin .layui-layer-min cite {
  355. position: absolute;
  356. width: 14px;
  357. height: 2px;
  358. left: 0;
  359. top: 50%;
  360. margin-top: -1px;
  361. background-color: #2e2d3c;
  362. cursor: pointer;
  363. _overflow: hidden;
  364. }
  365. .layui-layer-setwin .layui-layer-min:hover cite {
  366. background-color: #2d93ca;
  367. }
  368. .layui-layer-setwin .layui-layer-max {
  369. background-position: -32px -40px;
  370. }
  371. .layui-layer-setwin .layui-layer-max:hover {
  372. background-position: -16px -40px;
  373. }
  374. .layui-layer-setwin .layui-layer-maxmin {
  375. background-position: -65px -40px;
  376. }
  377. .layui-layer-setwin .layui-layer-maxmin:hover {
  378. background-position: -49px -40px;
  379. }
  380. .layui-layer-setwin .layui-layer-close1 {
  381. background-position: 1px -40px;
  382. cursor: pointer;
  383. }
  384. .layui-layer-setwin .layui-layer-close1:hover {
  385. opacity: 0.7;
  386. }
  387. .layui-layer-setwin .layui-layer-close2 {
  388. position: absolute;
  389. right: -28px;
  390. top: -28px;
  391. width: 30px;
  392. height: 30px;
  393. margin-left: 0;
  394. background-position: -149px -31px;
  395. *right: -18px;
  396. _display: none;
  397. }
  398. .layui-layer-setwin .layui-layer-close2:hover {
  399. background-position: -180px -31px;
  400. }
  401. .layui-layer-btn {
  402. text-align: right;
  403. padding: 0 15px 12px;
  404. pointer-events: auto;
  405. user-select: none;
  406. -webkit-user-select: none;
  407. }
  408. .layui-layer-btn a {
  409. height: 28px;
  410. line-height: 28px;
  411. margin: 5px 5px 0;
  412. padding: 0 15px;
  413. border: 1px solid #dedede;
  414. background-color: #fff;
  415. color: #333;
  416. border-radius: 2px;
  417. font-weight: 400;
  418. cursor: pointer;
  419. text-decoration: none;
  420. }
  421. .layui-layer-btn a:hover {
  422. opacity: 0.9;
  423. text-decoration: none;
  424. }
  425. .layui-layer-btn a:active {
  426. opacity: 0.8;
  427. }
  428. .layui-layer-btn .layui-layer-btn0 {
  429. border-color: #1e9fff;
  430. background-color: #1e9fff;
  431. color: #fff;
  432. }
  433. .layui-layer-btn-l {
  434. text-align: left;
  435. }
  436. .layui-layer-btn-c {
  437. text-align: center;
  438. }
  439. .layui-layer-dialog {
  440. min-width: 260px;
  441. }
  442. .layui-layer-dialog .layui-layer-content {
  443. position: relative;
  444. padding: 20px;
  445. line-height: 24px;
  446. word-break: break-all;
  447. overflow: hidden;
  448. font-size: 14px;
  449. overflow-x: hidden;
  450. overflow-y: auto;
  451. }
  452. .layui-layer-dialog .layui-layer-content .layui-layer-ico {
  453. position: absolute;
  454. top: 16px;
  455. left: 15px;
  456. _left: -40px;
  457. width: 30px;
  458. height: 30px;
  459. }
  460. .layui-layer-ico1 {
  461. background-position: -30px 0;
  462. }
  463. .layui-layer-ico2 {
  464. background-position: -60px 0;
  465. }
  466. .layui-layer-ico3 {
  467. background-position: -90px 0;
  468. }
  469. .layui-layer-ico4 {
  470. background-position: -120px 0;
  471. }
  472. .layui-layer-ico5 {
  473. background-position: -150px 0;
  474. }
  475. .layui-layer-ico6 {
  476. background-position: -180px 0;
  477. }
  478. .layui-layer-rim {
  479. border: 6px solid #8d8d8d;
  480. border: 6px solid rgba(0, 0, 0, 0.3);
  481. border-radius: 5px;
  482. box-shadow: none;
  483. }
  484. .layui-layer-msg {
  485. min-width: 180px;
  486. border: 1px solid #d3d4d3;
  487. box-shadow: none;
  488. }
  489. .layui-layer-hui {
  490. min-width: 100px;
  491. background-color: #000;
  492. filter: alpha(opacity=60);
  493. background-color: rgba(0, 0, 0, 0.6);
  494. color: #fff;
  495. border: none;
  496. }
  497. .layui-layer-hui .layui-layer-content {
  498. padding: 12px 25px;
  499. text-align: center;
  500. }
  501. .layui-layer-dialog .layui-layer-padding {
  502. padding: 20px 20px 20px 55px;
  503. text-align: left;
  504. }
  505. .layui-layer-page .layui-layer-content {
  506. position: relative;
  507. overflow: auto;
  508. }
  509. .layui-layer-iframe .layui-layer-btn,
  510. .layui-layer-page .layui-layer-btn {
  511. padding-top: 10px;
  512. }
  513. .layui-layer-nobg {
  514. background: 0 0;
  515. }
  516. .layui-layer-iframe iframe {
  517. display: block;
  518. width: 100%;
  519. }
  520. .layui-layer-loading {
  521. border-radius: 100%;
  522. background: 0 0;
  523. box-shadow: none;
  524. border: none;
  525. }
  526. .layui-layer-loading .layui-layer-content {
  527. width: 60px;
  528. height: 24px;
  529. background: url(loading-0.gif) no-repeat;
  530. }
  531. .layui-layer-loading .layui-layer-loading1 {
  532. width: 37px;
  533. height: 37px;
  534. background: url(loading-1.gif) no-repeat;
  535. }
  536. .layui-layer-ico16,
  537. .layui-layer-loading .layui-layer-loading2 {
  538. width: 32px;
  539. height: 32px;
  540. background: url(loading-2.gif) no-repeat;
  541. }
  542. .layui-layer-tips {
  543. background: 0 0;
  544. box-shadow: none;
  545. border: none;
  546. }
  547. .layui-layer-tips .layui-layer-content {
  548. position: relative;
  549. line-height: 22px;
  550. min-width: 12px;
  551. padding: 8px 15px;
  552. font-size: 12px;
  553. _float: left;
  554. border-radius: 2px;
  555. box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  556. background-color: #000;
  557. color: #fff;
  558. }
  559. .layui-layer-tips .layui-layer-close {
  560. right: -2px;
  561. top: -1px;
  562. }
  563. .layui-layer-tips i.layui-layer-TipsG {
  564. position: absolute;
  565. width: 0;
  566. height: 0;
  567. border-width: 8px;
  568. border-color: transparent;
  569. border-style: dashed;
  570. *overflow: hidden;
  571. }
  572. .layui-layer-tips i.layui-layer-TipsB,
  573. .layui-layer-tips i.layui-layer-TipsT {
  574. left: 5px;
  575. border-right-style: solid;
  576. border-right-color: #000;
  577. }
  578. .layui-layer-tips i.layui-layer-TipsT {
  579. bottom: -8px;
  580. }
  581. .layui-layer-tips i.layui-layer-TipsB {
  582. top: -8px;
  583. }
  584. .layui-layer-tips i.layui-layer-TipsL,
  585. .layui-layer-tips i.layui-layer-TipsR {
  586. top: 5px;
  587. border-bottom-style: solid;
  588. border-bottom-color: #000;
  589. }
  590. .layui-layer-tips i.layui-layer-TipsR {
  591. left: -8px;
  592. }
  593. .layui-layer-tips i.layui-layer-TipsL {
  594. right: -8px;
  595. }
  596. .layui-layer-lan[type="dialog"] {
  597. min-width: 280px;
  598. }
  599. .layui-layer-lan .layui-layer-title {
  600. background: #4476a7;
  601. color: #fff;
  602. border: none;
  603. }
  604. .layui-layer-lan .layui-layer-btn {
  605. padding: 5px 10px 10px;
  606. text-align: right;
  607. border-top: 1px solid #e9e7e7;
  608. }
  609. .layui-layer-lan .layui-layer-btn a {
  610. background: #fff;
  611. border-color: #e9e7e7;
  612. color: #333;
  613. }
  614. .layui-layer-lan .layui-layer-btn .layui-layer-btn1 {
  615. background: #c9c5c5;
  616. }
  617. .layui-layer-molv .layui-layer-title {
  618. background: #009f95;
  619. color: #fff;
  620. border: none;
  621. }
  622. .layui-layer-molv .layui-layer-btn a {
  623. background: #009f95;
  624. border-color: #009f95;
  625. }
  626. .layui-layer-molv .layui-layer-btn .layui-layer-btn1 {
  627. background: #92b8b1;
  628. }
  629. .layui-layer-iconext {
  630. background: url(icon-ext.png) no-repeat;
  631. }
  632. .layui-layer-prompt .layui-layer-input {
  633. display: block;
  634. width: 230px;
  635. height: 36px;
  636. margin: 0 auto;
  637. line-height: 30px;
  638. padding-left: 10px;
  639. border: 1px solid #e6e6e6;
  640. color: #333;
  641. }
  642. .layui-layer-prompt textarea.layui-layer-input {
  643. width: 300px;
  644. height: 100px;
  645. line-height: 20px;
  646. padding: 6px 10px;
  647. }
  648. .layui-layer-prompt .layui-layer-content {
  649. padding: 20px;
  650. }
  651. .layui-layer-prompt .layui-layer-btn {
  652. padding-top: 0;
  653. }
  654. .layui-layer-tab {
  655. box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.4);
  656. }
  657. .layui-layer-tab .layui-layer-title {
  658. padding-left: 0;
  659. overflow: visible;
  660. }
  661. .layui-layer-tab .layui-layer-title span {
  662. position: relative;
  663. float: left;
  664. min-width: 80px;
  665. max-width: 260px;
  666. padding: 0 20px;
  667. text-align: center;
  668. overflow: hidden;
  669. cursor: pointer;
  670. }
  671. .layui-layer-tab .layui-layer-title span.layui-this {
  672. height: 43px;
  673. border-left: 1px solid #eee;
  674. border-right: 1px solid #eee;
  675. background-color: #fff;
  676. z-index: 10;
  677. }
  678. .layui-layer-tab .layui-layer-title span:first-child {
  679. border-left: none;
  680. }
  681. .layui-layer-tabmain {
  682. line-height: 24px;
  683. clear: both;
  684. }
  685. .layui-layer-tabmain .layui-layer-tabli {
  686. display: none;
  687. }
  688. .layui-layer-tabmain .layui-layer-tabli.layui-this {
  689. display: block;
  690. }
  691. .layui-layer-photos {
  692. -webkit-animation-duration: 0.8s;
  693. animation-duration: 0.8s;
  694. }
  695. .layui-layer-photos .layui-layer-content {
  696. overflow: hidden;
  697. text-align: center;
  698. }
  699. .layui-layer-photos .layui-layer-phimg img {
  700. position: relative;
  701. width: 100%;
  702. display: inline-block;
  703. *display: inline;
  704. *zoom: 1;
  705. vertical-align: top;
  706. }
  707. .layui-layer-imgbar,
  708. .layui-layer-imguide {
  709. display: none;
  710. }
  711. .layui-layer-imgnext,
  712. .layui-layer-imgprev {
  713. position: absolute;
  714. top: 50%;
  715. width: 27px;
  716. _width: 44px;
  717. height: 44px;
  718. margin-top: -22px;
  719. outline: 0;
  720. blr: expression(this.onFocus=this.blur());
  721. }
  722. .layui-layer-imgprev {
  723. left: 10px;
  724. background-position: -5px -5px;
  725. _background-position: -70px -5px;
  726. }
  727. .layui-layer-imgprev:hover {
  728. background-position: -33px -5px;
  729. _background-position: -120px -5px;
  730. }
  731. .layui-layer-imgnext {
  732. right: 10px;
  733. _right: 8px;
  734. background-position: -5px -50px;
  735. _background-position: -70px -50px;
  736. }
  737. .layui-layer-imgnext:hover {
  738. background-position: -33px -50px;
  739. _background-position: -120px -50px;
  740. }
  741. .layui-layer-imgbar {
  742. position: absolute;
  743. left: 0;
  744. bottom: 0;
  745. width: 100%;
  746. height: 32px;
  747. line-height: 32px;
  748. background-color: rgba(0, 0, 0, 0.8);
  749. background-color: #000\9;
  750. filter: Alpha(opacity=80);
  751. color: #fff;
  752. overflow: hidden;
  753. font-size: 0;
  754. }
  755. .layui-layer-imgtit * {
  756. display: inline-block;
  757. *display: inline;
  758. *zoom: 1;
  759. vertical-align: top;
  760. font-size: 12px;
  761. }
  762. .layui-layer-imgtit a {
  763. max-width: 65%;
  764. overflow: hidden;
  765. color: #fff;
  766. }
  767. .layui-layer-imgtit a:hover {
  768. color: #fff;
  769. text-decoration: underline;
  770. }
  771. .layui-layer-imgtit em {
  772. padding-left: 10px;
  773. font-style: normal;
  774. }
  775. @-webkit-keyframes layer-bounceOut {
  776. 100% {
  777. opacity: 0;
  778. -webkit-transform: scale(0.7);
  779. transform: scale(0.7);
  780. }
  781. 30% {
  782. -webkit-transform: scale(1.05);
  783. transform: scale(1.05);
  784. }
  785. 0% {
  786. -webkit-transform: scale(1);
  787. transform: scale(1);
  788. }
  789. }
  790. @keyframes layer-bounceOut {
  791. 100% {
  792. opacity: 0;
  793. -webkit-transform: scale(0.7);
  794. -ms-transform: scale(0.7);
  795. transform: scale(0.7);
  796. }
  797. 30% {
  798. -webkit-transform: scale(1.05);
  799. -ms-transform: scale(1.05);
  800. transform: scale(1.05);
  801. }
  802. 0% {
  803. -webkit-transform: scale(1);
  804. -ms-transform: scale(1);
  805. transform: scale(1);
  806. }
  807. }
  808. .layer-anim-close {
  809. -webkit-animation-name: layer-bounceOut;
  810. animation-name: layer-bounceOut;
  811. -webkit-animation-fill-mode: both;
  812. animation-fill-mode: both;
  813. -webkit-animation-duration: 0.2s;
  814. animation-duration: 0.2s;
  815. }
  816. @media screen and (max-width: 1100px) {
  817. .layui-layer-iframe {
  818. overflow-y: auto;
  819. -webkit-overflow-scrolling: touch;
  820. }
  821. }