/*图片放大镜样式*/
.jqzoom {
    float: left;
    border: none;
    position: relative;
    padding: 0;
    cursor: pointer;
    margin: 0;
    display: block;
    width: 580px;
    height: 580px;
}

.zoomdiv {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffff;
    display: none;
    text-align: center;
    overflow: hidden;
}

.jqZoomPup {
    z-index: 10;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border: 1px solid #aaa;
    background: #ffffff /*url(../images/zoom.png) 50% center no-repeat*/;
    opacity: 0.5;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    filter: alpha(Opacity=50);
}

/*图片小图预览列表*/
.spec-preview {
    width: 580px;
    height: 580px;
}

.img-responsive {    
    width: 100%;
}

.spec-scroll {
    clear: both;
    width: 580px;
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-scroll .prev, .spec-scroll .next {
    display: block;
    text-align: center;
    height: 100px;
    line-height: 100px;
    cursor: pointer;
    text-decoration: none;
}

.spec-scroll .items {
    position: relative;
    margin: 0 auto;
    width: 540px;
    height: 100px;
    overflow: hidden;
}

.spec-scroll .items ul {
    position: absolute;
    width: 999999px;
    height: 100px;
    list-style: none;
    padding: 0;
    display: flex;
}

.spec-scroll .items ul li {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    list-style: none;
    margin-right: 10px;
    border: 1px solid #f2f2f2;
}

.spec-scroll .items ul li img {
    /*border: 1px;*/
    width: 100%;
}

.spec-scroll .items ul li img:hover {
    /*border: 1px solid #fa6551;*/
}