/* 引入Alimama ShuHeiTi字体 */
@font-face {
  font-family: "Alimama ShuHeiTi";
  src: url("../fonts/ALIMAMA_SHUHEITI_BOLD.TTF") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* 全局样式重置 */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

/* 响应式设计基础 - 添加缩放适配 */
html {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  height: auto;
  /* 防止缩放时的布局问题 */
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Microsoft YaHei UI, PingFang SC;
  background-color: #ffffff;
  overflow: auto;
  margin: 0;
  padding: 0;
  height: auto;
  /* 添加最小宽度限制，防止过度缩放 */
  min-width: 1200px;
  /* 使用rem单位，便于响应式缩放 */
  font-size: 16px;
}

/* 响应式容器基础类 */
.responsive-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 弹性布局基础类 */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* app-wrapper 样式 */
.app-wrapper {
  width: 100%;
  background-color: #fff;
  margin: 0;
  padding: 0;
  display: block;
}

/* 导航栏样式 */
.side-bar-wrapper {
  background-color: #fff;
  display: flex;
  padding: 0 48px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  position: fixed;
  top: 0;
  height: 96px;
  border-bottom: 1px solid #e7e7e7;
  transition: all 0.3s ease;
}

/* 导航栏滚动时的样式 */
.side-bar-wrapper.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

/* 为固定导航栏添加主容器上边距 */
.main-container {
  margin-top: 96px;
}

/* logo 样式 */
.jspc-logo {
  width: 380px;
  height: 62px;
  background-image: url("../images/jspc.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}

/* 导航菜单容器 */
.nav-bar-wrapper {
  flex: 1;
  min-width: 0;
  height: 100%;
}

/* 导航菜单列表 */
.menu-list-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* 导航菜单项 */
.menu-box {
  min-width: 128px;
  cursor: pointer;
}

/* 导航菜单项标题 */
.menu-box-title {
  font-size: 22px;
  font-weight: 600;
  color: #333333;
  text-align: center;
  font-family: "Microsoft YaHei UI", PingFang SC, sans-serif;
}

/* 导航菜单项激活状态 */
.menu-box-active .menu-box-title {
  color: #e95606;
}

/* 登录注册按钮容器 */
.login-btn-wrapper {
  width: 208px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 24px;
}

/* Element Plus 按钮基础样式 */
.el-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  border: 1px solid transparent;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
  outline: none;
  font-size: 14px;
  height: 32px;
  padding: 8px 15px;
  border-radius: 4px;
}

/* 主要按钮样式 */
.el-button.is-primary {
  color: #fff;
  background-color: #3855d5;
  border-color: #3855d5;
}

.el-button.is-primary:hover {
  background-color: #4a67e8;
  border-color: #4a67e8;
  color: #fff;
}

/* 描边按钮样式 */
.el-button.is-plain {
  background-color: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
}

.el-button.is-plain.is-primary {
  color: #3855d5;
  border-color: #3855d5;
  background-color: #fff;
}

.el-button.is-plain.is-primary:hover {
  color: #4a67e8;
  border-color: #4a67e8;
  background-color: #fff;
}

/* 登录注册按钮大小 */
.login-btn-wrapper .el-button {
  width: 96px;
  height: 40px;
  margin-left: 12px;
}

.login-btn-wrapper .el-button:first-child {
  margin-left: 0;
}

/* 主容器样式 */
.main-container {
  flex: 1 1 0;
  min-height: 0;
  /* background-color: #fff; */
  background: linear-gradient(180deg, #e8f3ff 0%, #ffffff 100%);
  overflow-y: auto;
  overflow-x: hidden;
  margin-top: 96px;
}

/* 确保中心介绍页面内容居中 */
.brief-introduction-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 应用主内容样式 */
.app-main {
  width: 100%;
  background-color: #fff;
  overflow-y: auto;
  padding: 20px;
}

/* 首页页面容器 */
.home-page-wrapper {
  background-color: #eff2f6;
  position: relative;
}

/* 左侧图片 */
.lgx-img {
  position: fixed;
  top: 620px;
  /* top: calc(50% - 117px); */
  left: 30px;
  z-index: 9999999999;
  /* width: 200px;
  height: 134px; */
  cursor: pointer;
}

/* 右侧图片 */
.lgyzszx-img {
  position: fixed;
  top: 620px;
  /* top: calc(50% - 128px); */
  right: 30px;
  z-index: 9999999999;
  /* width: 210px;
  height: 257px; */
  cursor: pointer;
}

/* 顶部横幅容器 */
.image-Banner-wrapper {
  width: 100%;
  height: 521px;
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url("../images/home-banner.png");
}

/* 横幅内容容器 */
.banner-content-wrapper {
  padding-top: 95px;
  /* padding-left: 260px; */
  max-width: 1400px;
  margin: 0 auto;
  padding-right: 20px;
}

/* 横幅标题 */
.top-banner-title {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  /* font-family: "Alimama ShuHeiTi", "Microsoft YaHei UI", PingFang SC, sans-serif; */
  text-shadow: 0px 4px 10px rgba(0, 41, 85, 0.15);
}

/* 副标题容器 */
.sub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 288px;
  margin-top: 24px;
}

/* 副标题文字 */
.sub-title p {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

/* 副标题分隔线 */
.sub-title .line-wrapper {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* 搜索框容器 */
.search-input-wrapper {
  width: 584px;
  height: 54px;
  margin-top: 45px;
}

/* 搜索框输入框组 */
.search-input-container {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

/* 搜索框输入框 */
.search-input {
  font-size: 18px;
  padding-left: 24px;
  height: 54px;
  border: none;
  border-radius: 8px 0 0 8px;
  width: 482px;
  outline: none;
  font-family: Microsoft YaHei UI, PingFang SC;
  background-color: #fff;
}

/* 搜索按钮 */
.search-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #f76c08;
  border: none;
  font-size: 18px;
  width: 102px;
  height: 54px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
  border-radius: 0px 8px 8px 0px;
  font-family: Microsoft YaHei UI, PingFang SC;
}

/* 新闻内容容器 */
.news-content {
  width: 100%;
  position: absolute;
  top: 408px;
  z-index: 10;
  /* padding: 0 260px; */
  max-width: 1400px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

/* 响应式新闻内容容器 */
@media screen and (max-width: 1600px) {
  .news-content {
    padding: 0 200px;
  }
}

@media screen and (max-width: 1440px) {
  .news-content {
    padding: 0 150px;
  }
}

@media screen and (max-width: 1366px) {
  .news-content {
    padding: 0 100px;
  }
}

@media screen and (max-width: 1200px) {
  .news-content {
    padding: 0 50px;
  }
}

/* 新闻资讯容器 */
.news-information-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px #e5edf3;
  display: flex;
  height: 528px;
  box-sizing: border-box;
}

/* 响应式新闻资讯容器 */
@media screen and (max-width: 1600px) {
  .news-information-wrapper {
    padding: 20px;
    height: 480px;
  }
}

@media screen and (max-width: 1440px) {
  .news-information-wrapper {
    padding: 18px;
    height: 450px;
  }
}

@media screen and (max-width: 1366px) {
  .news-information-wrapper {
    padding: 15px;
    height: 420px;
  }
}

@media screen and (max-width: 1200px) {
  .news-information-wrapper {
    padding: 12px;
    height: 380px;
    flex-direction: column;
  }
}

/* 左侧新闻图片 */
.left-news-img {
  width: 747px;
  height: 480px;
}

/* 右侧列表容器 */
.right-list-wrapper {
  /* flex: 0 0 calc(100% - 779px); */
  padding-left: 32px;
}

/* 资讯标签列表 */
.info-tab-type-list {
  display: flex;
  align-items: center;
  position: relative;
}

/* 查看更多按钮 */
.tab-more {
  position: absolute;
  z-index: 99;
  right: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.tab-more p {
  font-size: 18px;
  color: #0075c0;
}

.tab-more .el-icon {
  font-size: 18px;
  color: #0075c0;
  margin-left: 4px;
}

/* 搜索内容区域 */
.search-content {
  width: 100%;
  padding: 20px;
  background-color: #f5f7fa;
  min-height: 600px;
}

/* 搜索容器 */
.search-container {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  padding: 24px;
}

/* 搜索框区域 */
.search-box {
  display: flex;
  margin-bottom: 24px;
}

/* 搜索结果页面的搜索输入框 */
.search-box .search-input {
  width: 500px;
}

/* 搜索结果页面的搜索按钮 */
.search-box .search-button {
  width: 102px;
}

/* 搜索筛选条件 */
.search-filters {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f9fafc;
  border-radius: 8px;
}

/* 筛选条件组 */
.filter-group {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

/* 筛选条件标签 */
.filter-group label {
  width: 100px;
  font-weight: bold;
  color: #333;
  font-size: 16px;
}

/* 筛选选择框 */
.filter-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  width: 200px;
}

/* 筛选按钮组 */
.filter-buttons {
  display: flex;
  gap: 10px;
}

/* 筛选按钮 */
.filter-btn {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* 激活状态的筛选按钮 */
.filter-btn.active {
  background-color: #0075c0;
  color: #fff;
  border-color: #0075c0;
}

/* 筛选按钮悬停效果 */
.filter-btn:hover {
  border-color: #0075c0;
  color: #0075c0;
}

/* 搜索结果区域 */
.search-results {
  margin-top: 24px;
}

/* 搜索结果标题 */
.search-results h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}

/* 搜索结果数量 */
.result-count {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

/* 搜索结果列表 */
.results-list {
  margin-bottom: 24px;
}

/* 搜索结果项 */
.result-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

/* 搜索结果标题 */
.result-title {
  font-size: 18px;
  color: #333;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s ease;
}

/* 搜索结果标题悬停效果 */
.result-title:hover {
  color: #0075c0;
}

/* 搜索结果摘要 */
.result-summary {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* 搜索结果元信息 */
.result-meta {
  font-size: 12px;
  color: #999;
  display: flex;
  gap: 20px;
}

/* 搜索结果分类 */
.result-category {
  color: #0075c0;
}

/* 搜索结果日期 */
.result-date {
  color: #999;
}

/* 标签项 */
.tab-item {
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.tab-item:last-child {
  margin-right: 0;
}

/* 标签项文字 */
.tab-item p {
  font-size: 22px;
  font-weight: 500;
  line-height: 48px;
  color: #333333;
}

/* 激活标签项 */
.tab-item-active {
  border-bottom: 2px solid #e95606;
}

.tab-item-active p {
  color: #e95606;
  font-weight: 600;
}

/* 标签分隔线 */
.info-tab-type-list .line-wrapper {
  width: 1px;
  height: 16px;
  background-color: #d7dade;
  margin: 0 24px;
}

/* 新闻列表容器 */
.new-list-wrapper {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 新闻列表项 */
.new-item {
  width: 100%;
}

/* 第一条新闻内容 */
.content-box {
  padding: 18px 24px;
  background: rgba(241, 241, 241, 0.9);
  width: 565px;
  height: 145px;
  margin-bottom: 8px;
}

/* 新闻内容项 */
.new-content-item {
  margin-bottom: 8px;
}

.new-content-item .content-box {
  padding: 18px 24px;
  background: rgba(241, 241, 241, 0.9);
  width: 565px;
  height: 145px;
  margin-bottom: 0;
}

/* 新闻标题 */
.content-box .p-news-title {
  font-size: 22px;
  font-weight: 600;
  color: #0075c0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 新闻内容 */
.content-box .p-content {
  margin-top: 12px;
  font-size: 16px;
  color: rgba(51, 51, 51, 0.75);
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* 新闻标题框 */
.title-news-box {
  display: flex;
  align-items: center;
  padding-right: 24px;
  width: 100%;
}

/* 新闻点 */
.news-dian {
  width: 6px;
  height: 6px;
  background: #999999;
  border-radius: 6px;
}

/* 新闻标题文字 */
.title-news-box .news-title {
  width: 482px;
  padding: 0 16px;
  font-size: 16px;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 新闻时间 */
.title-news-box .news-times {
  width: 76px;
  color: #666666;
  font-size: 14px;
  white-space: nowrap;
}

/* 轮播图容器 */

/* 专题专栏样式 */
.special-topic-column {
  width: 100%;
  margin-top: 0;
  /* padding: 56px 0 0 0; */
  padding: 56px 260px 0;
  box-sizing: border-box;
}

.special-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-top: 0;
}

.special-top p:nth-child(1) {
  margin-bottom: 16px;
  font-size: 32px;
  color: #333333;
  font-weight: 600;
}

.special-top p:nth-child(2) {
  font-size: 18px;
  color: #999;
}

.special-list-card {
  width: 100%;
  padding: 32px 0;
}

/* 专题轮播样式 */
.special-card-carousel {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.carousel-track-list {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  gap: 24px;
  scroll-behavior: smooth;
  /* 隐藏滚动条 */
  /* 确保容器能够显示3张完整图片 */
  scroll-snap-type: x mandatory;
  /* 计算容器宽度：3张图片 + 2个间距 + 左右箭头空间 */
  max-width: calc(405px * 3 + 24px * 2 + 100px);
  margin: 0 auto;
}

.special-item {
  scroll-snap-align: start;
}

.carousel-track-list::-webkit-scrollbar {
  display: none;
}

.special-item {
  width: 405px;
  height: 135px;
  border-radius: 4px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  flex-shrink: 0;
}

.special-item img {
  width: 100%;
  height: 100% !important;
}

.special-item:hover {
  box-shadow: 4px 4px 15px 0px rgba(146, 146, 146, 0.2);
}

.arrow-wrapper-prev,
.arrow-wrapper-next {
  cursor: pointer;
  padding: 0 24px;
}

.arrow-wrapper-prev .el-icon,
.arrow-wrapper-next .el-icon {
  font-size: 32px;
  color: #d3d3d3;
}

/* 专题卡片背景图片 */
.zt-01 {
  background-image: url("../images/zt-01.png");
}

.zt-02 {
  background-image: url("../images/zt-02.png");
}

.zt-03 {
  background-image: url("../images/zt-03.png");
}

.zt-04 {
  background-image: url("../images/zt-04.png");
}

.zt-05 {
  background-image: url("../images/zt-05.png");
}

.zt-06 {
  background-image: url("../images/zt-06.png");
}

/* 科技信息服务内容容器 */
.technology-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 0 88px;
  background: #eff2f6;
  margin-top: 415px;
  box-sizing: border-box;
}

/* 响应式科技信息服务内容容器 */
@media screen and (max-width: 1600px) {
  .technology-content {
    padding: 50px 20px 70px 20px;
    margin-top: 380px;
  }
}

@media screen and (max-width: 1440px) {
  .technology-content {
    padding: 40px 20px 60px 20px;
    margin-top: 350px;
  }
}

@media screen and (max-width: 1366px) {
  .technology-content {
    padding: 35px 20px 50px 20px;
    margin-top: 320px;
  }
}

@media screen and (max-width: 1200px) {
  .technology-content {
    padding: 30px 15px 40px 15px;
    margin-top: 280px;
  }
}

/* 科技信息服务模块 */
.technology-information-wrapper {
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 8px 32px 0px rgba(207, 217, 228, 0.5);
  margin-top: 0;
  position: relative;
}

/* 标签列表样式 */
.tab-list-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-item-card {
  flex: 0 0 50%;
  background-color: #e6e8e8;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-right: 1px solid #fff;
}

.tab-item-card:last-child {
  border-right: none;
}

.tab-item-card .item-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.tab-item-card .p-card {
  font-size: 32px;
  font-weight: 600;
  color: #3d3d3d;
  margin: 0;
}

/* 激活标签样式 */
.tab-active-card {
  background: linear-gradient(180deg, #0b7ec8 4%, #1572ad 100%);
  position: relative;
  border-right: none;
  cursor: pointer;
}

.tab-active-card .p-card {
  color: #ffffff;
}

.tab-active-card .triangleIcon {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url("../images/triangle-icon.png");
  width: 30px;
  height: 15px;
  top: 112px;
  z-index: 99;
  left: calc(50% - 15px);
  position: absolute;
}

/* 内容容器样式 */
.info-content-box {
  margin-top: 32px;
  padding: 24px;
  width: 100%;
}

/* 服务卡片列表基础样式 */
.technology-info-list {
  width: 100%;
}

/* 我要办内容样式 */
#wybContent {
  display: none;
  width: 100%;
}

/* 我要看内容样式 */
#wykContent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
}

/* 服务卡片样式 */
.info-box {
  width: 320px;
  height: 240px;
  border-radius: 4px;
  padding: 32px 24px 0 24px;
  position: relative;
  cursor: pointer;
}

.info-box:hover {
  /* box-shadow: 4px 4px 15px 0px rgba(146, 146, 146, 0.2); */
}

.info-box .p-title {
  color: #404040;
  font-size: 28px;
  font-weight: 600;
}

.info-box .p-content {
  font-size: 20px;
  color: #666666;
  margin-top: 16px;
  line-height: 150%;
}

/* 卡片图标样式 */
.info-icon {
  position: absolute;
  z-index: 99;
  right: 0;
  bottom: 0;
  width: 140px;
  height: 107px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* 我要看卡片列表样式 */
.wyk-card-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.wyk-card-list>div {
  width: 100%;
}

.wyk-card-list img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.wyk-card-list img:hover {
  box-shadow: 0px 8px 32px 0px rgba(207, 217, 228, 0.5);
}

/* 背景图标样式 */
.bgIcon {
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.blue01Icon {
  background-image: url("../images/blue-01.png");
}

.blue02Icon {
  background-image: url("../images/blue-02.png");
}

.blue03Icon {
  background-image: url("../images/blue-01.png");
}

.orange01Icon {
  background-image: url("../images/orange-01.png");
}

.orange02Icon {
  background-image: url("../images/orange-02.png");
}

.orange03Icon {
  background-image: url("../images/orange-02.png");
}

/* 我要办图标样式 */
.wyb-icon-01 {
  background-image: url("../images/wyb-icon-01.png");
}

.wyb-icon-02 {
  background-image: url("../images/wyb-icon-02.png");
}

.wyb-icon-03 {
  background-image: url("../images/wyb-icon-03.png");
}

.wyb-icon-04 {
  background-image: url("../images/wyb-icon-04.png");
}

.wyb-icon-05 {
  background-image: url("../images/wyb-icon-05.png");
}

.wyb-icon-06 {
  background-image: url("../images/wyb-icon-06.png");
}

.wyb-icon-07 {
  background-image: url("../images/wyb-icon-07.png");
}

.wyb-icon-08 {
  background-image: url("../images/wyb-icon-08.png");
}

/* 渐变背景样式 */
.info-card-linear-gradient-01 {
  background: linear-gradient(146deg,
      #c2eaff 0%,
      rgba(228, 247, 255, 0.69) 76%);
}

.info-card-linear-gradient-02 {
  background: linear-gradient(146deg,
      #e5eaff 0%,
      rgba(249, 250, 255, 0.69) 76%);
}

.info-card-linear-gradient-03 {
  background: linear-gradient(146deg, #ffedde 3%, #fffbf3 76%);
}

.info-card-linear-gradient-04 {
  background: linear-gradient(146deg, #d2f1f4 0%, #f8ffff 76%);
}

.info-card-linear-gradient-05 {
  background: linear-gradient(146deg, #e3fff2 0%, #f1fff9 76%);
}

.info-card-linear-gradient-06 {
  background: linear-gradient(146deg, #fcf7e0 0%, #fff9ee 74%);
}

.info-card-linear-gradient-07 {
  background: linear-gradient(146deg, #e6f2ff 0%, #f9fcff 73%);
}

.info-card-linear-gradient-08 {
  background: linear-gradient(146deg, #fff1ed 0%, #fffaf7 73%);
}

/* 党建工作模块 */
.djgz-content {
  /* margin-top: 66px; */
  width: 100%;
  height: 100%;
  padding: 77px 260px;
  background: #ffffff;
  box-sizing: border-box;
}

.djgz-content .content-main {
  width: 100%;
  height: 303px;
  background-image: url("../images/djgz-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}

.djgz-content .djgz-title {
  font-size: 32px;
  font-weight: bold;
  width: 100%;
  text-align: center;
  color: #333333;
  margin-bottom: 20px;
}

.djgz-content .djgz-img-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.djgz-content .djgz-img-list img {
  height: auto;
  cursor: pointer;
  object-fit: cover;
}

/* 轮播图容器 */
.carousel-news-list-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

/* 轮播图内容图片 */
.news-content-img {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  cursor: pointer;
  background-image: url("../images/news-01.jpg");
}

/* 轮播图标题 */
.news-content-img .news-title {
  position: absolute;
  z-index: 99;
  height: 86px;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 65, 77, 0.56) 22%,
      #000608 79%);
  padding: 36px 0 0 24px;
}

.news-content-img .news-title .p-news-title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* width: 90%; */
  /* width: 466px; */
  width: calc(100% -  100px);
}

/* 自定义轮播指示器 */
.custom-indicator {
  position: absolute;
  /* top: calc(100% - 44px); */
  bottom: 30px;
  right: 40px;
  z-index: 9900;
  display: flex;
  gap: 8px;
}

.custom-indicator span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-indicator span.active {
  background-color: #fff;
  width: 24px;
  border-radius: 5px;
}

/* 底部模块样式 - 完全复刻Vue源码 */
.footer-section {
  width: 100%;
  background: #eeeeee;
  padding: 30px 0 50px 0;
  /* margin-top: 30px; */
  box-sizing: border-box;
  height: auto;
  margin-left: 0;
  margin-right: 0;
}

.footer-main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 相关链接 */
.footer-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-links .link-item {
  flex: 1;
  height: 46px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #333333;
  margin: 0 10px;
  padding: 0;
  border: none;
  transition: all 0.3s ease;
}

.footer-links .link-item:hover {
  background-color: #f5f7fa;
}

/* 底部内容 */
.footer-content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 24px;
}

/* 左侧主办单位信息 */
.footer-left {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  min-width: 400px;
}

.footer-logo {
  width: 52px;
  height: 64px;
  background-image: url("../images/unit.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-info {
  margin-left: 18px;
  flex: none;
}

.footer-info p {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

.footer-info p.m-t-8 {
  margin-top: 8px;
}

/* 中间备案信息 */
.footer-center {
  flex: 1;
  text-align: left;
  margin: 0;
  padding: 0;
  max-width: 500px;
}

.footer-center p {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

.footer-center p.m-t-8 {
  margin-top: 8px;
}

/* 右侧链接 */
.footer-right {
  flex: 0 0 auto;
  text-align: left;
  margin: 0 0 0 auto;
  padding: 0;
  min-width: 150px;
}

.footer-right .right-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-right .right-item.m-t-8 {
  margin-top: 8px;
}

.footer-right .right-item:hover {
  background-color: #f5f7fa;
}

/* 图标样式 */
.footer-right .icon-box {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: 16px;
}

.footer-right .us-icon {
  width: 20px;
  height: 16px;
  background-image: url("../images/us.png");
}

.footer-right .phone-icon {
  width: 20px;
  height: 20px;
  background-image: url("../images/phone.png");
}

.footer-right .sms-icon {
  width: 20px;
  height: 17px;
  background-image: url("../images/sms.png");
}

.footer-center .icp-icon {
  width: 18px;
  height: 20px;
  background-image: url("../images/security.png");
  margin-right: 8px;
  display: inline-block;
  vertical-align: middle;
}

.footer-center .icon-box-line {
  display: flex;
  align-items: center;
}

/* 分隔线样式 */
.footer-line {
  width: 1px;
  height: 64px;
  background-color: #dedede;
  margin-left: 30px;
  margin-right: 30px;
  flex-shrink: 0;
}

/* ICP信息样式 */
.icp-info {
  display: inline-block;
  vertical-align: middle;
}

/* 下拉菜单样式 */
.dropdown-container {
  position: relative;
  cursor: pointer;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  margin-top: -1px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  padding: 12px 16px;
  font-size: 16px;
  color: #333333;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f5f7fa;
  color: #0075c0;
}

/* 中心介绍页面样式 */
.brief-introduction-wrapper {
  background-color: #fff;
  position: relative;
}

/* 页面标题部分 */
.page-title-section {
  width: 100%;
  height: 200px;
  background-color: #0075c0;
  background-image: url("../images/top-banner.png");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-title-section h1 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0;
  text-shadow: none;
  /* font-family: "Alimama ShuHeiTi", "Microsoft YaHei UI", PingFang SC, sans-serif; */
  position: relative;
  right: 497px;
  z-index: 2;
}

.title-banner {
  display: none;
}

/* 移除右上角建筑物图片 */
.page-title-section::after {
  display: none;
}

/* 导航标签 */
.content-wrapper {
  margin: 48px auto 0;
}

.tab-box {
  width: 800px;
  margin: 0 auto 48px;
  border-top: 1px solid #e8e8e8;
  background: #f8f8f8;
  z-index: 999;
  display: flex;
}

.tab-list {
  cursor: pointer;
  text-align: center;
  height: 64px;
  color: #3d3d3d;
  font-size: 18px;
  line-height: 64px;
  box-sizing: border-box;
  border: 1px solid #e8e8e8;
  border-width: 0 1px 1px 1px;
  width: 200px;
}

.tab-list.on {
  border-bottom: 4px solid #0075c0;
  color: #0075c0;
  font-weight: bold;
  background: #fff;
}

/* 中心简介内容 */
.center-brief-wrapper {
  padding-bottom: 76px;
  width: 1400px;
  margin: 0 auto;
}

/* 荣誉图片容器 */
.honor-images-container {
  width: 100%;
  text-align: center;
}

.honor-images-container img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* 简介主内容 */
.top-section {
  display: flex;
  margin: 32px 0 0;
  margin-bottom: 32px;
}

.top-section img {
  width: 546px;
  height: 397px;
}

/* 右侧文字内容 */
.right-box {
  margin: 0 0 0 40px;
}

.right-box p {
  font-size: 16px;
  line-height: 26px;
  min-height: 26px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  text-align: justify;
}

.right-box p.blue {
  color: #0075c0;
}

/* 查看更多按钮 */
.btn-more {
  margin: 55px 0 0;
  cursor: pointer;
  width: 100px;
  height: 30px;
  background: #f1f5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0075c0;
  font-size: 14px;
}

.arrow-right {
  width: 10px;
  height: 10px;
  position: relative;
  margin-left: 8px;
}

.arrow-right::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.5px solid #0075c0;
  border-left: none;
  border-bottom: none;
  transform: rotate(45deg);
  top: 1px;
  right: 0;
}

/* 资质荣誉标题 */
.title-box {
  margin: 20px 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  position: relative;
  padding-left: 24px;
  background: url("../images/title-icon.png") no-repeat left center;
  background-size: 16px 16px;
}

/* 内容标题样式 - 完全复刻Vue commonTitle组件 */
.common-title {
  width: 138px;
  /* margin: 0 auto 32px; */
}

.common-title .title {
  text-align: center;
  color: #3d3d3d;
  font-size: 28px;
  font-weight: bold;
  line-height: 41px;
  position: relative;
  z-index: 1;
  background: #ffffff;
  display: inline-block;
  padding: 0 10px;
}

.common-title .line {
  background: #ffeee1;
  height: 20px;
  margin-top: -20px;
  position: relative;
  z-index: 0;
}

/* 组织架构样式 */
.center-brief-wrapper {
  padding: 0 0 84px 0;
  width: 1400px;
  margin: 0 auto;
}

/* 中心领导样式 */
.leader-box {
  margin: 32px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.leader-list {
  width: 684px;
  height: 198px;
  display: flex;
  box-shadow: 0px 3px 15px 0px rgba(100, 100, 100, 0.1);
}

.leader-list img {
  width: 162px;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  padding: 21px 40px 0 40px;
}

.leader-info .name {
  line-height: 36px;
  font-size: 24px;
  font-weight: 700;
}

.leader-info .position {
  line-height: 36px;
  font-size: 20px;
  color: #666666;
}

.leader-info .line {
  margin: 14px 0 16px;
  width: 100%;
  height: 2px;
  background: #d8d8d8;
}

.leader-info .introduce {
  line-height: 26px;
  font-size: 16px;
  color: #3d3d3d;
}

/* 组织架构样式 */
.organization-box {
  display: flex;
  flex-wrap: wrap;
  width: 1400px;
}

.organization-list {
  width: 700px;
  height: 93px;
  display: flex;
}

.organization-list:nth-child(4n + 1) .num {
  background: #e8eff7;
  border: 1px solid #d0e1f3;
}

.organization-list:nth-child(4n + 1) .right-box {
  background: #f8fbff;
  border-color: #eaf1fa;
}

.organization-list:nth-child(4n + 2) .num {
  background: #e8eff7;
  border: 1px solid #d0e1f3;
}

.organization-list:nth-child(4n + 2) .right-box {
  background: #f8fbff;
  border-color: #eaf1fa;
}

.organization-list .num {
  width: 64px;
  height: 93px;
  line-height: 93px;
  text-align: center;
  border: 1px solid #d7e6f6;
  color: #333333;
  font-size: 18px;
  background: #f4f9ff;
}

.organization-list .right-box {
  flex: 1;
  border: 1px solid #ededed;
  border-width: 1px 1px 1px 0px;
  padding: 0 0 0 32px;
  display: flex;
  align-items: center;
  margin: 0;
}

.organization-list .right-box .name {
  color: #333333;
  font-size: 20px;
  line-height: normal;
}

.organization-list .right-box .tel {
  color: #666666;
  font-size: 18px;
  line-height: normal;
  margin: 8px 0 0;
}

/* 单位文化样式 */
.unit-culture-wrapper {
  padding-bottom: 114px;
  width: 1400px;
  margin: 0 auto;
}

.unit-culture-wrapper .fz-image {
  display: block;
}

/* 活动轮播样式 */
.activity-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.activity-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  gap: 16px;
  scroll-behavior: smooth;
  /* 隐藏滚动条 */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.activity-track::-webkit-scrollbar {
  display: none;
}

.activity-item {
  height: 352px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  width: calc(25% - 12px);
  /* 一行显示4张图片 */
}

.activity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.activity-item:hover img {
  transform: scale(1.05);
}

/* 历史沿革内容 */
.histort-evolution-wrapper {
  width: 100vw;
  margin: 0 auto;
  position: relative;
  padding: 269px 0 450px;
  overflow-x: auto;
  overflow-y: hidden;
}

.histort-evolution-wrapper .arrow-bg {
  width: 100%;
  height: 65px;
  background: url("../images/time-arrow.png") no-repeat;
  background-size: 100%;
}

.histort-evolution-wrapper .dot {
  width: 18px;
  height: 18px;
  border: 3px solid #366fa4;
  background: #fff;
  border-radius: 100%;
}

.histort-evolution-wrapper .side-box {
  position: absolute;
  display: flex;
}

.histort-evolution-wrapper .side-box .info-box .time {
  color: #0075c0;
  font-size: 36px;
  font-weight: bold;
  line-height: 28px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: inline-block;
  margin-bottom: 8px;
  box-shadow: none;
}

.histort-evolution-wrapper .first-box .right-box .time {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  line-height: 28px;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 0;
  box-shadow: none;
}

.histort-evolution-wrapper .side-box .info {
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  margin: 12px 0 0;
}

.histort-evolution-wrapper .side-box ul.info {
  list-style-type: none;
  padding: 0;
  margin: 12px 0 0;
}

.histort-evolution-wrapper .side-box .info-box {
  width: auto;
  min-width: auto;
  max-width: auto;
  overflow: visible;
}

.histort-evolution-wrapper .side-box ul.info {
  width: auto;
  min-width: auto;
}

/* 我要办模块样式 */
.wyb-top-section {
  display: flex;
  gap: 48px;
}

.wyb-left-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wyb-right-section {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
}

/* 上模块标题样式 */
.section-title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 16px;
}

.personal-title {
  color: #0879D6;
}

.enterprise-title {
  color: #5757C7;
}

.demand-title {
  color: #333333;
}

.platform-title {
  color: #333333;
  margin-bottom: 16px;
}

/* 申报内容区域 */
.personal-declaration,
.enterprise-declaration {
  padding: 16px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #DAF1FF 0%, rgba(215, 236, 254, 0.24) 98%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  flex: 1;
}

/* 个人申报背景 */
.personal-declaration {
  background: url('../images/grsb-bg.png') no-repeat center;
  background-size: cover;
  border-radius: 8px;
}

/* 企业/高校申报背景 */
.enterprise-declaration {
  background: url('../images/qygxsb-bg.png') no-repeat center;
  background-size: cover;
  border-radius: 8px;
}

.declaration-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 个人申报 - 两个模块左右布局，铺满容器 */
.personal-declaration .declaration-content {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}

.personal-declaration .declaration-content .declaration-item {
  flex: 1;
  width: 100%;
}

/* 企业/高校申报 - 6个模块，一行两个，铺满容器 */
.enterprise-declaration .declaration-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.enterprise-declaration .declaration-content .declaration-item {
  width: 100%;
}

/* 申报项通用样式 */
.declaration-item {
  height: 116px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 0px rgba(216, 228, 232, 0.5);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.declaration-item:hover {
  box-shadow: 0px 8px 25px 0px rgba(216, 228, 232, 0.7);
  transform: translateY(-2px);
}

.item-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
}

/* 科技副总申报专用图标 */
.declaration-item:nth-child(1) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/kjfz-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 333人才申报专用图标 */
.declaration-item:nth-child(2) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/333rcsb-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 独角兽企业申报专用图标 */
.enterprise-declaration .declaration-item:nth-child(1) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/djs-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 瞪羚企业申报专用图标 */
.enterprise-declaration .declaration-item:nth-child(2) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/dl-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 创新积分制填报专用图标 */
.enterprise-declaration .declaration-item:nth-child(3) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/cxjfz-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 产学研合作项目专用图标 */
.enterprise-declaration .declaration-item:nth-child(4) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/cxyhz-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 校企联盟专用图标 */
.enterprise-declaration .declaration-item:nth-child(5) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/xqlm-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

/* 路演中心运行信息填报专用图标 */
.enterprise-declaration .declaration-item:nth-child(6) .icon-placeholder {
  width: 40px;
  height: 40px;
  background: url('../images/lyzx-icon.png') no-repeat center;
  background-size: contain;
  border-radius: 0;
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-title {
  font-size: 24px;
  font-weight: bold;
  color: #333333;
  margin: 0;
}

.item-desc {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

/* 我有需求区域 */
.demand-content {
  border-radius: 8px;
  padding: 48px 32px 73px 32px;
  background: url('../images/wyxq-bg.png') no-repeat center;
  background-size: cover;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.demand-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  color: #666666;
  margin-bottom: 40px;
}

/* 关键词高亮样式 */
.keyword-highlight {
  font-weight: 700;
  color: #2174DC;
}

.demand-btn {
  height: 56px;
  border-radius: 4px;
  background: #F76C08;
  color: #FFFFFF;
  border: none;
  padding: 0 32px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.demand-btn:hover {
  background: #E55A00;
  transform: translateY(-2px);
  box-shadow: 0px 8px 20px 0px rgba(247, 108, 8, 0.3);
}

/* 需求填报按钮图标 */
.btn-icon {
  width: 32px;
  height: 32px;
  background: url('../images/xqtb-icon.png') no-repeat center;
  background-size: contain;
  margin-right: 8px;
  display: inline-block;
}

/* 下模块：供需对接平台 */
.wyb-bottom-section {
  margin-top: 32px;
  width: 100%;
}

.platform-content {
  display: flex;
  gap: 16px;
  width: 100%;
}

.platform-item {
  height: 175px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 4px 15px 0px rgba(216, 228, 232, 0.5);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  width: 100%;
}

/* 技术转移项目背景 */
.platform-item:nth-child(1) {
  background: url('../images/jlzx-bg.png')no-repeat center;
  background-size: cover;
}

/* 检验检测项目背景 */
.platform-item:nth-child(2) {
  background: url('../images/rc-bg.png') no-repeat center;
  background-size: cover;
}

/* 隐藏技术转移和检验检测项目的icon和文字内容 */
.platform-item:nth-child(1) .item-icon,
.platform-item:nth-child(1) .item-content,
.platform-item:nth-child(2) .item-icon,
.platform-item:nth-child(2) .item-content {
  display: none;
}

max-width: auto;
padding: 0;
margin: 12px 0 0;
overflow: visible;
}

.histort-evolution-wrapper .side-box ul.info li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  line-height: 22px;
  font-size: 14px;
  color: #333333;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  width: 252px;
  max-width: 252px;
  word-break: break-all;
  word-wrap: break-word;
}

/* 最后一个模块（2015-2024）样式调整 */
.histort-evolution-wrapper .side2 .info-box {
  width: auto;
  min-width: 500px;
  max-width: none;
}

.histort-evolution-wrapper .side2 ul.info {
  width: auto;
  min-width: 500px;
  max-width: none;
}

.histort-evolution-wrapper .side2 ul.info li {
  width: 252px;
  max-width: 450px;
  white-space: normal;
  line-height: 24px;
  word-break: break-all;
  word-wrap: break-word;
}

.histort-evolution-wrapper .side-box ul.info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #366fa4;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  top: 0;
}

.histort-evolution-wrapper .side1 {
  top: 81px;
  right: 115px;
  display: block;
}

.histort-evolution-wrapper .side1 .line {
  width: 2px;
  height: 46px;
  background: url("../images/line1.png") no-repeat;
  background-size: 100%;
  margin: 4px 0 0 166px;
}

.histort-evolution-wrapper .side1 .dot {
  width: 48px;
  height: 48px;
  background: rgba(233, 86, 6, 0.2);
  border-radius: 100%;
  padding: 14px 0 0;
  margin: 0 0 0 142px;
  border: 0;
}

.histort-evolution-wrapper .side1 .dot span {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
  border: 3px solid #ff7b34;
  background: #fff;
  border-radius: 100%;
}

.histort-evolution-wrapper .side2 {
  top: 278px;
  right: 115px
}

.histort-evolution-wrapper .side2 .line {
  width: 2px;
  height: 488px;
  background: url("../images/line2.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side2 .info-box {
  margin: 70px 0 0 17px;
}

.histort-evolution-wrapper .side3 {
  top: 82px;
  left: 975px;
}

.histort-evolution-wrapper .side3 .line {
  width: 2px;
  height: 196px;
  background: url("../images/line3.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side3 .info-box {
  margin: 26px 0 0 20px;
}

.histort-evolution-wrapper .side4 {
  top: 278px;
  left: 850px;
}

.histort-evolution-wrapper .side4 .line {
  width: 2px;
  height: 178px;
  background: url("../images/line4.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side4 .info-box {
  margin: 70px 0 0 17px;
}

.histort-evolution-wrapper .side5 {
  top: 118px;
  left: 650px;
}

.histort-evolution-wrapper .side5 .line {
  width: 2px;
  height: 160px;
  background: url("../images/line5.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side5 .info-box {
  margin: 42px 0 0 20px;
}

.histort-evolution-wrapper .side6 {
  top: 278px;
  left: 522px;
}

.histort-evolution-wrapper .side6 .line {
  width: 2px;
  height: 178px;
  background: url("../images/line4.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side6 .info-box {
  margin: 70px 0 0 17px;
}

.histort-evolution-wrapper .side7 {
  top: 118px;
  left: 375px;
}

.histort-evolution-wrapper .side7 .line {
  width: 2px;
  height: 160px;
  background: url("../images/line5.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side7 .info-box {
  margin: 42px 0 0 16px;
}

.histort-evolution-wrapper .side8 {
  top: 278px;
  left: 250px;
}

.histort-evolution-wrapper .side8 .line {
  width: 2px;
  height: 178px;
  background: url("../images/line4.png") no-repeat;
  background-size: 100%;
  margin: 0 0 0 8px;
}

.histort-evolution-wrapper .side8 .info-box {
  margin: 70px 0 0 17px;
}

/* 调整时间线文字样式 */
.histort-evolution-wrapper .side-box .time {
  font-size: 24px;
  color: #0075c0;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.2;
}

/* 调整列表项样式 */
.histort-evolution-wrapper .side-box ul.info li {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  width: 252px;
  max-width: 252px;
  word-break: break-all;
  word-wrap: break-word;
}

/* 确保时间线容器居中显示 */
.histort-evolution-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.histort-evolution-wrapper .first-box {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 8px 14px 0px rgba(189, 205, 228, 0.4);
  background: #ED2C2C;
  width: 439px;
}

.histort-evolution-wrapper .first-box img {
  width: 167px;
  height: 132px;
  display: block;
}

.histort-evolution-wrapper .first-box .right-box {
  padding: 31px 0 0 0;
}

.histort-evolution-wrapper .first-box .right-box .time {
  font-weight: bold;
  line-height: 28px;
  font-size: 40px;
  color: #fff;
}

.histort-evolution-wrapper .first-box .right-box .name {
  font-weight: bold;
  line-height: normal;
  font-size: 18px;
  margin: 16px 0 0;
  color: #fff;
}

/* ==================== 响应式设计和缩放适配 ==================== */

/* 针对不同缩放级别的适配 */
@media screen and (max-width: 1600px) {
  body {
    font-size: 15px;
  }

  .footer-main,
  .technology-main,
  .histort-evolution-wrapper .first-box {
    transform: scale(0.95);
    transform-origin: center top;
  }
}

@media screen and (max-width: 1440px) {
  body {
    font-size: 14px;
  }

  .footer-main,
  .technology-main,
  .histort-evolution-wrapper .first-box {
    transform: scale(0.9);
    transform-origin: center top;
  }

  .side-bar-wrapper {
    height: 86px;
  }

  .main-container {
    margin-top: 86px;
  }
}

@media screen and (max-width: 1366px) {
  body {
    font-size: 13px;
  }

  .footer-main,
  .technology-main,
  .histort-evolution-wrapper .first-box {
    transform: scale(0.85);
    transform-origin: center top;
  }

  .side-bar-wrapper {
    height: 80px;
    padding: 0 30px;
  }

  .main-container {
    margin-top: 80px;
  }

  .jspc-logo {
    width: 320px;
    height: 52px;
  }
}

/* 针对Mac Retina屏等高DPI显示器的优化 */
@media screen and (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
}

/* 防止浏览器缩放导致的布局错乱 */
@supports (zoom: 100%) {
  html {
    zoom: 100%;
  }
}

/* 针对IE11的兼容性处理 */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  body {
    min-width: 1200px;
  }
}

/* 小屏幕适配 */
@media screen and (max-width: 1200px) {
  body {
    min-width: 1000px;
    font-size: 12px;
  }

  .footer-main,
  .technology-main {
    width: 1000px;
    transform: scale(0.8);
    transform-origin: center top;
  }

  .side-bar-wrapper {
    height: 70px;
    padding: 0 20px;
  }

  .main-container {
    margin-top: 70px;
  }

  .jspc-logo {
    width: 280px;
    height: 46px;
  }

  .menu-box-title {
    font-size: 18px;
  }
}

.page-common-title {
  display: flex;
}

.page-common-title>div {
  font-family: Source Han Sans;
  font-size: 36px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;
  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #333333;
  position: relative;
  margin-bottom: 12px;
}


.page-common-title>div::after {
  position: absolute;
  content: '';
  width: 64px;
  height: 5px;
  background: #0075C0;
  left: 0px;
  bottom: -11px;
  margin-left: calc(50% - 32px);
}


.footer-contact-number {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 80px; */
  height: 120px;
  width: 100%;
  background: #FFFFFF;

  box-shadow: 8px 2px 24px 0px rgba(55, 60, 67, 0.2);
}

.contact-number-left-wrapper,
.contact-number-right-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-number-icon {
  margin-right: 16px;
}

.contact-number-label {
  font-family: Source Han Sans;
  font-size: 28px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #333333;



}

.contact-number-value {
  font-family: Source Han Sans;
  font-size: 28px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;

  color: #E95606;
}

.contact-number-btn {
  width: 274px;
  height: 45px;
  border-radius: 4px;
  opacity: 1;

  /* 自动布局 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  gap: 10px;

  background: #056DCE;
  font-family: Source Han Sans;
  font-size: 20px;
  font-weight: bold;
  line-height: normal;
  letter-spacing: 0em;

  font-variation-settings: "opsz" auto;
  font-feature-settings: "kern" on;
  color: #FFFFFF;
  cursor: pointer;
}

.common-default-a{
  text-decoration: none;
  color: #333333;
}
.common-over-hide {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}