* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 14px;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

a,
a:focus,
a:hover {
  display: block;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.boxShadow {
  border-radius: 10px;
  box-shadow: 0 0 15px #b7b7b7;
}

.show_trigger {
  position: relative;
}

.show_trigger .show_target {
  font-size: 16px;
  display: none;
  position: absolute;
  z-index: 9999;
  background-color: #fff;
  top: 60px;
  right: 0;
  box-shadow: 0 15px 20px rgba(110, 115, 113, 0.2);
}

.show_trigger .show_target.showit {
  display: block !important;
}

.container {
  width: 100%;
  background-color: #fff;
  margin: 0;
}

/* ==================== 头部样式 ==================== */
.container .header_part {
  background: url('../image/bg_top.png');
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
  position: relative;
  /* 添加相对定位 */
}

/* 左侧logo区域 */
.container .header_part .left_wrap {
  display: flex;
  align-items: center;
  height: 100%;
  z-index: 10;
  /* 确保在移动端菜单上方 */
}

/* logo图片 */
.container .header_part .left_wrap img {
  height: 70px;
  width: auto;
  transition: height 0.3s;
  /* 添加过渡效果 */
}

/* 文字标题 */
.container .header_part .left_wrap .logo-text {
  font-size: 30px;
  color: #96262a;
  margin-left: 30px;
  font-weight: bold;
  transition: font-size 0.3s;
  /* 添加过渡效果 */
}

/* 右侧搜索区域 - 桌面端 */
.desktop-search {
  display: block;
  /* 默认显示 */
}

/* 移动端导航按钮 - 默认隐藏 */
.mobile-nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  cursor: pointer;
}

.mobile-nav-icon {
  width: 30px;
  height: auto;
}

/* 移动端导航菜单 */
.mobile-inner-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #96262a;
  z-index: 99;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.mobile-inner-nav.active {
  display: block;
}

/* ==================== 移动端头部优化 ==================== */
@media (max-width: 992px) {
  .container .header_part {
    height: 70px;
    /* 降低移动端头部高度 */
    padding: 0 15px;
    /* 减少左右内边距 */
    background-size: cover;
    /* 背景图适应 */
  }

  .container .header_part .left_wrap {
    flex: 1;
    /* 占据剩余空间 */
    overflow: hidden;
    /* 防止内容溢出 */
  }

  .container .header_part .left_wrap img {
    height: 45px;
    /* 适当缩小logo */
    width: auto;
    max-width: 100%;
    /* 防止图片溢出 */
  }

  .container .header_part .left_wrap .logo-text {
    font-size: 18px;
    /* 缩小文字 */
    margin-left: 10px;
    /* 减少左边距 */
    white-space: nowrap;
    /* 防止文字换行 */
    overflow: hidden;
    /* 隐藏溢出 */
    text-overflow: ellipsis;
    /* 超出显示省略号 */
  }

  .mobile-nav-toggle {
    right: 10px;
    /* 调整位置 */
    width: 30px;
    height: 30px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.2);
    /* 半透明白色背景 */
    border-radius: 4px;
    /* 圆角 */
  }

  .mobile-nav-icon {
    filter: brightness(0) invert(1);
    /* 使图标变白色 */
  }

  .mobile-inner-nav {
    top: 70px;
    /* 与头部高度一致 */
    background: rgba(150, 38, 42, 0.98);
    /* 半透明背景 */
    backdrop-filter: blur(5px);
    /* 毛玻璃效果 */
    padding: 0;
  }

  .mobile-nav-item {
    padding: 12px 20px;
    font-size: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s;
  }

  .mobile-nav-item:active {
    background: rgba(0, 0, 0, 0.2);
    /* 点击反馈 */
  }

}

@media (max-width: 480px) {
  .container .header_part {
    height: 60px;
    /* 更小屏幕进一步降低高度 */
  }

  .container .header_part .left_wrap img {
    height: 40px;
    /* 更小的logo */
  }

  .container .header_part .left_wrap .logo-text {
    font-size: 16px;
    /* 更小的文字 */
  }

  .mobile-inner-nav {
    top: 60px;
    /* 与头部高度一致 */
  }

  .mobile-nav-toggle {
    width: 26px;
    height: 26px;
    padding: 3px;
  }
}

/* ==================== 导航菜单项 ==================== */
.mobile-nav-item {
  color: white;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  transition: background 0.3s;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-item:hover {
  background: rgba(0, 0, 0, 0.2);
}


.container .menu_part {
  background-color: #96262a;
  margin: 0 auto;
  color: #fff;
}

.container .menu_part .menu_wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container .menu_part ul.first_menu {
  display: flex;
  justify-content: space-between;
}

.container .menu_part ul.first_menu li .menu_1 {
  min-width: 130px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
}

.container .menu_part ul.first_menu li .menu_1.cur {
  background-color: #333;
}

.container .menu_part ul.first_menu li .menu_1:not(.cur):hover {
  background: rgba(32, 36, 39, 0.41);
}

.container .menu_part .showPanel {
  background: rgba(32, 36, 39, 0.8);
}

.container .menu_part .showPanel a {
  min-width: 130px;
  height: 42px;
  line-height: 42px;
  text-align: center;
}

.container .menu_part .showPanel a:hover {
  background: #303030;
}

.container .banner_part {
  height: 400px;
  background-color: #eee;
  width: 100%;
  margin: 0;
}

.content_part_out {
  width: 100%;
  height: 100%;
  background-color: #f8f4f0;
  background-image:
    linear-gradient(135deg, #f9f6f2 25%, transparent 25%),
    linear-gradient(225deg, #f9f6f2 25%, transparent 25%),
    linear-gradient(315deg, #f9f6f2 25%, transparent 25%),
    linear-gradient(45deg, #f9f6f2 25%, transparent 25%);
  background-size: 12px 12px;
  background-position: 0 0, 6px 0, 6px -6px, 0px 6px;
}

.content_part {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.panel_title {
  text-align: center;
}

.panel_title .title_zh {
  font-size: 22px;
  color: #96262a;
  font-weight: bold;
}

.panel_title .title_en {
  color: #8b8b8b;
  font-size: 15px;
  font-weight: lighter;
}

.service_time {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 225px;
  background-color: #fff;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 0 15px rgba(183, 183, 183, 0.5);
}

.service_time .panel_cont {
  display: flex;
  flex-wrap: wrap;
}

.service_time .panel_cont .panel {
  width: 50%;
  margin: 16px 0px;
}

.service_time .panel_cont .panel:first-child {
  border-right: 1px solid #eee;
}

.service_time .panel_cont .panel.right_panel .tips {
  font-size: 14px;
  color: #666;
  margin-top: 34px;
}

.service_time .panel_cont .panel .panel_cont_title {
  font-size: 16px;
  color: #96262a;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.service_time .panel_cont .panel .panel_cont_schedule {
  display: flex;
  padding-left: 110px;
}

.service_time .panel_cont .panel .week {
  font-size: 16px;
  color: #333333;
  margin-right: 16px;
}

.service_time .panel_cont .panel .time p {
  margin-bottom: 10px;
  font-size: 16px;
}

.service_time .panel_cont .panel .tips {
  margin-left: 30px;
  font-size: 15px;
  color: #333333;
}

/* 修改模块容器布局 */
.moudle_part {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 20px auto;
}

/* 左侧轮播图部分 - 调整为38% */
.moudle_part .part.announcement {
  width: 40%;
  height: 420px;
  /* 调整为420px高度 */
  min-height: 420px;
  overflow: hidden;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(183, 183, 183, 0.5);
}

/* 右侧工作动态部分 - 调整为68% */
.moudle_part .part.workDynamics {
  width: 58%;
  height: 420px;
  /* 调整为420px高度，与左侧一致 */
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.notice-section {
  flex: 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: calc(50% - 10px);
  /* 每个子模块占一半高度 */
}

.notice-section:last-child {
  margin-bottom: 0;
}

/* 调整标题样式 */
.notice-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  border-bottom: 2px solid #96262a;
  margin-bottom: 10px;
}

.notice-section-header .notice-title {
  font-size: 16px;
  font-weight: bold;
  color: #96262a;
  padding: 5px 10px;
  border-radius: 4px 4px 0 0;
}

/* 调整列表项样式 */
.notice-section-body {
  flex: 1;
  overflow-y: auto;
  padding: 5px 0;
  max-height: calc(100% - 40px);
  /* 减去标题高度 */
}

.notice-section-body .work_list_item {
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #eee;
}

.notice-section-body .work_list_item:last-child {
  border-bottom: none;
}

/* 响应式调整 */
@media (max-width: 992px) {

  .moudle_part .part.announcement,
  .moudle_part .part.workDynamics {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .moudle_part .part.announcement {
    height: 350px;
    /* 移动端轮播图高度 */
    margin-bottom: 20px;
  }

  .notice-section {
    height: auto;
    min-height: 180px;
    /* 移动端每个列表最小高度 */
  }
}

@media (max-width: 768px) {
  .moudle_part .part.announcement {
    height: 260px;
    /* 更小屏幕的轮播图高度 */
  }

  .notice-section {
    min-height: 160px;
  }
}

/* 只在移动端显示 */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
    cursor: pointer;
    padding: 10px;
  }

  .mobile-nav-icon {
    width: 30px;
    height: auto;
  }
}

/* 只在移动端显示 */
@media (max-width: 480px) {
  .container .header_part img {
    height: 20px;
  }

  .mobile-nav-toggle {
    display: block;
    cursor: pointer;
    padding: 10px;
  }

  .mobile-nav-icon {
    width: 30px;
    height: auto;
  }
}

.notice-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px 4px 0px;
  border-bottom: 2px solid #96262a;
  color: white;
}

.notice-section-header .notice-title {
  font-size: 16px;
  font-weight: bold;
  padding: 0px 25px;
  background: linear-gradient(to bottom, #a26f71, #96262a);
  color: white;
  padding: 5px 15px;
  border-radius: 5px 5px 0 0;
}

.notice-section-header .notice-more-link {
  font-size: 12px;
  color: #666;
  text-decoration: none;
}

.notice-section-header .notice-more-link:hover {
  color: #007bff;
}

.notice-section-body {
  flex: 1;
  overflow-y: auto;
  padding: 0px 10px;
}

.notice-section-body .work_list_item {
  font-size: 16px;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.notice-section-body .work_list_item .square {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #8f252b;
  margin-right: 10px;
}

.notice-section-body .work_list_item .work-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-section-body .work_list_item .time {
  margin-left: 10px;
  color: #777;
}

.notice-section-body .work_list_item:hover {
  color: #96262a;
}

.notice-section-body .work_list_item:hover .time {
  color: #96262a;
}

.notice-section-body .work_list_item:hover .square {
  background-color: #96262a;
}

.archive-service-header {
  display: flex;
  font-size: 22px;
  justify-content: center;
  align-items: center;
  padding: 15px 20px 10px 20px;
  padding-top: 30px;
  background: #f6f4ef;
  border-left: 4px solid #96262a;
  border-bottom: 1px solid #ffffff;
  width: 100%;
  margin: 0;
}

.archive-service-header .archive-service-title {
  font-size: 22px;
  font-weight: bold;
  color: #96262a;
  position: relative;
  padding-left: 15px;
}

.archive-service-header .archive-service-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background: #96262a;
}

.subsystems-container {
  margin-top: 0;
  width: 100%;
  background: #f6f4ef;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px;
  box-sizing: border-box;
  margin: 0;
}

.subsystems-child {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.subsystems-image-container {
  position: relative;
  width: 100%;
  height: 180px;
}

.subsystems-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.subsystems-image-container .hoverImg {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.subsystems-child:hover .defaultImg {
  opacity: 0.3;
}

.subsystems-child:hover .hoverImg {
  opacity: 0.7;
}

.subsystems-child-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.subsystems-child-content img {
  width: 40%;
  max-width: 70px;
  height: auto;
  margin-bottom: 10px;
}

.subsystems-child-content span {
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-archive-section {
  margin: 20px 0px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(183, 183, 183, 0.5);
  padding: 20px;
  box-sizing: border-box;
}

.featured-archive-header {
  display: flex;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #96262a;
}

.featured-archive-title {
  font-size: 22px;
  color: #96262a;
  font-weight: bold;
  position: relative;
  padding-left: 15px;
}

.featured-archive-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #96262a;
}

.featured-archive-more {
  font-size: 14px;
  color: #666;
  transition: color 0.3s;
  position: absolute;
  right: 0;
}

.featured-archive-more:hover {
  color: #96262a;
}

/* 移动端隐藏更多链接 */
@media (max-width: 768px) {
  .featured-archive-more {
    display: none !important;
  }

  /* 可选：调整标题在移动端的样式 */
  .featured-archive-title {
    font-size: 18px;
    padding-left: 10px;
  }

  .featured-archive-title:before {
    height: 16px;
  }
}

.featured-archive-content {
  display: flex;
  justify-content: space-between;
  height: 380px;
  flex-wrap: wrap;
}

.archive-column {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.column-1 {
  width: 39%;
}

.column-2 {
  width: 37%;
}

.column-3 {
  width: 22%;
}

.archive-top-row {
  display: flex;
  justify-content: space-between;
  height: calc(50% - 7.5px);
  margin-bottom: 15px;
}

.archive-top-row .archive-img-container {
  width: calc(50% - 7.5px);
}

.archive-bottom-row {
  height: calc(50% - 7.5px);
}

.archive-img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
  background-color: #f5f5f5;
}

.archive-img-container:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.archive-img-container img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.archive-img-container:hover img {
  transform: scale(1.03);
}


.foot_part {
  /* background: #242424;
  color: #fff;*/

background-color: #f8f4f0;
    background-image: linear-gradient(135deg, #f9f6f2 25%, transparent 25%), linear-gradient(225deg, #f9f6f2 25%, transparent 25%), linear-gradient(315deg, #f9f6f2 25%, transparent 25%), linear-gradient(45deg, #f9f6f2 25%, transparent 25%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 0, 6px -6px, 0px 6px;
    color: #333;
  padding: 15px 0;
}

.foot_part .foot {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.foot_part .foot .link_part {
  display: flex;
}

.foot_part .foot .link_part .link_wrap {
  margin-right: 120px;
}

.foot_part .foot .link_part .link_wrap .link_type {
  margin-bottom: 20px;
  font-size: 15px;
}


.foot_part .foot .link_part .link_wrap .link_cont {
  width: 120px;
}

.foot_part .foot .link_part .link_wrap .link_cont .link_cont_item {
  display: flex;
  margin-bottom: 30px;
}

.foot_part .foot .qrcode_part {
  display: flex;
}

.foot_part .foot .qrcode_part .qrcode {
  text-align: center;
  margin-left: 50px;
  /* color: #c8c8c8; */
color: #333;
}

.foot_part .foot .qrcode_part .qrcode img {
  width: 120px;
  height: 120px;
}

.foot_part .foot_address {
  text-align: center;
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.foot_part .foot_address img {
  width: 148px;
  height: 44px;
  margin-right: 20px;
}

.foot_part .foot_address .address {
  /* text-align: left; */
  /*color: #c8c8c8; */
color: #333;
}

/* New styles for friendly links */
.foot_part .foot .friendly_links {
  margin-left: 50px;
}

.foot_part .foot .friendly_links .friendly_links_title {
  margin-bottom: 10px;
  font-size: 15px;
}

.foot_part .foot .friendly_links .friendly_links_cont {
  display: flex;
  flex-wrap: wrap;
}

.foot_part .foot .friendly_links .friendly_links_cont a {
  margin-right: 10px;
  margin-bottom: 10px;
/* color: #fff; */
  color: #333;
}

.foot_part .foot .friendly_links .friendly_links_cont a:hover {
  color: #fd5a5a;
}

/* 移动端导航样式 */
.mobile-inner-nav {
  display: none;
  background: #96262a;
  padding: 10px;
  width: 100%;
}

.mobile-inner-nav.active {
  display: block;
}

.mobile-nav-item {
  color: white;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-item:hover {
  background: rgba(0, 0, 0, 0.2);
}




/* 移动端三列布局调整（保持原始列宽比例） */
@media (max-width: 992px) {
  .featured-archive-content {
    height: auto !important;
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
    /* 列间距 */
  }

  /* 保持原始三列宽度 */
  .archive-column.column-1 {
    width: 100% !important;
  }

  .archive-column.column-2 {
    width: 100% !important;
  }

  .archive-column.column-3 {
    width: 100% !important;
  }

  /* 第一列：单图全高 */
  .archive-column.column-1 .archive-img-container {
    width: 100% !important;
    height: 280px !important;
    /* 最高 */
    margin-bottom: 10px;
  }

  /* 第二列：上部双图 + 下部单图 */
  .archive-column.column-2 .archive-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }

  .archive-column.column-2 .archive-top-row .archive-img-container {
    width: calc(50% - 5px) !important;
    height: 120px !important;
    /* 矮图 */
  }

  .archive-column.column-2 .archive-bottom-row .archive-img-container {
    width: 100% !important;
    height: 180px !important;
    /* 中等高度 */
  }

  /* 第三列：单图（最矮） */
  .archive-column.column-3 .archive-img-container {
    width: 100% !important;
    height: 150px !important;
  }
}

/* 小屏幕高度微调 */
@media (max-width: 480px) {
  .archive-column.column-1 .archive-img-container {
    height: 220px !important;
  }

  .archive-column.column-2 .archive-top-row .archive-img-container {
    height: 100px !important;
  }

  .archive-column.column-2 .archive-bottom-row .archive-img-container {
    height: 150px !important;
  }

  .archive-column.column-3 .archive-img-container {
    height: 400px !important;
  }
}



/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
  .container .header_part {
    height: auto;
    padding: 10px 10px;
  }

  .logo-text {
    font-size: 20px;
    margin-left: 0;
    margin-top: 5px;
  }

  .logo-container img {
    height: 60px;
  }

  .service_time {
    position: static;
    transform: none;
    margin-top: 20px;
  }

  .panel_cont {
    flex-direction: column;
  }

  .panel_cont .panel {
    width: 100% !important;
    margin: 10px 0 !important;
    padding: 15px;
  }

  .panel_cont .panel:first-child {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .panel_cont_schedule {
    padding-left: 20px !important;
    flex-direction: column;
  }

  .notice-section-header .notice-title {
    font-size: 14px;
    padding: 3px 8px;
  }

  .notice-section-body .work_list_item {
    font-size: 14px;
  }

  .archive-service-header .archive-service-title {
    font-size: 18px;
  }

  .featured-archive-title {
    font-size: 18px;
  }

  .mobile_show img {
    width: 50px !important;
  }
}

/* 响应式设计 - 小屏幕手机 */
@media (max-width: 480px) {
  .subsystems-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .subsystems-image-container {
    height: 150px;
  }

  .subsystems-child-content span {
    font-size: 14px;
  }

  .archive-top-row,
  .archive-bottom-row {
    /* height: 150px; */
  }

  .foot_part .foot .qrcode_part .qrcode {
    margin: 10px;
  }

  .foot_part .foot .qrcode_part .qrcode img {
    width: 100px;
    height: 100px;
  }

  .mobile-nav-item {
    font-size: 14px;
    padding: 8px 12px;
  }
}


/* Position Navigation Component Styles */
.position_part {
  height: 60px;
  line-height: 60px;
  box-shadow: 0 5px 15px rgba(110, 115, 113, 0.3);
  margin-bottom: 20px;
}

.position_part .position_wrap {
  width: 1200px;
  margin: 0 auto;
}

.position_part .position_wrap .cur_position {
  background: url('../image/icon_position.png') no-repeat center left;
  background-size: 16px 16px;
  padding-left: 20px;
}

.position_part .position_wrap .cur_position a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

.position_part .position_wrap .cur_position a:hover {
  color: #96262a;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .position_part .position_wrap {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .position_part {
    height: auto;
    line-height: 1.5;
    padding: 10px 0;
  }

  .position_part .position_wrap .cur_position {
    background-size: 12px 12px;
    padding-left: 16px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .position_part .position_wrap .cur_position {
    padding-left: 14px;
    font-size: 13px;
  }

  .position_part .position_wrap .cur_position a {
    display: inline;
  }
}


/* 当前聚焦菜单项的样式 */
.menu-focus-item {
  /* 基础样式 */
  font-weight: bold;
  /* 加粗显示 */
  color: #96262a;
  /* 使用主题酒红色 */
  position: relative;
  /* 为伪元素定位准备 */

  /* 可选动画效果 */
  transition: all 0.3s ease;
  /* 平滑过渡效果 */
}

/* 下划线指示器（推荐） */
.menu-focus-item::after {
  content: '';
  position: absolute;
  bottom: -3px;
  /* 调整位置 */
  left: 0;
  width: 100%;
  height: 2px;
  /* 下划线粗细 */
  background-color: currentColor;
  /* 继承文字颜色 */
}

/* 移动端适配 */
@media (max-width: 768px) {
  .menu-focus-item {
    font-size: 14px;
    /* 缩小字号 */
    padding: 3px 0;
    /* 增加触控区域 */
  }

  .menu-focus-item::after {
    bottom: -1px;
    /* 移动端更细的下划线 */
    height: 1px;
  }
}


.list_part {
  width: 1200px;
  margin: 15px auto 30px auto;
  display: flex;
}

.list_part .left_menu {
  width: 180px;
  margin-right: 20px;
}

.list_part .left_menu .left_menu_top {
  height: 54px;
  width: 100%;
  color: #FFF;
  background: #96262a;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 54px;
}

.list_part .left_menu .menu_wrap {
  height: 400px;
  margin-top: 10px;
  box-shadow: 0 0 12px #b7b7b7;
}

.list_part .left_menu .menu_item {
  height: 44px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.list_part .left_menu .menu_item.cur {
  color: #fff;
  background-color: #96262a;
}

.list_part .left_menu .menu_item:not(.cur):hover {
  background-color: #e0e0e0;
}

.list_part .right_list {
  flex: 1;
}

.list_part .right_list ul li {
  height: 50px;
  line-height: 50px;
  border-bottom: 1px dashed #dcdcdc;
  font-size: 15px;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_part .right_list .work_list .work_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0 10px;
  height: 46px;
  line-height: 46px;
  border-bottom: 1px solid #eee;
}

.list_part .right_list .work_list .work_list_item .square {
  width: 9px;
  height: 9px;
  background-color: #383838;
  margin-right: 10px;
  transform: rotate(45deg);
}

.list_part .right_list .work_list .work_list_item .text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list_part .right_list .work_list .work_list_item .time {
  margin-left: 10px;
  color: #777;
}

.list_part .right_list .work_list .work_list_item:hover {
  color: #96262a;
  background: #f1f1f1;
}

.list_part .right_list .work_list .work_list_item:hover .time {
  color: #96262a;
}

.list_part .right_list .work_list .work_list_item:hover .square {
  background-color: #96262a;
}

.list_part .right_list .list_info {
  padding: 20px;
  min-height: 400px;
}

.list_part .right_list .list_info .title {
  color: #96262a;
  font-size: 18px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 500;
}

.list_part .right_list .list_info .sign {
  text-align: center;
  color: #666666;
  margin-bottom: 20px;
}

.list_part .right_list .list_info .sign span {
  margin-right: 10px;
}

.list_part .right_list .list_info .content {
  width: 100%;
}

.list_part .right_list .list_info .content img {
  width: 100%;
}

/* ==================== 移动端列表无数据时的处理 ==================== */
@media (max-width: 768px) {

  /* 列表容器设置最小高度 */
  .list_part {
    min-height: 60vh;
    width: 100%;
    margin: 15px auto 30px auto;
    padding: 0 15px;
    box-sizing: border-box;
  }

  /* 右侧列表区域样式 */
  .list_part .right_list {
    min-height: 300px;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }

  /* 当列表为空时显示提示 */
  .list_part .right_list:empty::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 24 24" fill="none" stroke="%23cccccc" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"></path></svg>');
    background-repeat: no-repeat;
    background-position: center 40%;
    background-size: 60px 60px;
  }

  .list_part .right_list:empty::after {
    content: "暂无相关内容";
    position: absolute;
    top: 55%;
    left: 0;
    right: 0;
    text-align: center;
    color: #999;
    font-size: 16px;
  }

  /* 防止PC端样式被覆盖 */
  .list_part .left_menu {
    width: 100%;
    margin-right: 0;
  }

  .list_part .right_list ul li,
  .list_part .right_list .work_list .work_list_item {
    height: auto;
    line-height: 1.5;
    padding: 10px 0;
  }
}

/* 更小屏幕的微调 */
@media (max-width: 480px) {
  .list_part .right_list {
    min-height: 250px;
  }

  .list_part .right_list:empty::before {
    background-size: 50px 50px;
  }

  .list_part .right_list:empty::after {
    font-size: 14px;
  }
}