layer.css 17 KB

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