@charset "utf-8";
/* 基础样式 */

/* 字体整体样式 */
body {
  font-family: 'Arial', 'Helvetica', sans-serif; /* 使用清晰的无衬线字体 */
  font-size: 16px; /* 增加字体大小 */
  line-height: 1.6; /* 调整行间距 */
  color: #333; /* 更深的颜色，避免使用浅色字体 */
}


header {
  background-color: #5dade2;  /* 浅蓝色背景 */
  color: white;
  text-align: center;
  padding: 15px 0;  /* 减少上下内边距 */
  border-bottom: 2px solid #2980b9;  /* 边框颜色与背景色协调 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
  font-size: 28px;  /* 调整字体大小 */
  font-weight: bold;
  letter-spacing: 1px;
  margin: 0;
}

header p {
  font-size: 16px;  /* 调整副标题的字体大小 */
  margin-top: 5px;
  color: #f4f6f7;  /* 更浅的副标题字体颜色 */
}
h2 {
  text-align: center;
  font-size: 22px;
  margin: 20px 0;
}

/* 表格样式 */
table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 10px;
  text-align: center;
}

th {
  background-color: #34495e;
  color: white;
}

a {
  text-decoration: none;
  color: #3498db;
}

a:hover {
  color: #2980b9;
}

/* 表格链接行样式 */
.tabtop13 td {
  padding: 15px;
}

/* 居中容器 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  table, th, td {
      font-size: 14px;
  }
  th, td {
      padding: 8px;
  }
}

/* status-description 样式 */
.status-description {
  font-size: 16px;
  color: #34495e; /* 更深的灰色，增加文本的可读性 */
  line-height: 1.6;
  margin: 15px 0;
  padding: 10px;
  background-color: #ecf0f1; /* 背景色淡雅，提升视觉层次 */
  border-left: 5px solid #3498db; /* 左边有个蓝色边框，突出重点 */
  border-radius: 4px; /* 圆角边框，视觉效果更柔和 */
  max-width: 100%; /* 保证文本不溢出 */
}

/* 标题样式 */
.section-title,
.biaoti {
  font-weight: bold; /* 加粗字体 */
  font-size: 24px; /* 调整标题字体大小 */
  color: #3498db; /* 标题颜色 */
  text-align: center; /* 居中对齐 */
  margin-bottom: 20px; /* 增加标题与内容之间的间距 */
}

/* 表格样式 */
.table-container table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 阴影效果 */
}

.table-container th,
.table-container td {
  padding: 15px; /* 增加单元格内边距 */
  text-align: center;
  border: 1px solid #ddd;
  font-size: 16px; /* 增加字体大小 */
  line-height: 1.5; /* 改进行高 */
}

.table-container th {
  background-color: #3498db;
  color: white;
  font-weight: bold;
}

.table-container td {
  background-color: #ecf0f1;
}

/* 超链接样式 */
.table-container a {
  color: #3498db;
  text-decoration: none;
  font-weight: bold; /* 加粗链接 */
}

.table-container a:hover {
  color: #ff6600;
}

/* 标题样式 */
.biaoti {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #444;
    margin-top: 30px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.tabtop13 {
    margin-top: 20px;
    width: 100%;
    border-collapse: collapse;
}

.tabtop13 th,
.tabtop13 td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
}

.tabtop13 th {
    background-color: #007BFF;
    color: white;
    font-size: 18px;
    font-weight: bold;
}

.tabtop13 td {
    background-color: #fff;
    font-size: 14px;
}

.tabtop13 a {
    color: #007BFF;
    text-decoration: none;
    font-weight: normal;
    transition: color 0.3s ease;
}

.tabtop13 a:hover {
    color: #FF6600;
    font-weight: bold;
}

/* 快速链接样式 */
.tabtop13 .quick-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.tabtop13 .quick-link:hover {
    background-color: #0056b3;
}

/* 样式修正 */
.font-center {
    text-align: center;
}

.titfont {
    font-size: 18px;
    font-weight: bold;
    color: #00417e;
}

.titfont2 {
    font-size: 16px;
    font-weight: bold;
    color: #FF6600;
}

.titfont3 {
    font-size: 12px;
    font-weight: bold;
    color: #DA0101;
    background-color: #E9FAFF;
}

/* 页面底部链接样式 */
.footer-links {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    color: #FF6600;
    font-weight: bold;
}

/* 输入框样式 */
input[type="checkbox"] {
    width: 28px;
    height: 28px;
    display: inline-block;
    line-height: 28px;
    position: relative;
}

input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

input[type="checkbox"]:checked::before {
    content: "✔";
    background-color: #007BFF;
    border: 2px solid #007BFF;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* 轻微的过渡效果 */
a, .quick-link, .footer-links a {
    transition: color 0.3s ease, font-weight 0.3s ease;
}
