
body,
html {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  min-width: 1200px;
  min-height: 100%;
  background: url("../img/loginBg.jpg") no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
}

.main {
  width: 1200px;
  margin: 5% auto 0;
  padding-bottom: 100px;
}

.main .top {
  width: 800px;
  margin: 0 auto;
}

.main .top img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.contentArea {
  width: 700px;
  margin: 80px auto 0;
}

.main .login_content {
  width: 100%;
  padding: 35px 100px 40px;
  box-sizing: border-box;
  margin: 0px auto;
  background-color: #fff;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.content_title {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content_title .tips {
  margin: 0 10px;
  letter-spacing: 2px;
  font-size: 23px;
  color: #373737;
}

.content_title .circle {
  width: 5px;
  height: 5px;
  background-color: #373737;
  border-radius: 50%;
}
.loginForm {
  margin-top: 35px;
}
.form_item {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom:30px;
}
.form_item label {
  width: 100px;
  font-size: 20px;
  letter-spacing: 1px;
  color: #353535;
}
.form_item label .hide{
  opacity: 0;
}
.form_item input {
  display: block;
  width: calc(100% - 100px);
  height: 55px;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 18px;
  color: #333333;
  border-radius: 8px;
  background-color: #E8E8E8;
}

.form_item input::placeholder {
  color: #a1a1a1;
  font-size: 17px;
}

.item_tips {
  /* background-color: pink; */
  font-size: 12px;
  padding-left: 4px;
  box-sizing: border-box;
  color: var(--text-color-secondary);
  margin: 8px 0 25px;
  line-height: 18px;
}

.layui-input:hover {
  border-color: #249fac !important;
}

.layui-input:focus {
  border-color: #249fac !important;
  box-shadow: none !important;
}


.loginBtn {
  width: 100%;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  margin-top: 40px;
  background: linear-gradient(to right, #B701EA, #5704CE);
  letter-spacing: 2px;
  transition: all 0.3s;
}
.loginBtn:hover{
  background: linear-gradient(to right, #5704CE, #B701EA);
}
.targetTips {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 25px;
}
.targetTips div {
  padding: 7px 20px;
  border: 1px solid #7A33D7;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #7A33D7;
  cursor: pointer;
  position: relative;
  transition: all .3s;
}

.targetTips div:hover{
  background-color: #7a33d728;
}
.targetTips .downloadTemplate{
    padding: 7px 10px;
}
.banquan {
  width: 100%;
  padding: 0px 0px 0 20px;
  box-sizing: border-box;
  margin: 50px auto 0;
}

.banquan p {
  font-size: 16px;
  width: 100%;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  margin-bottom: 5px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.banquan p span:nth-child(n + 1) {
  margin-left: 25px;
}

.bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.bgResult {
  width: 500px;
  height: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 1px 1px 50px rgba(0, 0, 0, 0.3);
}

.bgResult .close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}

