#errorPopup {
  position: fixed;
  top: 50%  ;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9) !important; /* 半透明黑色 */
  color: #00ADA4 !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  z-index: 10000;
  display: none;
}


/* 简易表单样式 */
.form-container {
  margin: 25px 25px; /* 上下 20px, 左右自动 */
  padding: 20px 30px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  box-sizing: border-box;
  }
  .form-container label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
  }
  .form-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 2px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #333;
    color: #999; /* placeholder 和选中项颜色 */
  
    /* 移除默认外观 */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  
    /* 字体统一 */
    font-family: inherit;
    font-size: 14px;
  
    /* 自定义箭头 */
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='20,40 70,90 120,40' fill='%23999999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px;
    padding-right: 32px; /* 留出箭头空间 */
  }
  
  /* 修复 Chrome 下 option 字体颜色 */
  .form-container select option {
    background-color: #333;
    color: #fff;
  }
  .form-container input {
    box-sizing: border-box;
    width: 100%;
    padding: 8px;
    margin-bottom: 2px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #333;
    color: #fff;
}
  .form-container textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #444;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-family: "Roboto", "PingFangSC", "Microsoft Yahei", sans-serif;
    box-sizing: border-box;
    margin-top: 14px;
}
  .form-container button {
    background-color: #00ADA4;
    border: none;
    padding: 12px 12px;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
  
  }
  .form-container button:hover {
    background-color: #00877d;
    color: #fff;
  }
  .btn-submit {
    background-color: #00ADA4 !important;
    border: none !important;
    padding: 8px 12px !important;
    color: #fff !important;
    font-size: 16px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    width: 100px !important;
    display: block !important;
    margin: 0 auto 0 auto !important; /* 上右下左，水平居中 */
  }
  .btn-submit:hover {
    background-color: #00877d !important; 
  }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-family: "Roboto", "PingFangSC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
  color: #999;
}

/* 针对 Firefox 19+ */
input::-moz-placeholder,
textarea::-moz-placeholder {
  font-family: "Roboto", "PingFangSC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
  color: #999;
}

/* 针对 IE 10+ */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-family: "Roboto", "PingFangSC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
  color: #999;
}

/* 针对 Firefox 4 - 18 */
input:-moz-placeholder,
textarea:-moz-placeholder {
  font-family: "Roboto", "PingFangSC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
  color: #999;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 移动端响应：小屏幕单列显示 */
@media screen and (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.submitting {
  background-color: #00877D !important;
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  pointer-events: none !important;
}

.ipt-label{margin-bottom:0px!important; color: #999 !important;}

body.modal-open{padding-right:0!important}
.modal {
  padding-right: 0 !important;
}