body {
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.register-header {
  margin-top: 1px;
  background-color: #fff;
}
.register-header .register-header-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
.register-header .register-header-container .logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 400;
  color: #000000;
}
.register-header .register-header-container .logo img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.register-header .register-header-container .register-list {
  display: flex;
}
.register-header .register-header-container .register-list .list-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 50px;
}
.register-header .register-header-container .register-list .list-item > div {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  margin-bottom: 10px;
}
.register-header .register-header-container .register-list .list-item span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #CCCCCC;
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  border-radius: 50%;
}
.register-header .register-header-container .register-list .list-item span::after {
  position: absolute;
  left: 150%;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 146px;
  height: 0px;
  opacity: 1;
  border: 1px solid #EEEEEE;
}
.register-header .register-header-container .register-list .list-item:last-child span::after {
  display: none;
}
.register-header .register-header-container .register-list .active > div {
  color: #006EFF;
}
.register-header .register-header-container .register-list .active span {
  background: #006EFF;
}
.register-header .register-header-container .has-acctount {
  font-size: 22px;
  font-weight: 400;
  color: #000;
}
.register-header .register-header-container .has-acctount a {
  color: #006EFF;
}
.register-container {
  padding: 80px 0 100px;
}
.register-container .register-box {
  display: flex;
  flex-wrap: wrap;
}
.register-container .register-box .register-content {
  width: 580px;
  margin-right: 40px;
  background-color: #fff;
  box-shadow: 3px 3px 12px 1px rgba(186, 186, 186, 0.16);
  padding: 60px 30px;
  display: flex;
}
.register-container .register-box .register-content img {
  width: 88px;
  height: 88px;
  margin-right: 40px;
}
.register-container .register-box .register-content:nth-child(2n) {
  margin-right: 0;
}
.register-container .register-box .register-content .info .title {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}
.register-container .register-box .register-content .info .intro {
  font-size: 16px;
  font-weight: 400;
  color: #999999;
  margin: 10px 0 30px;
}
.register-container .register-box .register-content .info a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 46px;
  
  border-radius: 4px 4px 4px 4px;
  
  font-size: 18px;
  background-color: #fff;
  border: 1px solid #CCCCCC;
  color: #CCCCCC;
}
.register-container .register-box .register-content .info a:hover {
  background: #006EFF;
  color: #fff;
}
.register-container2 {
  padding: 80px 0 100px;
}
.register-container2 .register-box {
  background-color: #fff;
  box-shadow: 3px 3px 12px 1px rgba(186, 186, 186, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 80px;
}
.register-container2 .register-box .input-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.register-container2 .register-box .input-box label {
  min-width: 100px;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
}
.register-container2 .register-box .input-box input {
  width: 420px;
  height: 48px;
  border: 1px solid #DDDDDD;
  padding: 0 15px;
}
.register-container2 .register-box .input-box .address {
  width: 420px;
  height: 48px;
  display: flex;
  align-items: center;
}
.register-container2 .register-box .input-box .address select {
  flex: 1;
  margin-right: 5px;
  border: 1px solid #DDDDDD;
  height: 48px;
  padding-left: 10px;
}
.register-container2 .register-box .input-box .address select:last-child {
  margin-right: 0;
}
.register-container2 .register-box .input-box .xy {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  color: #999999;
  width: 100%;
  margin: 20px 0;
}
.register-container2 .register-box .input-box .xy a{
  color: #006EFF;
}
.register-container2 .register-box .input-box .xy .agree-btn {
  width: 18px;
  height: 18px;
  background-image: url(../images/login/s-select.png);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 5px;
  cursor: pointer;
}
.register-container2 .register-box .input-box .xy .selected {
  background-image: url(../images/login/s-selected.png);
}
.register-container2 .register-box .input-box > button {
  width: 420px;
  height: 48px;
  background: #006EFF;
  border-radius: 4px 4px 4px 4px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  outline: none;
  border: 0;
}
.register-container2 .register-box .input-box > a {
  display: block;
  width: 420px;
  height: 48px;
  border-radius: 4px 4px 4px 4px;
  line-height: 48px;
  text-align: center;
  background: #eee;
  color: #999999;
  font-size: 16px;
  outline: none;
  border: 0;
}
.register-container3 {
  padding: 80px 0 100px;
}
.register-container3 .register-box {
  background-color: #fff;
  box-shadow: 3px 3px 12px 1px rgba(186, 186, 186, 0.16);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 50px 0 80px;
}
.register-container3 .register-box img {
  width: 89px;
  height: 89px;
  margin: 50px 0 20px;
}
.register-container3 .register-box p {
  font-size: 20px;
  font-weight: 500;
  color: #999999;
  margin-bottom: 5px;
}
.register-container3 .register-box .go-login {
  display: block;
  width: 420px;
  height: 48px;
  background: #006EFF;
  border-radius: 4px 4px 4px 4px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  margin-top: 100px;
}
footer {
  margin-top: auto;
}
