123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- .imgzoom-pack {
- width: 100%;
- height: 100%;
- position: fixed;
- left: 0;
- top: 0;
- background: rgba(0, 0, 0, .7);
- display: none;
- z-index: 1100;
- }
-
- .imgzoom-pack:after {
- content: "";
- position: absolute;
- height: 50px;
- line-height: 50px;
- width: 100%;
- bottom: 0;
- left: 0;
- background: rgba(0, 0, 0, .5);
- z-index: 5;
- }
-
- .imgzoom-pack .imgzoom-x {
- color: #fff;
- height: 50px;
- width: 60px;
- line-height: 50px;
- text-align: center;
- font-size: 17px;
- position: absolute;
- left: 0;
- bottom: 0;
- z-index: 10;
- cursor: pointer;
- }
-
- .imgzoom-x.k-right {
- right: 0;
- left: auto;
- }
-
- .imgzoom-del {
- color: #fff;
- height: 50px;
- width: 60px;
- line-height: 50px;
- vertical-align: middle;
- text-align: center;
- position: absolute;
- right: 0;
- bottom: 0;
- z-index: 10;
- cursor: pointer;
- }
-
- .imgzoom-del span {
- display: block;
- width: 20px;
- height: 21px;
- border: 2px solid #fff;
- border-top: none;
- position: absolute;
- left: 50%;
- margin-left: -10px;
- top: 18px;
- }
-
- .imgzoom-del span:before {
- content: '';
- display: block;
- width: 6px;
- height: 16px;
- border-left: 2px solid #fff;
- border-right: 2px solid #fff;
- position: absolute;
- left: 5px;
- top: 2px;
- }
-
- .imgzoom-del span i {
- display: block;
- width: 30px;
- height: 2px;
- background: #fff;
- position: absolute;
- left: -5px;
- top: -5px;
- }
-
- .imgzoom-del span i:before {
- content: '';
- display: block;
- width: 11px;
- height: 2px;
- background: #fff;
- position: absolute;
- left: 9px;
- top: -5px;
- }
-
- .imgzoom-pack .imgzoom-img {
- width: 100%;
- height: 100%;
- position: absolute;
- left: 0;
- top: 0;
- overflow: hidden;
- }
-
- .imgzoom-pack .imgzoom-img img {
- width: 100%;
- position: absolute;
- top: 50%;
- }
|