@charset "utf-8";


/*一、24格处理*/
#iconWall{
    width: 1200px;

    margin: 0 auto;
    overflow: hidden;
    padding-top:20px;
    list-style: none;
}

#iconWall li{
    width: 231px;
    height: 231px;
    /*background-color: #fff;*/
    float: left;
    border: 2px solid #251d1a;
    margin: 2px;
    position: relative;
    cursor: pointer;

}
.jijin_img{
	width: 231px;
    height: 231px;
}
/*二、3D反转区域处理 */
.img-back, .img-front{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 231px;
    height: 231px;
    text-align: center;
    line-height:230px;
}

li img{
    vertical-align: middle;
}


.img-3d{
    transform-style: preserve-3d;
}

.img-back{
    transform: rotateY(180deg);
}

/*测试代码*/
/*li:hover .img-3d{*/
    /*transition: .3s linear;*/
    /*transform: rotateY(180deg);*/
/*}*/

/*三、换一批*/
#btnRefresh{
    text-align: center;
    transition: .3s linear;
    background-color: #fff;
}
.iconRefresh{
    width: 28px;
    height: 28px;
    background: url("../img/refresh.png");
    margin: 105px auto 0;
}
#btnRefresh:hover{
    color: #fff;
    background-color: #c6af91;
    transition: 0s;
    cursor: pointer;
}
#btnRefresh:hover .iconRefresh{
    background: url("../img/refresh-white.png");
}


/*四、处理浮层*/
.mask{
    position: absolute;
    left: 0;
    top: 0;
    width: 235px;
    height: 235px;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    border: 2px solid #251d1a;
}

.mask img{
    float: right;
    margin-top: 8px;
    margin-right: 8px;
}
.mask p{
    font-size: 12px;
    color: #fff;
    margin-top: 125px;
    text-align: center;
}
.mask a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    background-color:#c6af91;
    width: 70px;
    display: block;
    margin:135px auto;
    text-align: center;
    height: 18px;
    line-height: 18px;
    border-radius: 9px;
}

li:hover .mask{
    opacity: 1;
    transition: .3s linear;
}

/*页脚*/
footer{
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 16px;
    line-height: 1.4;
}

.popup{display:none;position: fixed;width:100%;height:100%;background-color: #000;opacity: 0.8;z-index: 98;top:0;left:0;}
.picBig{display:none;position: fixed;width:60%;height:100%;top:0;left:0;margin-left: 20%;z-index: 99;}
.picBig img{display:block;margin:auto;}
.closeBtn{position:absolute;z-index:100;right:-10px;width:20px;height:20px;background:url(../img/close.png) no-repeat 0 0;-webkit-background-size: contain;
background-size: contain;cursor:pointer;}