.li-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,.5);
}
.li-mask.none {
  display: none;
}

.li-pop.none {
  display: none;
}

.li-pop {
  position: fixed;
  top: calc(50vh - 290px);
  left: calc(50vw - 450px);
  width: 900px;
  height: 580px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
}

.li-pop-header {
  background-color: #1e2b5f;
  height: 85px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.li-pop-content {
  padding: 0px 78px;
  padding-top: 48px;
}
.li-pop-content .part {
  display: flex;
  flex-direction: row;
  justify-content:space-between;
  margin-bottom: 30px;
}
.li-pop-content .part>div {
  width:340px;
}

.li-pop-content .part label {
  display: block;
  margin-bottom:18px;
}
.li-pop-content .part label>span {
  color: red;
  margin-right:10px;
  vertical-align: middle;
}
.li-pop-content .part input {
  display: block;
  width: 330px;
  height: 44px;
  border:1px solid #eee;
  /*padding:12px 0;*/
  padding-left:10px;
  font-size: 16px;
  border-radius: 8px;
  color: #333;
  /*box-sizing:border-box;*/
}

.li-pop-content .part select {
  display: block;
  width: 342px;
  height: 44px;
  border:1px solid #eee;
  /*padding:12px 0;*/
  padding-left:10px;
  font-size: 16px;
  border-radius: 8px;
  color: #333;
  /*box-sizing:border-box;*/
}
.li-pop-content .part select option {
  color:#999;
}
.li-pop-content .part3 {
  margin-bottom: 30px;
}
.li-pop-content .part3 label {
  display: block;
  margin-bottom:18px;
}
.li-pop-content .part3 label>span {
  color: red;
  margin-right:10px;
  vertical-align: middle;
}
.li-pop-content .part3 label i {
  color: #999;
  font-style: normal;
}
.li-pop-content .part3 li {
  display: inline-block;
  padding:18px 42px;
  border-radius: 42px;
  cursor: pointer;
}
.li-pop-content .part3 li:hover {
  background-color:#1e2b5f;
  color: #fff;
}
.li-pop-content .part3 li.action {
  background-color:#1e2b5f;
  color: #fff;
}
.li-pop-content .part4 input {
  display: block;
  width:100%;
  padding:20px 0;
  border:none;
  outline: none;
  background-color:#ff630e;
  border-radius: 42px;
  color:#fff;
  font-size: 18px;
  font-family: Microsoft Yahei;
  cursor: pointer;
}
.li-pop-content .part4 input:active {
  background-color:#d35b1a;
}


/* 弹框提示信息 */
.warn {display: none;position: fixed;top:calc(50vh - 15px);z-index: 1000;width: 100%;text-align: center;}
.warn i {display: inline-block;font: normal normal 14px Microsoft Yahei;color: #fff;background: rgba(0,0,0,0.8);border-radius: 4px;line-height: 30px;padding: 0 20px;max-width:80%;}