/* 样式重置 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}
body,
button,
input,
select,
textarea {
  font: 12px/1.5tahoma, arial, \5b8b\4f53;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
address,
cite,
dfn,
em,
var {
  font-style: normal;
}
code,
kbd,
pre,
samp {
  font-family: couriernew, courier, monospace;
}
small {
  font-size: 12px;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
legend {
  color: #000;
}
fieldset,
img {
  border: 0;
}
button,
input,
select,
textarea {
  font-size: 100%;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: "微软雅黑";
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  background-color: #ffffff;
}
.full-page {
  display: flex;
  flex-direction: column;
  min-width: 1350px;
  height: 100%;
  background-image: url('../image/login_bg.png');
  background-repeat: no-repeat;
  background-size: 110%;
  background-position: -80px -40px;
}
.admin-login-page {
  flex: 1;
  width: 1350px;
  margin: 0 auto;
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.admin-login-logo-box {
  margin-top: 50px;
  margin-bottom: 80px;
}
.admin-login-logo-box .logo {
  height: 40px;
}
.admin-login-main {
  flex: 1;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
}
.admin-login-main .left-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 680px;
  overflow: hidden;
  align-items: flex-start;
}
.admin-login-main .left-box .logo-row {
  display: flex;
  align-items: center;
  line-height: 1;
}
.admin-login-main .left-box .logo-row .logo {
  height: 54px;
  margin-right: 20px;
}
.admin-login-main .left-box .logo-row .logo-text {
  font-size: 50px;
  color: #191919;
  font-weight: bold;
  letter-spacing: 5px;
}
.admin-login-main .left-box .desc-text {
  font-size: 24px;
  margin-bottom: 50px;
  line-height: 1;
  margin-top: 27px;
}
.admin-login-main .left-box .slogan-box {
  width: 100%;
}
.admin-login-main .left-box .slogan-box .slogan-img {
  width: 100%;
  height: auto;
}
.admin-login-main .left-box .split-line {
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  margin-top: 50px;
  margin-bottom: 30px;
}
.admin-login-main .left-box .doc-link-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.admin-login-main .left-box .doc-link {
  min-width: 350px;
  display: inline-flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 10px rgba(144, 143, 143, 0.16);
  color: #191919;
  font-size: 18px;
  line-height: 44px;
  margin-bottom: 20px;
  border-radius: 8px;
}
.admin-login-main .left-box .doc-link .icon-arrow {
  color: #1081D8;
  width: 7px;
  margin-left: 8px;
  transition: all 0.3s;
}
.admin-login-main .left-box .doc-link .btn {
  color: #1081D8;
}
.admin-login-main .left-box .doc-link:hover .icon-arrow {
  transform: translateX(5px);
}
.admin-login-main .rule-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 40px;
  margin-top: 20px;
  line-height: 1;
  color: #ffffff;
  border-radius: 4px;
  background-color: #1081D8;
  transition: all 0.3s;
}
.admin-login-main .rule-btn .icon-arrow {
  width: 7px;
  height: 10px;
  margin-left: 10px;
  transition: all 0.2s;
}
.admin-login-main .rule-btn:hover {
  box-shadow: 0 5px 10px rgba(30, 159, 251, 0.29);
}
.admin-login-main .rule-btn:hover .icon-arrow {
  transform: translateX(5px);
}
.admin-login-main .right-box {
  flex-shrink: 0;
  width: 500px;
  height: 450px;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0px 4px 20px rgba(126, 126, 126, 0.16);
  box-sizing: border-box;
  padding: 30px 40px;
  border-radius: 4px;
}
.admin-login-main .right-box .tab-bar {
  display: flex;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.3s;
  color: #191919;
}
.admin-login-main .right-box .tab-bar::after {
  content: '';
  position: absolute;
  width: 104px;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #1081D8;
  transform: translateX(54px);
  transition: all 0.3s;
  border-radius: 50px;
}
.admin-login-main .right-box .tab-bar.tab-1::after {
  width: 116px;
  transform: translateX(260px);
}
.admin-login-main .right-box .tab-bar .item {
  display: flex;
  flex: 1;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: normal;
  transition: all 0.3s;
  cursor: pointer;
}
.admin-login-main .right-box .tab-bar .item.active {
  color: #191919;
  font-weight: bold;
}
.admin-login-main .right-box .form-row {
  display: flex;
  overflow: hidden;
  position: relative;
  height: 220px;
}
.admin-login-main .right-box .form-box {
  width: 100%;
  height: 220px;
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.admin-login-main .right-box .form-box.first {
  transform: translateX(-350px);
}
.admin-login-main .right-box .form-box.second {
  transform: translateX(450px);
}
.admin-login-main .right-box .form-box.active {
  transform: translateX(0);
  opacity: 1;
}
.admin-login-main .right-box .input-box {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
  font-size: 14px;
  overflow: hidden;
}
.admin-login-main .right-box .input-box .input {
  flex: 1;
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  padding: 5px 20px;
  box-sizing: border-box;
}
.admin-login-main .right-box .input-box .vcode {
  width: auto;
  height: 40px;
  border-radius: 0 50px 50px 0;
}
.admin-login-main .right-box .code-row {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50px;
  box-sizing: border-box;
  overflow: hidden;
}
.admin-login-main .right-box .code-row .input-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  margin-bottom: 0;
}
.admin-login-main .right-box .code-row .code-btn {
  display: block;
  width: 120px;
  height: 40px;
  margin-left: 10px;
  text-align: center;
  line-height: 40px;
  font-size: 13px;
  box-sizing: border-box;
  color: #1081D8;
  position: relative;
}
.admin-login-main .right-box .code-row .code-btn::before {
  content: '';
  position: absolute;
  width: 1px;
  height: 14px;
  top: 13px;
  left: 0;
  z-index: 1;
  background-color: #e5e5e5;
}
.admin-login-main .right-box .code-row .code-btn.disabled {
  color: #888888;
  border-color: #dddddd;
  cursor: not-allowed;
}
.admin-login-main .right-box .op-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-login-main .right-box .op-row .check-box {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #191919;
  cursor: pointer;
}
.admin-login-main .right-box .op-row .check-box .icon {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background-image: url('../image/checkbox.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.admin-login-main .right-box .op-row .check-box.active .icon {
  background-image: url('../image/checkbox_active.png');
}
.admin-login-main .right-box .op-row .link {
  font-size: 13px;
  color: #191919;
}
.admin-login-main .right-box .op-row .link:hover {
  color: #1081D8;
}
.admin-login-main .right-box .login-btn {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #1081D8;
  color: #ffffff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  border-radius: 50px;
  margin-top: 30px;
  transition: all 0.3s;
}
.admin-login-main .right-box .login-btn:hover {
  background-color: #47b3ff;
  box-shadow: 0 5px 10px rgba(30, 159, 251, 0.29);
}
.admin-login-main .right-box .login-btn.disabled {
  opacity: 0.5;
}
.admin-login-footer-wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgba(255, 255, 255, 0.5);
}
.admin-login-footer {
  width: 1200px;
  font-size: 16px;
  color: #646464;
  line-height: 24px;
  text-align: left;
  margin: 0 auto;
}
.admin-login-footer p:not(:first-child) {
  margin-top: 20px;
}
.admin-login-footer a.link {
  color: #646464;
  text-decoration: none;
}
.admin-login-footer a.link:visited {
  color: #646464;
}
.admin-login-footer a.link:hover {
  color: #1081D8;
}
.popup-wrap {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.popup-wrap.show {
  display: flex;
}
.popup-wrap .popup-container {
  width: 600px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.popup-wrap .popup-container .popup-header {
  width: 100%;
  height: 76px;
  font-size: 24px;
  font-weight: bold;
  padding: 0 40px;
  line-height: 76px;
  background-color: #1081D8;
  color: #ffffff;
}
.popup-wrap .popup-container .popup-body {
  width: 100%;
  padding: 20px 40px 30px;
  background-color: #ffffff;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.popup-wrap .popup-container .popup-body .search-box {
  width: 100%;
  display: flex;
}
.popup-wrap .popup-container .popup-body .search-box .search-input {
  flex: 1;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #A8A8A8;
  box-sizing: border-box;
  border-right: none;
  outline: none;
}
.popup-wrap .popup-container .popup-body .search-box .search-btn {
  width: 120px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #ffffff;
  background-color: #1081D8;
}
.popup-wrap .popup-container .popup-body .search-box .search-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.popup-wrap .popup-container .popup-body .search-result {
  align-self: flex-start;
}
.popup-wrap .popup-container .popup-body .search-result .search-doc-link {
  display: block;
  font-size: 16px;
  color: #1081D8;
  margin-top: 20px;
  text-decoration: underline;
}
.popup-wrap .popup-container .popup-body .search-result .search-doc-link:hover {
  color: #0095ff;
}
.popup-wrap .popup-container .popup-body .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  border-radius: 2px;
  background-color: #1081D8;
  transition: all 0.3s;
  margin-top: 30px;
}
.popup-wrap .popup-container .popup-body .close-btn:hover {
  box-shadow: 0 5px 10px rgba(30, 159, 251, 0.29);
}
.popup-wrap_c {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.popup-wrap_c.show {
  display: flex;
}
.popup-wrap_c .popup-container {
  width: 1000px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.popup-wrap_c .popup-container .popup-header {
  height: 600px;
  padding: 0 40px;
  line-height: 76px;
  background-color: #ffffff;
}
.popup-wrap_c .popup-container .popup-body {
  width: 100%;
  padding: 0px 40px 30px;
  background-color: #ffffff;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.popup-wrap_c .popup-container .popup-body .search-box {
  width: 100%;
  display: flex;
}
.popup-wrap_c .popup-container .popup-body .search-box .search-input {
  flex: 1;
  height: 20px;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #A8A8A8;
  box-sizing: border-box;
  border-right: none;
  outline: none;
}
.popup-wrap_c .popup-container .popup-body .search-box .search-btn {
  width: 120px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #ffffff;
  background-color: #1E9FFB;
}
.popup-wrap_c .popup-container .popup-body .search-box .search-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.popup-wrap_c .popup-container .popup-body .search-result {
  align-self: flex-start;
}
.popup-wrap_c .popup-container .popup-body .search-result .search-doc-link {
  display: block;
  font-size: 16px;
  color: #1E9FFB;
  margin-top: 20px;
  text-decoration: underline;
}
.popup-wrap_c .popup-container .popup-body .search-result .search-doc-link:hover {
  color: #0095ff;
}
.popup-wrap_c .popup-container .popup-body .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  border-radius: 2px;
  background-color: #1E9FFB;
  transition: all 0.3s;
  margin-top: 30px;
}
.popup-wrap_c .popup-container .popup-body .close-btn:hover {
  box-shadow: 0 5px 10px rgba(30, 159, 251, 0.29);
}

.popup-wrap_m {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.popup-wrap_m.show {
  display: flex;
}
.popup-wrap_m .popup-container {
  width: 1000px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s;
}
.popup-wrap_m .popup-container .popup-header {
  height: 600px;
  padding: 0 40px;
  line-height: 76px;
  background-color: #ffffff;
}
.popup-wrap_m .popup-container .popup-body {
  width: 100%;
  padding: 0px 40px 30px;
  background-color: #ffffff;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.popup-wrap_m .popup-container .popup-body .search-box {
  width: 100%;
  display: flex;
}
.popup-wrap_m .popup-container .popup-body .search-box .search-input {
  flex: 1;
  height: 20px;
  line-height: 50px;
  padding: 0 20px;
  border: 1px solid #A8A8A8;
  box-sizing: border-box;
  border-right: none;
  outline: none;
}
.popup-wrap_m .popup-container .popup-body .search-box .search-btn {
  width: 120px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: #ffffff;
  background-color: #1E9FFB;
}
.popup-wrap_m .popup-container .popup-body .search-box .search-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.popup-wrap_m .popup-container .popup-body .search-result {
  align-self: flex-start;
}
.popup-wrap_m .popup-container .popup-body .search-result .search-doc-link {
  display: block;
  font-size: 16px;
  color: #1E9FFB;
  margin-top: 20px;
  text-decoration: underline;
}
.popup-wrap_m .popup-container .popup-body .search-result .search-doc-link:hover {
  color: #0095ff;
}
.popup-wrap_m .popup-container .popup-body .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 40px;
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  border-radius: 2px;
  background-color: #1E9FFB;
  transition: all 0.3s;
  margin-top: 30px;
}
.popup-wrap_m .popup-container .popup-body .close-btn:hover {
  box-shadow: 0 5px 10px rgba(30, 159, 251, 0.29);
}