.editor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid rgba(58, 53, 65, 0.12);
  padding: 0 24px;
}
.editor-header .ant-divider {
  margin: 0 16px;
  height: 32px;
}
.editor-header .left {
  display: flex;
  align-items: center;
  padding-left: 26px;
  opacity: 0;
}
.editor-header .left .back {
  width: 14px;
  height: 14px;
}
.editor-header .left h2 {
  font-size: 20px;
}
.editor-header .left .confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.editor-header .left .confirm .confirm-icon {
  width: 16px;
}
.editor-header .left .confirm p {
  color: rgba(58, 53, 65, 0.38);
  opacity: 0.7;
  font-size: 15px;
}
.editor-header .language-list {
  font-weight: 500;
}
.editor-header .add-language {
  background-color: #9155fd;
  color: #fff;
}
.editor-header .add-language.add:hover {
  color: #fff;
  border: 1px solid transparent;
}
.add-language-popover .ant-popover-content {
  width: 240px;
}
.add-language-popover .ant-popover-content .ant-popover-inner {
  padding: 16px 0;
}
.add-language-popover .ant-popover-content .ant-popover-inner .spec {
  padding-left: 16px;
}
.add-language-popover .ant-popover-content .ant-popover-inner p {
  font-size: 16px;
  padding: 6px 0;
  line-height: 24px;
  color: rgba(58, 53, 65, 0.87);
  cursor: pointer;
}
.add-language-popover .ant-popover-content .ant-popover-inner .language {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px 6px 40px;
  font-size: 14px;
}
.add-language-popover .ant-popover-content .ant-popover-inner .language.added {
  background: rgba(58, 53, 65, 0.04);
}
.add-language-popover .ant-popover-content .ant-popover-inner .language .add-icon {
  width: 14px;
  height: 14px;
}
.context-content {
  position: absolute;
  z-index: 129;
  color: rgba(58, 53, 65, 0.87);
  width: 260px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0.5px 2px 7px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.context-content .context-item {
  position: relative;
  display: flex;
  height: 32px;
  font-size: 14px;
  align-items: center;
  padding: 0 1rem;
  gap: 1rem;
  cursor: pointer;
  justify-content: space-between;
}
.context-content .context-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.context-content .context-item .item-container {
  position: absolute;
  left: 260px;
  top: 0;
}
.context-content .context-item .item-container .item-wrapper {
  margin-left: 6px;
  width: 260px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0.5px 2px 7px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}
.context-content .context-item .item-container .item-wrapper .item {
  display: flex;
  padding: 6px 16px;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
}
.context-content .context-item .item-container .item-wrapper .item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.editor-panels {
  display: flex;
  flex: 1;
}
.editor-panels .panels-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.editor-panels .panels-list .bottom-area {
  padding: 16px;
}
.editor-panels .panels-list .bottom-area .ant-btn {
  color: #9155fd;
  border: 1px solid #9155fd;
  margin-bottom: 16px;
}
.editor-panels .panels-list .bottom-area .ant-btn:disabled {
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  background-color: rgba(0, 0, 0, 0.04);
}
.editor-panels .panels-list .ant-divider {
  margin: 32px auto;
}
.editor-panels .panels-list .EditorPanelList {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  width: 110px;
}
.editor-panels .panels-list .EditorPanelList.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.editor-panels .panels-list .EditorPanelList .text {
  color: rgba(58, 53, 65, 0.87);
  font-size: 14px;
  line-height: 24px;
}
.editor-panels .panels-list .EditorPanelList .file-change {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.editor-panels .panels-list .selected {
  color: #fff;
  background: #9155fd;
}
#EditorPanelItem {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 18px;
  color: rgba(58, 53, 65, 0.87);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
}
#EditorPanelItem .add-text {
  background: #f4f5fa;
  border-radius: 10px;
  font-size: 16px;
  line-height: 16px;
  padding: 16px 20px;
  height: 48px;
  text-align: center;
}
#EditorPanelItem .text-style {
  font-size: 16px;
  line-height: 24px;
  margin: 24px 0;
}
#EditorPanelItem .text-shape {
  display: flex;
  flex-wrap: wrap;
  max-height: 400px;
  overflow: auto;
  width: 100%;
}
#EditorPanelItem .text-shape .ant-col {
  padding: 0 12px 24px;
}
#EditorPanelItem .text-shape .shape-item {
  width: 100%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 53, 65, 0.06);
}
#EditorPanelItem .element-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 30px;
}
#EditorPanelItem .element-wrapper .element-item {
  width: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#EditorPanelItem .element-wrapper .element-item.active .icon-wrapper {
  border-radius: 4px;
  border: 1px solid rgba(145, 85, 253, 0.5);
  background: rgba(145, 85, 253, 0.08);
}
#EditorPanelItem .element-wrapper .element-item.active .text {
  color: #9155fd;
}
#EditorPanelItem .element-wrapper .element-item .icon-wrapper {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(58, 53, 65, 0.06);
  cursor: pointer;
}
#EditorPanelItem .element-wrapper .element-item .text {
  margin-top: 6px;
  color: #3a3541;
  text-align: center;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0.4px;
}
.download-modal {
  min-width: 520px;
}
.download-modal .ant-modal-content {
  padding: 40px 0 50px 0;
}
.download-modal .machine-list {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}
.download-modal .machine-list .machine-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
}
.download-modal .machine-list .machine-item .icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: #f3f3f4;
  margin-top: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.download-modal .machine-list .machine-item .machine-name {
  color: rgba(58, 53, 65, 0.87);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 10px 0;
}
.download-modal .machine-list .machine-item .size {
  color: rgba(58, 53, 65, 0.6);
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 30px;
}
.download-modal .ant-btn {
  width: 89px;
}
.download-modal .all-download {
  padding: 0 63px;
}
.download-modal .pakage-download {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: rgba(58, 53, 65, 0.87);
}
.download-modal .download-tips {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 21px;
  color: rgba(58, 53, 65, 0.6);
}
.download-modal .all-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-item-drawer .ant-drawer-mask {
  background-color: rgba(255, 255, 255, 0);
}
.panel-item-drawer .ant-drawer-header {
  padding: 0;
  border-top: 1px solid rgba(58, 53, 65, 0.12);
  background: rgba(255, 255, 255, 0.5);
  border-bottom: none;
  backdrop-filter: blur(20px);
}
.panel-item-drawer .ant-drawer-header .ant-drawer-header-title {
  justify-content: flex-end;
  margin: 0;
  height: 30px;
}
.panel-item-drawer .ant-drawer-content,
.panel-item-drawer .ant-drawer-body {
  background-color: rgba(255, 255, 255, 0);
}
.panel-item-drawer .ant-drawer-body {
  padding: 0 0 60px;
}
.panel-item-drawer .ant-drawer-content-wrapper {
  height: auto !important;
  box-shadow: none;
}
.footer-container {
  height: 60px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.footer-container .history-icon {
  width: 22px;
}
.footer-container .fit-btn {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: rgba(58, 53, 65, 0.87);
  padding: 0 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.footer-container .fit-btn.ant-popover-open .up-arrow {
  transform: rotate(180deg);
}
.footer-container .fit-btn .up-arrow {
  width: 24px;
  margin-left: 6px;
}
.fit-content .ant-divider-horizontal {
  margin: 10px 0;
}
.fit-content p {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.15px;
  cursor: pointer;
  color: rgba(58, 53, 65, 0.87);
  display: flex;
  align-items: center;
}
.fit-content p span {
  width: 42px;
}
.fit-content p img {
  width: 16px;
}
.text-drawer .ant-drawer-content-wrapper,
.image-drawer .ant-drawer-content-wrapper {
  top: 64px;
}
.text-drawer .ant-drawer-header,
.image-drawer .ant-drawer-header {
  border-bottom: none;
  padding: 16px 0;
}
.text-drawer .ant-drawer-body,
.image-drawer .ant-drawer-body {
  padding: 0;
}
.text-drawer .ant-drawer-title .ant-divider,
.image-drawer .ant-drawer-title .ant-divider {
  margin: 0;
}
.text-drawer .ant-row,
.image-drawer .ant-row {
  margin: 0 24px 16px;
}
.text-drawer .ant-row .lable,
.image-drawer .ant-row .lable {
  font-size: 14px;
  color: rgba(58, 53, 65, 0.87);
}
.text-drawer .align-wrapper,
.image-drawer .align-wrapper,
.text-drawer .vertical-wrapper,
.image-drawer .vertical-wrapper {
  height: 42px;
  background: rgba(58, 53, 65, 0.08);
  border-radius: 8px;
  padding: 2px;
}
.text-drawer .align-wrapper .ant-col,
.image-drawer .align-wrapper .ant-col,
.text-drawer .vertical-wrapper .ant-col,
.image-drawer .vertical-wrapper .ant-col {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}
.text-drawer .align-wrapper .ant-col.active,
.image-drawer .align-wrapper .ant-col.active,
.text-drawer .vertical-wrapper .ant-col.active,
.image-drawer .vertical-wrapper .ant-col.active {
  background-color: #fff;
}
.text-drawer .align-wrapper img,
.image-drawer .align-wrapper img,
.text-drawer .vertical-wrapper img,
.image-drawer .vertical-wrapper img {
  width: 18px;
}
.text-drawer .color-row,
.image-drawer .color-row {
  border: 1px solid #fff;
}
.text-drawer .color-row img,
.image-drawer .color-row img {
  width: 20px;
}
.text-drawer .color-row.border-row .color-col,
.image-drawer .color-row.border-row .color-col {
  border: 1px solid rgba(58, 53, 65, 0.12);
  border-radius: 6px;
}
.text-drawer .color-row.border-row .color-col .color-text,
.image-drawer .color-row.border-row .color-col .color-text {
  border-right: 1px solid rgba(58, 53, 65, 0.12);
}
.text-drawer .color-row.border-row .eye-col,
.image-drawer .color-row.border-row .eye-col {
  margin-left: 44px;
}
.text-drawer .eye-col,
.image-drawer .eye-col {
  margin-left: 46px;
}
.text-drawer .color-col,
.image-drawer .color-col {
  display: flex;
  align-items: center;
  padding: 5px;
}
.text-drawer .color-col .ant-color-picker-trigger,
.image-drawer .color-col .ant-color-picker-trigger {
  width: 38px;
  height: 24px;
  margin-right: 16px;
  border: 1px solid rgba(58, 53, 65, 0.12);
}
.text-drawer .color-col .ant-color-picker-color-block,
.image-drawer .color-col .ant-color-picker-color-block {
  width: 100%;
  height: 100%;
}
.text-drawer .color-col .ant-color-picker-color-block-inner,
.image-drawer .color-col .ant-color-picker-color-block-inner {
  border: none;
}
.text-drawer .color-col .color-text,
.image-drawer .color-col .color-text {
  width: 80px;
}
.text-drawer .color-col .ant-input,
.image-drawer .color-col .ant-input {
  width: 55px;
  padding: 0;
  border: none;
  outline: none;
  padding-left: 12px;
  outline-style: none;
}
.text-drawer .ant-input-number,
.image-drawer .ant-input-number {
  width: 100%;
}
.text-drawer .shadow-input-col,
.image-drawer .shadow-input-col {
  width: 91px;
  height: 36px;
  border: 1px solid rgba(58, 53, 65, 0.12);
  padding: 5px;
  border-radius: 6px;
}
.text-drawer .ant-color-picker-trigger,
.image-drawer .ant-color-picker-trigger {
  width: 44px;
  border: 1px solid rgba(58, 53, 65, 0.12);
  height: 25px;
  border-radius: 4px;
}
.text-drawer .ant-color-picker-trigger .ant-color-picker-color-block,
.image-drawer .ant-color-picker-trigger .ant-color-picker-color-block {
  width: 100%;
  height: 100%;
}
.select-wrapper {
  width: 530px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 8px 24px;
  height: 48px;
  border-radius: 6px;
  margin: 0 auto;
}
.select-wrapper .item-container {
  display: flex;
}
.select-wrapper .item-container .ant-divider {
  margin-left: 24px;
}
.select-wrapper .machine-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.select-wrapper .machine-item.active .size {
  color: #9155fd;
}
.select-wrapper .machine-item .size {
  margin-left: 12px;
  font-size: 14px;
  color: rgba(58, 53, 65, 0.87);
}
.select-wrapper .ant-divider {
  height: 100%;
}
.editor-content-wrapper {
  background-color: #f4f5fa;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 14px 0 0;
  overflow: hidden;
}
.editor-content-wrapper .select-machine-container {
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  align-items: center;
  margin-bottom: 50px;
}
.editor-content-wrapper .select-machine-container .btn-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}
.editor-content-wrapper .select-machine-container .btn-wrapper .ant-divider {
  height: 32px;
  margin: 0 16px;
}
.editor-content-wrapper .select-machine-container .btn-wrapper .translate {
  background: rgba(145, 85, 253, 0.08);
  border: 1px solid rgba(145, 85, 253, 0.5);
  color: #9155fd;
  border-radius: 4px;
  font-size: 14px;
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
}
.editor-content-wrapper .select-machine-container .btn-wrapper .translate img {
  margin-right: 9px;
}
.editor-content-wrapper .select-machine-container .btn-wrapper .translate:disabled {
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  background-color: rgba(0, 0, 0, 0.04);
}
.editor-content-wrapper .select-machine-container .add-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  flex: 1;
}
.editor-content-wrapper .select-machine-container .add-btns .ant-divider {
  height: 32px;
  margin: 0 16px;
}
.editor-content-wrapper .select-machine-container .add-btns .add-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.editor-content-wrapper .select-machine-container .add-btns .add-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(145, 85, 253, 0.5);
  background: rgba(145, 85, 253, 0.08);
  padding: 8px;
  cursor: pointer;
}
.editor-content-wrapper .select-machine-container .add-btns .add-item .icon.horizantal {
  transform: rotate(-90deg);
}
.editor-content-wrapper .select-machine-container .add-btns .add-item .info {
  color: #9155fd;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  margin-left: 8px;
  text-align: left;
}
.editor-content-wrapper .select-machine-container .add-btns .add-item .info .size-info {
  margin-top: 2px;
  width: 74px;
  height: 10px;
  overflow: hidden;
}
.editor-content-wrapper .select-machine-container .add-btns .add-item .info .size-info .text {
  width: 200%;
  font-size: 20px;
  line-height: 20px;
  transform: scale(0.5);
  transform-origin: left top;
}
.editor-content-wrapper .canvas-add-container {
  flex: 1;
  display: flex;
  position: relative;
}
.editor-content-wrapper .canvas-add-container .add-new-fram {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 32px 0;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .title-info {
  text-align: center;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .title-info .add-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: rgba(58, 53, 65, 0.87);
}
.editor-content-wrapper .canvas-add-container .add-new-fram .title-info .add-info {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(58, 53, 65, 0.6);
  margin: 12px 0 49px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper {
  display: flex;
  align-items: center;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .ant-divider {
  height: 80%;
  margin: 0 24px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content {
  flex: 1;
  width: 347px;
  background: #ffffff;
  box-shadow: 0px 2px 12px -4px rgba(58, 53, 65, 0.1), 0px 2px 12px -4px rgba(58, 53, 65, 0.08), 0px 6px 16px -4px rgba(58, 53, 65, 0.1);
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 9px;
  cursor: pointer;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content.iphone65 .add-button {
  margin: 18px 0 4px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content.iphone65 .pixels {
  margin: 4px 0 10px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content.iphone65 .size {
  margin-bottom: 16px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content.iphone65 .add-button {
  width: 46px;
  height: 46px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content.iphone65 .add-button img {
  width: 16px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .phone-icon {
  position: absolute;
  right: 20px;
  top: 17px;
  opacity: 0.6;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .phone-icon.horizantal {
  transform: rotate(90deg);
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .add-button {
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 53, 65, 0.06);
  border-radius: 100px;
  cursor: pointer;
  margin: 61px 0 24px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .add-button img {
  width: 38px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .insert {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: rgba(58, 53, 65, 0.87);
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .pixels {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffb400;
  margin: 4px 0 24px;
}
.editor-content-wrapper .canvas-add-container .add-new-fram .add-wrapper .add-content .size {
  width: 54px;
  height: 20px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), #8a8d93;
  border-radius: 64px;
  text-align: center;
  font-size: 12px;
  color: #8a8d93;
  margin-bottom: 60px;
}
.editor-content-wrapper .index-container {
  width: 100%;
  height: 50px;
  display: flex;
}
.editor-content-wrapper .index-container .index-wrapper {
  padding-left: 24px;
  display: flex;
  flex-wrap: nowrap;
  transform-origin: left top;
}
.editor-content-wrapper .index-container .index-wrapper .index-item {
  margin-right: 24px;
  padding: 0 12px;
  font-size: 18px;
  line-height: 24px;
  color: rgba(58, 53, 65, 0.6);
  display: flex;
  justify-content: space-between;
}
.editor-content-wrapper .index-container .index-wrapper .index-item .switch-icon {
  cursor: pointer;
}
.editor-content-wrapper .index-container .index-wrapper .index-item .switch-icon.disabled {
  cursor: not-allowed;
}
.editor-content-wrapper .copy-translate-containner {
  position: absolute;
  z-index: 100;
  height: 30px;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  line-height: 13px;
  transform-origin: left top;
}
.editor-content-wrapper .copy-translate-containner .btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.editor-content-wrapper .copy-translate-containner .ant-btn {
  display: flex;
  align-items: center;
  padding: 5px 8px;
}
.editor-content-wrapper .copy-translate-containner .copy-btn {
  position: relative;
  margin-right: 12px;
}
.editor-content-wrapper .copy-translate-containner .copy-btn .ant-select.ant-cascader {
  position: absolute;
  left: 0;
  top: 0;
  width: 95px;
  opacity: 0;
}
.editor-content-wrapper .copy-translate-containner .copy-btn .ant-select-arrow {
  display: none;
}
.copy-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: rgba(58, 53, 65, 0.87);
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.copy-text img {
  margin-right: 6px;
}
:where(.css-dev-only-do-not-override-w8mnev).ant-cascader-dropdown .ant-cascader-menu {
  height: auto !important;
}
.preview-modal .ant-modal-content,
.preview-modal .ant-modal-body {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.preview-modal .ant-modal-body {
  flex: 1;
}
.preview-modal .ant-modal-body .image-container {
  padding: 16px;
  background: #f4f5fa;
  flex: 1;
}
.form-row-wrapper {
  position: relative;
}
.form-row-wrapper.focus .placeholder-text {
  color: #9155fd;
  top: -12px;
  font-size: 12px;
  z-index: 2;
  cursor: none;
}
.form-row-wrapper .placeholder-text:has(+ .ant-form-item-has-error) {
  color: #ff4c51 !important;
}
.form-row-wrapper .placeholder-text {
  position: absolute;
  color: rgba(58, 53, 65, 0.38);
  font-size: 16px;
  line-height: 24px;
  height: 24px;
  left: 12px;
  top: 16px;
  transition: all 0.1s;
  display: inline-block;
  background: #fff;
  padding: 0 2px;
  cursor: text;
  z-index: 0;
}
.form-row-wrapper .ant-form-item {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-input-affix-wrapper-focused,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-input:focus,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-input:hover,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-select-selector:focus,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-select-selector:hover,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-input-password:focus,
.form-row-wrapper .ant-form-item.ant-form-item-has-error .ant-input-password:hover {
  border-color: #ff4c51 !important;
}
.form-row-wrapper .ant-form-item .ant-input-status-error:not(.ant-input-disabled):not(.ant-input-borderless).ant-input,
.form-row-wrapper .ant-form-item .ant-input-affix-wrapper-status-error {
  border-color: #ff4c51 !important;
}
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-select-selector {
  height: 54px;
  padding: 15px 12px;
  box-shadow: none;
}
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-select-selector,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-affix-wrapper {
  background-color: rgba(255, 255, 255, 0);
}
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-affix-wrapper {
  padding: 0 14px 0 0;
}
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-password {
  position: static;
}
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-affix-wrapper-focused,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input:focus,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input:hover,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-select-focused .ant-select-selector,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-select:hover .ant-select-selector,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-password:focus,
.form-row-wrapper .ant-form-item .ant-form-item-control-input-content .ant-input-password:hover {
  border-color: #9155fd !important;
  box-shadow: none;
}
.form-row-wrapper .ant-form-item .ant-form-item-explain-error {
  display: none;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58, 53, 65, 0.87);
  font-size: 20px;
  font-weight: 500;
}
.logo .icon {
  width: 30px;
  margin-right: 10px;
}
#login {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-image: linear-gradient(177deg, #f4f5fa 0%, #f4f5fa 80%, rgba(58, 53, 65, 0.07) 80%);
}
#login .icon-left,
#login .icon-right {
  position: absolute;
  z-index: 2;
  bottom: 0;
}
#login .icon-left {
  left: 20px;
  width: 186px;
}
#login .icon-right {
  right: 0;
  width: 377px;
}
#login .login-wrapper {
  width: 450px;
  padding: 32px 32px 40px 32px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 6px 16px -4px rgba(58, 53, 65, 0.1), 0px 2px 12px -4px rgba(58, 53, 65, 0.08), 0px 2px 12px -4px rgba(58, 53, 65, 0.1);
}
#login .login-wrapper .login-header {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58, 53, 65, 0.87);
  font-size: 24px;
  font-weight: 600;
}
#login .login-wrapper .login-header .login-icon {
  width: 36px;
  margin-right: 12px;
}
#login .login-wrapper .login-spec {
  margin: 38px 0 24px;
}
#login .login-wrapper .login-spec h3 {
  color: rgba(58, 53, 65, 0.87);
  font-size: 24px;
  height: 38px;
  font-weight: 600;
  line-height: 32px;
}
#login .login-wrapper .login-spec p {
  color: rgba(58, 53, 65, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
#login .login-wrapper .login-spec .phone-number {
  font-size: 16px;
  color: rgba(58, 53, 65, 0.87);
  font-weight: 600;
}
#login .login-wrapper .ant-space {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 !important;
  margin-bottom: 12px;
}
#login .login-wrapper .ant-space .ant-space-item:first-child {
  flex: 1;
}
#login .login-wrapper .ant-space .ant-form-item {
  margin-bottom: 0;
}
#login .login-wrapper .ant-space .ant-form-item .ant-form-item-control-input-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
#login .login-wrapper .ant-space .ant-form-item .ant-form-item-control-input-content .ant-input {
  flex: 1;
  border-radius: 6px 0 0 6px;
}
#login .login-wrapper .ant-space .ant-form-item .ant-form-item-control-input-content .ant-input::-webkit-input-placeholder {
  color: rgba(58, 53, 65, 0.38);
  font-size: 16px;
  line-height: 24px;
}
#login .login-wrapper .ant-space .send-captrue {
  height: 54px;
  width: 102px;
  border-radius: 0 6px 6px 0;
}
#login .login-wrapper .ant-space .send-captrue:disabled {
  background: #e7e6e8;
}
#login .login-wrapper .ant-space .send-captrue:disabled:hover {
  background: #e7e6e8 !important;
  color: rgba(0, 0, 0, 0.25);
}
#login .login-wrapper .ant-form-item.forget {
  margin-bottom: 0;
}
#login .login-wrapper .ant-form-item.forget .ant-form-item-control-input-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#login .login-wrapper .ant-form-item.forget .ant-checkbox-wrapper:hover .ant-checkbox-inner,
#login .login-wrapper .ant-form-item.forget .ant-checkbox-wrapper:checked .ant-checkbox-inner {
  border-color: #9155fd !important;
}
#login .login-wrapper .ant-form-item.forget .ant-checkbox-checked .ant-checkbox-inner {
  background-color: #9155fd;
  border-color: #9155fd !important;
}
#login .login-wrapper .forget-password {
  width: 100px;
  text-align: right;
}
#login .login-wrapper .forget-password:hover {
  color: #9155fd;
}
#login .login-wrapper .submit-item .ant-btn {
  width: 100%;
}
#login .ant-btn {
  height: 42px;
}
#login .ant-space-item .ant-form-item {
  margin-bottom: 0;
}
#login .send-phone-captrue {
  /* 验证码显示框 */
  /* 每一个验证码输入框的样式 */
  /* 最后一个验证码输入框margin-right为0 */
  /* 将input输入框隐藏看不见 */
}
#login .send-phone-captrue .number-box {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 24px;
}
#login .send-phone-captrue .input-item {
  margin-right: 16px;
  width: 50px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(58, 53, 65, 0.87);
  font-family: Inter;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  border: 1px solid rgba(58, 53, 65, 0.12);
}
#login .send-phone-captrue .input-item.focus {
  border-color: #9155fd;
}
#login .send-phone-captrue .input-item.error {
  border-color: #ff4c51;
}
#login .send-phone-captrue .input-item:last-child {
  margin-right: 0px;
}
#login .send-phone-captrue .input-value {
  margin-left: -750px;
  position: absolute;
  z-index: 900;
  z-index: -99;
  opacity: 0;
}
#login .send-phone-captrue .resend-email {
  text-align: center;
  margin-top: 24px;
  color: rgba(58, 53, 65, 0.6);
  font-size: 16px;
  line-height: 24px;
}
#login .send-phone-captrue .resend-email .ant-btn-link {
  height: 24px;
}
#login .send-phone-captrue .resend-email .ant-btn-link:hover,
#login .send-phone-captrue .resend-email .ant-btn-link:focus {
  color: #9155fd;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 64px;
  background-color: #fff;
  border-bottom: 0.5px solid rgba(58, 53, 65, 0.12);
}
.header-wrapper .logo,
.header-wrapper .avater {
  flex: 1;
}
.header-wrapper .logo {
  justify-content: flex-start;
}
.header-wrapper .avater {
  display: flex;
  justify-content: flex-end;
}
.header-wrapper .link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-wrapper .link-wrapper .ant-tag {
  padding: 10px 22px;
  border-radius: 6px;
  margin-right: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-wrapper .link-wrapper .ant-tag:hover svg,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked svg,
.header-wrapper .link-wrapper .ant-tag:hover path,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked path,
.header-wrapper .link-wrapper .ant-tag:hover rect,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked rect {
  stroke: #fff;
}
.header-wrapper .link-wrapper .ant-tag:hover .home path,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked .home path {
  stroke: rgba(255, 255, 255, 0);
}
.header-wrapper .link-wrapper .ant-tag:hover .setting path,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked .setting path,
.header-wrapper .link-wrapper .ant-tag:hover .home path,
.header-wrapper .link-wrapper .ant-tag.ant-tag-checkable-checked .home path {
  fill: #fff;
}
.header-wrapper .link-wrapper .text {
  margin-left: 10px;
}
#home {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #f4f5fa;
  display: flex;
  flex-direction: column;
}
#home .home-container {
  flex: 1;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}
.react-colorful__saturation-pointer {
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
}
.react-colorful__hue {
  height: 20px !important;
  margin-top: 0.5rem;
  border-radius: 0 !important;
}
.react-colorful__pointer .react-colorful__hue-pointer {
  width: 20px;
  height: 20px;
  border-radius: 0 !important;
}
.react-colorful__hue .react-colorful__hue-pointer {
  width: 20px;
  height: 20px;
  border-radius: 0 !important;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  appearance: textfield;
}
.react-player video {
  max-height: 740px;
}
.ant-btn-default {
  color: #8a8d93;
}
.ant-btn-default:hover {
  color: #8a8d93 !important;
  border-color: #d9d9d9 !important;
}
.ant-btn-link {
  color: #9155fd;
}
.ant-spin-dot-item {
  background-color: #9155fd !important;
}
.ant-tag {
  padding: 8px 10px;
  color: rgba(58, 53, 65, 0.87);
  font-size: 14px;
  line-height: 24px;
  border: none;
}
.ant-tag:hover {
  background-color: #9155fd !important;
  color: #fff !important;
}
.ant-tag-checkable-checked {
  color: #fff;
}
.ant-modal-footer {
  display: flex;
  justify-content: center;
}
