/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
:root {
  --primary-color: #1890FF;
  --component-background: #ffffff;
  --text-color: rgba(0, 0, 0, 0.65);
  --text-color-secondary: rgba(0, 0, 0, 0.45);
  --text-color-inverse: #fff;
  --icon-color: inherit;
  --icon-color-hover: rgba(0, 0, 0, 0.75);
  --heading-color: rgba(0, 0, 0, 0.85);
  --heading-color-dark: #ffffff;
  --text-color-dark: rgba(255, 255, 255, 0.85);
  --text-color-secondary-dark: rgba(255, 255, 255, 0.65);
  --text-selection-bg: #1890FF;
  --font-size-base: 12px;
  --font-size-lg: 14px;
  --font-size-sm: 12px;
  --line-height-base: 1.5;
  --border-radius-base: 4px;
  --border-radius-sm: 2px;
  --item-active-bg: rgba(0, 0, 0, 0.1);
  --item-hover-bg: rgba(0, 0, 0, 0.05);
  --item-hover-color: rgba(0, 0, 0, 0.65);
  --link-color: #1890ff;
  --link-hover-color: #40a9ff;
  --link-active-color: #096dd9;
  --link-decoration: none;
  --link-hover-decoration: none;
  --border-color-base: #d9d9d9;
  --border-color-split: #e8e8e8;
  --border-color-inverse: #fff;
  --border-width-base: 1px;
  --border-style-base: solid;
  --outline-blur-size: 0;
  --outline-width: 2px;
  --outline-color: #1890ff;
  --background-color-light: #fafafa;
  --background-color-base: #f5f5f5;
  --disabled-color: rgba(0, 0, 0, 0.25);
  --disabled-bg: #f5f5f5;
  --disabled-color-dark: rgba(255, 255, 255, 0.35);
  --shadow-color: rgba(0, 0, 0, 0.15);
  --shadow-color-inverse: #fff;
  --box-shadow-base: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-up: 0 -2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-down: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-1-left: -2px 0 8px rgba(0, 0, 0, 0.15);
  --shadow-1-right: 2px 0 8px rgba(0, 0, 0, 0.15);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, 0.15);
  --btn-default-color: #000000;
  --btn-default-bg: #fff;
  --btn-default-border-color: rgba(0, 0, 0, 0.2);
  --btn-danger-bg: #ff4d4f;
  --error-8: #a8071a;
}
.gant-profilecard {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.gant-profilecard.left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.gant-profilecard.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.gant-profilecard-avatarBox {
  min-width: 90px;
  width: 100%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.gant-profilecard-avatarBox.left,
.gant-profilecard-avatarBox.right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 100%;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 25px;
}
.gant-profilecard-avatarBox-bg {
  position: absolute;
  top: 0;
  height: 100px;
  left: 0;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.gant-profilecard-avatarBox-bg.left,
.gant-profilecard-avatarBox-bg.right {
  height: 100%;
}
.gant-profilecard-avatarBox-avatar {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 9;
  -webkit-box-shadow: 0 0 0 5px rgba(128, 128, 128, 0.1);
          box-shadow: 0 0 0 5px rgba(128, 128, 128, 0.1);
}
.gant-profilecard-avatarBox-avatar i {
  display: block;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
}
.gant-profilecard-avatarBox-avatar i svg {
  height: 40%;
  width: 40%;
  color: #fefefe;
}
.gant-profilecard-avatarBox-avatar.left,
.gant-profilecard-avatarBox-avatar.right {
  width: 70px;
  height: 70px;
}
.gant-profilecard-fields {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-flex: 2;
  -webkit-flex: 2;
      -ms-flex: 2;
          flex: 2;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.gant-profilecard-fields > .ant-form {
  width: 100%;
}
.gant-profilecard-fields.top {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.gant-profilecard-fields .itemText {
  margin-bottom: 0;
  padding-right: 15px;
  color: #ccc;
}
.gant-profilecard-fixedtop {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #ccc;
  font-size: 24px;
}
.gant-profilecard-fixedtop.hidden {
  display: none;
}
.gant-profilecard-fixedbottom {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.gant-profilecard-fixedlefttop {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 10;
}
.gant-profilecard-fixedrighttop {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10;
}
.gant-profilecard-socialAccount {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  line-height: 1;
}
.gant-profilecard-socialAccount-anticon {
  margin-left: 6px;
}
.gant-profilecard .ant-form-item {
  margin-bottom: 0;
}
.dataform .ant-form-item-control-wrapper {
  width: calc(100% - 120px) !important;
}
.dataform .ant-form-item-label-left {
  width: 120px !important;
}
.dataform .ant-form-item-label > label {
  color: rgba(125, 125, 125, 0.65) !important;
  width: 100%;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.dataform .ant-form-item {
  color: rgba(125, 125, 125, 0.9) !important;
}
.dataform.readform .has-error .ant-form-explain {
  display: none;
}
