* {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
}

.breadcrumb {
  padding-left: 0 !important;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.content {
  width: 100%;
  padding: 17px min(9.375vw, 140px) 65px;
}

/* 表单容器样式 */
.form-table {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.form-table .title {
  font-size: 24px;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

/* 表单分组样式 */
.box {
  border: 1px solid #e8e8e8;
  margin-bottom: 20px;
  border-radius: 4px;
}

.gray-bg {
  background-color: #f5f5f5;
  padding: 15px;
}

/* 表单项样式优化 */
.form-group {
  margin-bottom: 25px;
  padding: 0 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  position: relative;
}

.form-group:hover {
  background-color: #fafafa;
  border-radius: 4px;
}

.control-label {
  font-weight: 500;
  color: #262626;
  font-size: 15px;
  line-height: 40px;
  text-align: right;
  padding-right: 15px;
  position: relative;
}

.form-control {
  height: 42px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 8px 15px;
  transition: all 0.3s;
  font-size: 14px;
  color: #262626;
  width: 100%;
}

.form-control:focus {
  border-color: #1890ff;
  box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.1);
}

/* 必填项标记优化 */
.require .control-label:after {
  content: "*";
  color: #ff4d4f;
  margin-left: 4px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* 表单项布局优化 */
.col-sm-4 {
  padding-right: 15px;
  width: 120px;
  flex-shrink: 0;
}

.col-md-8 {
  padding-left: 15px;
  flex: 1;
}

/* 表单项行布局 */
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.form-row .form-group {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 10px;
}

/* 输入框组样式 */
.input-group {
  display: flex;
  align-items: center;
}

/* 单选按钮组样式 */
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.td-radio-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.td-radio-box input[type="radio"] {
  margin-right: 8px;
}

/* 验证码区域样式 */
.vercode-box {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  margin-top: 30px;
}

.vercode-input-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vercode-input-group .form-control {
  width: 150px;
  flex-shrink: 0;
}

.vercode-label {
  padding-top: 0 !important;
}

.vercode-img-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pargraph h6 {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}

/* 移动端验证码优化 */
@media (max-width: 768px) {
  .vercode-box {
    padding: 15px;
    margin-top: 20px;
    background-color: #fff !important;
  }

  .site-map-title {
    margin-right: 0;
  }

  .pargraph h6 {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 20px;
  }

  .vercode-input-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .vercode-input-group .form-control {
    width: 100%;
    max-width: 200px;
  }

  .vercode-img-box {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .vercode-img-box img {
    width: 100px;
    height: 28px;
    cursor: pointer;
  }

  .refresh-link {
    font-size: 12px;
    color: #1890ff;
    text-decoration: none;
  }
}

.vercode-img-box img {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 2px;
  background: #fff;
  transition: all 0.3s;
}

.vercode-img-box img:hover {
  border-color: #1890ff;
  box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.1);
}

.refresh-link {
  color: #1890ff;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}

.refresh-link:hover {
  color: #40a9ff;
}

/* 响应式优化 */
@media (max-width: 768px) {
  .content {
    padding: 10px 15px 40px;
  }

  .form-table {
    padding: 20px 15px;
    margin: 0;
    border-radius: 0;
  }

  .form-table .title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* 表单分组样式移动端优化 */
  .box {
    margin-bottom: 15px;
  }

  .gray-bg {
    padding: 12px;
  }

  /* 表单项移动端布局 */
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 20px;
  }

  .col-xs-11 {
    padding-left: 0 !important;
  }

  .control-label {
    text-align: left !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    padding-left: 0 !important;
  }

  .col-sm-4 {
    width: 100%;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .col-md-8 {
    width: 100%;
    padding-left: 0;
  }

  /* 表单项行布局移动端优化 */
  .form-row {
    margin: 0;
  }

  .form-row .form-group {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 !important;
    width: 100% !important;
  }

  /* 单选按钮组移动端优化 */
  .form-radio-group {
    flex-direction: column;
    gap: 8px;
  }

  .td-radio-box {
    width: 100%;
    margin-bottom: 6px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .td-radio-box:last-child {
    border-bottom: none;
  }

  .td-radio-box input[type="radio"] {
    margin-right: 12px;
  }

  .td-radio-box .td-head {
    font-size: 14px;
    line-height: 1.4;
  }

  /* 移动端单选按钮组布局优化 */
  .col-sm-6.col-md-4.td-radio-box {
    width: 100%;
    max-width: none;
  }



  /* 提交按钮移动端优化 */
  .submit-box {
    margin-top: 20px;
    padding: 0;
  }

  .submit-box .btn {
    width: 100%;
    max-width: 200px;
    padding: 12px 20px;
  }

  /* 表头移动端优化 */
  .td-th {
    text-align: left !important;
    padding: 0 0 10px 0 !important;
    margin-bottom: 0;
    width: 100%;
  }

  .td-form {
    padding: 0;
    width: 100%;
  }

  .td-block {
    padding: 15px 0;
  }

  /* 描述文本移动端优化 */
  .des {
    font-size: 12px;
    line-height: 1.4;
  }

  /* 表单控件移动端优化 */
  .form-control {
    height: 44px;
    font-size: 16px;
    /* 防止iOS缩放 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .td-form textarea.form-control {
    min-height: 80px;
  }

  /* 下拉框移动端优化 */
  select.form-control {
    padding-right: 35px;
    background-size: 12px;
  }

  /* 单选按钮移动端优化 */
  input[type="radio"] {
    min-width: 20px;
    min-height: 20px;
    margin-right: 8px;
  }

  /* 触摸友好的按钮 */
  .btn {
    min-height: 44px;
    touch-action: manipulation;
  }
}

/* 小屏幕设备进一步优化 */
@media (max-width: 480px) {
  .content {
    padding: 8px 10px 30px;
  }

  .form-table {
    padding: 15px 10px;
  }

  .form-table .title {
    font-size: 18px;
  }

  .gray-bg {
    padding: 10px;
  }

  .form-group {
    margin-bottom: 15px;
    margin-right: 0px !important;
    margin-left: 0px !important;
  }

  .control-label {
    font-size: 14px;
    background-color: #fff !important;

  }

  .form-control {
    height: 42px;
    font-size: 16px;
  }

  .td-radio-box {
    padding: 6px 0;
  }

  .vercode-img-box img {
    width: 90px;
    height: 26px;
  }

  .submit-box .btn {
    max-width: 180px;
    padding: 10px 16px;
    font-size: 15px;
  }

  /* 小屏幕设备额外优化 */
  .form-control {
    height: 42px;
  }

  .btn {
    min-height: 42px;
  }

  input[type="radio"] {
    min-width: 18px;
    min-height: 18px;
  }

  /* 小屏幕单选按钮组优化 */
  .td-radio-box {
    padding: 8px 0;
  }

  .td-radio-box .td-head {
    font-size: 13px;
  }
}

/* 超小屏幕设备优化 */
@media (max-width: 360px) {
  .content {
    padding: 5px 8px 25px;
  }

  .form-table {
    padding: 12px 8px;
  }

  .form-table .title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .control-label {
    font-size: 13px;
  }

  .form-control {
    height: 40px;
    font-size: 16px;
  }

  .td-radio-box {
    padding: 5px 0;
    font-size: 13px;
  }

  .vercode-img-box img {
    width: 80px;
    height: 24px;
  }

  .submit-box .btn {
    max-width: 160px;
    padding: 8px 14px;
    font-size: 14px;
  }

  /* 超小屏幕设备额外优化 */
  .form-control {
    height: 40px;
  }

  .btn {
    min-height: 40px;
  }

  input[type="radio"] {
    min-width: 16px;
    min-height: 16px;
  }

  /* 超小屏幕单选按钮组优化 */
  .td-radio-box {
    padding: 6px 0;
  }

  .td-radio-box .td-head {
    font-size: 12px;
  }
}

/* 提交按钮样式 */
.submit-box {
  text-align: center;
  margin-top: 30px;
  padding: 0 15px;
}

.submit-box .btn {
  padding: 10px 40px;
  font-size: 16px;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 120px;
}

.submit-box .btn:hover {
  background: #40a9ff;
}

.text-center {
  text-align: center;
}

/* 错误提示样式 */
.error-message {
  color: #ff4d4f;
  font-size: 12px;
  margin-top: 4px;
}

/* 表头样式 */
.td-head {
  font-weight: 500;
  color: #333;
}

/* 描述文本样式 */
.des {
  color: #666;
  font-size: 13px;
}

/* 清除浮动 */
.clearfloat:after {
  content: "";
  display: table;
  clear: both;
}

/* 移除禁用状态样式 */
input:disabled {
  background-color: #fff;
  cursor: text;
  opacity: 1;
}

/* 下拉框样式 */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

/* Tabs样式 */
.tabs-container {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.tabs-header {
  display: flex;
  border-bottom: 2px solid #e8e8e8;
  background: #fff;
  padding: 0 20px;
}

.tab-item {
  padding: 15px 30px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-size: 15px;
  color: #666;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

.tab-item input[type="radio"] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}

.tab-item span {
  cursor: pointer;
}

.tab-item.active {
  color: #1890ff;
  font-weight: 500;
  border-bottom-color: #1890ff;
}

.tab-item:hover {
  color: #40a9ff;
}

.tabs-content {
  padding: 20px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Tabs移动端优化 */
@media (max-width: 768px) {
  .tabs-header {
    flex-direction: column;
    border-bottom: none;
    padding: 0;
  }

  .tab-item {
    padding: 12px 20px;
    border-bottom: 1px solid #e8e8e8;
    border-left: 3px solid transparent;
  }

  .tab-item.active {
    border-bottom-color: #e8e8e8;
    border-left-color: #1890ff;
    background: #e6f7ff;
  }

  .tabs-content {
    padding: 15px;
  }
}

/* 所需信息情况样式 */
.td-block {
  padding: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.td-block:last-child {
  border-bottom: none;
}

.td-th {
  font-weight: 500;
  color: #333;
  padding: 0 15px;
  text-align: right;
}

.td-form {
  padding: 0 15px;
}

.td-form .form-group {
  margin-bottom: 0;
  padding: 0;
}

.td-form .require{
  position: relative;
}
.td-form .require:before {
  content: "*";
  color: #ff4d4f !important;
  margin-right: 4px !important;
  font-size: 14px !important;
  position: absolute !important;
  left: -8px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.text-left {
  text-align: left;
}

#personal .td-form .require:before {
  top: 50%;
  transform: translateY(-50%);
}

.td-form textarea.form-control {
  height: auto;
  min-height: 100px;
  resize: vertical;
}

.td-form .col-xs-11 {
  position: relative;
  width: 100%;
}



.site-map {
  background: #fff;
  padding: 30px;
  padding-left: 0;
  border-radius: 6px;
}

.site-map-group {
  border-bottom: 1px solid #eee;
  padding: 24px 0 12px 0;
  display: flex;
  align-items: flex-start;
}

.site-map-title {
  min-width: 120px;
  font-size: 18px;
  font-weight: bold;
  color: #2670b9;
  border-left: 4px solid #2670b9;
  padding-left: 12px;
  margin-right: 32px;
}

.site-map-links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.site-map-links a {
  color: #222;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 8px;
}

.site-map-group:last-child {
  border-bottom: none;
}