 /* 自定义LOGO样式 */
 .navbar-brand img {
  max-height: 80px; /* 调整LOGO的最大高度 */
  margin-right: 100px; 
  margin-left: 180px; 
  width: auto;
  height: auto;
}


/* 自定义顶部导航栏 */
.navbar-custom {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 10px;
  border-bottom: 1px solid #ccc;
}
  /*自定义导航栏上的元素属性*/


.navbar-custom .navbar-nav .nav-item a {
  font-weight: bold; /*调节字体粗细*/
  font-size: x-large;/*调节字体大小*/
  color: #555555;/*调节字体颜色*/
  margin-left: auto;/*调节左右距离*/
}


/*自定义侧边导航栏*/

.sidebar {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

/* 左侧侧边栏样式 */
.sidebar-left {
 
  border-radius: 15px; /* 圆角框 */
  margin-left: 80px;
  margin-right: 5px;
}

/* 右侧侧边栏样式 */
.sidebar-right {
  padding: 20px;
  border-radius: 15px; /* 圆角框 */
  position: sticky; /* 让右侧边栏置顶 可随页面滚动*/
  top: 20px; /* 调整置顶的位置 */
  margin-left: 5px;
  margin-right: 80px;
  

}



/*自定义计算器卡片*/
.calculator-box {
  background-color: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

/* 自定义按钮样式 */
.btn-primary {
  background-color: #007bff;
  color: #fff;
}

/* 自定义表格 */
table {
  width: 100%;
  white-space: nowrap;/*文字展开*/
}
/* Custom styles for main content */
.main-content {
  width: 100%;
  padding: 20px;
}

/* Custom styles for logo */
/*.logo {
  text-align: center;
}
*/

/**/


/* 页脚链接的字体大小 */
footer a {
  font-size: 20px; /* 调整链接的字体大小，根据需要调整 */
  color: #fff; /* 链接字体颜色，根据需要调整 */
  text-decoration: none; /* 去掉链接下划线 */
  margin: 0 10px; /* 添加链接之间的间距，根据需要调整 */
}

/* 版权信息的字体大小 */
footer p {
  font-size: 20px; /* 调整版权信息的字体大小，根据需要调整 */
  margin: 10px 0; /* 添加上下间距，根据需要调整 */
}