.dailog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
}
.box {
  padding: 12px 18px;
  box-sizing: border-box;
  width: 50vw;
  /* height: 20vw; */
  background-color: #fff;
  border-radius: 12px;
}
.colse {
  width: 100%;
  height: 36px;
 text-align: right;
}
.colse img {
  width: 14px;
}
.sel {
  width: 100%;

}
.input {
  margin: 7px 0;
  width: 100%;
}
.input select {
    width: 100%;
    height: 36px;
  padding: 0 12px;
  font-size: 14px;
  border: 1px solid #aeaeae;
  border-radius: 3px;
  background-color: #ffffff;
  color: #333;
  /* 清除默认浏览器箭头 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 自己做下拉箭头背景图 */
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.input textarea {
  padding-left: 6px;
  box-sizing: border-box;
  width: 100%;
    font-size: 14px;
  border: 1px solid #aeaeae;
}
.input input {
  width: 100%;
  height: 36px;
  border: 1px solid #aeaeae;
  font-size: 14px;
  padding-left: 6px;
  box-sizing: border-box;
  border-radius: 3px;
}
input::placeholder {
  font-size: 14px;      /* 字号 */
  color: #aeaeae;       /* 颜色 */
}

textarea::placeholder {
  font-size: 14px;      /* 字号 */
  color: #aeaeae;       /* 颜色 */
}
/* 全部表单元素 */
input:focus,
select:focus,
textarea:focus {
  outline: none; /* 取消浏览器默认蓝色外发光边框 */
  /* 不要完全删掉焦点反馈，自己自定义焦点样式 */
  /* border-color: #409EFF; */
  /* box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2); */
}
.warning {
  width: 100%;
  text-align: center;
  line-height: 22px;
  font-size: 16px;
  font-weight: bold;
  color: tomato;
  opacity: 0;
}
.btns {
  margin: 12px 0;
  width: 100%;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btns .btn {
  margin-right: 22px;
  padding: 0;
  width: 120px;
  height: 100%;
  background: #5FA8FF;
  border-radius: 36px;
  line-height: 36px;
  color: #fff;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 14px;
  border: 1px solid #5FA8FF;
}
/* .container {

  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;

} */
.home-banner {
  width: 50%;
}
.maintit {
  color: #Fff;
  font-size: 16px;
}
.message {
  position: fixed;
  top:100px;
  left: 50%;
  display: none;
  transform:  translate(-50%, 0);
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 0 22px;
  height: 28px;
  border-radius: 28px;
  font-size: 14px;
  color: #fff;
}
.desc {
margin-top: 44px;
width: 220px;
height: 42px;
text-align: center;
line-height: 42px;
background: #fff;
border-radius: 42px;
}