* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  min-height: 100vh;
}

#app {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 60px;
}

/* 顶部标题区域 */
.header-section {
  background: url("../images/wsxf_img/blqk_bg.png") no-repeat;
  border-radius: 8px;
  margin: 26px 0 20px;
  height: 90px;
  background-position-x: right;
}

.header-content {
  padding: 0 14px;
  font-size: 20px;
  display: flex;
  color: #333;
  height: 100%;
  align-items: center;
  gap: 30px;
}

.header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header-right p {
  display: inline-block;
  padding-right: 14px;
}

.header-content .highlight {
  padding-right: 4px;
  color: #e74c3c;
}

/* 表格容器 */
.container {
  background: url("../images/wsxf_img/lxxd_bj.png");
  background-size: 100% 100%;
  padding: 80px 28px 150px;
}

.table-container {
  padding-bottom: 65px;
}

/* 表格外层包裹，处理小屏横向滚动 */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.table-header-title {
  font-size: 22px;
  font-weight: 600;
  color: #456ac0;
  position: relative;
}

.table-header-title::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 3px;
  left: 0;
  bottom: -8px;
  background: #456ac0;
}

.more-link {
  color: #999;
  font-size: 18px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
}

.more-link:hover {
  color: #456ac0;
}

/* 原生表格样式 */
.native-table {
  width: 100%;
  min-width: 720px;
  /* 确保小屏横向滚动前的最小可读宽度 */
  border-collapse: collapse;
  background: white;
}

.native-table thead {
  background: #456AC0;
}

.native-table th {
  background: #456AC0;
  color: white;
  font-weight: 600;
  height: 60px;
  font-size: 17px;
  text-align: left;
  border: none;
}

.native-table th:first-child,
.native-table th:nth-child(4),
.native-table th:last-child {
  text-align: center;
}

/* 标题列最小宽度（桌面） */
.native-table .th-title {
  min-width: 260px;
}

.native-table tbody tr {
  transition: background-color 0.3s ease;
}

.native-table tbody tr:hover {
  background: #e8f0f8;
}

.native-table td {
  color: #5E5E5E;
  font-size: 16px;
  height: 50px;
  border-bottom: 1px dashed #ebeef5;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  /* 防止标题挤压换行，可结合横向滚动 */
}

.native-table td:first-child,
.native-table td:nth-child(4),
.native-table td:last-child {
  text-align: center;
}

.native-table td a {
  color: inherit;
}

/* 底部操作栏 */
.footer-section {
  display: flex;
  align-items: center;
  height: 70px;
  background: #EDF4FF;
  border: 1px solid #D5E8FF;
  border-radius: 8px;
  padding: 0 50px 0 28px;
}

.footer-section-icon {
  width: 30px;
  height: 30px;
}

.footer-section-left {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  display: flex;
  gap: 62px;
  padding-right: 140px;
}

.footer-actions {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.action-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  font-size: 20px;
  background: white;
  width: 249px;
  height: 50px;
  padding: 0 22px;
}

.action-item:hover {
  transform: translateY(-2px);
}

.action-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hotline-number {
  color: #456AC0;
  font-size: 20px;
  font-weight: 700;
}

/* 全局图片与媒体自适应 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 移动端适配 */
@media (max-width: 800px) {
  #app {
    padding: 20px 12px 40px;
  }

  .header-section {
    height: auto;
  }

  .header-content {
    gap: 12px;
    font-size: 16px;
    padding: 12px;
  }

  .header-right p {
    margin-bottom: 6px;
    padding-right: 10px;
  }

  .container {
    padding: 50px 12px;
  }

  .table-header {
    margin-bottom: 16px;
  }

  .table-header-title {
    font-size: 18px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .native-table {
    min-width: 640px;
  }

  .native-table th,
  .native-table td {
    height: 44px;
    font-size: 16px;
  }

  .footer-section {
    padding: 12px;
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
    height: auto;
  }

  .footer-section-left {
    padding: 0;
    font-size: 16px;
    text-align: left;
  }

  .action-icon {
    width: 24px;
    height: 24px;
  }

  .hotline-number {
    font-size: 16px;
  }

  .native-table .th-title {
    min-width: 200px;
  }
}

@media (max-width: 1200px) {
  .footer-actions {
    gap: 10px;
    justify-content: space-between;
  }

  .action-item {
    width: calc(50% - 6px);
    min-width: 0;
    height: 44px;
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .footer-section {
    padding: 12px;
    gap: 12px;
    height: auto;
  }

  .footer-section-left {
    gap: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .footer-section-left {
    padding-right: 80px;
  }
}

@media (max-width: 480px) {
  .native-table {
    min-width: 560px;
  }

  .footer-actions {
    gap: 8px;
    flex-wrap: wrap;
  }

  .action-item {
    width: 100%;
  }
}