:root {
  --theme-color: #FF9A0A;
  --border-color: #A5A5A5;
  --red: #FF2442;
}
body {
  background-image: url(../images/body_bg.png);
  background-position: center 0;
  background-size: cover;
  background-repeat: repeat;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
  color: #000;
}
.max-width {
  max-width: 1200px;
  margin: 0 auto;
}
input::placeholder {
  color: #D1D1D1;
}
.table {
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  margin-top: 50px;
  padding-bottom: 50px;
}
.table .logo {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 36px;
}
.form {
  width: 400px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}
.form .tabs {
  height: 48px;
  display: flex;
  border-bottom: 1px solid var(--border-color);
}
.form .tabs .tab {
  width: 50%;
  height: 100%;
  line-height: 48px;
  text-align: center;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form .tabs .tab.active {
  background-color: var(--theme-color);
  color: #fff;
}
.form .tab_content {
  padding: 23px 28px 0;
}
.form .tab_content .method {
  display: none;
}
.form .tab_content .method.active {
  display: block;
}
.form .tab_content .tit {
  margin-bottom: 22px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.form .tab_content .tit div:nth-last-child(1) {
  position: relative;
  color: #4086FF;
}
.form .tab_content .tit div:nth-last-child(1) p {
  display: none;
  z-index: 10;
  position: absolute;
  width: 342px;
  right: 0;
  top: 22px;
  padding: 4px 10px;
  background-color: #fff;
  border: 1px solid var(--border-color);
  color: #666;
  font-size: 12px;
}
.form .tab_content .tit div:nth-last-child(1):hover p {
  display: block;
}
.form_item {
  height: 40px;
  margin-bottom: 30px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  position: relative;
}
.form_item input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  border: none;
  outline: none;
  padding: 0 18px;
  font-size: 14px;
}
.form_item input#password {
  padding-right: 40px;
}
.form_item .icon {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form_item .icon.clear {
  display: none;
  width: 14px;
  height: 14px;
  background: url(../images/clear.png) 0 0 / 100% 100% no-repeat;
}
.form_item .icon.eye {
  width: 26px;
  height: 24px;
  background: url(../images/eye_close.png) center center / 24px 24px no-repeat;
}
.form_item .icon.eye.open {
  background: url(../images/eye_open.png) center center / 26px 24px no-repeat;
}
.form_item .errmsg {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 12px;
  color: var(--red);
  padding-left: 14px;
}
.form_item .errmsg::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  background: url(../images/warning.png) 0 0 / 100% 100% no-repeat;
}
.form_item.form_item_code {
  border: none;
}
.form_item.form_item_code #code,
.form_item.form_item_code #imgcode {
  width: calc(100% - 116px);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}
.form_item.form_item_code #get_code {
  position: absolute;
  left: unset;
  right: 0;
  top: 0;
  width: 106px;
  height: 100%;
  border: none;
  border-radius: 6px;
  background-color: var(--red);
  color: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form_item.form_item_code #get_code:disabled {
  background-color: #A5A5A5;
  cursor: not-allowed;
}
.form_item.form_item_code .img_code {
  position: absolute;
  left: unset;
  right: 0;
  top: 0;
  width: 106px;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form_item .tips {
  display: none;
  position: absolute;
  left: 0;
  top: 40px;
  width: 100%;
}
.form_item .tips .tipsInfo {
  font-size: 12px;
  color: #221e1f;
}
.form_item .tips .rankHigh,
.form_item .tips .rankMiddle,
.form_item .tips .rankLow {
  display: block;
  width: 28px;
  margin: 0 4px;
  color: #a5a5a5;
  text-align: center;
  border-bottom: 2px solid rgba(255, 36, 66, 0.45);
  cursor: default;
}
.form_item .tips .curLow .rankLow {
  border-color: #FF2442;
  color: #FF2442;
}
.form_item .tips .curMiddle .rankMiddle {
  border-color: #FF850A;
  color: #FF850A;
}
.form_item .tips .curHigh .rankHigh {
  border-color: #00C849;
  color: #00C849;
}
.form_item .tips .tipsInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_item .tips .tipsInfo .pwd_lv {
  display: flex;
  align-items: center;
}
.agree {
  margin-top: 39px;
  margin-bottom: 9px;
  user-select: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.agree label a {
  color: var(--theme-color);
}
.agree input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.agree input[type="checkbox"] + label {
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
}
.agree input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.agree input[type="checkbox"] + label::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 6px;
  width: 8px;
  height: 3px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.agree input[type="checkbox"]:checked + label::before {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.agree input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
.agree input[type="checkbox"]:not(:checked) + label:hover::before {
  border-color: var(--theme-color);
}
.submit_btn {
  width: 100%;
  height: 40px;
  background-color: var(--theme-color);
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.submit_btn:active {
  opacity: 0.9;
}
.submit_btn:disabled {
  background-color: #A5A5A5;
  cursor: not-allowed;
}
.submit_btn:disabled:active {
  opacity: 1;
}
.no_account {
  text-align: center;
}
.no_account a {
  color: var(--red);
}
.inner {
  width: 1100px;
  margin: 0 auto;
}
header {
  height: 93px;
  background-color: #fff;
}
header .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  height: 51px;
  width: auto;
}
header ul {
  display: flex;
  align-items: center;
}
header ul li {
  margin-right: 48px;
}
header ul li a {
  font-size: 18px;
}
header ul li.active a {
  color: var(--theme-color);
}
header .login_register {
  display: flex;
  align-items: center;
}
header .login_register a {
  font-size: 14px;
  padding: 0 18px;
  position: relative;
}
header .login_register a:hover {
  color: var(--theme-color);
}
header .login_register a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: #000;
}
header .user_info {
  display: flex;
  align-items: center;
}
header .user_info p,
header .user_info a {
  font-size: 14px;
}
header .user_info a:hover {
  color: var(--theme-color);
}
footer {
  height: 264px;
  background-color: #000;
  padding-top: 42px;
}
footer .max-width {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
footer .logo {
  width: 160px;
  height: auto;
  margin-right: 40px;
}
footer .footer_right {
  color: #fff;
  flex: 1;
}
footer .footer_right .links {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
footer .footer_right .links a {
  display: inline-block;
  height: 20px;
  line-height: 18px;
  color: #fff;
  font-size: 18px;
  padding: 0 8px;
  border-left: 1px solid #fff;
}
footer .footer_right .links a:nth-child(1) {
  border-left: none;
  padding-left: 0;
}
footer .footer_right p {
  font-size: 16px;
  color: #BFBFBF;
  line-height: 26px;
}
footer .footer_right .outlinks {
  margin-top: 12px;
  display: flex;
}
footer .footer_right .outlinks li {
  background: #4a4a4a;
  border-radius: 100px;
  overflow: hidden;
  margin-right: 10px;
}
footer .footer_right .outlinks li a {
  width: 121px;
  height: 50px;
  line-height: 15px;
  display: block;
  padding: 10px 8px 10px 52px;
  color: #a2a2a2;
  background-position: 9px 7px;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
footer .footer_right .outlinks li:nth-child(1) a {
  width: 175px;
  background-image: url(../images/index/legal-ico-1.png);
}
footer .footer_right .outlinks li:nth-child(2) a {
  background-image: url(../images/index/legal-ico-2.png);
}
footer .footer_right .outlinks li:nth-child(3) a {
  background-image: url(../images/index/legal-ico-3.png);
}
footer .footer_right .outlinks li:nth-child(4) a {
  width: 175px;
  background-image: url(../images/index/legal-ico-4.png);
}
