@charset "UTF-8";
@font-face {
  font-family: "FZZongYi-M05S";
  src: url("/static/fonts/FZZYJW--GB1-0.woff2") format("woff2"),
    url("/static/fonts/FZZYJW--GB1-0.woff") format("woff"),
    url("/static/fonts/FZZYJW--GB1-0.ttf") format("truetype"),
    url("/static/fonts/FZZYJW--GB1-0.svg#FZZYJW--GB1-0") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  border-radius: 5em;
  background-color: #1b42df;
  opacity: 1;
}
.swiper
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #fff;
}
.swiper .swiper-pagination .swiper-pagination-bullet .swiper-slide img {
  width: 100%;
}

.wrap {
  max-width: 1600px;
  margin: 2em auto 0;
}

.dnbanner .wrap,
.header2 .wrap,
.con1 .wrap {
  margin: 0 auto;
}

.header .logo,
.header2 .logo {
  padding: 1em 0;
}
.header .logo img,
.header2 .logo img {
  height: 64px;
  width: auto;
}

.header {
  background-color: #1b569a;
  background-image: url("/static/images/topbg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .wrap {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .wrap .search {
  border-radius: 50vw;
  overflow: hidden;
}
.header .wrap .search input {
  padding: 0.25em 1em;
}

.header2 {
  background: no-repeat url("/static/images/footer.png") 0 0;
  background-size: 100% 100%;
  height: 450px;
}
.header2 h1 {
  margin: 1em;
  font-size: 56px;
  color: white;
}

.swiper {
  width: 100vw;
  height: 450px;
}

.nav .wrap {
  margin: 0 auto;
}
.nav .wrap #nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  margin: 0;
  padding: 0;
}
.nav .wrap .nLi {
  width: 12.5%;
  background-image: url("/static/images/btnbg.png");
  background-color: #1b1464;
  background-size: 100% 100%;
  height: 92px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav .wrap .nLi .sub {
  margin: 0;
  padding: 0;
  display: none;
  width: auto;
  left: -100%;
  min-width: 20em;
  top: 92px;
  position: absolute;
  z-index: 9999999;
  background: #b9b298;
  line-height: 3em;
  list-style: none;
  font-size: 18px;
  font-family: "微软雅黑", sans-serif;
}
.nav .wrap .nLi .sub li {
  zoom: 1;
  border: 1px solid #ffffff;
}
.nav .wrap .nLi .sub a {
  display: block;
  padding: 0 10px;
}
.nav .wrap .nLi .sub a:hover {
  background: #6d6d6d;
  color: #fff;
}
.nav .wrap .nLi.on {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}
.nav .wrap .nLi h3 {
  margin: 0;
  padding: 32px;
  width: 100%;
  box-sizing: border-box;
  font-family: "FZZongYi-M05S", "Microsoft YaHei", sans-serif;
  font-size: 24px;
  line-height: 1.75rem;
}

.area_info {
  color: #1b1464;
  font-size: 36px;
  font-family: "FZZongYi-M05S", "Microsoft YaHei", sans-serif;
  border-bottom: 4px solid #8d847b;
}
.area_info span {
  font-size: 18px;
  color: #ffd666;
}

.exhibition-container {
  display: flex;
  flex-wrap: nowrap; /* 强制一行显示 */
  gap: 20px; /* 项目之间的间距（预留放大空间，避免遮挡） */
  justify-content: space-between;
  max-width: 1770px; /* 限制最大宽度，优化宽屏显示 */
  margin: 0 auto; /* 水平居中 */
}

.exhibition-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 6 - 17px); /* 均分宽度，扣除gap间距 */
  overflow: hidden; /* 避免图片放大时超出容器范围 */
}

/* 单个项目：图片在上，文字在下，控制溢出隐藏 */
.exhibition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* 避免图片放大时超出容器范围 */
}

/* 图片样式：基础样式 + 悬浮动画 */
.exhibition-item img {
  width: 100%;
  height: 200px; /* 固定图片高度，保持布局整齐 */
  object-fit: cover; /* 保持图片比例，裁剪多余部分（不拉伸） */
  border-radius: 8px; /* 可选：圆角优化视觉 */
  transition: all 0.3s ease; /* 动画过渡，让放大更平滑 */
  cursor: pointer; /* 鼠标悬浮显示手型，提示可点击（如需锚点可后续添加） */
}

/* 鼠标悬浮图片放大特效 */
.exhibition-item img:hover {
  transform: scale(1.1); /* 放大1.1倍（可调整数值，如1.05=放大5%） */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* 新增阴影，增强立体感 */
}

/* 文字样式：保持居中，优化间距 */
.exhibition-item p {
  margin-top: 12px;
  text-align: center;
  font-size: 18px;
  color: #333;
  background-color: #2e72b1;
  color: #fff;
  padding: 6px 0;
  width: 100%;
  border-radius: 4px;
}

.con2 .wrap {
  display: flex;
  justify-content: space-between;
}
.con2 .wrap .left {
  width: 350px;
}
.con2 .wrap .left .ewm {
  width: 350px;
  padding-top: 1em;
}
.con2 .wrap .left .ewm img {
  display: block;
  width: 100%;
  height: auto;
}
.con2 .wrap .left .info {
  padding: 0.5em;
}
.con2 .wrap .left .info .info_item span {
  font-weight: 600;
}
.con2 .wrap .left .info .info_item .info_name {
  display: inline-block;
  width: 80px;
}
.con2 .wrap .right {
  width: 1000px;
}
.con2 .wrap .right .news-list {
  padding: 0.5em;
}
.con2 .wrap .right .news-list .news_item {
  margin: 0.25em;
  line-height: 2em;
  background: no-repeat url("/static/images/news_icon.png") 0 center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2em;
  font-size: 24px;
  color: #545454;
}
.con2 .wrap .right .read-more {
  color: #1b1464;
  text-align: right;
  font-size: 20px;
  font-weight: bold;
}

.exhibition_introduction .wrap,
.about_deno .wrap {
  display: flex;
  justify-content: space-between;
}
.exhibition_introduction .wrap .left,
.about_deno .wrap .left {
  width: 850px;
}
.exhibition_introduction .wrap .left .info,
.about_deno .wrap .left .info {
  padding: 2em 1em;
  text-indent: 2em;
}
.exhibition_introduction .wrap .left .info p,
.about_deno .wrap .left .info p {
  font-size: 22px;
  color: #666666;
  line-height: 48px;
  margin: 0.5em 0;
}
.exhibition_introduction .wrap .right,
.about_deno .wrap .right {
  width: 450px;
  display: flex;
}

.enterprise_performance .wrap {
  width: 1600px;
  margin: 2em auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.enterprise_performance .wrap .item {
  text-align: center;
  flex: 1;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: #ffffff;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0px rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}
.enterprise_performance .wrap .item p {
  width: 100%;
  font-size: 24px;
}
.enterprise_performance .wrap .item p span {
  font-size: 1.5em;
}
.enterprise_performance .wrap .item.item1 {
  background-color: #b7b898;
}
.enterprise_performance .wrap .item.item2 {
  background-color: #8d847b;
}
.enterprise_performance .wrap .item.item3 {
  background-color: #b7b898;
}
.enterprise_performance .wrap .item.item4 {
  background-color: #8d847b;
}

.focus_area .wrap .area_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}

.fg {
  width: 100%;
  margin: 2rem 0;
}
.fg img {
  width: 100%;
}

.latest_activity .wrap .area_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}
.latest_activity .wrap .area_content.list {
  flex-wrap: wrap;
}
.latest_activity .wrap .area_content.list *.item {
  width: 100%;
}
.latest_activity .wrap .area_content.list *.item .time {
  font-size: 48px;
  padding-bottom: 1rem;
}
.latest_activity .wrap .area_content.list *.item .time .year {
  color: grey;
  display: block;
  font-size: 0.75em;
}
.latest_activity .wrap .area_content.list *.item .img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0px rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}
.latest_activity .wrap .area_content.list *.item p {
  margin: 1em;
  font-size: 28px;
  text-align: right;
  line-height: 2em;
  color: #1b1464;
}
.latest_activity .wrap .area_content .item .time {
  font-size: 24px;
  padding-bottom: 1rem;
}
.latest_activity .wrap .area_content .item .time .year {
  color: grey;
  display: block;
  font-size: 0.75em;
}
.latest_activity .wrap .area_content .item .img {
  width: 420px;
  height: 235px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0px rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
}
.latest_activity .wrap .area_content .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.latest_activity .wrap .area_content .item h1 {
  padding: 1rem 0;
  font-weight: 700;
  font-size: 24px;
}

.classic_case .wrap .area_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 0;
}

.meeting_affairs .wrap .area_content,
.exhibition_display .wrap .area_content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.meeting_affairs .wrap .area_content a,
.exhibition_display .wrap .area_content a {
  width: 33.3%;
}
.meeting_affairs .wrap .area_content .item,
.exhibition_display .wrap .area_content .item {
  margin: 1.5em 1em;
}
.meeting_affairs .wrap .area_content .item img,
.exhibition_display .wrap .area_content .item img {
  display: block;
  width: 100%;
  height: 245px;
}
.meeting_affairs .wrap .area_content .item h1,
.exhibition_display .wrap .area_content .item h1 {
  text-align: center;
  background-color: #999999;
  color: #ffffff;
}

.news_list .wrap .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 3px solid #999999;
  padding: 24px;
}
.news_list .wrap .item .datetime {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background-color: #1c59d6;
  color: white;
  text-align: center;
}
.news_list .wrap .item .datetime .yearmonth {
  font-size: 24px;
  line-height: 30px;
  margin-top: 0.5em;
}
.news_list .wrap .item .datetime .day {
  font-size: 38px;
}
.news_list .wrap .item .info {
  padding: 0 2em;
}
.news_list .wrap .item .info h1 {
  font-size: 24px;
}
.news_list .wrap .item .info p {
  text-indent: 2em;
}

.latest_news .wrap .time .year {
  font-size: 28px;
}
.latest_news .wrap .time .timeline {
  font-size: 56px;
}
.latest_news .wrap .item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.latest_news .wrap .item img {
  width: 36vw;
  height: 27vw;
}
.latest_news .wrap .item div {
  padding: 0 3em;
}
.latest_news .wrap .item div h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 1em;
}
.latest_news .wrap .item div p {
  font-size: 20px;
  text-indent: 2em;
  line-height: 1.5em;
}

.contact_us {
  padding-bottom: 48px;
}

.contact_us .wrap .area_info,
.personnel_recruitment .wrap .area_info {
  color: #000000;
  font-size: 36px;
  border-bottom: none;
}
.contact_us .wrap .area_info span,
.personnel_recruitment .wrap .area_info span {
  color: #000000;
  font-size: 18px;
}

.personnel_recruitment .area_content table {
  margin: 1em;
  width: auto;
  border: 1px solid #eef7ff;
}
.personnel_recruitment .area_content table tr,
.personnel_recruitment .area_content table td {
  border: 1px solid #eef7ff;
  line-height: 2em;
  padding: 0.5em;
}
.personnel_recruitment .area_content table tr a,
.personnel_recruitment .area_content table td a {
  color: #901e22;
}
.personnel_recruitment .area_content table .desc {
  text-indent: 2em;
}

.exhibition_main_screen .wrap .area_content {
  padding-top: 1em;
}
.exhibition_main_screen .wrap .area_content .swiper {
  width: 1600px;
  height: 500px;
}
.exhibition_main_screen .wrap .area_content .swiper img {
  width: 1600px;
  height: 500px;
}

.exhibition_booth_map .wrap .area_content img {
  margin: 20px 0;
}

.footer {
  width: 100%;
  height: 450px;
  background-image: url("/static/images/footer.png");
  background-position: center center;
  background-size: 100% 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  width: 1600px;
  margin: 0 auto;
  color: white;
  font-size: 36px;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.pagination > li {
  display: inline;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  z-index: 2;
  color: #23527c;
  background-color: #eeeeee;
  border-color: #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #eeeeee;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #777777;
  cursor: not-allowed;
  background-color: #fff;
}

.bannerSwiper {
  height: 689px;
}

.bannerSwiper img {
  width: 100%;
  height: 689px;
}
