body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.navbar {
    overflow: hidden;
    background: linear-gradient(to right top, #05abd9, #57f3f3);
    text-align: center;  
}

.navbar a {
    display: inline-block;  
    color: #ffffff;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: rgba(255,255,255,0.1);
    color: black;
}

.container {
    max-width: 400px;
    margin: 10px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.input-group {
    margin-bottom: 10px;
}
.input-group label {
    display: block;
    margin-bottom: 5px;
}
.input-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.result {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
table {
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  width: 98%;            /* 设置表格宽度 */
  border: 1px solid #ccc;    /* 设置边框 */
  border-collapse: collapse; /* 边框合并 */
  border-spacing: 0;         /* 边框间距 */
}
table th, table td {
  border: 1px solid #ccc;    /* 单元格边框 */
  padding: 2px;             /* 单元格内边距 */
}
table th {
  background-color: #f3f3f3; /* 表头背景色 */
  font-weight: bold;         /* 表头字体加粗 */
}
table tr:nth-child(odd) {
  background-color: #ffebe0; /* 奇数行背景色为淡蓝色 */
}
table tr:nth-child(even) {
  background-color: #fffdf4; /* 偶数行背景色为深蓝色 */
}
.center-text {
  text-align: center;
}
.clearfix.text-formatted.field.field--name-body.field--type-text-with-summary.field--label-hidden.field__item{
  width: 98%;
  margin: auto;

}
/* 
#breadcrumb-nav 定义面包屑导航容器的样式
*/
#breadcrumb-nav {
    background-color: #F4F4F4; /* 设置背景颜色为浅灰色 */
    padding: 5px 0; /* 设置上下内边距为2px，左右内边距为0 */
    width: 99%; /* 设置宽度为99%，留出部分空间防止边缘内容被裁剪 */
    margin: auto; /* 设置外边距为自动，使得容器水平居中 */
    text-align: center; /* 文本居中对齐 */
}
/* 
#breadcrumb-nav p 定义面包屑导航中段落<p>元素的样式
*/
#breadcrumb-nav p {
    margin: 0; /* 重置段落的外边距为0，移除默认的外边距 */
}
/*
#breadcrumb-nav a 定义面包屑导航中链接<a>元素的样式
*/
#breadcrumb-nav a {
    text-decoration: none; /* 移除链接的下划线 */
    color: #333333; /* 设置链接文字颜色为深灰色 */
    letter-spacing: 0.5px; /* 设置字符间距为0.5像素 */
}
h1 {
  color: #333; /* 字体颜色 */
  font-size: 22px; /* 字体大小 */
  text-align: center; /* 文字居中 */
  padding: 10px; /* 内边距 */
  border-bottom: 2px solid #333; /* 底部边框 */
  background-color: #f9f9f9; /* 背景颜色 */
}
h2 {
  color: #556b2f; /* 深橄榄绿色 */
  font-size: 20px; /* 字体大小 */
  text-align: center; /* 文字左对齐 */
  border-bottom: 1px dashed #556b2f; /* 底部边框为虚线 */
  padding-bottom: 2px; /* 底部内边距 */
  margin-top: 2px; /* 顶部外边距 */
  margin-bottom: 2px; /* 底部外边距 */
}
