html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#toolbar {
  transition: transform 0.3s;
    position:fixed;
    top: 0;
  
}
.zoom-in {
  transform: scale(0.8);
}
.zoom-out {
  transform: scale(0.8);
}
.custom-infowindow {
  transform: scale(0.5);
  /* 其他样式属性 */
}
a {
  text-decoration: none; /* 移除下划线 */
}
.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 10px;
  border-radius: 6px;
}
.company-card {
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
}

.company-image {
  width: 100px;
  height: 100px;
  border-radius: 10%;
}
form-check-input{
  margin-right: 10px;
  margin-left: 10px;
}
people-image {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 10%;
}
.company-details {
  flex: 1;
margin: 10px;
}

.company-details strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
  color: black;
}

.company-details span {
  display: block;
  margin-bottom: 5px;
  color: black;
}

.company-members {
flex: 1;
font-size: 14px;
color: #777;
overflow-y: hidden;
margin-right: 10px;
max-height: 150px; /* Adjust the height as needed */
overflow-x: hidden; /* Hide the horizontal scrollbar */
word-break: break-all; /* Enable automatic word wrapping */
}
.company-members-span {
flex: 1;
font-size: 14px;
color: #777;
overflow-y: auto;
max-height: 100px; /* Adjust the height as needed */
overflow-x: hidden; /* Hide the horizontal scrollbar */
word-break: break-all; /* Enable automatic word wrapping */
}
.company-members strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.company-members span {
  display: block;
  margin-bottom: 5px;
}
.company-news {
flex: 1;
font-size: 14px;
color: #777;
margin-right: 10px;
overflow-y: hidden;
max-height: 100px; /* Adjust the height as needed */
overflow-x: hidden; /* Hide the horizontal scrollbar */
word-break: break-all; /* Enable automatic word wrapping */
}
.company-news-span {
flex: 1;
font-size: 14px;
color: #777;
overflow-y: auto;
max-height: 100px; /* Adjust the height as needed */
overflow-x: hidden; /* Hide the horizontal scrollbar */
word-break: break-all; /* Enable automatic word wrapping */
}
.company-news strong {
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}

.company-news span {
  display: block;
  margin-bottom: 5px;
}
#map {
    height: 100%;
    width: 100%;
    display:flex;
  }
  .bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }
/* Wrapper */
#wrapper {
display: flex;
height: 100%;
}


/* Sidebar */
#sidebar-wrapper {
width: 98%;
background-color: #f8f9fad5;
border-left: 1px solid #e6e6e6d6;
transition: all 0.3s;
display: flex;
justify-content: center;
align-items: center;
height: 1%;
z-index: 100;
}
   i {
    font-style: normal;
  }
/* Sidebar Header */
.sidebar-header {

display: flex;
flex-direction: row;
align-items:center;
margin-left: -1.5vw;

}
/* Sidebar Body */
.sidebar-body {
width: 80%;
height: 100%;
background-color: #f5f5f5;
}

.sidebar-body-info {
height: 90%;
width: 100%;
overflow-y: auto;
background-color: rgb(255, 255, 255);
position: relative;
}

/* Active state for sidebar */
#sidebar-wrapper.active {
transform: translateY(5%);
height: 100%;
}

/* Arrow icon for sidebar toggle button */
#sidebar-toggle i {
font-size: 24px;

}
#sidebar-toggle{
  z-index: 101;
}

input[type="checkbox"] {
margin: auto;
padding: 10px;

}
#myTab{
  height:5% ;
  width: 80vw;
  position: relative;
}
#myTabContent{
  height:90% ;
  width: 80vw;
  position: relative;
}
#mainpanel{
  height: 100vh;
  width: 80vw;
  top: 0;
  position: relative;
}
#home{
  height: 100%;
  width: 80vw;
  top: 0;
  position: relative;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
#loading-circle {
      width: 20px;
      height: 20px;
      border: 2px solid #ccc;
      border-top: 2px solid #007bff; /* 加载动画颜色，此处使用蓝色作为示例 */
      border-radius: 50%;
      animation: spin 1s linear infinite; /* 旋转动画 */
      margin-left: -20px; /* 调整加载动画与其他元素的间距 */
      margin-top: 15px; /* 调整加载动画与其他元素的间距 */
      visibility: hidden; /* 默认隐藏加载动画 */
      position: absolute;
      z-index: 999999;
    }
    #loading-circle-result {
      width: 80px;
      height: 80px;
      border: 2px solid #ccc;
      border-top: 2px solid #007bff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      visibility: visible;
      position: fixed; /* 使用固定定位 */
      top: 50%; /* 将元素垂直居中 */
      left: 50%; /* 将元素水平居中 */
      z-index: 999999;
      }