/* 图片预览 */
.previewbox {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	background-color: rgba(0,0,0,0.6);
	z-index: 9;
}
.previewbox .preview-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
	height: 50px;
}
.previewbox .preview-header .preview-indicator {
    display: block;
    line-height: 28px;
    color: #fff;
    text-align: center;
    margin: 10px auto;
    width: 68px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    font-size: 16px;
}
.previewbox .preview-content {
    font-size: 0;
    position: relative;
    white-space: nowrap;
    height: 100%;
}			
.previewbox .preview-content .content-item {
    font-size: 14px;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: top;
    white-space: normal;
}			
.previewbox .preview-content .content-item .content-item-scroller {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}			
.previewbox .preview-content .content-item .content-item-scroller .toggle-left {
    position: absolute;
    bottom: 5%;
    left: 45%;
    margin-left: -125px;
    margin-top: -20px;
    width: 125px;
    height: 40px;
    z-index: 3;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    display: block;
    border-radius: 20px;
    line-height: 40px;
    background-color: #A4A4A4;
}	

.previewbox .preview-content .content-item .content-item-scroller .toggle-left:hover {
    background-color: #E7E7E7;
}

.previewbox .preview-content .content-item .content-item-scroller .toggle-right {
    position: absolute;
    bottom: 5%;
    right: 45%;
    margin-right: -125px;
    margin-top: -20px;
    width: 125px;
    height: 40px;
    z-index: 3;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    display: block;
    line-height: 40px;
    border-radius: 20px;
    background-color: #A4A4A4;
}

.previewbox .preview-content .content-item .content-item-scroller .toggle-right:hover {
    background-color: #E7E7E7;
}

.image-container {
    position: relative;
}

.pic-close-btn {
    position: absolute;
    display: block;
    cursor: pointer;
    top: -65px;
    right: -80px;
    width: 63px;
    height: 63px;
    z-index: 9;
}
