.service-consulte-root {
    width: 350px;
    height: 332px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: url(../images/service-consulte-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 999;
    display:none;
}
.service-consulte-root.active{
  display: block;
}


.service-consulte-root .service-consulte-title {
    color: #fff;
    padding-top: 10px;
    height: 55px;
    display: flex;
    font-size: 20px;
    font-weight: 600;
    justify-content: center;
    align-items: center
}

.service-consulte-root .service-consulte-content {
    padding: 0 40px
}

.service-consulte-root .service-consulte-content .service-consulte-info {
    padding: 16px 8px 0;
    font-size: 12px;
    color: #333;
    line-height: 2
}

.service-consulte-root .service-consulte-content .service-consulte-form {
    padding-top: 10px
}


.dialog-main-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px
}

.dialog-main-close svg {
    width: 100%;
    height: 100%;
    color: #fff;
    cursor: pointer
}


.create-btn {
    width: 100%;
    height: 33px;
    background: linear-gradient(270deg,#FFC167 0%,#FF184A 100%),#FF6327;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    cursor: pointer
}
.form-tip{
  font-size: 12px;
  padding-bottom: 8px;
  background: transparent;
}
.form-tip.error{
  color: #d03050;
}

.form-item{
  width: 250px;
  height: 33px;
  border: 1px solid rgba(77, 130, 244, 1);
  padding: 0 10px;
  border-radius: 6px;
}
.form-item input{
  width: 100%;
  height: 30px;
  line-height: 30px;
  border: 0;
  background: transparent;
  outline: none;
}




.message-root{
  position: fixed;
  background: #FFFFFF;
  box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.16);
  border-radius: 2px;
  left: 50%;
  top: 50%;
  z-index: 999;
  width: 304px; 
  height: 165px;
  transform: translate(-50%,-50%,);
  display: none;
  
  flex-direction: column;
}
.message-root.active{
display: flex;
}


.message-root .message-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 22px;
    
  }

 .message-root .message-icon svg{
      color: green;
      width: 60px;
      height: 60px;
    }

.message-root .message-title{
    padding-top: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #181818;
  }

.message-root .message-info{
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #73777A;
  }
.message-mask{
  position: fixed;
  left: 0;
  top:0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #00000060;
  display: none;
}



