.org-tree-container {
  display: inline-block;
  padding: 15px;
  background-color: #fff;
}
.org-tree {
  display: table;
  text-align: center;
}
.org-tree:before,
.org-tree:after {
  content: '';
  display: table;
}
.org-tree:after {
  clear: both;
}
.org-tree-node,
.org-tree-node-children {
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.org-tree-node:before,
.org-tree-node-children:before,
.org-tree-node:after,
.org-tree-node-children:after {
  transition: all 0.35s;
}
.org-tree-node-label {
  position: relative;
  display: inline-block;
}
.org-tree-node-label .org-tree-node-label-inner {
  padding: 10px 15px;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
.org-tree-node-btn {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 20px;
  height: 20px;
  z-index: 10;
  margin-left: -11px;
  margin-top: 9px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.35s ease;
}
.org-tree-node-btn:hover {
  background-color: #e7e8e9;
  transform: scale(1.15);
}
.org-tree-node-btn:before,
.org-tree-node-btn:after {
  content: '';
  position: absolute;
}
.org-tree-node-btn:before {
  top: 50%;
  left: 4px;
  right: 4px;
  height: 0;
  border-top: 1px solid #ccc;
}
.org-tree-node-btn:after {
  top: 4px;
  left: 50%;
  bottom: 4px;
  width: 0;
  border-left: 1px solid #ccc;
}
.org-tree-node-btn.expanded:after {
  border: none;
}
.org-tree-node {
  padding-top: 20px;
  display: table-cell;
  vertical-align: top;
}
.org-tree-node.is-leaf,
.org-tree-node.collapsed {
  padding-left: 10px;
  padding-right: 10px;
}
.org-tree-node:before,
.org-tree-node:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 19px;
}
.org-tree-node:after {
  left: 50%;
  border-left: 1px solid #ddd;
}
.org-tree-node:not(:first-child):before,
.org-tree-node:not(:last-child):after {
  border-top: 1px solid #ddd;
}
.collapsable .org-tree-node.collapsed {
  padding-bottom: 30px;
}
.collapsable .org-tree-node.collapsed .org-tree-node-label:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 50%;
  height: 20px;
  border-right: 1px solid #ddd;
}
.org-tree > .org-tree-node {
  padding-top: 0;
}
.org-tree > .org-tree-node:after {
  border-left: 0;
}
.org-tree-node-children {
  padding-top: 20px;
  display: table;
}
.org-tree-node-children:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 20px;
  border-left: 1px solid #ddd;
}
.org-tree-node-children:after {
  content: '';
  display: table;
  clear: both;
}
.horizontal .org-tree-node {
  display: table-cell;
  float: none;
  padding-top: 0;
  padding-left: 20px;
}
.horizontal .org-tree-node.is-leaf,
.horizontal .org-tree-node.collapsed {
  padding-top: 10px;
  padding-bottom: 10px;
}
.horizontal .org-tree-node:before,
.horizontal .org-tree-node:after {
  width: 19px;
  height: 50%;
}
.horizontal .org-tree-node:after {
  top: 50%;
  left: 0;
  border-left: 0;
}
.horizontal .org-tree-node:only-child:before {
  top: 1px;
  border-bottom: 1px solid #ddd;
}
.horizontal .org-tree-node:not(:first-child):before,
.horizontal .org-tree-node:not(:last-child):after {
  border-top: 0;
  border-left: 1px solid #ddd;
}
.horizontal .org-tree-node:not(:only-child):after {
  border-top: 1px solid #ddd;
}
.horizontal .org-tree-node .org-tree-node-inner {
  display: table;
}
.horizontal .org-tree-node-label {
  display: table-cell;
  vertical-align: middle;
}
.horizontal.collapsable .org-tree-node.collapsed {
  padding-right: 30px;
}
.horizontal.collapsable .org-tree-node.collapsed .org-tree-node-label:after {
  top: 0;
  left: 100%;
  width: 20px;
  height: 50%;
  border-right: 0;
  border-bottom: 1px solid #ddd;
}
.horizontal .org-tree-node-btn {
  top: 50%;
  left: 100%;
  margin-top: -11px;
  margin-left: 9px;
}
.horizontal > .org-tree-node:only-child:before {
  border-bottom: 0;
}
.horizontal .org-tree-node-children {
  display: table-cell;
  padding-top: 0;
  padding-left: 20px;
}
.horizontal .org-tree-node-children:before {
  top: 50%;
  left: 0;
  width: 20px;
  height: 0;
  border-left: 0;
  border-top: 1px solid #ddd;
}
.horizontal .org-tree-node-children:after {
  display: none;
}
.horizontal .org-tree-node-children > .org-tree-node {
  display: block;
}
.content_box {
  width: 100%;
  margin: 0 auto;
}
.theme_color {
  color: #FF6800 !important;
}
.pointer {
  cursor: pointer;
}
.row_flex {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.column_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ant-popover-inner-content {
  padding: 0 !important;
}
.one_level_title {
  width: 100%;
  height: 48px;
  background: #ffffff;
  margin: 10px 0;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  color: #FF6800;
  font-weight: bold;
  line-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.one_level_title::before {
  content: "";
  width: 4px;
  height: 22px;
  background: #FF6800;
  border-radius: 0 3px 3px 0;
  position: absolute;
  left: 8px;
  top: 13px;
}
.one_level_title .more {
  font-size: 10px;
  color: #FF6800;
  font-weight: normal;
  cursor: pointer;
}
.one_level_title.border {
  border-bottom: 1px solid #F0F0F0;
}
.two_level_title {
  width: 100%;
  height: 38px;
  background: #ffffff;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #666666;
  font-weight: bold;
}
.two_level_title .more {
  transform: scale(0.83);
  color: #FF6800;
  font-weight: normal;
  cursor: pointer;
}
.two_level_title.border {
  border-bottom: 1px solid #F0F0F0;
}
.filter__row {
  display: flex;
}
.filter__row .filter__label {
  width: 80px;
  line-height: 30px;
  color: #999999;
  font-size: 12px;
}
.filter__row .filter__con {
  flex: 1;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}
.filter__row .filter__con > li {
  float: left;
  margin-right: 30px;
  font-size: 12px;
  color: #333333;
  line-height: 30px;
  cursor: pointer;
}
.filter__row .filter__con > li.active {
  color: #FF6800;
}
.map_mark_icon {
  display: inline-block;
  width: auto;
  height: auto;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.map_mark_icon .mark_icon {
  display: inline-block;
  width: 38px;
  height: 51px;
  position: relative;
  font-size: 0;
}
.map_mark_icon .mark_icon .circle {
  border-radius: 50%;
}
.map_mark_icon .mark_icon .circle:nth-child(1) {
  width: 38px;
  height: 38px;
  background: #ff6800;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.map_mark_icon .mark_icon .circle:nth-child(2) {
  width: 32px;
  height: 32px;
  background: #FFDD02;
  position: absolute;
  left: 3px;
  top: 3px;
  z-index: 2;
}
.map_mark_icon .mark_icon .circle:nth-child(3) {
  width: 26px;
  height: 26px;
  background: #39A2FF;
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 3;
}
.map_mark_icon .mark_icon .circle:nth-child(4) {
  width: 20px;
  height: 20px;
  background: #7938FF;
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 4;
}
.map_mark_icon .mark_icon .circle:nth-child(5) {
  width: 15px;
  height: 15px;
  background: #7938FF;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 5;
}
.map_mark_icon .mark_icon .triangle {
  width: 0;
  height: 0;
  border-top: 17px solid #ff6800;
  border-left: 13px transparent solid;
  border-right: 13px transparent solid;
  border-bottom: 17px transparent solid;
  position: absolute;
  left: 6px;
  bottom: -15px;
}
.map_mark_icon .mark_icon > .num {
  position: absolute;
  left: 50%;
  top: 5px;
  color: #ffffff;
  z-index: 10;
  font-size: 18px;
  margin-left: -4px;
  margin-bottom: 0;
  text-shadow: 1px 1px 1px #000000;
}
.map_mark_icon > .name {
  font-size: 12px;
  color: #751313;
  font-weight: bold;
  margin-bottom: 0;
  white-space: nowrap;
}
.wangEditor {
  font-size: 16px;
  color: #333333;
  word-wrap: break-word;
  /* table 样式 */
  /* blockquote 样式 */
  /* code 样式 */
  /* ul ol 样式 */
}
.wangEditor table {
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.wangEditor table td,
.wangEditor table th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 3px 5px;
  height: 30px;
}
.wangEditor table th {
  border-bottom: 2px solid #ccc;
  text-align: center;
  background-color: #f1f1f1;
}
.wangEditor blockquote {
  display: block;
  border-left: 8px solid #d0e5f2;
  padding: 5px 10px;
  margin: 10px 0;
  line-height: 1.4;
  font-size: 100%;
  background-color: #f1f1f1;
}
.wangEditor code {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  background-color: #f1f1f1;
  border-radius: 3px;
  padding: 3px 5px;
  margin: 0 3px;
}
.wangEditor pre code {
  display: block;
}
.wangEditor ul,
.wangEditor ol {
  margin: 10px 0 10px 20px;
}
.wangEditor img {
  max-width: 100%;
}
.default_page {
  height: 100%;
  min-height: 500px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.default_page img {
  width: 124px;
  margin-bottom: 25px;
}
.default_page p {
  font-size: 16px;
  line-height: 22px;
  color: #666666;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
.breadcrumb_box .ant-breadcrumb-link {
  cursor: pointer;
}
.select-company-popover .ant-popover-arrow {
  display: none;
}
.select-company-popover .company {
  min-width: 100px;
  max-height: 200px;
  overflow: auto;
}
.select-company-popover .company .company-box {
  margin: 0;
  padding: 5px 12px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: normal;
  font-size: 14px;
  cursor: pointer;
}
.select-company-popover .company .company-box:hover {
  background-color: #fff4e6;
}
.select-company-popover .blank-is-replaced {
  height: 32px;
}
.select-company-popover .log-out {
  width: 100%;
  position: absolute;
  bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 5px;
}
.select-company-popover .log-out:hover {
  background-color: #fff4e6;
}
.merchant_staff .member_tap {
  width: 100%;
  height: 48px;
  display: flex;
  background-color: #f4f5f8;
  border-bottom: 2px solid #FF6800;
  box-sizing: border-box;
  margin-bottom: 0;
}
.merchant_staff .member_tap li {
  min-width: 120px;
  height: 100%;
  text-align: center;
  line-height: 48px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px;
}
.merchant_staff .member_tap .li_active {
  background-color: #fff;
  color: #FF6800;
}
.merchant_staff .merchant_staff_con {
  padding: 20px;
}
.merchant_staff .merchant_staff_con .title {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
}
.merchant_staff .merchant_staff_con .staff_con {
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}
.merchant_staff .merchant_staff_con .staff_list .headImg {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.merchant_staff .merchant_staff_con .staff_list .ant-table-tbody > tr {
  background: #ffffff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.07);
}
.merchant_staff .merchant_staff_con .staff_list .ant-table-thead > tr > th {
  background-color: #fff;
  border: 0;
  margin-bottom: 10px;
}
.merchant_staff .merchant_staff_con .staff_list .btns {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.merchant_staff .merchant_staff_con .staff_list .edit {
  background: #FF6800;
  color: #fff;
  min-width: 88px;
  border-radius: 20px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  margin-right: 20px;
  padding: 0 5px;
}
.merchant_staff .merchant_staff_con .staff_list .edit i {
  margin-right: 10px;
}
.merchant_staff .merchant_staff_con .staff_list .delete {
  background: #f4f5f8;
  min-width: 88px;
  border-radius: 20px;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 5px;
}
.merchant_staff .merchant_staff_con .staff_list .delete i {
  margin-right: 10px;
}
.merchant_staff .org-tree-node-label {
  white-space: nowrap;
}
.merchant_staff .bg-white {
  background-color: white;
}
.merchant_staff .bg-orange {
  background-color: orange;
}
.merchant_staff .bg-gold {
  background-color: gold;
}
.merchant_staff .bg-gray {
  background-color: gray;
}
.merchant_staff .bg-lightpink {
  background-color: lightpink;
}
.merchant_staff .bg-chocolate {
  background-color: chocolate;
}
.merchant_staff .bg-tomato {
  background-color: tomato;
}
.merchant_staff a {
  color: #333333;
}
.merchant_staff .park_politics___page {
  height: 72px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  padding-right: 20px;
}
.merchant_staff .park_politics___page > span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  margin-right: 10px;
}
.org-tree-container {
  max-width: 950px;
  overflow: auto;
}
#edit_user__modal_work_add .ant-modal-header {
  height: 100px;
}
#edit_user__modal_work_add .ant-select-selection--single {
  height: 40px;
}
#edit_user__modal_work_add .ant-select-selection--single .ant-select-selection__rendered {
  height: 100%;
  line-height: 40px;
}
#edit_user__modal_work_add .name {
  font-size: 14px;
  height: 40px;
  line-height: 40px;
}
#edit_user__modal_work_add input {
  height: 40px;
}
#edit_user__modal_work_add .code {
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  background: #FF6800;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}
#edit_user__modal_work_add .ant-modal-title {
  text-align: center !important;
  line-height: 70px;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
}
#edit_user__modal_work_add .ant-modal-footer {
  height: 94px;
}
#edit_user__modal_work_add .ant-modal-footer > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#edit_user__modal_work_add .ant-modal-footer > div button {
  height: 55px;
  width: 230px;
}
#edit_user__modal_work_add .ant-col-4 {
  text-align: right;
}

