@charset "UTF-8";
/*
  样式规范表
*/
body, div, p, h1, h2, h3, h4, h5, h6, ul, li, dl, dt, a, input, button, textarea, select {
  margin: 0;
  padding: 0;
  outline: none;
}
html, body {
  font-family: -apple-system, system-ui, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, BlinkMacSystemFont, Helvetica Neue, Arial, PingFang SC, Hiragino Sans GB, Microsoft YaHei;
  color: #333333;
  background-color: #ffffff;
  min-width: 1210px;
  font-size: 12px;
  font-family: "HarmonyOS_Sans_SC", sans-serif;
}
a {
  text-decoration: none;
}
ul, li {
  list-style: none;
}
input {
  font: normal;
}
input:focus, a:focus {
  outline: none;
}
* {
  box-sizing: border-box;
}
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, big, cite, code, del, em, font, img, ins, small, strong, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend {
  margin: 0;
  padding: 0;
}
:root {
  --backgroundColor:#F4F4F3;
  --btnBackgroundColor:#1C1C1C;
}

/**
* 全局通用样式
*/
.overflow_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.overflow_ellipsis_two {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.flex {
  display: flex;
}
.flex_row_center_center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex_row_center_between {
  display: flex;
  justify-content: center;
  align-items: space-between;
}
.flex_row_center_around {
  display: flex;
  justify-content: center;
  align-items: space-around;
}
.flex_row_center_start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flex_row_center_end {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.flex_row_between_center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex_row_between_between {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
}
.flex_row_between_around {
  display: flex;
  justify-content: space-between;
  align-items: space-around;
}
.flex_row_between_start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.flex_row_between_end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.flex_row_around_center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.flex_row_around_between {
  display: flex;
  justify-content: space-around;
  align-items: space-between;
}
.flex_row_around_around {
  display: flex;
  justify-content: space-around;
  align-items: space-around;
}
.flex_row_around_start {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.flex_row_around_end {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.flex_row_start_center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.flex_row_start_between {
  display: flex;
  justify-content: flex-start;
  align-items: space-between;
}
.flex_row_start_around {
  display: flex;
  justify-content: flex-start;
  align-items: space-around;
}
.flex_row_start_start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex_row_start_end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.flex_row_end_center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.flex_row_end_between {
  display: flex;
  justify-content: flex-end;
  align-items: space-between;
}
.flex_row_end_around {
  display: flex;
  justify-content: flex-end;
  align-items: space-around;
}
.flex_row_end_start {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex_row_end_end {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.flex_column_center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flex_column_center_between {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
}
.flex_column_center_around {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-around;
}
.flex_column_center_start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.flex_column_center_end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}
.flex_column_between_center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.flex_column_between_between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}
.flex_column_between_around {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-around;
}
.flex_column_between_start {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.flex_column_between_end {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.flex_column_around_center {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.flex_column_around_between {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-between;
}
.flex_column_around_around {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-around;
}
.flex_column_around_start {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}
.flex_column_around_end {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}
.flex_column_start_center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.flex_column_start_between {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-between;
}
.flex_column_start_around {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-around;
}
.flex_column_start_start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex_column_start_end {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.flex_column_end_center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
.flex_column_end_between {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-between;
}
.flex_column_end_around {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-around;
}
.flex_column_end_start {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex_column_end_end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.clearfix:after, .clearfix:before {
  display: table;
  content: " ";
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* 分页的样式 start */
.sld_pagination .el-pager li.active {
  color: #1C1C1C;
}
.sld_pagination .el-pager li:hover {
  color: #1C1C1C;
}
.sld_pagination .el-input__inner:focus {
  border-color: #1C1C1C;
}

/* 分页的样式 end */
.pointer:hover {
  cursor: pointer;
}
.el-pagination {
  text-align: center;
}

/* 全局空图 start */
.sld_common_empty {
  margin: 0 auto !important;
}
.sld_common_empty .empty_img {
  width: 91px;
  margin-bottom: 15px;
}

/* 全局空图 end */
/* ElementUI-PLUS的confirm按钮样式 start */
.confirmsubmitBtn {
  background-color: var(--btnBackgroundColor) !important;
  border-color: var(--btnBackgroundColor) !important;
  width: 48%;
  height: 42px;
}
.confirmsubmitBtn span {
  color: #fff;
}
.cancelCloseBtn {
  width: 48%;
  height: 42px;
}
.cancelCloseBtn:hover {
  border-color: var(--btnBackgroundColor);
  color: var(--btnBackgroundColor);
  background-color: #fff;
}
.cancelCloseBtn:active, .cancelCloseBtn:focus {
  border-color: var(--btnBackgroundColor);
  color: var(--btnBackgroundColor);
  background-color: #fff;
}

/*  ElementUI-PLUS的confirm按钮样式 end */
/* 输入框样式start */
.el-input {
  width: 357px;
  height: 42px;
}
.el-input .el-input__inner {
  width: 100%;
  height: 42px;
  background-color: #F4F4F3;
  background: #F4F4F3;
  border-color: #D2D2D2;
}
.el-input .el-input__inner:focus {
  border-color: #1C1C1C;
}
.el-input .el-input__inner:hover {
  border-color: #1C1C1C;
}
.el-input.is-focus .el-input__inner {
  border-color: #1C1C1C;
}
.el-input .el-input__suffix .el-input__suffix-inner .el-input__count .el-input__count-inner {
  background: #F4F4F3;
}
.el-input__suffix {
  line-height: 42px;
}
select {
  background: #F4F4F3;
}
.el-dialog__footer .dialog-footer .el-button {
  width: 48%;
}
.el-dialog__footer .dialog-footer .el-button--primary {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}
.el-select-dropdown__item.selected {
  color: #1C1C1C;
}

/*输入框样式end*/
.el-dialog__header {
  padding-bottom: 20px;
  background: #EDEDED;
}
.el-dialog__header .el-dialog__title {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.el-checkbox__inner:hover {
  border-color: #1C1C1C !important;
}
.el-checkbox__input.is_focus .el-checkbox__inner {
  border-color: #1C1C1C !important;
}
.el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: #1C1C1C !important;
}
.el-popover {
  background: #f5f5f6 !important;
}
.el-popover .el-popper__arrow::after {
  background: #f5f5f6 !important;
  border-color: #f5f5f6 !important;
}
.el-popover .el-popper__arrow::before {
  background: #f5f5f6 !important;
  border-color: #f5f5f6 !important;
}
.el-popover .el-popconfirm .el-popconfirm__main .el-icon-info {
  color: #1c1c1c !important;
}
.el-button--primary {
  background-color: #1c1c1c;
  border-color: transparent;
}
.el-button--primary:hover {
  background-color: #1c1c1c;
  border-color: transparent;
}
.el-button--primary:active {
  background: #1c1c1c;
}
.el-button--text {
  color: #1c1c1d;
}
.el-button--text:hover {
  color: #1c1c1c;
}
.el-button--text:active {
  color: #1c1c1c;
}
.el-message--success {
  --el-message-font-color:#fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}
.el-message--success .el-message__icon.el-icon-success {
  color: #fff;
  --el-message-font-color:#fff;
  font-size: 23px;
}
.el-message--info {
  --el-message-font-color:#fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}
.el-message--info .el-message__icon.el-icon-success {
  color: #fff;
  --el-message-font-color:#fff;
  font-size: 23px;
}
.mouse-cover-canvas {
  position: absolute;
  top: 173px !important;
  left: 740px !important;
}
.wpwl-control {
  height: 34px;
}

@font-face {
    font-family: 'HarmonyOS_Sans_SC_Medium';
    src: url(../fonts/HarmonyOS_Sans_SC_Medium.2b2b7c89.ttf) format('truetype'); /* 根据文件格式调整 */
    font-weight: normal;
    font-style: normal;
  }
  
@font-face {
  font-family: 'HarmonyOS_Sans_SC';
  src: url(../fonts/HarmonyOS_Sans_SC.872bdb62.ttf) format('truetype'); /* 根据文件格式调整 */
  font-weight: normal;
  font-style: normal;
}
  
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Black';
  src: url(../fonts/HarmonyOS_Sans_SC_Black.8ff4ebb1.ttf) format('truetype'); /* 根据文件格式调整 */
  font-weight: normal;
  font-style: normal;
}  
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Light';
  src: url(../fonts/HarmonyOS_Sans_SC_Light.74677b06.ttf) format('truetype'); /* 根据文件格式调整 */
  font-weight: normal;
  font-style: normal;
}
  
@font-face {
  font-family: 'HarmonyOS_Sans_SC_Thin';
  src: url(../fonts/HarmonyOS_Sans_SC_Thin.0288aaa6.ttf) format('truetype'); /* 根据文件格式调整 */
  font-weight: normal;
  font-style: normal;
}
@charset "UTF-8";
/*
  样式规范表
*/
:root {
  --backgroundColor:#F4F4F3;
  --btnBackgroundColor:#1C1C1C;
}

/**
* 全局通用样式
*/
.overflow_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.overflow_ellipsis_two {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.flex {
  display: flex;
}

.flex_row_center_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex_row_center_between {
  display: flex;
  justify-content: center;
  align-items: space-between;
}

.flex_row_center_around {
  display: flex;
  justify-content: center;
  align-items: space-around;
}

.flex_row_center_start {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.flex_row_center_end {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.flex_row_between_center {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex_row_between_between {
  display: flex;
  justify-content: space-between;
  align-items: space-between;
}

.flex_row_between_around {
  display: flex;
  justify-content: space-between;
  align-items: space-around;
}

.flex_row_between_start {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.flex_row_between_end {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.flex_row_around_center {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex_row_around_between {
  display: flex;
  justify-content: space-around;
  align-items: space-between;
}

.flex_row_around_around {
  display: flex;
  justify-content: space-around;
  align-items: space-around;
}

.flex_row_around_start {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

.flex_row_around_end {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.flex_row_start_center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex_row_start_between {
  display: flex;
  justify-content: flex-start;
  align-items: space-between;
}

.flex_row_start_around {
  display: flex;
  justify-content: flex-start;
  align-items: space-around;
}

.flex_row_start_start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex_row_start_end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex_row_end_center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex_row_end_between {
  display: flex;
  justify-content: flex-end;
  align-items: space-between;
}

.flex_row_end_around {
  display: flex;
  justify-content: flex-end;
  align-items: space-around;
}

.flex_row_end_start {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex_row_end_end {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.flex_column_center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex_column_center_between {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-between;
}

.flex_column_center_around {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: space-around;
}

.flex_column_center_start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.flex_column_center_end {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.flex_column_between_center {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.flex_column_between_between {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-between;
}

.flex_column_between_around {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: space-around;
}

.flex_column_between_start {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.flex_column_between_end {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.flex_column_around_center {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.flex_column_around_between {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-between;
}

.flex_column_around_around {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: space-around;
}

.flex_column_around_start {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
}

.flex_column_around_end {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}

.flex_column_start_center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.flex_column_start_between {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-between;
}

.flex_column_start_around {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: space-around;
}

.flex_column_start_start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex_column_start_end {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}

.flex_column_end_center {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.flex_column_end_between {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-between;
}

.flex_column_end_around {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: space-around;
}

.flex_column_end_start {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex_column_end_end {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}

.clearfix:after, .clearfix:before {
  display: table;
  content: " ";
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* 分页的样式 start */
.sld_pagination .el-pager li.active {
  color: #1C1C1C;
}

.sld_pagination .el-pager li:hover {
  color: #1C1C1C;
}

.sld_pagination .el-input__inner:focus {
  border-color: #1C1C1C;
}

/* 分页的样式 end */
.pointer:hover {
  cursor: pointer;
}

.el-pagination {
  text-align: center;
}

/* 全局空图 start */
.sld_common_empty {
  margin: 0 auto !important;
}
.sld_common_empty .empty_img {
  width: 91px;
  margin-bottom: 15px;
}

/* 全局空图 end */
/* ElementUI-PLUS的confirm按钮样式 start */
.confirmsubmitBtn {
  background-color: var(--btnBackgroundColor) !important;
  border-color: var(--btnBackgroundColor) !important;
  width: 48%;
  height: 42px;
}
.confirmsubmitBtn span {
  color: #fff;
}

.cancelCloseBtn {
  width: 48%;
  height: 42px;
}
.cancelCloseBtn:hover {
  border-color: var(--btnBackgroundColor);
  color: var(--btnBackgroundColor);
  background-color: #fff;
}
.cancelCloseBtn:active, .cancelCloseBtn:focus {
  border-color: var(--btnBackgroundColor);
  color: var(--btnBackgroundColor);
  background-color: #fff;
}

/*  ElementUI-PLUS的confirm按钮样式 end */
/* 输入框样式start */
.el-input {
  width: 357px;
  height: 42px;
}
.el-input .el-input__inner {
  width: 100%;
  height: 42px;
  background-color: #F4F4F3;
  background: #F4F4F3;
  border-color: #D2D2D2;
}
.el-input .el-input__inner:focus {
  border-color: #1C1C1C;
}
.el-input .el-input__inner:hover {
  border-color: #1C1C1C;
}
.el-input.is-focus .el-input__inner {
  border-color: #1C1C1C;
}
.el-input .el-input__suffix .el-input__suffix-inner .el-input__count .el-input__count-inner {
  background: #F4F4F3;
}

.el-input__suffix {
  line-height: 42px;
}

select {
  background: #F4F4F3;
}

.el-dialog__footer .dialog-footer .el-button {
  width: 48%;
}
.el-dialog__footer .dialog-footer .el-button--primary {
  background-color: #1C1C1C;
  border-color: #1C1C1C;
}

.el-select-dropdown__item.selected {
  color: #1C1C1C;
}

/*输入框样式end*/
.el-dialog__header {
  padding-bottom: 20px;
  background: #EDEDED;
}
.el-dialog__header .el-dialog__title {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.el-checkbox__inner:hover {
  border-color: #1C1C1C !important;
}

.el-checkbox__input.is_focus .el-checkbox__inner {
  border-color: #1C1C1C !important;
}

.el-checkbox__input.is-focus .el-checkbox__inner {
  border-color: #1C1C1C !important;
}

.el-popover {
  background: #f5f5f6 !important;
}
.el-popover .el-popper__arrow::after {
  background: #f5f5f6 !important;
  border-color: #f5f5f6 !important;
}
.el-popover .el-popper__arrow::before {
  background: #f5f5f6 !important;
  border-color: #f5f5f6 !important;
}
.el-popover .el-popconfirm .el-popconfirm__main .el-icon-info {
  color: #1c1c1c !important;
}

.el-button--primary {
  background-color: #1c1c1c;
  border-color: transparent;
}
.el-button--primary:hover {
  background-color: #1c1c1c;
  border-color: transparent;
}
.el-button--primary:active {
  background: #1c1c1c;
}

.el-button--text {
  color: #1c1c1d;
}
.el-button--text:hover {
  color: #1c1c1c;
}
.el-button--text:active {
  color: #1c1c1c;
}

.el-message--success {
  --el-message-font-color:#fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}
.el-message--success .el-message__icon.el-icon-success {
  color: #fff;
  --el-message-font-color:#fff;
  font-size: 23px;
}

.el-message--info {
  --el-message-font-color:#fff;
  background-color: rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 0, 0, 0.6);
}
.el-message--info .el-message__icon.el-icon-success {
  color: #fff;
  --el-message-font-color:#fff;
  font-size: 23px;
}

.bottom_line {
  width: 100%;
  height: 2px;
  background: #1C1C1C;
  margin-top: -2px;
}
@font-face {
    font-family: "iconfont"; /* Project id 4696179 */
    src: url('//at.alicdn.com/t/c/font_4696179_4n15y9pd37b.eot?t=1732269306652'); /* IE9 */
    src: url('//at.alicdn.com/t/c/font_4696179_4n15y9pd37b.eot?t=1732269306652#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('//at.alicdn.com/t/c/font_4696179_4n15y9pd37b.woff2?t=1732269306652') format('woff2'),
         url('//at.alicdn.com/t/c/font_4696179_4n15y9pd37b.woff?t=1732269306652') format('woff'),
         url('//at.alicdn.com/t/c/font_4696179_4n15y9pd37b.ttf?t=1732269306652') format('truetype');
  }
  
  .iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .icon-youxiang:before {
    content: "\e908";
  }
  
  .icon-facebook:before {
    content: "\e669";
  }
  
  .icon-a-31gouwuche:before {
    content: "\e66a";
  }
  
  .icon-niao:before {
    content: "\e66b";
  }
  
  .icon-ziying:before {
    content: "\e65b";
  }
  
  .icon-gerenzhongxin-duihuanzhongxin:before {
    content: "\e65a";
  }
  
  .icon-instagram:before {
    content: "\e659";
  }
  
  .icon-shouji:before {
    content: "\e65c";
  }
  
  .icon-douyin:before {
    content: "\e65d";
  }
  
  .icon-home5_icon_mastercard:before {
    content: "\e658";
  }
  
  .icon-a-73show_wenhaobeifen:before {
    content: "\e65e";
  }
  
  .icon-visa-line:before {
    content: "\e660";
  }
  
  .icon-zhifubaozhifu:before {
    content: "\e661";
  }
  
  .icon-G:before {
    content: "\e662";
  }
  
  .icon-wuliu:before {
    content: "\e663";
  }
  
  .icon-pingguo:before {
    content: "\e664";
  }
  
  .icon-zitidian:before {
    content: "\e665";
  }
  
  .icon-weixinzhifu:before {
    content: "\e666";
  }
  
  .icon-geren:before {
    content: "\e667";
  }
  
  .icon-cuowu:before {
    content: "\e61c";
  }
  
  .icon-saoma:before {
    content: "\e628";
  }
  
  .icon-finish:before {
    content: "\e68d";
  }
  
  .icon-sousuo:before {
    content: "\e69b";
  }
  
  .icon-wode:before {
    content: "\e6cd";
  }
  
  .icon-bianji:before {
    content: "\e609";
  }
  
  .icon-kejian:before {
    content: "\e6a5";
  }
  
  .icon-gouwuche:before {
    content: "\e649";
  }
  
  .icon-jubao:before {
    content: "\e656";
  }
  
  .icon-lajitong:before {
    content: "\e668";
  }
  
  .icon-gerenzhongxincaichanzhongxin:before {
    content: "\e670";
  }
  
  .icon-gerenzhongxinguanzhu:before {
    content: "\e671";
  }
  
  .icon-gerenzhongxinhuiyuanzhongxin:before {
    content: "\e672";
  }
  
  .icon-gerenzhongxinkehufuwu:before {
    content: "\e673";
  }
  
  .icon-gerenzhongxinjiaoyizhongxin:before {
    content: "\e674";
  }
  
  .icon-xinzengdizhi:before {
    content: "\e680";
  }
  
  .icon-xuanweimorendizhi:before {
    content: "\e682";
  }
  
  .icon-shanchutupian:before {
    content: "\e689";
  }
  
  .icon-shouji2:before {
    content: "\e648";
  }
  
  .icon-yuanquan1:before {
    content: "\e697";
  }
  
  .icon-duihao1:before {
    content: "\e698";
  }
  
  .icon-jieshoushezhi:before {
    content: "\e62c";
  }
  
  .icon-jiaoyixiaoxi:before {
    content: "\e62d";
  }
  
  .icon-xiaoxiliebiao:before {
    content: "\e62e";
  }
  
  .icon-tuikuantuihuoxiaoxi:before {
    content: "\e633";
  }
  
  .icon-xitongxiaoxi:before {
    content: "\e637";
  }
  
  .icon-mima1:before {
    content: "\e647";
  }
  
  .icon-yanzhengma2:before {
    content: "\e732";
  }
  
  .icon-ziyuan2:before {
    content: "\e639";
  }
  
  .icon-ziyuan51:before {
    content: "\e63d";
  }
  
  .icon-ziyuan11:before {
    content: "\e69f";
  }
  
  .icon-bukejian11:before {
    content: "\e6c4";
  }
  
  .icon-ziyuan11-copy:before {
    content: "\e8c8";
  }
  
  .icon-jinzhi1:before {
    content: "\e646";
  }
  
  .icon-querenyuanzhengqueduigoutijiaochenggongwancheng:before {
    content: "\e6de";
  }
  
  .icon-ziyuan11-copy-copy:before {
    content: "\e8c9";
  }
  
  .icon-zhuce-mianshuru:before {
    content: "\e6a7";
  }
  
  .icon-genganquan:before {
    content: "\e6a8";
  }
  
  .icon-a-kuaijin1:before {
    content: "\e64f";
  }
  
  .icon-selected:before {
    content: "\e602";
  }
  
  .icon-gerenzhongxindaishouhuo:before {
    content: "\e676";
  }
  
  .icon-gerenzhongxindaifukuan:before {
    content: "\e677";
  }
  
  .icon-gerenzhongxindaipingjia:before {
    content: "\e678";
  }
  
  .icon-gerenzhongxinguanzhudianpu:before {
    content: "\e679";
  }
  
  .icon-gerenzhongxinshouhou:before {
    content: "\e67c";
  }
  
  .icon-gerenzhongxinguanzhushangpin:before {
    content: "\e67d";
  }
  
  .icon-gerenzhongxinzuji:before {
    content: "\e67f";
  }
  
  .icon-location:before {
    content: "\e65f";
  }
  
  .icon-youhuiquan:before {
    content: "\e7a3";
  }
  
  .icon-youhuiquan-2:before {
    content: "\e7a4";
  }
  
  .icon-yixuan:before {
    content: "\e606";
  }
  
  .icon-xiangxia:before {
    content: "\e6b1";
  }
  
  .icon-aixin:before {
    content: "\e8ab";
  }
  
  .icon-aixin1:before {
    content: "\e8c3";
  }
  
  .icon-zichanxiaoxi:before {
    content: "\e62a";
  }
  
  .icon-dingdan:before {
    content: "\e791";
  }
  
  .icon-fanhui:before {
    content: "\e654";
  }
  
  .icon-gerenzhongxinwodecaichan:before {
    content: "\e67e";
  }
  
  .icon-daohangdizhiweizhi:before {
    content: "\e786";
  }
  
  .icon-denglu:before {
    content: "\e7c6";
  }
  
  .icon-fabupinglun:before {
    content: "\e7c5";
  }
  
  .icon-goumaishangpin:before {
    content: "\e7c4";
  }
  
  .icon-wanshanxinxi:before {
    content: "\e7c3";
  }
  
  .icon-quanbuquanyi:before {
    content: "\e7c2";
  }
  
  .icon-jifen:before {
    content: "\e7c1";
  }
  
  .icon-yunfeiquan:before {
    content: "\e7c0";
  }
  
  .icon-youhuiquan1:before {
    content: "\e7bf";
  }
  
  .icon-fenlei:before {
    content: "\e625";
  }
  
  .icon-shangpin-:before {
    content: "\e607";
  }
  
  .icon-louceng-youjiantou:before {
    content: "\e816";
  }
  
  .icon-youhuiquan21:before {
    content: "\e834";
  }
  
  

.coverImage[data-v-0a64dbf4] {
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
}

@charset "UTF-8";
/*
  样式规范表
*/
.dyna_group[data-v-f20ffc2c] {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
}
.dyna_group.ovfl[data-v-f20ffc2c] {
  overflow: hidden;
}
.dyna_group img[data-v-f20ffc2c] {
  width: 99% !important;
  height: 99% !important;
}
