.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.free-top {
  margin-top: auto;
}
.free-left {
  margin-left: auto;
}
.free-right {
  margin-right: auto;
}
.free-bottom {
  margin-bottom: auto;
}
.order-before {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}
.order-after {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.items-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.items-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.items-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.items-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.items-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.self-center {
  -ms-flex-item-align: center;
  align-self: center;
}
.self-baseline {
  -ms-flex-item-align: baseline;
  align-self: baseline;
}
.self-stretch {
  -ms-flex-item-align: stretch;
  align-self: stretch;
}
.self-start {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.self-end {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.content-start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.content-end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.content-center {
  -ms-flex-line-pack: center;
  align-content: center;
}
.content-between {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.content-around {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.content-stretch {
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.flex-min {
  min-height: 0;
  min-width: 0;
}
.flex-max {
  max-height: 100%;
  max-width: 100%;
}
.flex-golden {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 61.80339887%;
  flex: 0 1 61.80339887%;
}
.flex-initial {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.flex-none {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}
.flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}
.flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.flex-7 {
  -webkit-box-flex: 7;
  -ms-flex: 7;
  flex: 7;
}
.flex-8 {
  -webkit-box-flex: 8;
  -ms-flex: 8;
  flex: 8;
}
.flex-9 {
  -webkit-box-flex: 9;
  -ms-flex: 9;
  flex: 9;
}
.flex-10 {
  -webkit-box-flex: 10;
  -ms-flex: 10;
  flex: 10;
}
.flex-11 {
  -webkit-box-flex: 11;
  -ms-flex: 11;
  flex: 11;
}
.flex-12 {
  -webkit-box-flex: 12;
  -ms-flex: 12;
  flex: 12;
}
.grow-0 {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.grow-1 {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.grow-2 {
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.grow-3 {
  -webkit-box-flex: 3;
  -ms-flex-positive: 3;
  flex-grow: 3;
}
.grow-4 {
  -webkit-box-flex: 4;
  -ms-flex-positive: 4;
  flex-grow: 4;
}
.grow-5 {
  -webkit-box-flex: 5;
  -ms-flex-positive: 5;
  flex-grow: 5;
}
.grow-6 {
  -webkit-box-flex: 6;
  -ms-flex-positive: 6;
  flex-grow: 6;
}
.grow-7 {
  -webkit-box-flex: 7;
  -ms-flex-positive: 7;
  flex-grow: 7;
}
.grow-8 {
  -webkit-box-flex: 8;
  -ms-flex-positive: 8;
  flex-grow: 8;
}
.grow-9 {
  -webkit-box-flex: 9;
  -ms-flex-positive: 9;
  flex-grow: 9;
}
.grow-10 {
  -webkit-box-flex: 10;
  -ms-flex-positive: 10;
  flex-grow: 10;
}
.grow-11 {
  -webkit-box-flex: 11;
  -ms-flex-positive: 11;
  flex-grow: 11;
}
.grow-12 {
  -webkit-box-flex: 12;
  -ms-flex-positive: 12;
  flex-grow: 12;
}
.shrink-0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.shrink-1 {
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.shrink-2 {
  -ms-flex-negative: 2;
  flex-shrink: 2;
}
.shrink-3 {
  -ms-flex-negative: 3;
  flex-shrink: 3;
}
.shrink-4 {
  -ms-flex-negative: 4;
  flex-shrink: 4;
}
.shrink-5 {
  -ms-flex-negative: 5;
  flex-shrink: 5;
}
.shrink-6 {
  -ms-flex-negative: 6;
  flex-shrink: 6;
}
.shrink-7 {
  -ms-flex-negative: 7;
  flex-shrink: 7;
}
.shrink-8 {
  -ms-flex-negative: 8;
  flex-shrink: 8;
}
.shrink-9 {
  -ms-flex-negative: 9;
  flex-shrink: 9;
}
.shrink-10 {
  -ms-flex-negative: 10;
  flex-shrink: 10;
}
.shrink-11 {
  -ms-flex-negative: 11;
  flex-shrink: 11;
}
.shrink-12 {
  -ms-flex-negative: 12;
  flex-shrink: 12;
}
.basis-0 {
  -ms-flex-preferred-size: 0%;
  flex-basis: 0%;
}
.basis-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
}
.basis-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
}
.basis-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.basis-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.basis-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
}
.basis-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.basis-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
}
.basis-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
}
.basis-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
}
.basis-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
}
.basis-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
}
.basis-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.basis-100vw {
  -ms-flex-preferred-size: 100vw;
  flex-basis: 100vw;
}
.basis-100vh {
  -ms-flex-preferred-size: 100vh;
  flex-basis: 100vh;
}
.basis-100vmax {
  -ms-flex-preferred-size: 100vmax;
  flex-basis: 100vmax;
}
.basis-100vmin {
  -ms-flex-preferred-size: 100vmin;
  flex-basis: 100vmin;
}
.basis-golden {
  -ms-flex-preferred-size: 61.80339887%;
  flex-basis: 61.80339887%;
}
.basis-content {
  -ms-flex-preferred-size: content;
  flex-basis: content;
}
.basis-auto {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
@media (orientation: portrait) {
.flex\@portrait {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex\@portrait {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex-wrap\@portrait {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap\@portrait {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-wrap-reverse\@portrait {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}
}
@media (orientation: landscape) {
.flex\@landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.inline-flex\@landscape {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.flex-wrap\@landscape {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-nowrap\@landscape {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.flex-wrap-reverse\@landscape {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}
}
.content-wrapper {
  padding: 20px 30px;
}
.table-wrap {
  margin-top: 20px;
}
.table-wrap .wrap-item {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: #3c3c3c;
  margin: 10px 0;
  background-color: #f5f5f5;
  border: 1px solid #e8e8e8;
  text-align: center;
}
.table-wrap .wrap-item th {
  padding: 5px 0;
  font-size: 12px;
  font-weight: 400;
}
.table-wrap .item-table {
  margin: 25px 0 10px 0;
}
.table-wrap .item-table .item-order {
  border: 1px solid #ececec;
}
.table-wrap .item-table .item-order .table-desc {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  color: #3c3c3c;
}
.table-wrap .item-table .item-order .table-desc .table-title {
  background: #f1f1f1;
}
.table-wrap .item-table .item-order .table-desc .table-title td {
  padding-top: 10px;
  padding-bottom: 10px;
}
.table-wrap .item-table .item-order .table-desc .table-title td span:nth-child(1) {
  margin-left: 15px;
  margin-right: 30px;
}
.table-wrap .item-table .item-order .table-desc .table-title td span:nth-child(2) {
  margin-right: 30px;
}
.table-wrap .item-table .item-order .table-desc .bought-table {
  width: 100%;
  color: #3c3c3c;
}
.table-wrap .item-table .item-order .table-desc .bought-table td {
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #ececec;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.table-wrap .item-table .item-order .table-desc .bought-table p {
  margin: 0 !important;
  padding: 0 !important;
}
.table-wrap .item-table img {
  width: 60px;
  height: 60px;
}
.wrap-table {
  width: 100%;
  display: inline-block;
  margin: 0 0 16px;
  margin-top: 30px;
}
.table-order {
  background-color: #f2f2f2;
  border: 1px solid #d7d7d7;
  width: 150px;
  height: 50px;
  font-size: 14px;
}
.bg-table {
  width: 200px;
  background-color: #ffffff;
}
.bg-table .span-text {
  display: -webkit-box;
  word-wrap: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 0 10px;
}
.border-no-left {
  border-left: none;
}
.border-bottom {
  border-bottom: none;
}
.dec-title {
  font-weight: bold;
  font-size: 16px;
}
.title-bg {
  color: red;
}
.w5 {
  width: 5%;
}
.w6 {
  width: 6%;
}
.w8 {
  width: 8%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w16 {
  width: 16%;
}
.w18 {
  width: 18%;
}
.w20 {
  width: 20%;
}
.w30 {
  width: 30%;
}
.w40 {
  width: 40%;
}
.w50 {
  width: 50%;
}
.w60 {
  width: 60%;
}
.mt10 {
  margin-top: 10px !important;
}
.input-w200 {
  width: 260px !important;
}
th.column-money,
td.column-money {
  text-align: center !important;
}
.ant-layout-header {
  padding: 0px 50px 0px 0px !important;
}
.ant-form-item {
  margin-bottom: 10px !important;
}
.ant-table-tbody > tr > td {
  word-break: break-word;
}
.ant-table-title {
  position: relative;
  top: 1px;
  padding: 0 !important;
  border-radius: 4px 4px 0 0;
  background: #fafafa !important;
}
.ant-modal-body {
  min-height: 100px !important;
  overflow-y: auto;
}
.ant-card-head-title {
  font-size: 14px;
  color: #1c2438;
  font-weight: 700;
}
.btn {
  margin: 20px 0 0 40px;
}
.life-title span {
  font-size: 16px;
  font-weight: bold;
  margin-right: 30px;
}
.life-title span:nth-child(2) {
  color: #1890ff;
}
.item-status {
  margin-bottom: 20px;
}
.case:after,
.case:before,
.clearFixed:after,
.clearFixed:before {
  content: "";
  display: table;
  clear: both;
}
.chests {
  float: left;
}
.chests-right {
  float: right !important;
}
.table-header {
  padding: 10px 0;
  margin-left: 20px;
}
.table-header span:nth-child(1),
.table-header span:nth-child(2) {
  margin-right: 46px;
}
.table-header span:nth-child(3) {
  margin-right: 10px;
  margin-left: 20px;
}
.avatar-uploader > .ant-upload {
  width: 128px;
  height: 128px;
}
.ant-upload-select-picture-card i {
  font-size: 32px;
  color: #999;
}
.ant-upload-select-picture-card .ant-upload-text {
  margin-top: 8px;
  color: #666;
}
.item-list .ant-form-item-label label::before {
  display: inline-block;
  margin-right: 4px;
  color: #f5222d;
  font-size: 14px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: '*';
}
:global .rightExamineContent .ant-table-wrapper tr > td:first-child {
  min-width: 93px;
  max-width: 93px;
}
:global .rightExamineContent .ant-table-wrapper tr > td:not(:first-child) {
  min-width: 60px;
  max-width: 60px;
}
.user-dropdown-menu span {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.user-dropdown-menu-wrapper.ant-dropdown-menu {
  padding: 4px 0;
}
.user-dropdown-menu-wrapper.ant-dropdown-menu .ant-dropdown-menu-item {
  width: 160px;
}
.user-dropdown-menu-wrapper.ant-dropdown-menu .ant-dropdown-menu-item > .anticon:first-child,
.user-dropdown-menu-wrapper.ant-dropdown-menu .ant-dropdown-menu-item > a > .anticon:first-child,
.user-dropdown-menu-wrapper.ant-dropdown-menu .ant-dropdown-menu-submenu-title > .anticon:first-child .ant-dropdown-menu-submenu-title > a > .anticon:first-child {
  min-width: 12px;
  margin-right: 8px;
}
.alerat {
  height: 32px;
}
.alerat > .ant-alert-icon {
  top: inherit !important;
}
.el-select .el-input__inner {
  height: 32px !important;
  line-height: 32px !important;
}
.el-select .el-input__inner .el-input__icon {
  line-height: 22px;
}
.el-select .el-input__suffix {
  height: inherit !important;
}
.el-select-dropdown {
  width: 252px !important;
}

.main[data-v-6bc7c5ba] {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: #2c3e50;
  background-size: cover;
}
.main .login[data-v-6bc7c5ba] {
  width: 420px;
  background: #FFF;
  border-radius: 3px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.main .login .logo[data-v-6bc7c5ba] {
  height: 150px;
  background: #222834;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .login .logo img[data-v-6bc7c5ba] {
  width: 82px;
  margin-bottom: 10px;
}
.main .login .logo span[data-v-6bc7c5ba] {
  font-size: 18px;
  color: #ffffff;
  font-weight: bold;
}
.main .login .login-form[data-v-6bc7c5ba] {
  padding: 30px 30px 0 30px;
}
.main .login .login-form .login-form-button[data-v-6bc7c5ba] {
  background-color: #e60146;
  border-color: #e60146;
}
.main .login .login-form .login-form-forgot[data-v-6bc7c5ba] {
  float: right;
}

.quill-editor[data-v-f4bb6f22] {
  line-height: normal;
}
.quill-editor[data-v-f4bb6f22] .ql-container {
  height: 360px;
}
.quill-editor[data-v-f4bb6f22] .ql-tooltip,
.ql-editing[data-v-f4bb6f22],
.ql-flip[data-v-f4bb6f22] {
  margin-top: 0 !important;
  top: -11px !important;
  left: 200px !important;
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="12px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="12px"]::before {
  content: "12px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="14px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="14px"]::before {
  content: "14px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="16px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="16px"]::before {
  content: "16px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="18px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="18px"]::before {
  content: "18px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="20px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="20px"]::before {
  content: "20px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="22px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="22px"]::before {
  content: "22px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="24px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="24px"]::before {
  content: "24px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="26px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="26px"]::before {
  content: "26px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="28px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="28px"]::before {
  content: "28px";
}
[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-label[data-value="30px"]::before,[data-v-f4bb6f22] .ql-snow .ql-picker.ql-size .ql-picker-item[data-value="30px"]::before {
  content: "30px";
}

[class*="container__"] {
  margin-bottom: 20px;
}
.container__table {
  position: relative;
}
.container__table .table__spin {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.container__table .el-table-reset {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-right: none;
  border-bottom: none;
}
.container__table .el-table-th {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.85);
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  font-weight: 500;
}
.container__table .el-table-th,
.container__table .el-table-td {
  padding: 16px 0;
}
.container__table .el-table-td {
  height: 40px;
  font-size: 12px;
  color: #515a6e;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.container__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container__page .action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ant-upload-select-picture-card i {
  font-size: 32px;
  color: #999;
}
.ant-upload-select-picture-card .ant-upload-text {
  margin-top: 8px;
  color: #666;
}

.ui-export {
  margin-left: 10px;
}

.ui-import {
  display: inline-block;
  margin-left: 10px;
}

.container-table {
  position: relative;
}
.container-table .ant-table-body {
  border-bottom: 1px solid #e8e8e8 !important;
}
.container-table .table-page {
  position: absolute;
  left: 0;
  bottom: 20px;
}

.add-spec[data-v-4d3605e6] {
  margin: 0 10px 15px 0;
}
.add-spec-input[data-v-4d3605e6] {
  width: 150px;
}
.spec__content[data-v-4d3605e6] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 40px;
  line-height: 40px;
}
.spec__value[data-v-4d3605e6] {
  position: relative;
  margin-right: 10px;
}
.spec__value .icon-close[data-v-4d3605e6] {
  margin-left: 4px;
}
.spec__input[data-v-4d3605e6] {
  width: 80px;
  margin-right: 10px;
}
.spec__value--action[data-v-4d3605e6] {
  padding: 0;
  margin: 0;
}
.table-ov[data-v-4d3605e6] {
  height: 440px;
  overflow-y: auto;
  border-bottom: 1px solid #e8e8e8;
}
.sku__table[data-v-4d3605e6] {
  width: 100%;
  border-left: solid 1px #eee;
  border-top: solid 1px #eee;
}
.sku__table th[data-v-4d3605e6],
.sku__table td[data-v-4d3605e6] {
  text-align: center;
  min-height: 40px;
  line-height: 20px;
  padding: 10px 14px;
  border-bottom: solid 1px #eee;
  border-right: solid 1px #eee;
}
.sku__input[data-v-4d3605e6] {
  width: 70px;
}
.sku__form-item[data-v-4d3605e6] {
  padding: 0;
  margin: 0;
}

.table-img-container[data-v-20301bd9] {
  display: inline-block;
}
.item-img[data-v-20301bd9] {
  max-height: 680px;
  overflow-y: auto;
}

.file-list[data-v-f73a82a2] {
  float: left;
  text-align: center;
}
.file-list-item[data-v-f73a82a2] {
  float: left;
  width: 104px;
  margin: 0 8px 8px 0;
}
.file-list-item-info[data-v-f73a82a2] {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.file-list-item-info[data-v-f73a82a2]:before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  content: " ";
}
.file-list-item-info-actions[data-v-f73a82a2] {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}
.file-list-item-info-actions .anticon-delete[data-v-f73a82a2],
.file-list-item-info-actions .anticon-eye-o[data-v-f73a82a2] {
  z-index: 10;
  width: 16px;
  margin: 0 4px;
  color: hsla(0, 0%, 100%, 0.85);
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.file-list-item-info[data-v-f73a82a2]:hover:before {
  opacity: 1;
}
.file-list-item-info:hover .file-list-item-info-actions[data-v-f73a82a2] {
  opacity: 1;
}
.file-list-item-info-image[data-v-f73a82a2] {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.file-list-item-info-icon[data-v-f73a82a2] {
  color: #aaa;
}
.upload-file-container[data-v-f73a82a2] {
  float: left;
}
.ant-upload-picture-card-wrapper[data-v-f73a82a2] {
  width: auto;
}
.ant-upload-select-picture-card i[data-v-f73a82a2] {
  font-size: 32px;
  color: #999;
}
.ant-upload-select-picture-card .ant-upload-text[data-v-f73a82a2] {
  margin-top: 8px;
  color: #666;
}

.loading-fade-enter-active[data-v-d960adee],
.loading-fade-leave-active[data-v-d960adee] {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.loading-fade-enter[data-v-d960adee],
.loading-fade-leave-to[data-v-d960adee] {
  opacity: 0;
}
.ui-loading[data-v-d960adee] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  left: 0;
  top: 0;
  z-index: 5000;
}
.ui-loading .tip[data-v-d960adee] {
  margin-top: 2px;
  color: #1890ff;
  font-size: 12px;
}

