/*图片放大镜样式*/
.jqzoom {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
}

.jqzoom img {
    width: 100%;
}

.zoomdiv {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    background: #ffffff;
    display: none;
    text-align: center;
    overflow: hidden;
}

.jqZoomPup {
    position: absolute;
    visibility: hidden;
    z-index: 10;
    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;
    filter: alpha(Opacity=50);
}

/*图片小图预览列表*/
.spec-preview {
    position: relative;
    width: 100%;
    padding-top: 100%;
    height: 0;
}

.spec-scroll {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    clear: both;
    margin-top: 30px;
}

.spec-scroll .prev, .spec-scroll .next {
    display: block;
    text-align: center;
    width: 25px;
    height: 120px;
    line-height: 120px;
    cursor: pointer;
    text-decoration: none;
}

.spec-scroll .prev{
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.spec-scroll .next {
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23333' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.spec-scroll .items {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.spec-scroll .items ul {
    position: absolute;
    width: 999999px;
    height: 120px;
    list-style: none;
    padding: 0;
    display: flex;
}

.spec-scroll .items ul li {
    width: 120px;
    text-align: center;
    list-style: none;
    margin-right: 14px;
}

.spec-scroll .items ul li img {
    border: 1px #cccccc solid;
    width: 120px;
    height: 120px;
}

.spec-scroll .items ul li img:hover {
    border: 1px #856404 solid;
}