scal.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .imgzoom-pack {
  2. width: 100%;
  3. height: 100%;
  4. position: fixed;
  5. left: 0;
  6. top: 0;
  7. background: rgba(0, 0, 0, .7);
  8. display: none;
  9. z-index: 1100;
  10. }
  11. .imgzoom-pack:after {
  12. content: "";
  13. position: absolute;
  14. height: 50px;
  15. line-height: 50px;
  16. width: 100%;
  17. bottom: 0;
  18. left: 0;
  19. background: rgba(0, 0, 0, .5);
  20. z-index: 5;
  21. }
  22. .imgzoom-pack .imgzoom-x {
  23. color: #fff;
  24. height: 50px;
  25. width: 60px;
  26. line-height: 50px;
  27. text-align: center;
  28. font-size: 17px;
  29. position: absolute;
  30. left: 0;
  31. bottom: 0;
  32. z-index: 10;
  33. cursor: pointer;
  34. }
  35. .imgzoom-x.k-right {
  36. right: 0;
  37. left: auto;
  38. }
  39. .imgzoom-del {
  40. color: #fff;
  41. height: 50px;
  42. width: 60px;
  43. line-height: 50px;
  44. vertical-align: middle;
  45. text-align: center;
  46. position: absolute;
  47. right: 0;
  48. bottom: 0;
  49. z-index: 10;
  50. cursor: pointer;
  51. }
  52. .imgzoom-del span {
  53. display: block;
  54. width: 20px;
  55. height: 21px;
  56. border: 2px solid #fff;
  57. border-top: none;
  58. position: absolute;
  59. left: 50%;
  60. margin-left: -10px;
  61. top: 18px;
  62. }
  63. .imgzoom-del span:before {
  64. content: '';
  65. display: block;
  66. width: 6px;
  67. height: 16px;
  68. border-left: 2px solid #fff;
  69. border-right: 2px solid #fff;
  70. position: absolute;
  71. left: 5px;
  72. top: 2px;
  73. }
  74. .imgzoom-del span i {
  75. display: block;
  76. width: 30px;
  77. height: 2px;
  78. background: #fff;
  79. position: absolute;
  80. left: -5px;
  81. top: -5px;
  82. }
  83. .imgzoom-del span i:before {
  84. content: '';
  85. display: block;
  86. width: 11px;
  87. height: 2px;
  88. background: #fff;
  89. position: absolute;
  90. left: 9px;
  91. top: -5px;
  92. }
  93. .imgzoom-pack .imgzoom-img {
  94. width: 100%;
  95. height: 100%;
  96. position: absolute;
  97. left: 0;
  98. top: 0;
  99. overflow: hidden;
  100. }
  101. .imgzoom-pack .imgzoom-img img {
  102. width: 100%;
  103. position: absolute;
  104. top: 50%;
  105. }