/* reset */
/* 日期输入框容器样式 */
.date-input-container .form-control {
  background-color: #fff;
  cursor: pointer;
}

.date-input-container .calendar-icon {
  cursor: pointer;
}

.date-input-container input:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.margin-t-3 {
  margin-top: 3px;
}

/* 全局样式 */
body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  /* display: flex;
  flex-direction: column; */
  min-height: 100vh;
}

/* 顶部横幅样式 */
.top-banner {
}
.banner-content {
  width: 100%;
  height: 220px;
  background: url("../images/lgd001.jpg") no-repeat center center;
}

.banner-title {
  display: none;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffcc00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin: 0;
  line-height: 1.3;
}

.banner-menu {
  width: 100%;
  height: 40px;
  background: url("../images/lgd002.jpg") no-repeat center center;
}

/* 导航菜单样式 */
.banner-menu .navbar {
  height: 40px;
}

.banner-menu .navbar-collapse {
  justify-content: center; /* 水平居中 */
}

.banner-menu .navbar-nav {
  flex-direction: row;
  justify-content: space-around;
  width: 90%;
}

.banner-menu .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}

.banner-menu .navbar-nav .nav-link {
  color: #fff;
  font-size: 18px; /* 修改为18px */
  /* padding: 0 30px;  */
  line-height: 40px;
  text-align: center;
  font-weight: normal;
}

.banner-menu .navbar-nav .nav-item.active .nav-link,
.banner-menu .navbar-nav .nav-link:hover {
  color: #ffcc00; /* 保留悬停时的文字颜色变化，但移除背景色 */
}

/* 主内容区样式 */
main {
  flex: 1;
  padding: 20px 0;
  /* background-color: #f5f5f5; */
  background-color: #fff;
}

.container {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

/* 卡片样式 */
.card {
  border-radius: 0;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  border-radius: 0;
  padding: 0.5rem 1rem;
  height: 36px;
  line-height: 24px;
}

.card-header h5 {
  font-size: 18px;
  height: 30px;
  line-height: 30px;
  color: white;
}

.card-body {
  padding: 10px 15px;
  background-color: #fff;
}

/* 左侧卡片标题背景 */
.left-column .card-header {
  position: relative;
  height: 30px;
  background: url("../images/lgd010.jpg") no-repeat center center !important;
  border-bottom: none;
  padding: 0;
  padding-left: 20px;
}

/* 右侧卡片标题背景 */
.right-column .card-header {
  background: linear-gradient(to bottom, #0099cc, #006699) !important;
  border-bottom: none;
  position: relative;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 右侧卡片标题前的彩色图标 */
.right-column .card-header h5:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: url("../images/lgd007.jpg") no-repeat center center;
  background-size: cover;
  margin-right: 8px;
  vertical-align: middle;
}

/* 右侧卡片内容区域 */
.right-column .card-body {
  padding: 10px 15px;
  background-color: #fff;
}

/* 更多链接 */
.more-link {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* 表格样式 */
.table {
  margin-bottom: 0;
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.table th {
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
  font-size: 14px;
  padding: 8px;
  color: #333;
  height: 36px;
}

.table td {
  padding: 8px;
  font-size: 14px;
  border-top: 1px solid #eee;
  color: #333;
  vertical-align: middle;
  height: 36px;
}

/* 表格中的标题单元格样式，添加省略号 */
.table td.title-cell {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table td.title-cell a {
  text-indent: 5px;
  color: #575554;
  text-decoration: none;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table td.title-cell a:hover {
  color: #000;
  text-decoration: underline;
}

.table-hover tbody tr:hover {
  background-color: #f0f8ff;
}

/* 表格奇偶行背景色 */
.table-hover tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.table-hover tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* 左侧统计报表更多链接 */
.left-column .more-link {
  color: #666;
  font-size: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* 通知列表样式 */
.notice-list {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc;
}

.notice-list li {
  margin-bottom: 8px;
  position: relative;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  color: #0099cc;
}

.notice-list a {
  color: #333;
  text-decoration: none;
}

.notice-list a:hover {
  color: #0099cc;
  text-decoration: underline;
}

/* 更多图标 */
.more-icon {
  width: 16px;
  height: 16px;
}

.right-more-icon {
  display: flex;
  align-items: center;
}

/* 联系信息 */
.contact-info {
  text-align: center;
  border: 1px solid #ddd;
  background-color: #fff;
}

.contact-info img {
  width: 100%;
  height: auto;
  display: block;
}

/* 登录信息样式 */
.login-info {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.login-info a {
  color: #0099cc;
  text-decoration: none;
  margin-left: 5px;
}

.login-info a:hover {
  text-decoration: underline;
}

/* 登录信息卡片 */
.login-card .card-body {
  background-color: #f9f9f9;
  padding: 8px 15px;
}

/* 登录页面样式 */
.login-container {
  background-color: #f5fafe;
  border: 2px solid #cddae2;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px 5px 10px;
  width: 800px;
  margin: 0 auto;
}

.login-form-container {
  padding: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.login-container .col-form-label {
  font-size: 14px;
}

.form-control {
  height: 40px;
  border: 1px solid #ccc;
}

.captcha-img {
  height: 38px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.login-btn,
.register-btn {
  min-width: 80px;
  margin-right: 10px;
}

.login-btn {
  background-color: #0099cc;
  border-color: #0099cc;
}

.register-btn {
  background-color: #5bc0de;
  border-color: #5bc0de;
}

.forgot-password {
  margin-left: 10px;
  color: #0099cc;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

.login-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: url("../images/lgd003.jpg") no-repeat center center;
}

.login-form-container .input-group-append {
  margin-left: 10px;
}

/* 注册页面样式 */
.register-container {
  width: 950px !important;
  padding: 0px 0 15px;
}

.register-form-container select.form-control {
  width: 150px !important;
  background-position: right 15px center; /* 调整箭头位置，使其距离右边框更远 */
  appearance: none; /* 移除默认的下拉箭头 */
  -webkit-appearance: none; /* Safari和Chrome */
  -moz-appearance: none; /* Firefox */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='https://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8.825L1.175 4 2.238 2.938 6 6.7 9.763 2.937 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center; /* 箭头距离右边框10px */
}

.register-form-container .text-info {
  margin-bottom: 30px !important;
}

/* 页脚样式 */
.footer {
  background: url("../images/lgd004.jpg") no-repeat center center;
  color: white;
  padding: 30px 0 0;
  /* margin-top: auto; */
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 92px;
}

/* .footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background: url("../images/wave-pattern.png") repeat-x;
  top: 0;
  transform: rotate(180deg);
} */

.footer-content {
  width: 920px;
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icp-info {
  display: inline-flex;
  align-items: center;
  margin-left: 20px;
}

.icp-icon {
  background: url("../images/icon.png") no-repeat 0px -48px;
  width: 32px;
  height: 35px;
  margin-right: 10px;
}

/* 右侧栏目样式 */
.sidebar-box {
  margin-bottom: 15px;
  border: 1px solid #e6e6e6;
  margin-bottom: 15px;
  background-color: #f4f4f4;
  padding: 10px;
}

.sidebar-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  /* background: linear-gradient(to right, #0099cc 0%, #006699 100%); */
  background: url("../images/lgd007.jpg") no-repeat left top;
  padding: 0 10px;
}

/* .sidebar-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #00ccff;
} */

.sidebar-title {
  font-size: 20px;
  color: #0b92d2;
  line-height: 36px;
  padding-left: 10px;
}

.sidebar-more {
  display: flex;
  align-items: center;
}

.sidebar-more .more-icon {
  width: 24px;
  height: 24px;
}

.sidebar-body {
  margin-top: 10px;
  padding: 10px;
  background-color: #fff;
}

.sidebar-body p {
  font-size: 12px;
}

.sidebar-list {
  margin: 0;
  padding-left: 0;
  list-style-type: none;
}

.sidebar-list li {
  margin-bottom: 8px;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
  position: relative;
  padding-left: 10px;
}

.sidebar-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #0099cc;
  border-radius: 50%;
}

.sidebar-list a {
  color: #333;
  text-decoration: none;
}

.sidebar-list a:hover {
  color: #0099cc;
  text-decoration: underline;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .banner-title {
    font-size: 2rem;
  }

  .login-image {
    margin-top: 30px;
  }

  .col-form-label {
    text-align: left !important;
  }
}

@media (min-width: 768px) {
  .pr-md-4,
  .px-md-4 {
    padding-right: 10px !important;
  }
}

/* 搜索页面样式 */
.search-form-card {
  background-color: #f5fafe;
  border: 2px solid #cddae2;
  border-radius: 10px;
}

.search-form-card .card-body {
  background: none;
  padding: 20px 15px 10px;
}

.search-form-card .form-check-inline {
  margin-right: 5px;
}

.search-form-card .form-check-inline .form-check-label {
  text-align: left !important;
  width: auto !important;
  margin-top: -2px;
  font-weight: normal;
}

.search-buttons {
  margin-top: 20px;
}

.search-button {
  min-width: 80px;
  margin: 0 10px;
}

/* 覆盖表格标题样式，确保与搜索页面一致 */
.table-responsive .table th {
  background-color: #f0f0f0;
}

/* 搜索页面特定样式 */
/* 搜索表单布局 - 标签和输入框并排 */
.search-form-card .form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.search-form-card label {
  width: 100px;
  margin-bottom: 0;
  white-space: nowrap;
  padding-right: 10px;
  text-align: right;
}

.search-form-card .form-control {
  flex: 1;
}

/* 更新搜索表单布局 */
.search-form-card .form-row {
  margin-bottom: 5px;
}

.search-form-card .form-group {
  margin-bottom: 5px;
  padding: 0 10px;
}

.search-form-card label {
  width: 80px;
  font-size: 14px;
  color: #333;
}

.search-form-card .form-control {
  height: 32px;
  padding: 0.25rem 0.5rem;
  font-size: 14px;
}

.search-form-card select.form-control {
  padding-right: 20px;
  background-position: right 5px center;
}

/* 更新日期范围输入框样式，使其更加整齐 */
.search-form-card .date-range-wrapper {
  display: flex;
  width: 100%;
}

.search-form-card .date-separator {
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 1;
  font-size: 14px;
  color: #333;
}

/* 确保日期格式正确显示 */
.search-form-card input[type="date"] {
  padding-right: 0;
  text-align: center;
}

/* 日期输入框组样式 */
.search-form-card .input-group-text {
  background-color: #f8f9fa;
  border-color: #ced4da;
  color: #495057;
  font-size: 14px;
  padding: 0.25rem 0.5rem;
}

/* 搜索页表格样式 - 去除列之间的分隔线 */
.search-results-table {
  border-collapse: collapse;
}

.search-results-table th,
.search-results-table td {
  border-left: none;
  border-right: none;
}

.search-results-table th {
  background-color: #f0f0f0;
  border-bottom: 1px solid #ddd;
}

/* 修改表格边框样式，只保留外边框和行之间的边框 */
.search-results-table {
  border: 1px solid #dee2e6;
}

.search-results-table th {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #dee2e6;
}

.search-results-table td {
  border: none;
  border-bottom: 1px solid #dee2e6;
}

.search-results-table tr:last-child td {
  border-bottom: none;
}

.attachment-icon {
  vertical-align: middle;
  margin-bottom: 3px;
  margin-right: 8px;
  width: 13px;
  height: 13px;
}

/* 我的社情民意页面样式 */
.sqmy-my-container {
}
.sqmy-my-container .btn-sm {
  font-size: 12px;
}
/* 分页样式 */
.search-pagination .pagination {
  font-size: 14px;
  margin-bottom: 0;
}

.search-pagination .pagination a,
.search-pagination .pagination a:hover {
  text-decoration: none;
  color: #000;
}

.search-pagination .pagination a {
  color: #575554;
}

.search-pagination .page-link {
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 0.375rem 0.75rem;
}

.search-pagination .page-item:first-child .page-link,
.search-pagination .page-item:last-child .page-link {
  border-radius: 0;
}

.search-pagination .form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
}

/* 更新分页样式 */
.search-pagination .pagination {
  display: flex;
  align-items: center;
}

.search-pagination .page-item {
  margin: 0 2px;
}

.search-pagination .page-link {
  border-radius: 0;
  color: #333;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  padding: 0.25rem 0.5rem;
  font-size: 14px;
}

.search-pagination .page-link:hover {
  background-color: #e9ecef;
  color: #0056b3;
}

/* 搜索按钮样式 */
.search-button {
  padding: 0.25rem 1.5rem;
  font-size: 14px;
}

/* 更新搜索按钮样式 */
.search-button.btn-primary {
  background-color: #0275d8;
  border-color: #0275d8;
}

.search-button.btn-secondary {
  background-color: #8a939b;
  border-color: #8a939b;
}

/* 文章列表页样式 */
.article-list-container {
}
.article-list-container .list-header {
  position: relative;
  height: 40px;
  line-height: 40px;
  background-image: url("../images/lgd010.jpg") !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-bottom: none;
  padding: 0;
  padding-left: 20px;
}
.article-list-container .list-header h5 {
  font-size: 18px;
  height: 100%;
  line-height: 40px;
  color: white;
}
.article-list-container .table th {
  height: auto;
  padding: 4px 8px;
}

/* 文章集合列表页样式 */
.article-main-list-container {
}
.article-main-list-container .left-sidebar {
  height: 488px;
  background-color: #f4f4f4;
  border: 1px solid #e6e6e6;
  padding: 15px;
  background-image: url("../images/lgd017.jpg");
  background-repeat: no-repeat;
  background-size: 190px 142px;
  background-position: center 331px;
}
.article-main-list-container .left-sidebar ul {
  padding-left: 0;
  list-style-type: none;
}
.article-main-list-container .left-sidebar ul li {
  margin-bottom: 15px;
}

/* 文章详情页样式 */
.article-detail-container {
}

.article-detail-container .card {
  background-color: #f5fafe;
  border: 2px solid #cddae2;
  border-radius: 10px;
}

.article-detail-container .card-header {
  background: none;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 95px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem 0;
}

.article-detail-container .card-header h5 {
  font-family: 黑体;
  font-size: 18px;
  color: #0b92d2;
  margin: 0;
  text-align: center;
  height: auto;
  min-height: 30px;
}

.article-detail-container .card-header .article-info {
  font-family: 宋体;
  font-size: 12px;
  color: #575554;
}

.article-detail-container .card-body {
  padding: 20px;
  background: none;
}

.article-content {
  line-height: 1.8;
  font-size: 14px;
  color: #333;
}

.article-content p {
  margin-bottom: 15px;
  text-indent: 2em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.article-content .font-weight-bold {
  text-indent: 0;
}

.article-content p:last-child {
  margin-bottom: 0;
}

/* 社情民意详情页表格样式 */
.sqmy-my-detail-table-container .table {
  border-color: #999;
}

.sqmy-my-detail-table-container .table-bordered,
.sqmy-my-detail-table-container .table-bordered td {
  border: 1px solid #999;
}

.sqmy-my-detail-table-container .table-header {
  background-color: #7fc4e8 !important;
  width: 15%;
  text-align: center;
}

.sqmy-my-detail-table-container .table-content {
  width: 35%;
}

.sqmy-my-detail-table-container tr:nth-child(odd) td,
.sqmy-my-detail-table-container tr:nth-child(even) td {
  background-color: transparent;
}

/* 提交社情民意 */
.sqmy-submit-container {
  width: 848px;
}

.sqmy-submit-container .search-form-card .form-row {
  margin-bottom: 15px;
}
.sqmy-submit-container .form-group {
  align-items: flex-start;
}

.sqmy-submit-container .search-form-card label {
  padding-right: 15px;
  font-weight: 600;
  margin-top: 3px;
}
.sqmy-submit-container .form-identity-checkbox-group {
  padding-left: 20px;
}
.jointNamePerson-container,
.problem-suggestion-container {
  padding: 20px 10px 0 0;
  margin: 0 6px 25px;
  background-color: rgb(248, 249, 250);
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.jointNamePerson-container {
  padding: 20px 10px 0 20px;
  .col-md-4{
    margin-top: 10px;
  }
}
.jointNamePerson-container .col-md-4:nth-of-type(4) label,
.jointNamePerson-container .col-md-4:nth-of-type(5) label{
  width: 40px;
}
.sqmy-submit-container .form-problems-group,
.sqmy-submit-container .form-suggestions-group {
  padding-left: 17px;
}
.form-group.col-md-2.custom-problem-suggestion-section {
  align-items: center !important;
}
.sqmy-submit-container
  .search-form-card
  .form-identity-checkbox-group
  .form-check-inline {
  margin-right: 5px;
  width: 155px;
}

/* 社情民意提交页面样式 */
/* 信息分类下拉菜单样式 */
.dropdown-menu {
  max-height: 300px;
  overflow-y: auto;
}

/* 信息大类下拉选项样式 */
#infoTypeMain option {
  padding: 8px 12px;
}

/* 信息小类下拉选项样式 */
#infoTypeSubMain option {
  padding: 8px 12px;
}

/* 下拉菜单选中项样式 */
select option:checked,
select option:hover {
  background-color: #f0f0f0;
}

/* 表单布局调整 */
.form-row {
  margin-bottom: 15px;
}

/* 编辑器容器样式 */
.w-e-text-container {
  height: 200px !important;
}

/* 表单字段标签样式 */
.form-group > label {
  font-weight: bold;
}

/* 复选框和单选按钮文字样式 */
.form-check-label {
  font-weight: normal;
}

/* 附件上传相关样式 */
.file-upload-container {
  margin-bottom: 15px;
}

.file-list {
  margin-top: 15px;
  overflow-y: auto;
}

.file-item {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background-color: #f8f9fa;
  border-radius: 4px;
  margin-bottom: 6px;
}

.file-item .file-name {
  flex-grow: 1;
  margin-right: 10px;
  word-break: break-all;
}

.file-item .file-size {
  color: #6c757d;
  margin-right: 15px;
  white-space: nowrap;
}

.file-item .delete-file {
  color: #dc3545;
  cursor: pointer;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f8d7da;
}

.file-item .delete-file:hover {
  color: #bd2130;
  background-color: #f5c6cb;
}

.file-upload-btn {
  background-color: #007bff;
  color: white;
  border-color: #007bff;
}

.file-upload-btn:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* 修复文件上传按钮样式 */
.custom-file-label::after {
  content: "选择文件" !important;
}

.custom-file-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 删除按钮样式 */
.delete-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 32px;
  height: 32px;
  font-size: 1.2rem;
  font-weight: bold;
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #ced4da;
  border-left: none;
  background-color: #f8f9fa;
}

.delete-btn:hover {
  background-color: #dc3545;
  color: white;
  border-color: #dc3545;
}

.input-group-append {
  margin-left: 0;
}

.problem-input,
.suggestion-input {
  border-right: 0;
}

.form-row {
  margin-bottom: 1rem;
}

/* 复选框和单选框文字标签样式 */
.form-check-label {
  font-weight: normal;
}

/* 树形结构相关样式 */
/* 树形结构容器样式 */
.tree-container {
  display: none;
  position: absolute;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  margin-top: 5px;
  padding: 8px;
  top: 28px;
  left: 89px;
}

/* 点击输入框样式 */
.treeInput {
  cursor: pointer;
  background-color: #f8f9fa;
}

/* 文件上传项样式 */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  margin: 5px 0;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.delete-file {
  cursor: pointer;
  color: #dc3545;
  font-weight: bold;
  font-size: 1.2rem;
}

/* 树形结构顶部栏 */
.tree-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
}

.tree-title {
  font-weight: bold;
  color: #495057;
}

.tree-close {
  cursor: pointer;
  color: #6c757d;
  font-weight: bold;
  font-size: 1.2rem;
}

.tree-close:hover {
  color: #343a40;
}

/* 树节点图标样式 */
.jstree-icon img {
  width: 16px;
  height: 16px;
}
