@charset "UTF-8";

/*整站样式*/
*,
:after,
:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0 !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  -moz-user-select: none;
  /* Firefox私有属性 */
  -webkit-user-select: none;
  /* WebKit内核私有属性 */
  -ms-user-select: none;
  /* IE私有属性(IE10及以后) */
  -khtml-user-select: none;
  /* Khtml内核私有属性 */
  -o-user-select: none;
  /* Opera私有属性 */
  user-select: none;
  /* CSS3属性 */
}

body {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  font-family: AlibabaPuHuiTi-2-55-Regular, 'Microsoft Yahei', "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
  height: 100%;
}

img {
  max-width: 100%;
  border: none;
  -webkit-user-drag: none;
}

input,
select,
textarea {
  font-size: 14px;
  color: #333;
  border: none;
}

::-webkit-input-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

::-ms-input-placeholder {
  color: #999;
}

select::-ms-expand {
  display: none;
}

/*定义滚动条*/
::-webkit-scrollbar {
  width: 8px;
  height: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #0058AB;
  width: 5px;
}

a {
  cursor: pointer;
  color: #333;
  text-decoration: none;
}

ul {
  list-style: none;
}

.fix {
  transform: scale(1);
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.fix:after,
.fix:before {
  display: block;
  content: "";
  height: 0;
  clear: both;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

em {
  font-style: normal;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

.flex {
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-justify-center {
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

@font-face {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  src:
    url(../fonts/AlibabaPuHuiTi-2-55-Regular.ttf) format('TrueType');
}

@font-face {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  src:
    url(../fonts/AlibabaPuHuiTi-2-85-Bold.ttf) format('TrueType');
}

/*基本编写顺序*/
body {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-style: normal;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/*公共样式*/

/* 头部 */
/* 1. 顶部极简栏 */
.top-bar {
  background-color: #F5F6F8;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  color: #606266;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #606266;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 1%;
  vertical-align: middle;
}

.mobile-link:hover {
  color: #0056a7;
}

.mobile-link i {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/mobile.svg);
}

/* 2. 头部 Logo 与 标语 Banner */
.header-main {
  background-color: #ffffff;
  padding-top: 24px;
  padding-bottom: 22px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Logo 区域 */
.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 170px;
}

/* 红色标语 Banner */
.slogan-banner {
  width: 880px;
  height: 70px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  margin-left: 220px;
}

/* Banner 背景装饰微光 */
.slogan-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}


/* 3. 蓝色双排导航栏 */
.main-nav {
  background-color: #0056a7;
  height: 85px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  height: 100%;
}

/* 导航-首页栏目样式 */
.nav-home {
  width: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}

.nav-home:hover,
.nav-home.active {
  background-color: rgba(255, 255, 255, 0.13);
  font-size: 20px;
  font-weight: 700;
}

/* 导航菜单列表（8列双排） */
.nav-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-content: center;
  justify-items: center;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  height: 100%;
  row-gap: 5px;
}

.nav-item {
  color: #ffffff;
  font-size: 18px;
  width: 100%;
  align-content: center;
  text-align: center;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  /* color: #ffea79; */
  font-family: AlibabaPuHuiTi-2-85-Bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.13);
}

/* 分割线 */
.nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #00498E;
}

.nav-item:nth-child(8n)::after {
  display: none;
}

/* 列表和内页菜单 */
.list-menu-list {
  display: flex;
  justify-content: space-between;
}

.list-menu-list ul {
  display: flex;
}

.list-menu-list ul li {
  line-height: 56px;
  color: #606266;
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.32px;
  position: relative;
  margin-right: 38px;
}

.list-menu-list ul li:last-child {
  padding-right: 0;
}

.list-menu-list ul li a {
  display: block;
}

.list-menu-list ul li.active,
.list-menu-list ul li:hover {
  color: #005FDB;
}

.list-menu-list ul li.active::before,
.list-menu-list ul li:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #005FDB;
}

/* 内页banner图 */
.inner-banner-box {
  text-align: center;
}

.inner-banner-box .inner-banner-swiper {
  overflow: hidden;
  line-height: 0;
}

/* 列表页主体 */
.inner-body-box {
  background: #F5F6F8;
  padding-bottom: 100px;
  position: relative;
}

.inner-body-box::before {
  position: absolute;
  top: 56px;
  width: 100%;
  height: 1px;
  background: #E3E3E3;
  content: '';
}

/* 详情页主体 */
.info-body-box {
  position: relative;
}

.info-body-box::before {
  position: absolute;
  top: 56px;
  width: 100%;
  height: 1px;
  background: #E3E3E3;
  content: '';
}

/* 列表和内页面包屑 */
.breadcrumb {
  height: 56px;
  line-height: 56px;
}

.breadcrumb a {
  color: #606266;
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
}

.breadcrumb>a+a:before {
  content: ">";
  padding: 0 5px;
  color: #909399;
}

/* 列表分页 */
.pager {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.pager .pagination {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.pager .pagination li span,
.pager .pagination li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #303133;
  margin-right: 8px;
  background: #FFFFFF;
  border: 1px solid #E4E7ED;
  border-radius: 4px;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.514px;
}

.pager .pagination li:first-child span,
.pager .pagination li:first-child a {
  background: url(../images/prev.svg) no-repeat center;
  display: block;
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
}

.pager .pagination li:last-child span,
.pager .pagination li:last-child a {
  background: url(../images/next.svg) no-repeat center;
  color: rgba(0, 0, 0, 0);
  color: #fff;
  border: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
}

.pager .pagination li.active span,
.pager .pagination li.active a {
  border: 1px solid #005FDB;
  background: #005FDB;
  color: #fff;
}

/* 底部 */
footer {
  padding-bottom: 50px;
}

/* 顶部红线 */
.footer-top-line {
  width: 100%;
  height: 3px;
  background-color: #BF0614;
}

/* 内容主体布局 */
.footer-content {
  padding-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 143px;
}

/* 左侧 Logo 区（固定比例或宽度） */
.footer-left {
  margin-top: 30px;
}

.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 16px;
}

.footer-copyright {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: #303133;
  opacity: 0.6;
}

.footer-copyright span {
  display: block;
}

/* 右侧 友情链接区（占用剩余空间） */
.footer-right {
  flex: 1;
}

.footer-title {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #303133;
}

/* 链接按行排列 */
.footer-links-group {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-row {
  display: flex;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.6;
}

/* 左侧分类标签 */
.footer-label {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #606266;
}

/* 右侧具体链接列表 */
.footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 10px;
}

/* 单个链接样式 */
.footer-item {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #606266;
}

.footer-item:hover {
  color: #0056b3;
}

/* 首页主体 */
/* 顶部标题区 */
.headline {
  padding-top: 50px;
}

.headline-header {
  text-align: center;
  margin-bottom: 28px;
}

.headline-title {
  margin-bottom: 12px;
}

.headline-title a {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-weight: 700;
  font-size: 33px;
  color: #0058AB;
}

.headline-title:nth-child(2) a {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 主体两列布局 */
.headline-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

/* 左侧大图轮播区 */
.banner-box {
  height: 510px;
  border-radius: 12px;
  overflow: hidden;
  flex: 2;
  min-width: 0;
}

.banner-swiper {
  position: relative;
}

.banner-swiper .swiper-pagination {
  width: 100px;
  position: absolute;
  bottom: 25px;
  left: auto;
  right: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 7px;
  background: #D9D9D9;
  opacity: 1;
}

.banner-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background-color: #BF0614;
  border-radius: 60px;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
}

/* 图片占位遮罩与模拟 */
.banner-box .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  line-height: 0;
  transition: all 0.5s;
}

.banner-box .img:hover {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.banner-box .img img{
  width: 910px;
  height: 510px;
}

/* 图片底部悬浮标题栏 */
.banner-box .banner-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 94px;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(0, 0, 0, 0.6) 65%);
  color: #ffffff;
  font-size: 22px;
  z-index: 1;
}

.banner-box .banner-text span {
  max-width: 615px;
  display: block;
  margin-left: 22px;
  margin-bottom: 14px;
  position: absolute;
  bottom: 0;
}

/* 轮播指示点 */
.banner-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 7px;
  height: 7px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.dot.active {
  width: 18px;
  height: 7px;
  background-color: #d31219;
  border-radius: 4px;
}

/* 右侧新闻列表区 */
.news-column {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  height: 380px;
  margin-top: 5px;
}

.news-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 35px;
}

.group-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.group-list li {
  font-weight: 400;
  font-size: 18px;
  color: #303133;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.group-list li:first-child {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-weight: 700;
  font-size: 20px;
  font-weight: bold;
  color: #303133;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.group-list li a:hover {
  color: #0056a7;
}

.publicity-top-box {
  height: 100px;
  margin-top: 30px;
  margin-bottom: 50px;
}

/* 栏目列 政法在线-法治在线-应急安全 */
.first-box {
  display: flex;
  gap: 35px;
}

.category-column {
  flex: 1;
  background: #fff;
  padding: 0px;
  border-radius: 4px;
  min-width: 0;
}

/* 头部标题区域 */
.category-header {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-weight: 700;
  font-size: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.category-title {
  font-size: 22px;
  font-weight: bold;
  color: #BF0614;
  /* 红色主题色 */
  display: flex;
  align-items: center;
}

.more-link {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #606266;
  padding-right: 16px;
  background-image: url('../images/more.svg');
  background-size: 16px 16px;
  background-position: right center;
  background-repeat: no-repeat;
  letter-spacing: 0.01em;
}

.more-link:hover {
  color: #0056b3;
}

/* 主图大卡片 */
.category-card {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.category-card a {
  display: block;
  color: #fff;
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
}

.category-card img {
  width: 440px;
  height: 230px;
  transition: all 0.5s;
}

.category-card img:hover {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.category-card-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 图文列表容器 */
.category-news-list {
  display: flex;
  flex-direction: column;
}

/* 图文列表项 */
.category-news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 9px;
  gap: 16px;
  border-bottom: 1px solid #EBEEF5;
}

.category-news-item:last-child {
  border-bottom: none;
}

.category-news-item img {
  width: 125px;
  height: 72px;
}

.category-news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-news-title {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.category-news-title:hover {
  color: #0056b3;
}

.category-news-date {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #909399;
}

.category-news-thumb {
  width: 110px;
  height: 70px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* 纯文本列表 (专用于右侧应急安全) */
.category-text-list {
  list-style: none;
}

.category-text-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.category-text-list li::before {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: " ";
  position: absolute;
  left: 0;
  background: #D9D9D9;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.category-text-list a {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
  color: #303133;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-text-list a:hover {
  color: #0056b3;
}

/* 栏目 安全生产-环食药侦 */
.second-box {
  margin-top: 20px;
  display: flex;
  gap: 35px;
}

.security-column {
  flex: 17;
}

.security-column:last-child {
  width: 30%;
  flex: 8;
}

/* 头部标题区域 */
.security-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.security-title {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-weight: 700;
  font-size: 26px;
  color: #BF0614;
}

/* 布局卡片（图+列表组合） */
.security-media-box {
  display: flex;
  gap: 23px;
}

/* 主图大卡片 */
.security-card {
  position: relative;
  width: 455px;
  height: 310px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.security-card a {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}

.security-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.security-card img:hover {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.security-card-overlay {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 纯文本列表样式 */
.security-text-list {
  list-style: none;
  flex: 1;
}

.security-text-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.security-text-list li::before {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: " ";
  position: absolute;
  left: 0;
  background: #D9D9D9;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.security-text-list a {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 18px;
  color: #303133;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.security-text-list a:hover {
  color: #0056b3;
}

.publicity-center-box {
  display: flex;
  gap: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.publicity-center-box .publicity-center-item {
  flex: 1;
  line-height: 0;
}

.third-box,
.fourth-box,
.fifth-box {
  display: flex;
  gap: 35px;
}

.fourth-box {
  margin-top: 34px;
}

.fifth-box {
  padding-bottom: 70px;
}

.fifth-box .service-column {
  flex: 1;
  min-width: 0;
}

.service-card {
  display: grid;
  padding-top: 40px;
  padding-bottom: 165px;
  padding-left: 30px;
  padding-right: 30px;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-items: center;
  background: #F5F6F8;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.service-card-item {
  font-family: AlibabaPuHuiTi-2-55-Regular;
  font-weight: 400;
  font-size: 16px;
  color: #303133;
}

.service-card-item:hover {
  color: #0056b3;
}

.service-card-item img {
  transition: 2s;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -ms-transition: 2s;
  -o-transition: 2s;
}

.service-card-item:hover img {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
}

.service-card-item span {
  display: block;
  margin-top: 10px;
  text-align: center;
}

/* 首页结束 */
/* 栏目页 */
.channel-layout {
  display: flex;
  gap: 30px;
  /* 左右间距 */
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.channel-main {
  flex: 2;
  min-width: 0;
  /* 🔑 关键：防止标题过长时撑开 Flex 布局 */
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.channel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 2px solid #0056b3;
  margin-bottom: 20px;
}

.channel-title {
  font-size: 20px;
  color: #BF0614;
  font-weight: 600;
}

.channel-news-list {
  list-style: none;
  padding-left: 10px;
  padding-right: 10px;
}

.channel-news-item {
  border-bottom: 1px dashed #e5e5e5;
}

.channel-news-item:last-child {
  border-bottom: none;
}

.channel-news-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 8px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.channel-news-link:hover {
  background-color: #f0f7ff;
}

.channel-news-title {
  font-size: 16px;
  color: #333333;
  white-space: nowrap;
  /* 不换行 */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 单行超出显示省略号 */
  padding-right: 20px;
}

.channel-news-link:hover .channel-news-title {
  color: #0056b3;
}

.channel-news-date {
  font-size: 14px;
  color: #999999;
  flex-shrink: 0;
}

.channel-sidebar {
  flex: 1;
  min-width: 0;
  /* 🔑 关键：防内容挤压 */
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: fit-content;
  /* 侧边栏高度自适应内容 */
}

.channel-sidebar-header {
  padding-bottom: 12px;
  border-bottom: 2px solid #0056b3;
  margin-bottom: 16px;
}

.channel-sidebar-title {
  font-size: 18px;
  color: #BF0614;
  font-weight: 600;
}

.channel-category-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.channel-category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background-color: #f8f9fa;
  border-radius: 6px;
  text-decoration: none;
  color: #444444;
  font-size: 15px;
  transition: all 0.2s ease;
}

.channel-category-item:hover,
.channel-category-item.active {
  background-color: #0056b3;
  color: #ffffff;
}

.channel-category-count {
  font-size: 12px;
  padding: 2px 8px;
  background-color: #e9ecef;
  color: #6c757d;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.channel-category-item:hover .channel-category-count,
.channel-category-item.active .channel-category-count {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.channel-main-page {
  padding-bottom: 0;
}

.channel-header-page {
  margin-bottom: 0;
}

/* 📱 响应式适配：移动端/小屏幕下自动变为单列上下的结构 */
@media (max-width: 768px) {
  .channel-layout {
    flex-direction: column;
  }
}

/* 列表页样式 */
.list_main_top {
  margin-top: 40px;
  background: #F9F9F9;
}

.list_main_top a {
  display: flex;
  justify-content: space-between;
}

.list_main_top .list_main_top_left {
  width: 45%;
}

.list_main_top .list_main_top_left .list_main_top_left_img {
  line-height: 0;
}

.list_main_top .list_main_top_right {
  width: 55%;
  padding: 80px 50px 40px 55px
}

.list_main_top .list_main_top_right>span {
  font-family: AlibabaPuHuiTi-2-65-Medium;
  font-size: 26px;
  font-weight: 500;
  line-height: 36.4px;
  letter-spacing: 0.01em;
  color: #303133;
  position: relative;
  display: block;
  height: 36px;
  padding-left: 17px;
  margin-bottom: 20px;
}

.list_main_top .list_main_top_right>span::before {
  display: block;
  position: absolute;
  content: '';
  width: 2px;
  height: 30px;
  background-color: #E50242;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.list_main_top .list_main_top_right>p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #909399;
  padding-left: 15px;
}

.list_main_top .list_main_top_right_more {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  padding-left: 20px;
  align-items: center
}

.list_main_top .list_main_top_right_more span {
  display: block;
  width: 116px;
  height: 22px;
  padding-left: 26px;
  background: url(../images/time.svg) no-repeat left center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.01em;
  color: #909399;
}

.list_main_top .list_main_top_right_more i {
  background: url(../images/more.svg) no-repeat center;
  background-size: cover;
  width: 61px;
  height: 61px;
  display: block;
}

.list_box {
  padding-top: 40px;
  padding-bottom: 100px;
  margin-bottom: 40px;
  position: relative;
}

.list_box .list_box_item {
  margin-top: 24px;
  background: linear-gradient(90deg, #FFFFFF 12.5%, #F5F6F8 100%);
}

.list_box .list_box_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list_box .list_box_item .list_box_item_img {
  width: 24.3%;
  line-height: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

.list_box .list_box_item .list_box_item_img:hover {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}

.list_box .list_box_item .list_box_item_img img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}

.list_box .list_box_item .list_box_item_desc {
  width: 64.44%;
  padding-left: 36px;
  padding-right: 124px;
}

.list_box .list_box_item .list_box_item_desc span {
  font-family: AlibabaPuHuiTi-55-Medium;
  font-size: 22px;
  font-weight: 500;
  line-height: 30.8px;
  letter-spacing: 0.01em;
  color: #303133;
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.list_box .list_box_item a:hover .list_box_item_desc span,
.list_box .list_box_item a:hover .list_box_item_desc p {
  color: #0056b3;
}

.list_box .list_box_item .list_box_item_desc p {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  letter-spacing: 0.01em;
  color: #909399;
  overflow: hidden;
  text-overflow: ellipsis;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.list_box .list_box_item .list_box_item_date {
  width: 11.25%;
  padding-left: 49px;
  padding-right: 56px;
  position: relative;
}

.list_box .list_box_item .list_box_item_date .list_box_item_date_day {
  font-family: AlibabaPuHuiTi-2-85-Bold;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0.01em;
  color: #0056a7;
}

.list_box .list_box_item .list_box_item_date .list_box_item_date_ym {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #0056a7;
}

.list_box .list_box_item .list_box_item_date::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 100px;
  background: #E4E7ED;
}

/* 内页详情样式 */
.info_body_box {
  margin-top: 40px;
}

.info_body_box .new_title {
  color: #303133;
  text-align: center;
  font-family: AlibabaPuHuiTi-2-65-Medium;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.info_body_box .view_desc {
  text-align: center;
  padding-bottom: 24px;
}

.info_body_box .view_descs span {
  color: #909399;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  padding-right: 20px;
}

.info_body_box .view_desc time {
  color: #909399;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  background: url(../images/time.svg) no-repeat left center;
  padding-left: 24px;
}

.info_body_box .view_desc em {
  color: #909399;
  text-align: justify;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
  background: url(../images/view.svg) no-repeat left center;
  padding-left: 24px;
  margin-left: 42px;
}

.info_body_box .new_info_content {
  color: #303133;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  letter-spacing: 0.3px;
  margin-top: 7px;
  margin-bottom: 100px;
}