#DZLoading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.ball-scale > div {
  background-color: #ffe23b;
  border-radius: 100%;
  margin: 2px;
  display: inline-block;
  height: 80px;
  width: 80px;
  animation: ball-scale 1s 0s ease-in-out infinite;
}
@keyframes ball-scale {
0% {
    transform: scale(0);
}
100% {
    transform: scale(1);
    opacity: 0;
}
}
#service {
  overflow: hidden;
  overflow-y: auto;
}
#service .household_drawer {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 15px 15px 0 0;
}
#service .household_drawer .el-drawer__body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 30px;
}
#service .household_drawer .el-radio {
  margin-bottom: 20px;
}
#service .dezu_container_body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
  overflow: visible;
}
#service .dezu_container_body.justify_start {
  justify-content: flex-start;
}
#service .dezu_service_form {
  width: 100%;
  max-width: 375px;
  padding: 50px 39px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
#service .dezu_greeting_title {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
#service .dezu_greeting_title label {
  display: block;
  width: 100%;
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 43px;
  text-align: center;
  color: #555555;
}
#service .dezu_greeting_title span {
  width: 100%;
  height: 20px;
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #AAAAAA;
  cursor: pointer;
}
#service .dezu_service_card {
  width: 100%;
  max-width: 375px;
  min-height: calc(100vh - 36px - 500px);
  padding: 50px 39px;
  border-radius: 5px;
  background-color: #fff;
  font-size: 14px;
}
#service .dezu_btn_group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#service .dezu_btn_group button {
  width: 287px;
  height: 50px;
  margin: 0;
  margin-bottom: 14px;
  box-sizing: border-box;
  border-radius: 4.8px;
  font-family: Noto Sans TC;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
#service .dezu_btn_group .dezu_info {
  background: #555555;
  border: 1px solid #555555;
  color: #FFFFFF;
}
#service .dezu_btn_group .dezu_primary {
  background: #FFDE1F;
  border: 1px solid #FFDE1F;
  color: #555555;
}
