.dialogBox {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.dialogs {
  background: #fff;
  width: 800px;
  max-height: 800px;
  height: auto;
}
.dialog-main {
  margin: 30px 0;
  max-height: 560px;
  height: auto;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 30px;
}
.dialog-main p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
  color: #000;
}
.addressTit {
  box-sizing: border-box;
  padding: 0 30px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  height: 80px;
  font-size: 24px;
  font-weight: bold;
}
.addressTit img {
  width: 28px;
  margin-right: 16px;
}
.dialog-footer {
  padding-bottom: 20px;
}
.btnBox {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}
.btnBox .btnClose {
  width: 140px;
  line-height: 44px;
  border-radius: 5px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-align: center;
  background: #1492ff;
}
