html {
  height: 100%;
}
.body {
  height: 100%;
  background-image: url("../images/bg.png");
  background-size: cover;
}
.warp {
  width: 90%;
  margin: 0 auto;
}
.logo {
  width: 300px;
  margin-top: 50px;
}
.login-view {
  width: 458px;
  min-height: 100px;
  background-color: #ffffff;
  border-radius: 10px;
  position: absolute;
  top: 20%;
  margin: 0 auto;
  left: 0;
  right: 0;
  /* position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  overflow: hidden;
}
.login-view__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-view__title {
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
}
.login-view__title:first-child {
  border-top-left-radius: 10px;
}
.login-view__title:last-child {
  border-top-right-radius: 10px;
}
.login-view__active {
  color: #ffffff !important;
  font-weight: 500;
  background: -webkit-linear-gradient(left, #2c98ff, #64afff); /*for safari5.1-6.0*/
  background: -o-linear-gradient(right, #2c98ff, #64afff); /*Opera 11.1-12.0*/
  background: -moz-linear-gradient(right, #2c98ff, #64afff); /*firefox 3.6-15*/
  background: linear-gradient(to right, #2c98ff, #64afff); /*标准语法*/
}
.login-con {
  padding: 40px 55px 32px 55px;
  box-sizing: border-box;
  background-color: #ffffff;
}
.login-con__input {
  width: 100%;
  height: 40px;
  border: 1px solid #e1e1e1;
  border-radius: 7px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 18px;
}
.login-con__input:last-child {
  margin-bottom: 0;
}
.login-con__input input {
  height: 100%;
  font-size: 15px;
  flex: 1;
  outline: none;
  border: none;
  background: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  background-image: -webkit-linear-gradient(transparent, transparent);
  background-image: linear-gradient(transparent, transparent);
  font-family: "Helvetica", "Arial";
}
.login-con__icon {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  margin-right: 15px;
}
.login-con__icon {
  width: 25px;
  height: 25px;
}
.login-con__radio {
  display: flex;
  align-items: center;
}
.login-con__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.login-con__radio span {
  font-size: 13px;
  /* width: 15px;
  height: 15px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
  background-color: #dedede; */
}
.login-con__bottom a {
  font-size: 13px;
  color: #2c98ff;
}
.login-con__btn {
  width: 100%;
  height: 46px;
  background: -webkit-linear-gradient(left, #2c98ff, #64afff); /*for safari5.1-6.0*/
  background: -o-linear-gradient(right, #2c98ff, #64afff); /*Opera 11.1-12.0*/
  background: -moz-linear-gradient(right, #2c98ff, #64afff); /*firefox 3.6-15*/
  background: linear-gradient(to right, #2c98ff, #64afff); /*标准语法*/
  color: #ffffff;
  border-radius: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 14px 0;
  font-size: 17px;
}
.login-con__fl {
  width: 100%;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.login-con__fl span {
  margin: 0 15px;
  color: #2c98ff;
}
.login-con__fl::before {
  content: "";
  display: block;
  width: 100px;
  height: 0.3px;
  background-color: #2c98ff;
}
.login-con__fl::after {
  content: "";
  display: block;
  width: 100px;
  height: 0.3px;
  background-color: #2c98ff;
}
.login-con__wxqq {
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-con__wxqq img {
  width: 40px;
  height: 40px;
  display: block;
  margin: 8px 30px;
  cursor: pointer;
}
.login-reg {
  display: none;
}
