layer.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806
  1. .layui-layer-imgbar, .layui-layer-imgtit a, .layui-layer-tab .layui-layer-title span, .layui-layer-title {
  2. text-overflow:ellipsis;
  3. white-space:nowrap
  4. }
  5. *html {
  6. background-image:url(about:blank);
  7. background-attachment:fixed
  8. }
  9. html #layuicss-skinlayercss {
  10. display:none;
  11. position:absolute;
  12. width:1989px
  13. }
  14. .layui-layer, .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. box-shadow:1px 1px 50px rgba(0, 0, 0, .3)
  35. }
  36. .layui-layer-close {
  37. position:absolute
  38. }
  39. .layui-layer-content {
  40. position:relative
  41. }
  42. .layui-layer-border {
  43. border:1px solid #B2B2B2;
  44. border:1px solid rgba(0, 0, 0, .1);
  45. box-shadow:1px 1px 5px rgba(0, 0, 0, .2)
  46. }
  47. .layui-layer-load {
  48. background:url(../images/loading-1.gif) center center no-repeat #eee
  49. }
  50. .layui-layer-ico {
  51. background:url(../images/icon.png) no-repeat
  52. }
  53. .layui-layer-btn a, .layui-layer-dialog .layui-layer-ico, .layui-layer-setwin a {
  54. display:inline-block;
  55. *display:inline;
  56. *zoom:1;
  57. vertical-align:top
  58. }
  59. .layui-layer-move {
  60. display:none;
  61. position:fixed;
  62. *position:absolute;
  63. left:0;
  64. top:0;
  65. width:100%;
  66. height:100%;
  67. cursor:move;
  68. opacity:0;
  69. filter:alpha(opacity=0);
  70. background-color:#fff;
  71. z-index:2147483647
  72. }
  73. .layui-layer-resize {
  74. position:absolute;
  75. width:15px;
  76. height:15px;
  77. right:0;
  78. bottom:0;
  79. cursor:se-resize
  80. }
  81. .layui-layer {
  82. border-radius:15px;
  83. -webkit-animation-fill-mode:both;
  84. animation-fill-mode:both;
  85. -webkit-animation-duration:.3s;
  86. animation-duration:.3s
  87. }
  88. @-webkit-keyframes layer-bounceIn {
  89. 0% {
  90. opacity:0;
  91. -webkit-transform:scale(.5);
  92. transform:scale(.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(.5);
  104. -ms-transform:scale(.5);
  105. transform:scale(.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 {
  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(.1) translateY(-2000px);
  122. transform:scale(.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(.475) translateY(60px);
  129. transform:scale(.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(.1) translateY(-2000px);
  138. -ms-transform:scale(.1) translateY(-2000px);
  139. transform:scale(.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(.475) translateY(60px);
  146. -ms-transform:scale(.475) translateY(60px);
  147. transform:scale(.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(.1) translateX(-2000px);
  190. transform:scale(.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(.475) translateX(48px);
  197. transform:scale(.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(.1) translateX(-2000px);
  206. -ms-transform:scale(.1) translateX(-2000px);
  207. transform:scale(.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(.475) translateX(48px);
  214. -ms-transform:scale(.475) translateX(48px);
  215. transform:scale(.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%, 100% {
  268. -webkit-transform:translateX(0);
  269. transform:translateX(0)
  270. }
  271. 10%, 30%, 50%, 70%, 90% {
  272. -webkit-transform:translateX(-10px);
  273. transform:translateX(-10px)
  274. }
  275. 20%, 40%, 60%, 80% {
  276. -webkit-transform:translateX(10px);
  277. transform:translateX(10px)
  278. }
  279. }
  280. @keyframes layer-shake {
  281. 0%, 100% {
  282. -webkit-transform:translateX(0);
  283. -ms-transform:translateX(0);
  284. transform:translateX(0)
  285. }
  286. 10%, 30%, 50%, 70%, 90% {
  287. -webkit-transform:translateX(-10px);
  288. -ms-transform:translateX(-10px);
  289. transform:translateX(-10px)
  290. }
  291. 20%, 40%, 60%, 80% {
  292. -webkit-transform:translateX(10px);
  293. -ms-transform:translateX(10px);
  294. transform:translateX(10px)
  295. }
  296. }
  297. .layer-anim-06 {
  298. -webkit-animation-name:layer-shake;
  299. animation-name:layer-shake
  300. }
  301. @-webkit-keyframes fadeIn {
  302. 0% {
  303. opacity:0
  304. }
  305. 100% {
  306. opacity:1
  307. }
  308. }
  309. .layui-layer-title {
  310. padding:0 80px 0 20px;
  311. height:42px;
  312. line-height:42px;
  313. /*border-bottom:1px solid #eee;*/
  314. font-size:14px;
  315. color:#fff;
  316. overflow:hidden;
  317. background: linear-gradient(to left, #fa6567 0, #fa8587 100%);
  318. /*background: linear-gradient(to right,#e1fb0a,#de5e5e,#dff52e 100%);*/
  319. box-shadow: 0 2px 6px rgba(228, 63, 66, 0.2);
  320. border-radius:15px 15px 0 0
  321. }
  322. .layui-layer-setwin {
  323. position:absolute;
  324. right:15px;
  325. *right:0;
  326. top:15px;
  327. font-size:0;
  328. line-height:initial
  329. }
  330. .layui-layer-setwin a {
  331. position:relative;
  332. width:16px;
  333. height:16px;
  334. margin-left:10px;
  335. font-size:12px;
  336. _overflow:hidden
  337. }
  338. .layui-layer-setwin .layui-layer-min cite {
  339. position:absolute;
  340. width:14px;
  341. height:2px;
  342. left:0;
  343. top:50%;
  344. margin-top:-1px;
  345. background-color:#2E2D3C;
  346. cursor:pointer;
  347. _overflow:hidden
  348. }
  349. .layui-layer-setwin .layui-layer-min:hover cite {
  350. background-color:#2D93CA
  351. }
  352. .layui-layer-setwin .layui-layer-max {
  353. background-position:-32px -40px
  354. }
  355. .layui-layer-setwin .layui-layer-max:hover {
  356. background-position:-16px -40px
  357. }
  358. .layui-layer-setwin .layui-layer-maxmin {
  359. background-position:-65px -40px
  360. }
  361. .layui-layer-setwin .layui-layer-maxmin:hover {
  362. background-position:-49px -40px
  363. }
  364. .layui-layer-setwin .layui-layer-close1 {
  365. background-position:1px -40px;
  366. cursor:pointer
  367. }
  368. .layui-layer-setwin .layui-layer-close1:hover {
  369. opacity:.7
  370. }
  371. .layui-layer-setwin .layui-layer-close2 {
  372. position:absolute;
  373. right:-28px;
  374. top:-28px;
  375. width:30px;
  376. height:30px;
  377. margin-left:0;
  378. background-position:-149px -31px;
  379. *right:-18px;
  380. _display:none
  381. }
  382. .layui-layer-setwin .layui-layer-close2:hover {
  383. background-position:-180px -31px
  384. }
  385. .layui-layer-btn {
  386. text-align:right;
  387. padding:0 10px 12px;
  388. pointer-events:auto;
  389. user-select:none;
  390. -webkit-user-select:none
  391. }
  392. .layui-layer-btn a {
  393. height:28px;
  394. line-height:28px;
  395. margin:6px 6px 0;
  396. padding:0 15px;
  397. background: linear-gradient(to left, #fa6567 0, #fa8587 100%);
  398. box-shadow: 0 2px 6px rgba(228, 63, 66, 0.2);
  399. color:#fff;
  400. border-radius:20px;
  401. font-weight:400;
  402. cursor:pointer;
  403. text-decoration:none
  404. }
  405. .layui-layer-btn a:hover {
  406. opacity:.9;
  407. text-decoration:none
  408. }
  409. .layui-layer-btn a:active {
  410. opacity:.8
  411. }
  412. .layui-layer-btn .layui-layer-btn0 {
  413. background: linear-gradient(to left, #fa6567 0, #fa8587 100%);
  414. box-shadow: 0 2px 6px rgba(228, 63, 66, 0.2);
  415. border-radius: 20px;
  416. border:none;
  417. color:#fff
  418. }
  419. .layui-layer-btn-l {
  420. text-align:left
  421. }
  422. .layui-layer-btn-c {
  423. text-align:center
  424. }
  425. .layui-layer-dialog {
  426. min-width:415px
  427. }
  428. .layui-layer-dialog .layui-layer-content {
  429. position:relative;
  430. padding:10px;
  431. line-height:24px;
  432. word-break:break-all;
  433. overflow:hidden;
  434. font-size:14px;
  435. overflow-x:hidden;
  436. overflow-y:auto
  437. }
  438. .layui-layer-dialog .layui-layer-content .layui-layer-ico {
  439. position:absolute;
  440. top:16px;
  441. left:15px;
  442. _left:-40px;
  443. width:30px;
  444. height:30px
  445. }
  446. .layui-layer-ico1 {
  447. background-position:-30px 0
  448. }
  449. .layui-layer-ico2 {
  450. background-position:-60px 0
  451. }
  452. .layui-layer-ico3 {
  453. background-position:-90px 0
  454. }
  455. .layui-layer-ico4 {
  456. background-position:-120px 0
  457. }
  458. .layui-layer-ico5 {
  459. background-position:-150px 0
  460. }
  461. .layui-layer-ico6 {
  462. background-position:-180px 0
  463. }
  464. .layui-layer-rim {
  465. border:6px solid #8D8D8D;
  466. border:6px solid rgba(0, 0, 0, .3);
  467. border-radius:5px;
  468. box-shadow:none
  469. }
  470. .layui-layer-msg {
  471. min-width:180px;
  472. border:1px solid #D3D4D3;
  473. box-shadow:none
  474. }
  475. .layui-layer-hui {
  476. min-width:100px;
  477. background-color:#000;
  478. filter:alpha(opacity=60);
  479. background-color:rgba(0, 0, 0, .6);
  480. color:#fff;
  481. border:none
  482. }
  483. .layui-layer-hui .layui-layer-content {
  484. padding:12px 25px;
  485. text-align:center
  486. }
  487. .layui-layer-dialog .layui-layer-padding {
  488. padding:20px 20px 20px 55px;
  489. text-align:left
  490. }
  491. .layui-layer-page .layui-layer-content {
  492. position:relative;
  493. overflow:auto
  494. }
  495. .layui-layer-iframe .layui-layer-btn, .layui-layer-page .layui-layer-btn {
  496. padding-top:10px
  497. }
  498. .layui-layer-nobg {
  499. background:0 0
  500. }
  501. .layui-layer-iframe iframe {
  502. display:block;
  503. width:100%
  504. }
  505. .layui-layer-loading {
  506. border-radius:100%;
  507. background:0 0;
  508. box-shadow:none;
  509. border:none
  510. }
  511. .layui-layer-loading .layui-layer-content {
  512. width:60px;
  513. height:24px;
  514. background:url(../images/loading-0.gif) no-repeat
  515. }
  516. .layui-layer-loading .layui-layer-loading1 {
  517. width:37px;
  518. height:37px;
  519. background:url(../images/loading-1.gif) no-repeat
  520. }
  521. .layui-layer-ico16, .layui-layer-loading .layui-layer-loading2 {
  522. width:32px;
  523. height:32px;
  524. background:url(../images/loading-2.gif) no-repeat
  525. }
  526. .layui-layer-tips {
  527. background:0 0;
  528. box-shadow:none;
  529. border:none
  530. }
  531. .layui-layer-tips .layui-layer-content {
  532. position:relative;
  533. line-height:22px;
  534. min-width:12px;
  535. padding:5px 10px;
  536. font-size:12px;
  537. _float:left;
  538. border-radius:2px;
  539. box-shadow:1px 1px 3px rgba(0, 0, 0, .2);
  540. background-color:#000;
  541. color:#fff
  542. }
  543. .layui-layer-tips .layui-layer-close {
  544. right:-2px;
  545. top:-1px
  546. }
  547. .layui-layer-tips i.layui-layer-TipsG {
  548. position:absolute;
  549. width:0;
  550. height:0;
  551. border-width:8px;
  552. border-color:transparent;
  553. border-style:dashed;
  554. *overflow:hidden
  555. }
  556. .layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT {
  557. left:5px;
  558. border-right-style:solid;
  559. border-right-color:#000
  560. }
  561. .layui-layer-tips i.layui-layer-TipsT {
  562. bottom:-8px
  563. }
  564. .layui-layer-tips i.layui-layer-TipsB {
  565. top:-8px
  566. }
  567. .layui-layer-tips i.layui-layer-TipsL, .layui-layer-tips i.layui-layer-TipsR {
  568. top:1px;
  569. border-bottom-style:solid;
  570. border-bottom-color:#000
  571. }
  572. .layui-layer-tips i.layui-layer-TipsR {
  573. left:-8px
  574. }
  575. .layui-layer-tips i.layui-layer-TipsL {
  576. right:-8px
  577. }
  578. .layui-layer-lan[type=dialog] {
  579. min-width:280px
  580. }
  581. .layui-layer-lan .layui-layer-title {
  582. background:#4476A7;
  583. color:#fff;
  584. border:none
  585. }
  586. .layui-layer-lan .layui-layer-btn {
  587. padding:5px 10px 10px;
  588. text-align:right;
  589. border-top:1px solid #E9E7E7
  590. }
  591. .layui-layer-lan .layui-layer-btn a {
  592. background:#BBB5B5;
  593. border:none
  594. }
  595. .layui-layer-lan .layui-layer-btn .layui-layer-btn1 {
  596. background:#C9C5C5
  597. }
  598. .layui-layer-molv .layui-layer-title {
  599. background:#009f95;
  600. color:#fff;
  601. border:none
  602. }
  603. .layui-layer-molv .layui-layer-btn a {
  604. background:#009f95
  605. }
  606. .layui-layer-molv .layui-layer-btn .layui-layer-btn1 {
  607. background:#92B8B1
  608. }
  609. .layui-layer-iconext {
  610. background:url(../images/icon-ext.png) no-repeat
  611. }
  612. .layui-layer-prompt .layui-layer-input {
  613. display:block;
  614. width:220px;
  615. height:30px;
  616. margin:0 auto;
  617. line-height:30px;
  618. padding:0 5px;
  619. border:1px solid #ccc;
  620. border-radius: 20px;
  621. box-shadow:1px 1px 5px rgba(0, 0, 0, .1) inset;
  622. color:#333
  623. }
  624. .layui-layer-prompt textarea.layui-layer-input {
  625. width:300px;
  626. height:100px;
  627. line-height:20px
  628. }
  629. .layui-layer-prompt .layui-layer-content {
  630. padding:20px
  631. }
  632. .layui-layer-prompt .layui-layer-btn {
  633. padding-top:0
  634. }
  635. .layui-layer-tab {
  636. box-shadow:1px 1px 50px rgba(0, 0, 0, .4)
  637. }
  638. .layui-layer-tab .layui-layer-title {
  639. padding-left:0;
  640. border-bottom:1px solid #ccc;
  641. background-color:#eee;
  642. overflow:visible
  643. }
  644. .layui-layer-tab .layui-layer-title span {
  645. position:relative;
  646. float:left;
  647. min-width:80px;
  648. max-width:260px;
  649. padding:0 20px;
  650. text-align:center;
  651. cursor:default;
  652. overflow:hidden
  653. }
  654. .layui-layer-tab .layui-layer-title span.layui-layer-tabnow {
  655. height:43px;
  656. border-left:1px solid #ccc;
  657. border-right:1px solid #ccc;
  658. background-color:#fff;
  659. z-index:10
  660. }
  661. .layui-layer-tab .layui-layer-title span:first-child {
  662. border-left:none
  663. }
  664. .layui-layer-tabmain {
  665. line-height:24px;
  666. clear:both
  667. }
  668. .layui-layer-tabmain .layui-layer-tabli {
  669. display:none
  670. }
  671. .layui-layer-tabmain .layui-layer-tabli.xubox_tab_layer {
  672. display:block
  673. }
  674. .xubox_tabclose {
  675. position:absolute;
  676. right:10px;
  677. top:5px;
  678. cursor:pointer
  679. }
  680. .layui-layer-photos {
  681. -webkit-animation-duration:.8s;
  682. animation-duration:.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. *display:inline;
  693. *zoom:1;
  694. vertical-align:top
  695. }
  696. .layui-layer-imgbar, .layui-layer-imguide {
  697. display:none
  698. }
  699. .layui-layer-imgnext, .layui-layer-imgprev {
  700. position:absolute;
  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:10px;
  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:10px;
  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:absolute;
  730. left:0;
  731. bottom:0;
  732. width:100%;
  733. height:32px;
  734. line-height:32px;
  735. background-color:rgba(0, 0, 0, .8);
  736. background-color:#000\9;
  737. filter:Alpha(opacity=80);
  738. color:#fff;
  739. overflow:hidden;
  740. font-size:0
  741. }
  742. .layui-layer-imgtit * {
  743. display:inline-block;
  744. *display:inline;
  745. *zoom:1;
  746. vertical-align:top;
  747. font-size:12px
  748. }
  749. .layui-layer-imgtit a {
  750. max-width:65%;
  751. overflow:hidden;
  752. color:#fff
  753. }
  754. .layui-layer-imgtit a:hover {
  755. color:#fff;
  756. text-decoration:underline
  757. }
  758. .layui-layer-imgtit em {
  759. padding-left:10px;
  760. font-style:normal
  761. }
  762. @-webkit-keyframes layer-bounceOut {
  763. 100% {
  764. opacity:0;
  765. -webkit-transform:scale(.7);
  766. transform:scale(.7)
  767. }
  768. 30% {
  769. -webkit-transform:scale(1.05);
  770. transform:scale(1.05)
  771. }
  772. 0% {
  773. -webkit-transform:scale(1);
  774. transform:scale(1)
  775. }
  776. }
  777. @keyframes layer-bounceOut {
  778. 100% {
  779. opacity:0;
  780. -webkit-transform:scale(.7);
  781. -ms-transform:scale(.7);
  782. transform:scale(.7)
  783. }
  784. 30% {
  785. -webkit-transform:scale(1.05);
  786. -ms-transform:scale(1.05);
  787. transform:scale(1.05)
  788. }
  789. 0% {
  790. -webkit-transform:scale(1);
  791. -ms-transform:scale(1);
  792. transform:scale(1)
  793. }
  794. }
  795. .layer-anim-close {
  796. -webkit-animation-name:layer-bounceOut;
  797. animation-name:layer-bounceOut;
  798. -webkit-animation-duration:.2s;
  799. animation-duration:.2s
  800. }
  801. @media screen and (max-width:1100px) {
  802. .layui-layer-iframe {
  803. overflow-y:auto;
  804. -webkit-overflow-scrolling:touch
  805. }
  806. }