layer.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963
  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, .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, .1);
  46. box-shadow: 1px 1px 5px rgba(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: .3s;
  88. animation-duration: .3s
  89. }
  90. @-webkit-keyframes layer-bounceIn {
  91. 0% {
  92. opacity: 0;
  93. -webkit-transform: scale(.5);
  94. transform: scale(.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(.5);
  106. -ms-transform: scale(.5);
  107. transform: scale(.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(.1) translateY(-2000px);
  124. transform: scale(.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(.475) translateY(60px);
  131. transform: scale(.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(.1) translateY(-2000px);
  140. -ms-transform: scale(.1) translateY(-2000px);
  141. transform: scale(.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(.475) translateY(60px);
  148. -ms-transform: scale(.475) translateY(60px);
  149. transform: scale(.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(.1) translateX(-2000px);
  192. transform: scale(.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(.475) translateX(48px);
  199. transform: scale(.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(.1) translateX(-2000px);
  208. -ms-transform: scale(.1) translateX(-2000px);
  209. transform: scale(.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(.475) translateX(48px);
  216. -ms-transform: scale(.475) translateX(48px);
  217. transform: scale(.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: 50px;
  330. line-height: 50px;
  331. border-bottom: 1px solid #F0F0F0;
  332. font-size: 14px;
  333. color: #333;
  334. overflow: hidden;
  335. border-radius: 2px 2px 0 0
  336. }
  337. .layui-layer-setwin {
  338. position: absolute;
  339. right: 15px;
  340. *right: 0;
  341. top: 17px;
  342. font-size: 0;
  343. line-height: initial
  344. }
  345. .layui-layer-setwin a {
  346. position: relative;
  347. width: 16px;
  348. height: 16px;
  349. margin-left: 10px;
  350. font-size: 12px;
  351. _overflow: hidden
  352. }
  353. .layui-layer-setwin .layui-layer-min cite {
  354. position: absolute;
  355. width: 14px;
  356. height: 2px;
  357. left: 0;
  358. top: 50%;
  359. margin-top: -1px;
  360. background-color: #2E2D3C;
  361. cursor: pointer;
  362. _overflow: hidden
  363. }
  364. .layui-layer-setwin .layui-layer-min:hover cite {
  365. background-color: #2D93CA
  366. }
  367. .layui-layer-setwin .layui-layer-max {
  368. background-position: -32px -40px
  369. }
  370. .layui-layer-setwin .layui-layer-max:hover {
  371. background-position: -16px -40px
  372. }
  373. .layui-layer-setwin .layui-layer-maxmin {
  374. background-position: -65px -40px
  375. }
  376. .layui-layer-setwin .layui-layer-maxmin:hover {
  377. background-position: -49px -40px
  378. }
  379. .layui-layer-setwin .layui-layer-close1 {
  380. background-position: 1px -40px;
  381. cursor: pointer
  382. }
  383. .layui-layer-setwin .layui-layer-close1:hover {
  384. opacity: .7
  385. }
  386. .layui-layer-setwin .layui-layer-close2 {
  387. position: absolute;
  388. right: -28px;
  389. top: -28px;
  390. width: 30px;
  391. height: 30px;
  392. margin-left: 0;
  393. background-position: -149px -31px;
  394. *right: -18px;
  395. _display: none
  396. }
  397. .layui-layer-setwin .layui-layer-close2:hover {
  398. background-position: -180px -31px
  399. }
  400. .layui-layer-btn {
  401. text-align: right;
  402. padding: 0 15px 12px;
  403. pointer-events: auto;
  404. user-select: none;
  405. -webkit-user-select: none
  406. }
  407. .layui-layer-btn a {
  408. height: 28px;
  409. line-height: 28px;
  410. margin: 5px 5px 0;
  411. padding: 0 15px;
  412. border: 1px solid #dedede;
  413. background-color: #fff;
  414. color: #333;
  415. border-radius: 2px;
  416. font-weight: 400;
  417. cursor: pointer;
  418. text-decoration: none
  419. }
  420. .layui-layer-btn a:hover {
  421. opacity: .9;
  422. text-decoration: none
  423. }
  424. .layui-layer-btn a:active {
  425. opacity: .8
  426. }
  427. .layui-layer-btn .layui-layer-btn0 {
  428. border-color: #1E9FFF;
  429. background-color: #1E9FFF;
  430. color: #fff
  431. }
  432. .layui-layer-btn-l {
  433. text-align: left
  434. }
  435. .layui-layer-btn-c {
  436. text-align: center
  437. }
  438. .layui-layer-dialog {
  439. min-width: 300px
  440. }
  441. .layui-layer-dialog .layui-layer-content {
  442. position: relative;
  443. padding: 20px;
  444. line-height: 24px;
  445. word-break: break-all;
  446. overflow: hidden;
  447. font-size: 14px;
  448. overflow-x: hidden;
  449. overflow-y: auto
  450. }
  451. .layui-layer-dialog .layui-layer-content .layui-layer-ico {
  452. position: absolute;
  453. top: 16px;
  454. left: 15px;
  455. _left: -40px;
  456. width: 30px;
  457. height: 30px
  458. }
  459. .layui-layer-ico1 {
  460. background-position: -30px 0
  461. }
  462. .layui-layer-ico2 {
  463. background-position: -60px 0
  464. }
  465. .layui-layer-ico3 {
  466. background-position: -90px 0
  467. }
  468. .layui-layer-ico4 {
  469. background-position: -120px 0
  470. }
  471. .layui-layer-ico5 {
  472. background-position: -150px 0
  473. }
  474. .layui-layer-ico6 {
  475. background-position: -180px 0
  476. }
  477. .layui-layer-rim {
  478. border: 6px solid #8D8D8D;
  479. border: 6px solid rgba(0, 0, 0, .3);
  480. border-radius: 5px;
  481. box-shadow: none
  482. }
  483. .layui-layer-msg {
  484. min-width: 180px;
  485. border: 1px solid #D3D4D3;
  486. box-shadow: none
  487. }
  488. .layui-layer-hui {
  489. min-width: 100px;
  490. background-color: #000;
  491. filter: alpha(opacity=60);
  492. background-color: rgba(0, 0, 0, .6);
  493. color: #fff;
  494. border: none
  495. }
  496. .layui-layer-hui .layui-layer-content {
  497. padding: 12px 25px;
  498. text-align: center
  499. }
  500. .layui-layer-dialog .layui-layer-padding {
  501. padding: 20px 20px 20px 55px;
  502. text-align: left
  503. }
  504. .layui-layer-page .layui-layer-content {
  505. position: relative;
  506. overflow: auto
  507. }
  508. .layui-layer-iframe .layui-layer-btn,
  509. .layui-layer-page .layui-layer-btn {
  510. padding-top: 10px
  511. }
  512. .layui-layer-nobg {
  513. background: 0 0
  514. }
  515. .layui-layer-iframe iframe {
  516. display: block;
  517. width: 100%
  518. }
  519. .layui-layer-loading {
  520. border-radius: 100%;
  521. background: 0 0;
  522. box-shadow: none;
  523. border: none
  524. }
  525. .layui-layer-loading .layui-layer-content {
  526. width: 60px;
  527. height: 24px;
  528. background: url(loading-0.gif) no-repeat
  529. }
  530. .layui-layer-loading .layui-layer-loading1 {
  531. width: 37px;
  532. height: 37px;
  533. background: url(loading-1.gif) no-repeat
  534. }
  535. .layui-layer-ico16,
  536. .layui-layer-loading .layui-layer-loading2 {
  537. width: 32px;
  538. height: 32px;
  539. background: url(loading-2.gif) no-repeat
  540. }
  541. .layui-layer-tips {
  542. background: 0 0;
  543. box-shadow: none;
  544. border: none
  545. }
  546. .layui-layer-tips .layui-layer-content {
  547. position: relative;
  548. line-height: 22px;
  549. min-width: 12px;
  550. padding: 8px 15px;
  551. font-size: 12px;
  552. _float: left;
  553. border-radius: 2px;
  554. box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
  555. background-color: #000;
  556. color: #fff
  557. }
  558. .layui-layer-tips .layui-layer-close {
  559. right: -2px;
  560. top: -1px
  561. }
  562. .layui-layer-tips i.layui-layer-TipsG {
  563. position: absolute;
  564. width: 0;
  565. height: 0;
  566. border-width: 8px;
  567. border-color: transparent;
  568. border-style: dashed;
  569. *overflow: hidden
  570. }
  571. .layui-layer-tips i.layui-layer-TipsB,
  572. .layui-layer-tips i.layui-layer-TipsT {
  573. left: 5px;
  574. border-right-style: solid;
  575. border-right-color: #000
  576. }
  577. .layui-layer-tips i.layui-layer-TipsT {
  578. bottom: -8px
  579. }
  580. .layui-layer-tips i.layui-layer-TipsB {
  581. top: -8px
  582. }
  583. .layui-layer-tips i.layui-layer-TipsL,
  584. .layui-layer-tips i.layui-layer-TipsR {
  585. top: 5px;
  586. border-bottom-style: solid;
  587. border-bottom-color: #000
  588. }
  589. .layui-layer-tips i.layui-layer-TipsR {
  590. left: -8px
  591. }
  592. .layui-layer-tips i.layui-layer-TipsL {
  593. right: -8px
  594. }
  595. .layui-layer-lan[type=dialog] {
  596. min-width: 280px
  597. }
  598. .layui-layer-lan .layui-layer-title {
  599. background: #4476A7;
  600. color: #fff;
  601. border: none
  602. }
  603. .layui-layer-lan .layui-layer-btn {
  604. padding: 5px 10px 10px;
  605. text-align: right;
  606. border-top: 1px solid #E9E7E7
  607. }
  608. .layui-layer-lan .layui-layer-btn a {
  609. background: #fff;
  610. border-color: #E9E7E7;
  611. color: #333
  612. }
  613. .layui-layer-lan .layui-layer-btn .layui-layer-btn1 {
  614. background: #C9C5C5
  615. }
  616. .layui-layer-molv .layui-layer-title {
  617. background: #009f95;
  618. color: #fff;
  619. border: none
  620. }
  621. .layui-layer-molv .layui-layer-btn a {
  622. background: #009f95;
  623. border-color: #009f95
  624. }
  625. .layui-layer-molv .layui-layer-btn .layui-layer-btn1 {
  626. background: #92B8B1
  627. }
  628. .layui-layer-iconext {
  629. background: url(icon-ext.png) no-repeat
  630. }
  631. .layui-layer-prompt .layui-layer-input {
  632. display: block;
  633. width: 260px;
  634. height: 36px;
  635. margin: 0 auto;
  636. line-height: 30px;
  637. padding-left: 10px;
  638. border: 1px solid #e6e6e6;
  639. color: #333
  640. }
  641. .layui-layer-prompt textarea.layui-layer-input {
  642. width: 300px;
  643. height: 100px;
  644. line-height: 20px;
  645. padding: 6px 10px
  646. }
  647. .layui-layer-prompt .layui-layer-content {
  648. padding: 20px
  649. }
  650. .layui-layer-prompt .layui-layer-btn {
  651. padding-top: 0
  652. }
  653. .layui-layer-tab {
  654. box-shadow: 1px 1px 50px rgba(0, 0, 0, .4)
  655. }
  656. .layui-layer-tab .layui-layer-title {
  657. padding-left: 0;
  658. overflow: visible
  659. }
  660. .layui-layer-tab .layui-layer-title span {
  661. position: relative;
  662. float: left;
  663. min-width: 80px;
  664. max-width: 300px;
  665. padding: 0 20px;
  666. text-align: center;
  667. overflow: hidden;
  668. cursor: pointer
  669. }
  670. .layui-layer-tab .layui-layer-title span.layui-this {
  671. height: 51px;
  672. border-left: 1px solid #eee;
  673. border-right: 1px solid #eee;
  674. background-color: #fff;
  675. z-index: 10
  676. }
  677. .layui-layer-tab .layui-layer-title span:first-child {
  678. border-left: none
  679. }
  680. .layui-layer-tabmain {
  681. line-height: 24px;
  682. clear: both
  683. }
  684. .layui-layer-tabmain .layui-layer-tabli {
  685. display: none
  686. }
  687. .layui-layer-tabmain .layui-layer-tabli.layui-this {
  688. display: block
  689. }
  690. .layui-layer-photos {
  691. background: 0 0;
  692. box-shadow: none
  693. }
  694. .layui-layer-photos .layui-layer-content {
  695. overflow: hidden;
  696. text-align: center
  697. }
  698. .layui-layer-photos .layui-layer-phimg img {
  699. position: relative;
  700. width: 100%;
  701. display: inline-block;
  702. *display: inline;
  703. *zoom: 1;
  704. vertical-align: top
  705. }
  706. .layui-layer-imgnext,
  707. .layui-layer-imgprev {
  708. position: fixed;
  709. top: 50%;
  710. width: 27px;
  711. _width: 44px;
  712. height: 44px;
  713. margin-top: -22px;
  714. outline: 0;
  715. blr: expression(this.onFocus=this.blur())
  716. }
  717. .layui-layer-imgprev {
  718. left: 30px;
  719. background-position: -5px -5px;
  720. _background-position: -70px -5px
  721. }
  722. .layui-layer-imgprev:hover {
  723. background-position: -33px -5px;
  724. _background-position: -120px -5px
  725. }
  726. .layui-layer-imgnext {
  727. right: 30px;
  728. _right: 8px;
  729. background-position: -5px -50px;
  730. _background-position: -70px -50px
  731. }
  732. .layui-layer-imgnext:hover {
  733. background-position: -33px -50px;
  734. _background-position: -120px -50px
  735. }
  736. .layui-layer-imgbar {
  737. position: fixed;
  738. left: 0;
  739. right: 0;
  740. bottom: 0;
  741. width: 100%;
  742. height: 40px;
  743. line-height: 40px;
  744. background-color: #000\9;
  745. filter: Alpha(opacity=60);
  746. background-color: rgba(2, 0, 0, .35);
  747. color: #fff;
  748. overflow: hidden;
  749. font-size: 0
  750. }
  751. .layui-layer-imgtit * {
  752. display: inline-block;
  753. *display: inline;
  754. *zoom: 1;
  755. vertical-align: top;
  756. font-size: 12px
  757. }
  758. .layui-layer-imgtit a {
  759. max-width: 65%;
  760. overflow: hidden;
  761. color: #fff
  762. }
  763. .layui-layer-imgtit a:hover {
  764. color: #fff;
  765. text-decoration: underline
  766. }
  767. .layui-layer-imgtit em {
  768. padding-left: 10px;
  769. font-style: normal
  770. }
  771. @-webkit-keyframes layer-bounceOut {
  772. 100% {
  773. opacity: 0;
  774. -webkit-transform: scale(.7);
  775. transform: scale(.7)
  776. }
  777. 30% {
  778. -webkit-transform: scale(1.05);
  779. transform: scale(1.05)
  780. }
  781. 0% {
  782. -webkit-transform: scale(1);
  783. transform: scale(1)
  784. }
  785. }
  786. @keyframes layer-bounceOut {
  787. 100% {
  788. opacity: 0;
  789. -webkit-transform: scale(.7);
  790. -ms-transform: scale(.7);
  791. transform: scale(.7)
  792. }
  793. 30% {
  794. -webkit-transform: scale(1.05);
  795. -ms-transform: scale(1.05);
  796. transform: scale(1.05)
  797. }
  798. 0% {
  799. -webkit-transform: scale(1);
  800. -ms-transform: scale(1);
  801. transform: scale(1)
  802. }
  803. }
  804. .layer-anim-close {
  805. -webkit-animation-name: layer-bounceOut;
  806. animation-name: layer-bounceOut;
  807. -webkit-animation-fill-mode: both;
  808. animation-fill-mode: both;
  809. -webkit-animation-duration: .2s;
  810. animation-duration: .2s
  811. }
  812. @media screen and (max-width:1100px) {
  813. .layui-layer-iframe {
  814. overflow-y: auto;
  815. -webkit-overflow-scrolling: touch
  816. }
  817. }