body {
  background: #eee;
}

html,
body {
  min-height: 100%;
}

.sign {
  display: block;
  width: 450px;
  box-sizing: border-box;
  background: #fff;
  padding: 35px 20px;
  box-shadow: 1px 2px 8px 0px rgba(3, 0, 0, 0.15);
  border-radius: 2px;
}

.sigTlt {
  text-align: center;
  margin: 0 0 30px;
}

.sigTlt h2 {
  font-family: OPPOSans-B;
  font-weight: normal;
  font-size: 30px;
  color: #434343;
}

.sigTlt p {
  font-size: 18px;
  color: #434343;
  margin-top: 10px;
}

.sigTlt p a {
  color: #99005c;
}

.sigTlt p a:hover {
  text-decoration: underline;
}

.write {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.write div {
  width: 100%;
  position: relative;
  margin: 0 0 20px;
}

.write .hifre {
  width: 48%;
}

.write input[type="text"],
.write input[type="password"] {
  width: 100%;
  height: 56px;
  box-sizing: border-box;
  padding: 0 15px;
  background: #ffffff;
  border-radius: 4px;
  border: solid 1px #8a8a8f;
}

.rad {
  display: flex;
}

.rad label {
  display: flex;
  align-items: center;
  margin-right: 30px;
  position: relative;
  font-size: 16px;
  color: #434343;
}

.rad label:last-child {
  margin: 0;
}

.rad label input {
  position: absolute;
  opacity: 0;
}

.rad label span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: solid 1px #8a8a8f;
  border-radius: 50%;
  margin-right: 5px;
}

.rad label span::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #434343;
  opacity: 0;
}

.rad label input:checked+span::before {
  opacity: 1;
}

.icon-rili {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  font-size: 18px;
  height: 25px;
  right: 20px;
  line-height: 25px;
}

.phone,
.phone div {
  display: flex;
}

.phone .area {
  align-items: center;
  width: 80px;
  position: absolute;
  top: 1px;
  left: 1px;
  margin: 0;
  height: calc(100% - 2px);
}

.phone .area input[type="text"] {
  height: 100%;
  padding: 0 5px;
  background: transparent;
}

.phone .area div{
    margin-bottom: 0;
}

.areUl {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  line-height: 30px;
  background: #fff;
  display: none;
}

.areUl li {
  cursor: pointer;
}

.phone .area input {
  text-align: center;
  border: none;
}

.phone>input[type="text"] {
  padding-left: 100px;
}

.warn {
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #8a8a8f;
}

.warn span {
  color: #99005c;
  font-size: 16px;
}

.sub {
  width: 100%;
  height: 56px;
  background-color: #99005c;
  box-shadow: 1px 2px 3px 0px rgba(3, 0, 0, 0.15);
  border-radius: 2px;
  border: solid 1px #99005c;
  font-size: 20px;
  color: #fff;
}


/* successful */
.suces {
  width: 660px;
  box-sizing: border-box;
  box-shadow: 1px 2px 8px 0px rgba(3, 0, 0, 0.15);
  padding: 80px 40px;
  background: #fff;
}

.suces h3 {
  font-size: 30px;
  font-family: OPPOSans-B;
  font-weight: normal;
  letter-spacing: 0px;
  color: #99005c;
  text-align: center;
}

.suces p {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #434343;
  margin: 30px 0 0;
}

.channel {
  padding: 60px 0;
  border-bottom: 1px solid #F6F6F6;
  display: grid;
  grid-template-columns: repeat(3, 130px);
  justify-content: space-between;
  margin: 0 0 55px;
}

.channel img {
  display: block;
  width: 100%;
}

.channel p {
  text-align: center;
  margin: 15px 0;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #434343;
}

.goLog {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  letter-spacing: 0px;
  color: #434343;
}

.goLog a {
  color: #99005c;
}

.goLog a:hover {
  text-decoration: underline;
}


/* Login */
.logBox {
  background: url('../images/login.jpg') center no-repeat;
  background-size: cover;
}

.goSig {
  margin-top: 30px;
}


@media screen and (max-width:768px) {

  .sign {
    width: 400px;
    padding: 35px 20px;
  }

  .sigTlt h2,
  .suces h3 {
    font-size: 26px;
  }


  .write input[type="text"],
  .write input[type="password"] {
    height: 40px;
  }

  .sub {
    height: 40px;
    font-size: 18px;
  }

  .suces {
    width: 90%;
    padding: 40px 20px;
  }

  .channel {
    padding: 30px 0;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 0 40px;
    gap: 20px;
  }

}


@media screen and (max-width:450px) {


  .sigTlt {
    margin: 0 0 20px;
  }

  .sign {
    width: 90%;
    padding: 25px 15px;
  }

  .sigTlt h2 {
    font-size: 22px;
  }

  .rad label {
    font-size: 14px;
  }

  .phone .area {
    width: 60px;
  }

  .sigTlt p {
    font-size: 16px;
  }

}
