#dialog{
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    /* background: rgba(0,0,0,0.3); */
    top: 0;
    left: 0;
    opacity: 0;
}
.dialog_bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    top: 0;
    left: 0;
}
.dialog_layout_warppt{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.dialog_layout{
    padding: 0 3.75rem;
    background: #FFFFFF;
    box-shadow: 0rem .625rem 1.875rem 0rem rgba(176,191,231,0.2);
    border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
}
.dialog_title{
    padding-top: 3.75rem;
    padding-bottom: 1.875rem;
    text-align: center;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 2.5rem;
    color: #000000;
}
.dialog_input_layout{
    display: flex;
}
.dialog_input_layout1{
    margin-top: .9375rem;
    position: relative;
}
.dialog_input_title{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1rem;
    color: #2E3235;
    line-height: 2.5rem;
}
.dialog_input_title span{
    color: #FC7971;
}
.dialog_input{
    padding-left: .9375rem;
    width: 29.6875rem;   
    height: 3.125rem;
    border-radius: .5rem .5rem .5rem .5rem;
    border: .0625rem solid #D9D9D9;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: .875rem;
    color: #2E3235;
}
.dialog_input_item1{
    margin-left: 2.5rem;
}




.dialog_problem{
    padding-top: 1.5625rem;
    display: flex;
    flex-direction: column;
}
.dialog_problem_title{
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1rem;
    color: #2E3235;
    line-height: 2.5rem;
    user-select: none;
}
.dialog_problem_layout{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.dialog_problem_item{
    padding: 0 0.9375rem;
    width: 12.875rem;
    height: 3.125rem;
    border-radius: .5rem .5rem .5rem .5rem;
    border: .0625rem solid #D9D9D9;
    text-align: center;
    line-height: 3.125rem;
    margin-top: 1.25rem;
    cursor: pointer;
}
.dialog_problem_item_action{
    color: #446DFC;
    border: .0625rem solid #446DFC;
}
.dialog_input_phone{
    position: relative;
}
.dialog_input_btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: .875rem;
    line-height: 2.5rem;
    color:  #446DFC;
    /* width: 4.375rem; */
    right: .9375rem;
    text-align: right;
}
.dialog_input_btn1{
    right: 7em;
    color: #446DFC;
}
.dialog_problem_item:nth-child(4n+1){
    margin-left: 0rem;
}
.dialog_problem_item:nth-of-type(-n+4) {
    margin-top: 0rem;
}
.dialog_treatext{
    padding-top: 1.5625rem;
    width: 63.75rem;
    display: flex;
    justify-content: center;
    /* padding-left: 2.5rem; */
}
.dialog_treatext textarea{
    padding: 1rem 1rem;
    width: 85rem;
    height: 5.5rem;
    border-radius: 0.5rem;
    border: 0.0625rem solid #D9D9D9;
}

.dialog_footer{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.dialog_footer_button{
    display: flex;
    justify-content: center;
}
.dialog_footer_button button{
    width: 12.5rem;
    height: 3.75rem;
    border-radius: .75rem .75rem .75rem .75rem;
}
.dialog_button1{
    background: #F1F2F8;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 1rem;
    color: #646A73;
}
.dialog_button2{
    margin-left: 2.8125rem;
    background: #446DFC;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 1rem;
    color: #FFFFFF;
}
.dialog_footer_title{
    padding-top: 1.25rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 1rem;
    color: #646A73;
    text-align: center;
}
/* loding */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* 白色背景，可自定义 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* 确保遮罩层在最顶层 */
  }
  
  .loading-indicator {
    text-align: center;
  }
  
  .spinner {
    border: .25rem solid rgba(0, 0, 0, 0.1);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: .625rem;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  .dialog_input::-webkit-input-placeholder {
    color: #AFB1B3; /* 改变颜色 */
  }
  
  .dialog_input:-moz-placeholder { /* Firefox 18- */
    color: #AFB1B3;
  }
  
  .dialog_input::-moz-placeholder { /* Firefox 19+ */
    color: #AFB1B3;
  }
  
  .dialog_input:-ms-input-placeholder {
    color: #AFB1B3;
  }

  .dialog_input_title2{
    display: flex;
  }
  .dialog_phone{
    margin-left: auto;
    color: #2E3235 !important;
    padding-left: 1.25rem;
  }
  .dialog_tips{
    position: absolute;
    bottom: -1.5rem;
    display: inline-block;
    font-family: Microsoft YaHei, Microsoft YaHei;
    color: #f15533;
    font-size: .75rem;
  }
/* loding */
/* model */
.modal {
    position: fixed;
    z-index: 10086;
    left: 50%;
    transform: translate(-50%);
    box-sizing: border-box;
    top: -2.475rem;
    width: 18.75rem;
    height: 2.475rem;
    overflow: auto;
    background-color:#f0f9eb;
    line-height: 2.475rem;
    text-align: center;
    font-size: .875rem;
    color: #67c23a;
    border-radius: .125rem;
    transition: all 0.6s ease; /* 添加过渡效果 */
  }
  .modalHidden{
    top: .9375rem;
  }
  .modal-content {
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 1.75rem;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
/* model */
.dialog_bg{
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* 白色背景，可自定义 */
}