body {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /*background-color: #f4f4f4;*/
}
html {
    height: 100%;
}
body {
            background-image: url('../img/R.jpg'); /* 替换为你的图像路径 */
            background-size: cover; /* 图像覆盖整个背景 */
            background-repeat: no-repeat; /* 防止图像重复 */
            background-position: center; /* 图像居中 */
            background-attachment: fixed; /* 图像固定，滚动时不会移动 */
            margin: 0; /* 移除默认边距 */
            padding: 0; /* 移除默认内边距 */
            height: 100vh; /* 高度为视口高度的100% */
        }
header {

    /*background-color:white;*/
    color:black;
    padding: 10px 0;
    text-align: left;

}

nav ul {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
nav ul li {
            margin-left: 20px; /* 导航项之间的间距 */
        }
nav ul li a {
            font-size: 24px;
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
nav ul li a:hover {
            text-decoration: underline;
        }

main {
    height: auto;
    flex: 1;
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    opacity: 0.91;
    /*透明度*/
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/*footer {*/
/*    !*position: fixed;*!*/
/*    !*bottom: 0;*!*/
/*    width: 100%;*/
/*    text-align: center;*/
/*    padding: 10px 0;*/
/*    background-color: black;*/
/*    color: white;*/
/*    margin: auto;*/
/*    font-size: 10px;*/
/*}*/
/*#footer_img {*/

/*    max-width: 1200px;*/
/*}*/


table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    text-align: center;
    border: 1px solid #ddd;
    padding: 3px;
}
.offset-left-20 {
  position: relative;
  left: 1500px;
    height: 40px;
}
/* styles.css */
#back-to-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* 初始状态下隐藏按钮 */
  z-index: 1000; /* 确保按钮在其他内容之上 */
}

#back-to-top-btn:hover {
  background-color: #0056b3;
}
/*头部*/
.header-container {
    margin: auto;
    width: 100%;
    /*max-width: 1200px;*/
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    justify-content: space-between; /* 水平分布 */
    padding: 10px 20px; /* 内边距 */
    /*background-color: black;*/
    /*border: 1px solid white; !* 添加黑色实线边框 *!*/
}

.Title_image {
    text-align: center;
    width: auto;

}
.logo img {
            height: 80px; /* 图片高度 */
            margin-right: 160px; /* 图片与导航栏之间的间距 */
        }
#headerheager {
    text-align: center;
}
.homemaintext {
    max-width: 1200px;

    margin: auto;
}

/*表格调整 字体大小*/
#species-table {

}
#species-table th{
    font-size: 20px;
}
#species-table td{
    font-size: 21px;
}
#data-table {
    font-size: 9px;
}
#search-results-table {
    font-size: 9px;
}
.contact_main {
    text-align: center;
}


/*弹窗*/
#help-dialog #help-dialog2 {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

#help-content {
    padding: 20px;
}
/*帮助文本*/
.command-line {
    background-color: #f0f0f0;
    padding: 10px;
    display: inline-block;
    border: 2px solid #555555; /* 边框 */
}
.help-chinese {
     max-width: 1000px;
    margin: auto;
 }
.help-chinese-title {
    text-align: center;
}


.parameter-table {
    border-collapse: collapse; /* 合并单元格边框 */
    width: 100%; /* 表格宽度 */
  }

  .parameter-table th,
  .parameter-table td {
    border: none; /* 隐藏所有边框 */
    padding: 8px; /* 给单元格添加内边距 */
      text-align: left; /* 文本居左对齐 */
  }

  .parameter-table th {
    display: none; /* 隐藏表头 */
  }

  .parameter-table td:first-child {
    font-weight: bold; /* 第一列加粗 */
  }
  .bold-title {
      font-weight: bold;
  }
  /*.parameter-table col:first-child {*/
  /*  min-width: 10000px;*/
  /*}*/