.crop-box {
  position: relative;
  width: 400px;
  height: 400px;
  line-height: 0;
  overflow: hidden;
}
.crop-box img {
  position: absolute;
  width: 100%;
  pointer-events: none;
  top: 0;
}
.crop-box .box {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
}
.crop-box .box.l {
  height: 100%;
  width: 100px;
  left: 0;
  top: 0;
}
.crop-box .box.r {
  height: 100%;
  width: 100px;
  right: 0;
  top: 0;
}
.crop-box .box.t {
  height: 100px;
  right: 100px;
  left: 100px;
  top: 0;
}
.crop-box .box.b {
  height: 100px;
  right: 100px;
  left: 100px;
  bottom: 0;
}
.crop-box .drag-box {
  position: absolute;
  cursor: move;
  width: 200px;
  height: 200px;
  top: 100px;
  left: 100px;
  border: 1px solid #FFFFFF;
}
.crop-box .drag-box .circle {
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #000000;
}
.crop-box .drag-box .resize {
  width: 20px;
  height: 20px;
  position: absolute;
  right: -10px;
  bottom: -10px;
  background: #FFFFFF;
  cursor: nwse-resize;
}

.center-line {
  display: inline-block;
  position: relative;
  line-height: 0;
}
.center-line .line {
  width: 5px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background: rgba(0, 0, 0, 0.5);
  cursor: ew-resize;
}

/*# sourceMappingURL=crop-box.css.map */
