header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

header .navbar .left {
  display: flex;
  align-items: center;
  margin-left: 40px;
}

header .navbar .left .logo {
  margin-right: 10px;
  height: 40px;
  width: 40px;
}

header .navbar .left .system-name {
  font-size: 20px;
  font-weight: bold;
  color: #215885;
}

header .navbar .right {
  display: flex;
  margin-right: 15px;
  color: #fff;
  font-size: 18px;
  align-items: center;
  justify-items: center;
  font-weight: normal;
}

header .navbar .right .right-menu {
  cursor: pointer;
}

header .navbar .right .right-menu img {
  width: 12px;
  margin-left: 5px;
}

.login-container {
  position: relative;
  width: 100%;
  height: calc(100% - 290px);
  overflow: hidden;
}

.login-container .login-bg {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  position: relative;
}

.form-container {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 60%;
  width: 440px;
  max-width: 100%;
  padding: 20px 30px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 99;
  box-shadow: 0 0 30px 1px #d6f5ff;
  background-color: #fff;
  border-radius: 16px;
}

.form-container .tab-container {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 10px;
  font-size: 22px;
  color: #bebebe;
}

.login-container .form-container .tab-container > div {
  cursor: pointer;
}

.login-container .form-container .tab-container .is-active {
  color: var(--primary-color);
}

.dk-form-item__content {
  border: 1px solid #ededed;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 15px;
}

.dk-form-item__content .dk-input__wrapper {
  display: flex;
  position: relative;
}

.dk-form-item__content .dk-input__wrapper .icon {
  background: #f8f8f8;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
}

.dk-form-item__content .dk-input__wrapper .icon img {
  width: 14px;
  height: 14px;
}

.dk-form-item__content .dk-input__wrapper input {
  width: 70%;
  border: none;
  outline: none;
  padding: 10px;
}

.dk-form-item__content .dk-input__wrapper .passwrod_icon {
  line-height: 40px;
}

.dk-form-item__content .dk-input__wrapper .passwrod_icon img {
  width: 14px;
  height: 14px;
  cursor: pointer;
}

#captcha {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

#captcha::after {
  content: "";
  position: absolute;
  right: 105px;
  width: 1px;
  height: 1.6rem;
  top: -1px;
  background: #dfdfdf;
}

.agreement-container {
  display: flex;
  font-size: 14px;
  align-items: center;
}

.agreement-container label {
  display: flex;
  align-items: center;
}

.agreement-container .protocol {
  color: var(--primary-color);
}

.agreement-container .forgotPassword {
  color: var(--primary-color);
  margin-left: 30px;
}

.login-btn {
  width: 100%;
  background: #3fc6ed;
  color: #fff;
  height: 40px;
  font-size: 18px;
  margin-top: 15px;
}

.browser-tips {
  font-size: 14px;
  color: #999;
  margin-top: 10px;
  text-align: center;
}

.document-container {
  width: 95%;
  margin: 0 auto;
  height: 220px;
  background-color: #fff;
  box-sizing: border-box;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.document-container .list-container {
  min-height: 100%;
  width: 33%;
}

.document-container .li-container > a {
  flex: 1;
}

.document-container .doc-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 17px;
  color: var(--primary-color);
}

.document-container .doc-content li .li-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 0;
  font-size: 14px;
  color: #747474;
}

.document-container .doc-content li {
  list-style: disc;
}

.document-container .doc-content li::marker {
  color: #4882f0;
}

.document-container .doc-content li .li-container .title {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  font-size: 15px;
}

.document-container .doc-content {
  padding-left: 18px;
}

.document-container .line {
  width: 1px;
  height: 120px;
  background-color: #ccc;
  margin: -30px 30px 0;
}

.footer-container {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #f8f8f8;
  color: #9b9c9f;
  font-size: 14px;
  position: fixed;
  bottom: 0;
}


.customer {
  position: fixed;
  right: 10px;
  bottom: 100px;
}

.customer img {
  width: 20px;
  cursor: pointer;
}

.customer .tel_box {
  position: relative;
}

.customer .tel_box .tips {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  font-size: 14px;
  right: 40px;
  top: -13px;
  width: 320px;
  border-radius: 3px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12)
}

.customer .tel_box .tips::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  z-index: 1;
  background: #fff;
  box-sizing: border-box;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
}

.customer .kefu_box {
  position: relative;
}

.customer .kefu_box .tips {
  display: none;
  position: absolute;
  background: #fff;
  padding: 10px;
  font-size: 14px;
  right: 40px;
  top: -13px;
  width: 320px;
  border-radius: 3px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12)
}

.customer .kefu_box .tips::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  z-index: 1;
  background: #fff;
  box-sizing: border-box;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
}