@charset "UTF-8";

/* ------------要求他们的父元素高度撑开，并且是有相对定位 ------------------------------------ */
#_eG_root {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100001;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-size: 14px;
}
._eG_guide-item {
  position: absolute;
  top: 300px;
  width: 200px;
  height: 100px;
  left: calc(50vw - 100px);
  z-index: 100002;
  cursor: move;
  box-shadow: 0 0 0 1px #ff8a2b;
  background-color: rgba(255, 255, 255, 0.6);
}
._eG_guide-item ._eG_dot-common {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid #ff8a2b;
  cursor: row-resize;
}
._eG_dot-common::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background: transparent;
}
._eG_guide-item ._eG_dot-top {
  top: -5px;
  left: calc(50% - 7px);
}
._eG_guide-item ._eG_dot-right {
  right: -5px;
  top: calc(50% - 4px);
  cursor: col-resize;
}
._eG_guide-item ._eG_dot-bottom {
  bottom: -5px;
  left: calc(50% - 7px);
}
._eG_guide-item ._eG_dot-left {
  left: -5px;
  top: calc(50% - 4px);
  cursor: col-resize;
}
._eG_guide-content {
  position: absolute;
  min-width: 262px;
  max-width: 320px;
  min-height: 90px;
  border-radius: 3px;
  font-size: 14px;
  box-shadow: 0 1px 10px rgba(0,0,0,.4);
  background-color: white;
  z-index: 9999999999;
  cursor: default;
  color: rgba(0,0,0,.75);
  transition: all 0.3s;
}
._eG_guide-content::before {
  content: '';
  position: absolute;
  border: 5px solid transparent;
}
._eG_guide-content ._eG_guide-content-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 12px;
  border-bottom: 1px solid #eee;
  color: #333;
  font-weight: bold;
}
._eG_guide-content ._eG_guide-content-title .e_guide-title-text {
  line-height: 1;
  padding: 10px 0;
}
._eG_guide-content ._eG_guide-content-title .e_guide-close {
  display: none;
  cursor: pointer;
  padding: 8px 12px 7px;
}
._eG_guide-content ._eG_guide-content-text {
  padding: 6px 12px;
  min-height: 32px;
}
._eG_guide-content ._eG_guide-content-btn {
  display: flex;
  justify-content: flex-end;
  padding: 5px 12px;
}
._eG_guide-content ._eG_guide-content-btn button {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  border-radius: 2px;
  padding: 1px 6px;
}
._eG_guide-content ._eG_guide-content-btn button:focus {
  outline: none;
}
._eG_guide-content ._eG_guide-content-btn ._eG_next-btn {
  background: #ff8a2b;
  color: white;
}
._eG_guide-content ._eG_guide-content-btn ._eG_prev-btn {
  margin-right: 8px;
  border: 1px solid #d9d9d9;
  color: rgba(0,0,0,.65);
  background-color: #efefef;
}

/* top-left */
._eG_guide-item ._eG_guide-1 {
  left: 0;
  bottom: calc(100% + 12px);
}
._eG_guide-1::before {
  bottom: -10px;
  left: 7px;
  border-top-color: white;
}
/* top-right */
._eG_guide-item ._eG_guide-2 {
  right: 0;
  bottom: calc(100% + 12px);
}
._eG_guide-2::before {
  bottom: -10px;
  right: 7px;
  border-top-color: white;
}

/* right-top */
._eG_guide-item ._eG_guide-3 {
  left: calc(100% + 12px);
  bottom: unset;
}
._eG_guide-3::before {
  top: 10px;
  left: -10px;
  border-right-color: white;
}
/* right-bottom */
._eG_guide-item ._eG_guide-4 {
  left: calc(100% + 12px);
  bottom: 0;
}
._eG_guide-4::before {
  bottom: 10px;
  left: -10px;
  border-right-color: white;
}

/* bottom-right */
._eG_guide-item ._eG_guide-5 {
  bottom: unset;
  right: 0;
  top: calc(100% + 12px);
}
._eG_guide-5::before {
  top: -10px;
  right: 7px;
  bottom: unset;
  border-bottom-color: white;
}
/* bottom-left */
._eG_guide-item ._eG_guide-6 {
  bottom: unset;
  left: 0;
  top: calc(100% + 12px);
}
._eG_guide-6::before {
  top: -10px;
  left: 7px;
  bottom: unset;
  border-bottom-color: white;
}

/* left-bottom */
._eG_guide-item ._eG_guide-7 {
  bottom: 0;
  transform: translateX(calc(-100% - 12px));
}
._eG_guide-7::before {
  bottom: 10px;
  right: -10px;
  border-left-color: white;
}
/* left-top */
._eG_guide-item ._eG_guide-8 {
  top: 0;
  transform: translateX(calc(-100% - 12px));
}
._eG_guide-8::before {
  top: 10px;
  right: -10px;
  border-left-color: white;
}

#_eG_operation-bar {
  position: fixed;
  display: flex;
  align-items: center;
  left: calc(100vw - 385px);
  top: 20px;
  width: 360px;
  height: 42px;
  font-size: 14px;
  background-color: white;
  overflow: hidden;
  border-radius: 4px;
  color: rgba(0,0,0,.55);
  box-shadow: 0 1px 10px rgba(0,0,0,.4);
  z-index: 999999;
}
#_eG_operation-bar > div {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all  0.15s;
  border-right: 1px solid #eee;
  cursor: pointer;
  filter: grayscale(100%);
  padding: 12px 0;
}
#_eG_operation-bar > div::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}
#_eG_operation-bar > div > svg {
  height: 16px;
  width: 16px;
  margin-right: 7px;
}
#_eG_operation-bar > div:hover {
  color: rgba(0,0,0,.75);
  transition: all  0.3s;
  color: #ff8a2b;
  filter: none;
}
#_eG_operation-bar ._eG_close {
  flex: 0 0 56px;
  text-align: center;
  padding: 13px 0;
  background-color: #cd4e4d;
  border-right: none;
  color: white;
  filter: none;
}


/* ------------ 查看模式样式 --------------------------------------------------------------- */
._eG_view-bar-common {
  position: absolute;
  height: auto;
  background: rgba(0, 0, 0, 0.4);
  z-index: 100002;
}
._eG_bar-top {
  top: 0;
  left: 0;
  right: 0;
}
._eG_bar-left {
  left: 0;
}
._eG_bar-right {
  right: 0;
}
._eG_bar-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}
._eG_exit-preview {
  position: fixed;
  right: 25px;
  top: 15px;
  padding: 12px;
  z-index: 99999999999;
  background-color: #cd4e4d;
  border-right: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

/* ------------ 编辑框样式 --------------------------------------------------------------- */
.e_modal-mast {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
  height: 100%;
  background-color: rgba(0,0,0,.45);
}
.e_modal-content-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999990;
  overflow: auto;
  outline: 0;
  font-size: 14px;
}
.e_modal-content-wrap .e_modal-inner-content {
  position: relative;
  color: rgba(0,0,0,.65);
  font-size: 14px;
  line-height: 1.5;
  list-style: none;
  top: 100px;
  width: 520px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
  z-index: 99999991;
}
.e_modal-content-wrap .e_modal-inner-content .modal-header {
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 4px 4px 0 0;
  margin: 0;
  color: rgba(0,0,0,.85);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}
.e_modal-content-wrap .e_modal-inner-content .modal-content {
  padding: 24px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 100px;
}
.e_modal-content-wrap .e_modal-inner-content .modal-footer {
  padding: 10px 16px;
  text-align: right;
  background: transparent;
  border-top: 1px solid #e8e8e8;
  border-radius: 0 0 4px 4px;
}
.e_modal-content-wrap .e_modal-inner-content .modal-footer button {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  border-radius: 2px;
  padding: 1px 6px;
}
.e_modal-content-wrap .e_modal-inner-content .modal-footer button:focus {
  outline: none;
}

.e_modal-content-wrap .e_modal-inner-content .modal-footer .e_cancel-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  user-select: none;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
  color: rgba(0,0,0,.65);
  background-color: #fff;
  border: 1px solid #d9d9d9;
  margin-right: 10px;
}
.e_modal-content-wrap .e_modal-inner-content .modal-footer .e_confirm-btn {
  background: #ff8a2b;
  color: white;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  user-select: none;
  height: 32px;
  padding: 0 15px;
  font-size: 14px;
}

.modal-content .form-item {
  display: flex;
  margin-bottom: 16px;
}
.modal-content .form-item .item-left {
  flex: 0 0 120px;
  width: 120px;
  text-align: right;
  line-height: 30px;
}
.modal-content .form-item .item-right {
  flex: 1;
  margin-right: 64px;
  color: rgba(0,0,0,.65);
}
.modal-content .form-item .item-right .e_input {
  width: 100%;
  height: 30px;
  padding: 0 11px;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 4px;
  outline: 0;
  color: inherit;
  transition: all .3s linear;
  border: 1px solid #d9d9d9;
}
.modal-content .form-item .item-right input::-webkit-outer-spin-button,
.modal-content .form-item .item-right input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.modal-content .form-item .item-right .e_textarea {
  width: 303px !important;
  min-height: 80px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.modal-content .form-item .item-right .prefix-select {
  display: flex;
}
.modal-content .form-item .item-right .prefix-select .select-left {
  border: 1px solid #d9d9d9;
  border-right: none;
  height: 30px;
  width: 58px;
  box-sizing: border-box;
  padding: 4px 11px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
}
.modal-content .form-item .item-right .e_select {
  border: 1px solid #d9d9d9;
  height: 30px;
  box-sizing: border-box;
  padding: 4px 11px;
  color: rgba(0,0,0,.65);
  border-radius: 4px;
}
.modal-content .form-item .item-right .prefix-select .e_select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.modal-content .form-item .item-right .e_select:focus {
  outline: none;
}

/* ------------ 业务小样式 --------------------------------------------------------------- */
._eG_body {
  position: relative !important;
  -webkit-user-select: none;
  user-select: none;
}
