﻿/* 图片放大的代码 */
.imgview-mask{
	position: fixed;
    height: 100%;
    width: 100%;
    z-index: 999998;
    left: 0;
    top: 0;
    background: #000;
    opacity: .75;
    filter: alpha(opacity=75);
    display: none;
}
.show-img{
	position: fixed;
    width: 200px;
    height: 100px;
    top: 50%;
    margin: -50px 0 0 -100px;
    background: #fff;
    z-index: 999999;
    width: 600px; 
    height: 444px;
    margin-top: -333px;
    display: none;
}
.show-img img{
	width: 600px; 
    height: 444px;
}
.show-img a{
	position: absolute;
    width: 40px;
    height: 40px;
    right: -40px;
    top: -40px;
    background: url(../image/index-close.png) -10px -10px no-repeat;
}
.show-img a:hover{
	position: absolute;
    width: 40px;
    height: 40px;
    right: -40px;
    top: -40px;
    background: url(../image/index-close.png) -10px -77px no-repeat;
}