#picture {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  margin: auto;
  background-size: cover;
}
.index {
  z-index: 10000;
}
.canvas-parent {
  width: calc(100% - 80px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50px;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#hover-picture {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  margin: auto;
  background-size: cover;
}
.fit-content {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.as-none {
  pointer-events: none;
}
.as-auto {
  pointer-events: auto;
}
.abs-top {
  top: 0;
}
.abs-right {
  right: 0;
}
.abs-bottom {
  bottom: 0;
}
.abs-left {
  left: 0;
}
.picture-button {
  width: 30px;
  height: 30px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  font-size: 25px;
}
#hidden-button {
  width: 15px;
  background-image: -webkit-linear-gradient(left, #281679, #c1b5f8);
  background-image: -o-linear-gradient(left, #281679, #c1b5f8);
  background-image: linear-gradient(to right, #281679, #c1b5f8);
}
#hidden-button div {
  width: 0;
  height: 0;
  border-left: 6px solid #c1b5f8;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
}
#show-button {
  width: 15px;
  background-image: -webkit-linear-gradient(left, #281679, #c1b5f8);
  background-image: -o-linear-gradient(left, #281679, #c1b5f8);
  background-image: linear-gradient(to right, #281679, #c1b5f8);
  display: none;
}
#show-button div {
  width: 0;
  height: 0;
  border-right: 6px solid #281679;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-left: 6px solid transparent;
}
.position-transition {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateX(-30px);
       -o-transform: translateX(-30px);
          transform: translateX(-30px);
}
#scale-controller {
  height: 200px;
  width: 170px;
  left: 50px;
  -webkit-transform: translateY(-10px);
       -o-transform: translateY(-10px);
          transform: translateY(-10px);
}
.vertical-slider {
  width: 12px;
  padding: 0 4px;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  position: relative;
}
.vertical-slider .slider-rail {
  position: absolute;
  height: 100%;
  width: 4px;
  background-color: #f5f5f5;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.vertical-slider .slider-track {
  position: absolute;
  width: 4px;
  background-color: #c1b5f8;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  bottom: 0;
  left: auto;
}
.vertical-slider .slider-handle {
  position: absolute;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background-color: #fff;
  border: solid 2px #c1b5f8;
  border-radius: 50%;
  box-shadow: 0;
  cursor: pointer;
  -webkit-transition: border-color 0.3s, box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, box-shadow 0.6s, -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -o-transition: border-color 0.3s, box-shadow 0.6s, -o-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: border-color 0.3s, box-shadow 0.6s, transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -webkit-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28), -o-transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -webkit-transform: translateY(50%);
       -o-transform: translateY(50%);
          transform: translateY(50%);
}
.vertical-slider .slider-handle-tag {
  position: absolute;
  left: 20px;
  -webkit-transform: translateY(50%);
       -o-transform: translateY(50%);
          transform: translateY(50%);
}
.vertical-slider .slider-tag {
  position: absolute;
  right: 20px;
  -webkit-transform: translateY(50%);
       -o-transform: translateY(50%);
          transform: translateY(50%);
}
.vertical-slider .tag-content {
  background-color: #454545;
  color: #fff;
  width: 50px;
  text-align: center;
}
.vertical-slider .slider-handle:focus {
  border-color: #454545;
  outline: none;
  box-shadow: 0 0 0 5px #1890ff1f;
}
.vertical-slider:hover .slider-rail {
  background-color: #e1e1e1;
}
.vertical-slider:hover .slider-track {
  background-color: #ae9ef7;
}
.triangle-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #454545;
}
.triangle-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #454545;
}
.proportionp-16-9 {
  width: 177.777777vh;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
}
.border-bottom-line {
  border-bottom: 1px solid black;
}
.border-left-line {
  border-left: 1px solid black;
}
.border-top-line {
  border-top: 1px solid black;
}
.border-right-line {
  border-right: 1px solid black;
}
.tool {
  margin: 10px ;
  border-radius: 5px;
  background-color: #f6e5fa;
  padding: 5px;
  display: inline-block;
}
.tool img {
  width: 20px;
  height: 20px;
}
.tool .tool-content {
  display: none;
  position: absolute;
  background-color: #f6e5fa;
  padding: 10px;
  border-radius: 5px;
  top: 40px;
}
.tool:hover .tool-content {
  display: block;
}
.icon {
  width: 40px;
  height: 40px;
}
.move-img {
  border-radius: 50%;
  border: 1px solid ;
}
.wt {
  width: 300px;
  height: 100%;
}
.color1 {
  background-color: #681C1C;
}
.color2 {
  background-color: #1C4468;
}
.color3 {
  background-color: #66678F;
}
.color4 {
  background-color: #4D6661;
}
.color5 {
  background-color: #454545;
}
.black {
  background-color: black;
}
.siderbar-icon {
  background-color: #454545;
  border-radius: 5px;
  width: 60px;
  height: 60px;
}
.siderbar {
  height: 880px;
  z-index: 99999;
}
.siderbar-box {
  margin: 30px 0 10px 20px;
}
.siderbar-box .tool-content {
  display: none;
  position: absolute;
  background-color: #f6e5fa;
  padding: 10px;
  border-radius: 5px;
  top: 40px;
  left: 90px;
}
.siderbar-box .tool-content-rule {
  width: 140px;
  height: 50px;
  display: none;
  position: absolute;
  border-radius: 5px;
  top: 100px;
  left: 90px;
}
.siderbar-box .tool-content-rule .xingzhuang {
  background-color: #454545;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  float: left;
  box-shadow: 2px 0px 0px #66678F;
}
.siderbar-box .tool-content-rule .xingzhuang img {
  -webkit-transform: translate(15px, 5px);
       -o-transform: translate(15px, 5px);
          transform: translate(15px, 5px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape {
  display: none;
  width: 200px;
  -webkit-transform: translate(20px, 5px);
       -o-transform: translate(20px, 5px);
          transform: translate(20px, 5px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon {
  float: left;
  width: 50px;
  height: 50px;
  background-color: #454545;
  border-radius: 5px;
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon .s-none {
  -webkit-transform: translate(13px, 13px);
       -o-transform: translate(13px, 13px);
          transform: translate(13px, 13px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon .s-line {
  -webkit-transform: translate(13px, 10px);
       -o-transform: translate(13px, 10px);
          transform: translate(13px, 10px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon .s-rect {
  -webkit-transform: translate(15px, 15px);
       -o-transform: translate(15px, 15px);
          transform: translate(15px, 15px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon .s-circle {
  -webkit-transform: translate(15px, 15px);
       -o-transform: translate(15px, 15px);
          transform: translate(15px, 15px);
}
.siderbar-box .tool-content-rule .xingzhuang .shape .shape-icon:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-rule .xingzhuang:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-rule .xingzhuang:hover .shape {
  display: block;
}
.siderbar-box .tool-content-rule .daxiao {
  background-color: #454545;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  float: left;
}
.siderbar-box .tool-content-rule .daxiao img {
  -webkit-transform: translate(10px, 5px);
       -o-transform: translate(10px, 5px);
          transform: translate(10px, 5px);
}
.siderbar-box .tool-content-rule .daxiao .size {
  display: none;
  width: 250px;
  -webkit-transform: translate(20px, 5px);
       -o-transform: translate(20px, 5px);
          transform: translate(20px, 5px);
}
.siderbar-box .tool-content-rule .daxiao .size .size-icon {
  float: left;
  width: 50px;
  height: 50px;
  background-color: #454545;
  border-radius: 5px;
}
.siderbar-box .tool-content-rule .daxiao .size .size-icon span {
  color: white;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 45px;
  margin-left: 5px;
}
.siderbar-box .tool-content-rule .daxiao .size .size-icon:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-rule .daxiao:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-rule .daxiao:hover .size {
  display: block;
}
.siderbar-box .tool-content-mask {
  width: 140px;
  height: 50px;
  display: none;
  position: absolute;
  border-radius: 5px;
  top: 205px;
  left: 90px;
}
.siderbar-box .tool-content-mask .yanse {
  background-color: #454545;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  float: left;
  box-shadow: 2px 0px 0px #66678F;
}
.siderbar-box .tool-content-mask .yanse img {
  -webkit-transform: translate(10px, 5px);
       -o-transform: translate(10px, 5px);
          transform: translate(10px, 5px);
}
.siderbar-box .tool-content-mask .yanse .color {
  display: none;
  width: 250px;
  -webkit-transform: translate(20px, 5px);
       -o-transform: translate(20px, 5px);
          transform: translate(20px, 5px);
}
.siderbar-box .tool-content-mask .yanse .color div:nth-child(1):hover {
  background-color: #681C1C;
}
.siderbar-box .tool-content-mask .yanse .color div:nth-child(2):hover {
  background-color: #1C4468;
}
.siderbar-box .tool-content-mask .yanse .color div:nth-child(3):hover {
  background-color: #66678F;
}
.siderbar-box .tool-content-mask .yanse .color div:nth-child(4):hover {
  background-color: #4D6661;
}
.siderbar-box .tool-content-mask .yanse .color div:nth-child(5):hover {
  background-color: #1a1a1a;
}
.siderbar-box .tool-content-mask .yanse .color .color-icon {
  float: left;
  width: 50px;
  height: 50px;
  background-color: #454545;
  border-radius: 5px;
}
.siderbar-box .tool-content-mask .yanse .color .color-icon span {
  color: white;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 45px;
  margin-left: 18px;
}
.siderbar-box .tool-content-mask .yanse:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-mask .yanse:hover .color {
  display: block;
}
.siderbar-box .tool-content-mask .toumingdu {
  background-color: #454545;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  float: left;
}
.siderbar-box .tool-content-mask .toumingdu img {
  -webkit-transform: translate(0px, 10px);
       -o-transform: translate(0px, 10px);
          transform: translate(0px, 10px);
}
.siderbar-box .tool-content-mask .toumingdu .opacity {
  display: none;
  width: 250px;
  -webkit-transform: translate(20px, 10px);
       -o-transform: translate(20px, 10px);
          transform: translate(20px, 10px);
}
.siderbar-box .tool-content-mask .toumingdu .opacity div:nth-child(1):hover {
  background-color: #3B3B47;
}
.siderbar-box .tool-content-mask .toumingdu .opacity div:nth-child(2):hover {
  background-color: #47475b;
}
.siderbar-box .tool-content-mask .toumingdu .opacity div:nth-child(3):hover {
  background-color: #545470;
}
.siderbar-box .tool-content-mask .toumingdu .opacity div:nth-child(4):hover {
  background-color: #5C5D7E;
}
.siderbar-box .tool-content-mask .toumingdu .opacity div:nth-child(5):hover {
  background-color: #66678F;
}
.siderbar-box .tool-content-mask .toumingdu .opacity .opacity-icon {
  float: left;
  width: 50px;
  height: 50px;
  background-color: #454545;
  border-radius: 5px;
}
.siderbar-box .tool-content-mask .toumingdu .opacity .opacity-icon span {
  color: white;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 45px;
  margin-left: 12px;
}
.siderbar-box .tool-content-mask .toumingdu:hover {
  background-color: #A5A6F6;
}
.siderbar-box .tool-content-mask .toumingdu:hover .opacity {
  display: block;
}
.siderbar-box .tool-content-AI {
  background-color: #282828;
  height: 55px;
  display: none;
  position: absolute;
  padding: 10px;
  border-radius: 5px;
  top: 203px;
  left: 90px;
}
.siderbar-box .tool-content-AI img {
  margin: 5px;
}
.siderbar-box:hover .tool-content {
  display: block;
}
.siderbar-box:hover .tool-content-rule {
  display: block;
}
.siderbar-box:hover .tool-content-AI {
  display: block;
}
.siderbar-box:hover .tool-content-mask {
  display: block;
}
.title-color {
  color: #00a0e9;
  font-weight: bold;
}
.small-down {
  -webkit-transform: translateY(5px);
       -o-transform: translateY(5px);
          transform: translateY(5px);
}
.compare-rule {
  -webkit-transform: translateX(-40px);
       -o-transform: translateX(-40px);
          transform: translateX(-40px);
}
