 /* 整体容器样式 */
 .business-association-container {
  font-family: 'Microsoft YaHei', sans-serif;
  color: #333;
}
a{
  text-decoration: none !important;
}

/* 顶部大图样式 */
.container-banner {
  background-color: #f5f5f5;
  height: 300px;
  position: relative;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.banner-title .title {
  font-size: 48px;
  font-weight: bold;
  display: block;
}

.banner-title .subtitle {
  font-size: 24px;
  display: block;
  color: rgba(255, 255, 255, 0.6);
}

/* 内容区样式 */
.container-main {
  padding: 40px 0;
}

.main-title {
  text-align: center;
  margin-bottom: 40px;
}

.main-title .title {
  font-size: 36px;
  font-weight: bold;
  display: block;
}

.main-title .subtitle {
  font-size: 18px;
  color: #666;
  display: block;
}
.business_index{
  justify-content: space-between;
  align-items: baseline;
}
/* 左右两块内容样式 */
.business_left,
.business_right {
  background-color: #fff; /* 白色背景 */
  border-radius: 8px; /* 圆角 */
  padding: 20px; /* 内边距 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影 */
}

/* 左右内容间隔 */
.business_left {
  margin-right: 20px; 
}

/* 搜索框样式 */
.top-search {
  margin-bottom: 30px;
}

.part_search_box {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.part_search_box_input {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 16px;
}

.part_search_box_btn {
  padding: 10px 20px;
  background-color: #007bff;
  cursor: pointer;
}

.part_search_box_btn img {
  width: 20px;
  height: 20px;
}

/* 商协会列表样式 */
.business_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.business_item {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
  text-decoration: none;
  color: #333;
  display: block;
  transition: box-shadow 0.3s;
}

.business_item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.business_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 4px;
}

.business_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.business_text {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

/* 右侧导航样式 */
.business_right {
  margin-top: 0;
}

.xhzt {
  list-style-type: none;
  padding: 0;
}

.xhzt li {
  margin-bottom: 10px;
}

.xhzt li a {
  text-decoration: none;
  color: #333;
  padding: 10px;
  display: block;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.xhzt li a:hover {
  background-color: #f5f5f5;
}

.xhzt li.on a {
  background-color: #007bff;
  color: white;
}

/* 加载更多按钮样式 */
.load-more {
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
  color: #007bff;
  font-size: 16px;
}

/* 底部样式 */
.container-footer {
  background-color: #f5f5f5;
  padding: 20px 0 0;
  text-align: center;
}