/* 登录模块 */
.login-config {
  display: none;
}
.login-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-family: "HarmonyOS Sans", "Inter", "Microsoft YaHei UI", "PingFangSC-Regular", Helvetica, Arial, sans-serif;
  overflow: auto;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}
.login-benefit {
  width: 320px;
  height: 630px;
  background: #e7f1ff;
  padding: 40px 32px 32px;
  margin-top: 1px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.login-benefit-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  color: #000;
}
.login-benefit-list {
  margin-bottom: 86px;
}
.login-benefit-item {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.login-benefit-desc {
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.72);
  margin-left: 8px;
}
.login-iframe {
  position: relative;
  height: 630px;
  width: 450px;
  background: #fff;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.login-close-button {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.login-close-button:hover path {
  stroke: #409eff;
}
.login-iframe iframe {
  display: none;
  height: 100%;
  width: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.typing_loader {
  display: block;
  width: 8px;
  height: 8px;
  line-height: 8px;
  display: inline-block;
  border-radius: 50%;
  animation: ptyping 1s linear infinite alternate;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin-left: -11px;
}

@media (max-width: 768px) {
  .login-benefit {
    display: none;
  }
}

@keyframes ptyping {
  0% {
    background-color: rgba(67, 91, 253, 1);
    box-shadow:
      12px 0px 0px 0px rgba(67, 91, 253, 0.2),
      24px 0px 0px 0px rgba(67, 91, 253, 0.2);
  }

  25% {
    background-color: rgba(67, 91, 253, 0.4);
    box-shadow:
      12px 0px 0px 0px rgba(67, 91, 253, 2),
      24px 0px 0px 0px rgba(67, 91, 253, 0.2);
  }

  75% {
    background-color: rgba(67, 91, 253, 0.4);
    box-shadow:
      12px 0px 0px 0px rgba(67, 91, 253, 0.2),
      24px 0px 0px 0px rgba(67, 91, 253, 1);
  }
}
/* 上传模块 */
.upload-main {
  width: 100%;
  height: 100%;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-main-bg {
  margin-bottom: 20px;
}
.upload-main .upload-button {
  width: 289px;
  height: 52px;
  background: #4d64fd;
  border-radius: 8px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 16px;
  border: none;
  position: relative;
  z-index: 3;
  cursor: pointer;
}
.upload-main .upload-button:hover {
  background-color: #2e4bdb;
}
.upload-main .drop-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}
.upload-main .auto-upload-cloud {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #2a2a2f;
}
.upload-main .el-checkbox {
  margin-right: 4px;
  margin-bottom: 0;
}
.upload-main .el-checkbox__input {
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  outline: 0;
}
.upload-main .el-checkbox__inner {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-color: #d8d8df;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  border: 1px solid #dcdfe6;
  box-sizing: border-box;
  z-index: 1;
  transition:
    border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46),
    background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
}
.upload-main .el-checkbox__inner::after {
  box-sizing: content-box;
  content: "";
  border: 1px solid #fff;
  border-left: 0;
  border-top: 0;
  height: 7px;
  left: 4px;
  position: absolute;
  top: 1px;
  transform: rotate(45deg) scaleY(0);
  width: 3px;
  transition: transform 0.15s ease-in 0.05s;
  transform-origin: center;
}

.upload-main .el-checkbox__input.is-checked .el-checkbox__inner {
  background-color: #4d64fd;
  border-color: #6980ff;
}
.upload-main .el-checkbox__input.is-checked .el-checkbox__inner::after {
  transform: rotate(45deg) scaleY(1);
}

.upload-main .auto-upload-cloud a {
  color: #4d64fd !important;
  cursor: pointer;
}

.upload-main .auto-upload-cloud a:hover {
  color: #2e4bdb !important;
}

.upload-main input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
  opacity: 0;
  outline: 0;
  position: absolute;
  margin: 0;
  width: 0;
  height: 0;
  z-index: -1;
}
/* 文件上传盒子 */
.drop-box {
  width: 100%;
  height: 100%;
  border: 1px dashed transparent;
  overflow: hidden;
  overflow-y: auto;
  border-radius: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

/* 提示文字 */
.upload-component {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
}
