.picture-preview {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 10000;
}

.picture-preview-content {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translatex(-50%);
    width: 900px;
    height: 600px;
    background: #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
}

.picture-preview-left {
    position: relative;
    float: left;
    width: 480px;
    height: 600px;
    background: #666973;
    box-sizing: border-box;
}

.picture-preview-right {
    position: relative;
    float: right;
    width: 420px;
    height: 600px;
    padding: 20px;
    box-sizing: border-box;
}

.picture-preview-img-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 480px;
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.picture-preview-img-cover {
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}

.picture-preview-img-index {
    position: absolute;
    left: 204px;
    bottom: 12px;
    width: 72px;
    height: 24px;
    font-size: 16px;
    font-family: microsoftyahei;
    color: #ffffff;
    background: #000000;
    border-radius: 4px;
    opacity: 0.4;
    text-align: center;
    line-height: 24px;
}

.picture-preview-img-left {
    position: absolute;
    left: 10px;
    bottom: 269px;
    width: 24px;
    height: 64px;
    cursor: pointer;
}

.picture-preview-img-right {
    position: absolute;
    right: 10px;
    bottom: 269px;
    width: 24px;
    height: 64px;
    cursor: pointer;
}

.picture-preview-img-left:hover,
.picture-preview-img-right:hover {
    opacity: .8;
}

.picture-preview-product-hd {
    width: 340px;
    height: 21px;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: microsoftyahei-bold, microsoftyahei;
    font-weight: bold;
    color: #333333;
    line-height: 21px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.picture-preview-product-text {
    word-break: break-all;
    overflow-y: auto;
    width: 100%;
    height: 530px;
}

.picture-preview-close {
    width: 19px;
    height: 19px;
    position: absolute;
    right: 19px;
    top: 19px;
    cursor: pointer;
}