.cropper-wrapper {
    position: fixed;
    top: -50%;
    opacity: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 800px;
    overflow: hidden;
    z-index: 999;
}

.cropper-wrapper.active {
    opacity: 1;
    top: 50%;
}

.cropper-wrapper > .title{
    height: 50px;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.cropper-wrapper > .title span{
    font-size: 16px;
    color: #555;
}

.cropper-wrapper > .title .cropper-select {
    position: relative;
    overflow: hidden;
}

.cropper-wrapper > .title .cropper-input {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 50px;
    opacity: 0;
}

.cropper-wrapper > .content {
    height: 500px;
}

.cropper-wrapper > .submit-wrapper {
    line-height: 50px;
    padding: 0 10px;
}

.cover {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 888;
}
