* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f4f4;
  color: #555;
  font-family: "Microsoft YaHei", "SimSun", sans-serif;
  font-size: 14px;
}

a {
  color: #666;
  text-decoration: none;
}

.page,
.login-page {
  width: 1320px;
  max-width: calc(100vw - 24px);
  margin: 0 auto;
}

.login-header {
  background: #fff;
  border-bottom: 4px solid #078fd2;
}

.login-header-inner {
  height: 136px;
  display: flex;
  align-items: center;
}

.login-logo {
  display: block;
  width: 322px;
  height: 120px;
  overflow: hidden;
  background: #fff;
}

.login-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-title {
  margin-left: 44px;
  padding-left: 20px;
  border-left: 1px solid #d5d5d5;
  color: #666;
  font-size: 38px;
  line-height: 1;
}

.login-service {
  margin-left: auto;
  text-align: right;
}

.login-links {
  color: #999;
  font-size: 13px;
  margin-bottom: 6px;
}

.login-links a {
  color: #777;
  margin: 0 8px;
}

.service-phone {
  color: #666;
  font-size: 21px;
}

.service-phone strong {
  color: #d80000;
  font-family: Arial, sans-serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 1px;
}

.login-main {
  min-height: 516px;
  display: grid;
  grid-template-columns: 795px 1fr;
  gap: 42px;
  align-items: center;
  padding: 46px 0 68px;
}

.login-promo {
  height: 398px;
  background: #fff;
  overflow: hidden;
}

.login-promo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.login-panel {
  height: 364px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid #dcdcdc;
  box-shadow: 0 2px 0 rgba(0,0,0,.08);
}

.login-form {
  width: 368px;
  padding-top: 8px;
}

.login-field {
  height: 36px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  margin-bottom: 22px;
}

.field-icon {
  width: 76px;
  height: 36px;
  position: relative;
  border: 1px solid #ddd;
  border-right: 0;
  background: #fbfbfb;
  color: #777;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
  white-space: nowrap;
}

.field-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 9px;
  width: 15px;
  height: 15px;
  background: #fbfbfb;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  transform: rotate(45deg);
  z-index: 1;
}

.login-field input {
  width: 100%;
  height: 36px;
  border: 1px solid #ddd;
  padding: 0 10px;
  color: #333;
  font-size: 16px;
  outline: none;
}

.captcha-row {
  display: grid;
  grid-template-columns: 174px 92px 1fr;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}

.captcha-row .login-field {
  margin-bottom: 0;
  grid-template-columns: 76px 98px;
}

.captcha-image {
  height: 36px;
  border: 1px solid #d4d4d4;
  background:
    repeating-linear-gradient(165deg, transparent 0 8px, rgba(0, 150, 80, .18) 8px 10px),
    #f5f8ff;
  color: #b00000;
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  line-height: 34px;
  text-align: center;
  letter-spacing: 4px;
}

.change-captcha {
  border: 0;
  background: transparent;
  color: #e31919;
  cursor: pointer;
  text-align: left;
  padding: 0;
}

.login-button {
  display: block;
  width: 82px;
  height: 36px;
  margin: 0 0 0 183px;
  border: 1px solid #1b6faf;
  border-radius: 2px;
  background: linear-gradient(#52a8ea, #1675bd);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.login-message {
  min-height: 20px;
  margin-top: 10px;
  color: #777;
  font-size: 13px;
  text-align: center;
}

.login-message.error {
  color: #d80000;
}

.login-message.success {
  color: #078fd2;
}

.login-message.muted {
  color: #777;
}

.register-link {
  display: block;
  width: 82px;
  margin-top: 8px;
  margin-left: 102px;
  color: #e31919;
  text-align: left;
  font-size: 16px;
}

.site-footer,
.login-footer {
  text-align: center;
  color: #777;
  font-size: 16px;
  padding-bottom: 28px;
}

.footer-nav {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
  background: #078fd2;
}

.footer-nav a {
  color: #fff;
  font-size: 16px;
}

.copyright {
  margin-top: 14px;
}

.footer-certs {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-certs img {
  height: 58px;
  width: auto;
  border: 1px solid #cfcfcf;
  background: #fff;
}

@media (max-width: 980px) {
  .login-header-inner,
  .login-main,
  .login-promo {
    display: block;
    height: auto;
  }

  .login-header-inner {
    padding: 18px 0;
  }

  .login-title {
    margin: 18px 0 0;
    padding: 0;
    border-left: 0;
  }

  .login-service {
    margin: 16px 0 0;
    text-align: left;
  }

  .login-main {
    padding: 24px 0;
  }

  .login-promo {
    padding: 24px;
    margin-bottom: 24px;
  }

  .login-promo-image {
    height: auto;
  }

  .login-panel {
    height: auto;
    padding: 36px 12px;
  }

  .footer-nav {
    height: auto;
    flex-wrap: wrap;
    gap: 18px 28px;
    padding: 12px;
  }
}
