
/*图片放大镜样式*/
.jqzoom {
    border: none;
    position: relative;
    display: block;
    padding: 0;
    cursor: pointer;
    margin: 0 auto;
    width: fit-content;
}

.jqzoom img {
    max-height: 400px;
}

.zoomdiv {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 350px;
    background: #ffffff;
    border: 1px solid #CCCCCC;
    display: none;
    text-align: center;
    overflow: hidden;
}

.jqZoomPup {
    z-index: 10;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #aaa;
    background: #ffffff;
    opacity: 0.5;
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    filter: alpha(Opacity=50);
}

/*图片小图预览列表*/
.spec-preview {
    width: 100%;
    height: 0;
    text-align: center;
    padding-bottom: 100%;
    margin-bottom: 10px;
}

.spec-scroll {
    clear: both;
    margin-top: 5px;
}

.spec-scroll .prev {
    float: left;
    margin-right: 4px;
}

.spec-scroll .next {
    float: right;
}

.spec-scroll .prev, .spec-scroll .next {
    display: block;
    text-align: center;
    width: 16px;
    height: 60px;
    line-height: 58px;
    cursor: pointer;
    text-decoration: none;
}

.spec-scroll .items {
    float: left;
    position: relative;
    height: 60px;
    width: calc(100% - 40px);;
    overflow: hidden;
}

.spec-scroll .items ul {
    position: absolute;
    width: 99999px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-scroll .items ul li {
    float: left;
    width: 56px;
    margin: 2px;
    border: 1px solid #CCC;
    text-align: center;
}

.spec-scroll .items ul li:hover {
    border: 1px solid #FF6600 !important;
}

.spec-scroll .items ul li img {
    padding: 2px;
    height: 56px;
}
