/* Cropper.js 样式文件 - 简化版本 */
.cropper-container {
    position: relative;
    overflow: hidden;
    user-select: none;
    direction: ltr;
    touch-action: none;
}

.cropper-wrap-box {
    position: relative;
}

.cropper-canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.cropper-drag-box {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.cropper-crop-box {
    position: absolute;
    top: 0;
    left: 0;
}

.cropper-view-box {
    position: relative;
    overflow: hidden;
    outline: 1px solid #39f;
    outline-color: rgba(51, 153, 255, 0.75);
}

.cropper-dashed {
    position: absolute;
    display: block;
    opacity: 0.5;
    border: 0 dashed #eee;
}

.cropper-center {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    opacity: 0.75;
}

.cropper-point {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    opacity: 0.75;
    background-color: #39f;
}

.cropper-line {
    position: absolute;
    display: block;
    background-color: #39f;
}

.cropper-modal {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}