.dis_flex {
  display: flex;
  flex-direction: row;
}
.dis_flex_column {
  display: flex;
  flex-direction: column;
}
.ju_a {
  justify-content: space-around;
}
.ju_b {
  justify-content: space-between;
}
.ju_c {
  justify-content: center;
}
.aic {
  align-items: center;
}
.flex_1 {
  flex: 1;
}
.flex_shrink_0 {
  flex-shrink: 0;
}
.e-img-fill {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oh1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.oh2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.oh3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* 调试模式
  outline   : solid #f00 1px !important;
  background: #000 !important;
  color     : #fff !important; */
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
/* button */
.e-btn {
  cursor: pointer;
}
.e-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 15px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  line-height: 1;
  color: #606266;
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
  cursor: pointer;
}
.e-button.e-button-primary {
  color: #fff;
  background-color: #409eff;
  border-color: #409eff;
}
.e-button.e-button-success {
  color: #fff;
  background-color: #67c23a;
  border-color: #67c23a;
}
.e-button.e-button-warning {
  color: #fff;
  background-color: #e6a23c;
  border-color: #e6a23c;
}
.e-button.e-button-danger {
  color: #fff;
  background-color: #f56c6c;
  border-color: #f56c6c;
}
.e-button.e-button-info {
  color: #fff;
  background-color: #909399;
  border-color: #909399;
}
/* input */
.e-input {
  height: 30px;
  position: relative;
  font-size: 14px;
  display: inline-flex;
  width: 100%;
  line-height: 30px;
  box-sizing: border-box;
  vertical-align: middle;
  padding: 1px 11px;
  background-color: #ffffff;
  border-radius: 4px;
  border: 1px solid #dcdfe6;
  transition: all 0.2s;
  box-shadow: 0 0 0 1px #dcdfe6 inset;
  color: #606266;
}
/* img */
.e-img {
  display: block;
  width: 100%;
}
.e-img-100 {
  display: block;
  width: 100%;
  height: 100%;
}
/* row */
.e-row {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
/* col */
.e-col {
  flex: 1 0 0%;
}
.e-col-1 {
  flex: 0 0 auto;
  width: calc(1/24*100%);
}
.e-col-2 {
  flex: 0 0 auto;
  width: calc(2/24*100%);
}
.e-col-3 {
  flex: 0 0 auto;
  width: calc(3/24*100%);
}
.e-col-4 {
  flex: 0 0 auto;
  width: calc(4/24*100%);
}
.e-col-5 {
  flex: 0 0 auto;
  width: calc(5/24*100%);
}
.e-col-6 {
  flex: 0 0 auto;
  width: calc(6/24*100%);
}
.e-col-7 {
  flex: 0 0 auto;
  width: calc(7/24*100%);
}
.e-col-8 {
  flex: 0 0 auto;
  width: calc(8/24*100%);
}
.e-col-9 {
  flex: 0 0 auto;
  width: calc(9/24*100%);
}
.e-col-10 {
  flex: 0 0 auto;
  width: calc(10/24*100%);
}
.e-col-11 {
  flex: 0 0 auto;
  width: calc(11/24*100%);
}
.e-col-12 {
  flex: 0 0 auto;
  width: calc(12/24*100%);
}
.e-col-13 {
  flex: 0 0 auto;
  width: calc(13/24*100%);
}
.e-col-14 {
  flex: 0 0 auto;
  width: calc(14/24*100%);
}
.e-col-15 {
  flex: 0 0 auto;
  width: calc(15/24*100%);
}
.e-col-16 {
  flex: 0 0 auto;
  width: calc(16/24*100%);
}
.e-col-17 {
  flex: 0 0 auto;
  width: calc(17/24*100%);
}
.e-col-18 {
  flex: 0 0 auto;
  width: calc(18/24*100%);
}
.e-col-19 {
  flex: 0 0 auto;
  width: calc(19/24*100%);
}
.e-col-20 {
  flex: 0 0 auto;
  width: calc(20/24*100%);
}
.e-col-21 {
  flex: 0 0 auto;
  width: calc(21/24*100%);
}
.e-col-22 {
  flex: 0 0 auto;
  width: calc(22/24*100%);
}
.e-col-23 {
  flex: 0 0 auto;
  width: calc(23/24*100%);
}
.e-col-24 {
  flex: 0 0 auto;
  width: calc(24/24*100%);
}
/* container */
.e-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
}
.e-container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  width: 100%;
}
/* image */
.e-img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}
/* cell-group */
.e-cell-group {
  background-color: #ffffff;
}
.e-cell-group.e-cell-group-card {
  margin: 0 16px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
/* cell */
.e-cell {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 16px;
  overflow: hidden;
  color: #323233;
  font-size: 14px;
  line-height: 24px;
  background-color: #fff;
}
.e-cell::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #ebedf0;
}
.e-cell .e-cell-icon {
  margin-right: 4px;
  height: 24px;
}
.e-cell .e-cell-icon img {
  display: block;
  height: 100%;
}
.e-cell .e-cell-title {
  flex: 1;
  -webkit-box-flex: 1;
  word-break: break-all;
}
.e-cell .e-cell-title .e-cell-describe {
  margin-top: 4px;
  font-size: 12px;
  color: #969799;
  line-height: 18px;
  word-break: break-all;
}
.e-cell .e-cell-value {
  word-break: break-all;
  flex: 1;
  -webkit-box-flex: 1;
  position: relative;
  overflow: hidden;
  color: #969799;
  text-align: right;
  vertical-align: middle;
  word-wrap: break-word;
}
.e-cell .e-cell-arrow {
  margin-left: 4px;
  height: 24px;
}
.e-cell .e-cell-arrow img {
  display: block;
  height: 100%;
}
.e-cell .e-cell-arrow.e-cell-arrow-right {
  transform: rotate(-90deg);
}
.e-cell .e-cell-arrow.e-cell-arrow-left {
  transform: rotate(90deg);
}
.e-cell .e-cell-arrow.e-cell-arrow-top {
  transform: rotate(180deg);
}
.e-cell .e-cell-arrow.e-cell-arrow-bottom {
  transform: rotate(0);
}
/* video */
.e-video {
  width: 100%;
  display: block;
}
/* form-item */
.form-item {
  display: flex;
  margin-bottom: 12px;
}
.form-item .label {
  width: 70px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 12px;
  font-size: 14px;
  color: #ffffff;
}
/* SMSCode */
.smscode {
  width: 100%;
  position: relative;
}
.smscode .e-smscode-btn {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: #000000;
  font-size: 12px;
  border-radius: 4px;
  background-color: #dfdfdf;
  height: 18px;
  line-height: 16px;
  padding: 2px 8px;
  box-sizing: content-box;
}
/* captcha */
.captcha {
  width: 100%;
  position: relative;
}
.captcha .e-captcha-img {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  color: #000000;
  font-size: 12px;
  border-radius: 4px;
  background-color: skyblue;
  height: 24px;
  width: 100px;
}
/* modal */
.e-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #ebedf0;
  max-width: 90vw;
  max-height: 90vh;
  display: none;
  flex-direction: column;
}
.e-modal.active {
  display: flex;
}
.e-modal .header {
  padding: 16px;
  font-size: 16px;
  color: #323233;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ebedf0;
}
.e-modal .header .title {
  font-weight: bold;
  font-size: 1rem;
}
.e-modal .body {
  flex: 1;
  overflow-y: scroll;
  padding: 1rem;
  text-align: left;
}
.e-modal .footer {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid #ebedf0;
}
.e-flex {
  display: flex;
}
.e-flex1 {
  flex: 1;
}
.e-justify-content-center {
  justify-content: center;
}
.e-justify-content-space-between {
  justify-content: space-between;
}
.e-align-items-center {
  align-items: center;
}
.e-dialog {
  display: flex;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}
.e-dialog .main {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.e-dialog .main .header {
  padding: 16px;
  font-size: 16px;
  color: #323233;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ebedf0;
}
.e-richContent p img {
  display: block;
  max-width: 100%;
}
.ed-masker {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(8, 8, 8, 0.5);
  z-index: 100;
  transform: scale(1.185);
  -ms-transform: scale(1.185);
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  backface-visibility: hidden;
  pointer-events: none;
}
.ed-masker.show {
  opacity: 1;
  transition-duration: 0.3s;
  -ms-transform: scale(1);
  transform: scale(1);
  pointer-events: auto;
}
#masker-preview-video .preview-video-container {
  width: 56.25rem;
  height: 30rem;
  background-color: #000000;
}
#masker-preview-video .preview-video-container .preview-video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#masker-preview-video .preview-video-close {
  position: absolute;
  top: 1rem;
  right: 3rem;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
}
.ed-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ed-modal-mask.ed-modal-mask-show {
  opacity: 1;
  pointer-events: auto;
}
.ed-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  width: 80%;
  max-width: 300px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.ed-modal-container.checkIn-modal {
  max-width: 480px;
}
.ed-modal-container.checkIn-modal .ed-modal-title {
  font-weight: 400;
}
.ed-modal-container.checkIn-modal .ed-modal-text {
  font-size: 24px;
  font-weight: bold;
}
.ed-modal-container.checkIn-modal .ed-modal-text {
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ed-modal-container.ed-modal-container-show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}
.ed-modal-container .ed-modal-content {
  text-align: center;
  position: relative;
}
.ed-modal-container .ed-modal-content .ed-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.ed-modal-container .ed-modal-content .ed-modal-close::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2px;
  height: 100%;
  background-color: #373737;
  transform-origin: center center;
}
.ed-modal-container .ed-modal-content .ed-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 2px;
  height: 100%;
  background-color: #373737;
  transform-origin: center center;
}
.ed-modal-container .ed-modal-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 16px;
}
.ed-modal-container .ed-modal-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  padding: 0 12px;
  line-height: 1.5;
  word-break: break-word;
}
.ed-modal-container .ed-modal-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 15px;
  box-sizing: border-box;
}
.ed-modal-container .ed-modal-buttons {
  display: flex;
  border-top: 1px solid #e5e5e5;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button {
  flex: 1;
  padding: 10px 0;
  font-size: 16px;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button:active {
  opacity: 0.7;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button-cancel::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: #e5e5e5;
}
.ed-modal-container .ed-modal-buttons .ed-modal-button-confirm {
  font-weight: bold;
}
.ed-toast-container {
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.ed-toast-container.ed-toast-show {
  opacity: 1;
  transform: translateY(0);
}
.ed-toast-container.ed-toast-top {
  top: 20%;
}
.ed-toast-container.ed-toast-bottom {
  bottom: 20%;
}
.ed-toast-container.ed-toast-center {
  top: 50%;
  transform: translateY(calc(-50% + 20px));
}
.ed-toast-container.ed-toast-center.ed-toast-show {
  transform: translateY(-50%);
}
.ed-toast-container .ed-toast-content {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  max-width: 80%;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ed-toast-container .ed-toast-content .ed-toast-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ed-toast-container .ed-toast-content .ed-toast-desc {
  margin-top: 0.5rem;
  max-width: 24rem;
  text-align: center;
}
.ed-toast-container .ed-toast-content .ed-toast-icon-success {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}
.ed-toast-container .ed-toast-content .ed-toast-icon-error {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}
.ed-toast-container .ed-toast-content .ed-toast-icon-loading {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8c-.45-.83-.7-1.79-.7-2.8 0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z'/%3E%3C/svg%3E");
  animation: toastLoading 1s linear infinite;
}
@keyframes toastLoading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ed-toast-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
}
