.nav {
  display: flex;
  justify-content: center;
  height: 40px;
  background-color: #eee;
}
.nav .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1400px;
}
.search {
  min-height: 120px;
}
.search .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1400px;
}
.search .title {
  width: 220px;
  font-size: 28px;
  text-align: center;
}

html {
  background-color: #f8f8f8;
}
.register {
  display: flex;
  justify-content: start;
  background-color: #fff;
  width: 80%;
  height: 700px;
  margin: 0 auto 80px;
  padding: 60px 100px;
}
.left {
  width: 50%;
  margin-left: 100px;
}
.left .title {
  font-size: 28px;
  color: rgb(32, 135, 212);
  margin-bottom: 20px;
}
.form .form-item {
  display: flex;
  margin-bottom: 32px;
}
.form label {
  width: 120px;
  text-align: right;
  margin-right: 20px;
  line-height: 40px;
}
.form .checkbox {
  margin-left: 140px;
}
.form .submit {
  margin-left: 140px;
}
.form .submit button {
  width: 200px;
  height: 40px;
  font-size: 16px;
  background-color: rgb(32, 135, 212);
  color: #fff;
}
.form input[type=text], .form input[type=password], .form input[type=email] {
  height: 40px;
  width: 320px;
  border: 1px solid rgba(34, 34, 34, .3);
  padding: 0 10px;
}

.form .checkbox a {
  margin-right: 20px;
  color: rgb(32, 135, 212);
  cursor: pointer;
}
.form .checkbox input {
  margin-right: 6px;
}

.right {
  margin-top: 100px;
  margin-left: 40px;
}
.right .title {
  margin-bottom: 20px;
}
.right .btn {
  display: block;
  text-align: center;
  line-height: 40px;
  width: 160px;
  height: 40px;
  font-size: 16px;
  background-color: rgb(32, 135, 212);
  color: #fff;
}

.dialog {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.dialog .wrap {
  position: absolute;
  width: 80vw;
  left: 50%;
  top: 40px;
  transform: translate(-50%, 0);
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 16px;
}
.wrap .header {
  width: 100%;
  height: 40px;
  display: flex;
  position: relative;
}
.wrap .header .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.wrap .body .title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}