*{
  padding: 0;
  margin: 0;
  font-family:'Microsoft YaHei';
}
.content{
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  text-align: center;
}
.left{
  width: 75%;
  height: 100%;
}
.leftImg{
  width: 100%;
  height: 100%;
}
.right{
  width: 25%;
  height: 100%;
}
.logo{
  height: 70px;
  margin-top: 20px;
}
.logoIcon{
  height: 70px;
}
.title{
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 90px;
  margin-bottom: 90px;
}
.Inp{
  width: 70%;
  height: 40px;
  border-radius: 25px;
  margin-top: 40px;
  margin-left: 15%;
}
input[type=text]:focus{ border: 1px solid #a73043; }
input[type=password]:focus{ border: 1px solid #a73043; }
input[type=button]:focus{ outline: none; }
.Inp_item{
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 25px;
  border: 1px solid #f2f2f2;
  outline: none;
  padding: 0 10px;
}
.btn{
  width: 70%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #ffffff;
  background: #a73043;
  border-radius: 25px;
  margin: 0 auto;
  margin-top: 80px;
  border: 0;
}
.rember{
  height: 15px;
  line-height: 15px;
  text-align: center;
  font-size: 12px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
input[type='checkbox'] {
  cursor: pointer;
  position: relative;
  width: 15px;
  height: 15px;
  font-size: 14px;
  margin-right: 5px;
}

input[type='checkbox']::after {
  position: absolute;
  top: 0;
  background-color: white;
  color: #000;
  width: 15px;
  height: 15px;
  display: inline-block;
  visibility: visible;
  padding-left: 0px;
  text-align: center;
  content: ' ';
  box-sizing: border-box;
  border: 1px solid black;
}
input[type='checkbox']:checked::after {
  content: '✓';
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  background-color: #a73043;
}
