/* 展会头部导航模块 START */

.expoX9_header,
.expoX9_header *,
.expoX9_header *::before,
.expoX9_header *::after {
  box-sizing: border-box;
}

.expoX9_header {
  width: 100%;
  height: 178px;

  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.expoX9_headerInner {
  position: relative;
  width: 1200px;
    background: #fff url("../images/topbg.jpg") no-repeat right top;
  max-width: 100%;
  height: 178px;
  margin: 0 auto;
}

/* Logo */
.expoX9_logo {
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 2;
  display: block;
  transition: opacity .3s ease, transform .3s ease;
}

.expoX9_logo:hover {
  opacity: .85;
  transform: translateY(-2px);
}

.expoX9_logo img {
  display: block;
  max-width: 180px;
  height: auto;
}

.expoX9_textLogo {
  display: none;
  color: #bfc3c7;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: -2px;
  white-space: nowrap;
}

.expoX9_textLogo b {
  color: #2044b9;
}

/* 电话 */
.expoX9_phone {
  position: absolute;
  top: 47px;
  right: 0;
  color: #2044b9;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  transition: color .3s ease, transform .3s ease;
}

.expoX9_phone:hover {
  color: #486de3;
  transform: translateY(-2px);
}

/* 一级导航 */
.expoX9_nav {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expoX9_nav > li {
  position: relative;
  /* width: 120px; */
  height: 51px;
  margin-right: 10px;
}

.expoX9_nav > li > a {
  display: block;
  width: 100%;
  height: 51px;
  padding: 0 23px;
  box-sizing: border-box;
  color: #333;
  font-size: 14px;
  line-height: 51px;
  text-align: center;
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease;
}

.expoX9_nav > li:hover > a,
.expoX9_nav > li.expoX9_active > a {
  color: #fff;
  background: #2044b9;
}

/* 下拉菜单 */
.expoX9_subNav {
  position: absolute;
  top: 51px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 11px 0 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity .25s ease,
    transform .25s ease,
    visibility .25s ease;
}

/* 下拉菜单顶部三角 */
.expoX9_subNav::before {
  position: absolute;
  top: 5px;
    left: 50%;
    transform: translateX(-50%);
  width: 0;
  height: 0;
  content: "";
  border-right: 6px solid transparent;
  border-bottom: 6px solid #2044b9;
  border-left: 6px solid transparent;
}

.expoX9_hasSub:hover .expoX9_subNav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.expoX9_subNav li {
  margin: 0;
  padding: 0;
}

.expoX9_subNav a {
  display: block;
  min-height: 40px;
  padding: 10px 5px;
  color: #fff;
  background: #2044b9;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  transition: background-color .25s ease;
}

.expoX9_subNav a:hover {
  background: #486de3;
}

/* 展会头部导航模块 END */

/* 展会轮播图模块 START */

.expoBannerK8,
.expoBannerK8 *,
.expoBannerK8 *::before,
.expoBannerK8 *::after {
  box-sizing: border-box;
}

.expoBannerK8 {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 676px;
  margin: 0 auto;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 2px;
  transition: box-shadow .35s ease, transform .35s ease;
  margin-top: 25px;
}

.expoBannerK8:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, .14);
  transform: translateY(-2px);
}

.expoBannerK8_track {
  position: relative;
  width: 100%;
  height: 100%;
}

.expoBannerK8_item {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition:
    opacity .65s ease,
    visibility .65s ease,
    transform 1.2s ease;
}

.expoBannerK8_itemActive {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.expoBannerK8_item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
}

.expoBannerK8:hover .expoBannerK8_itemActive img {
  transform: scale(1.025);
}

/* 左右切换按钮 */
.expoBannerK8_arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition:
    opacity .3s ease,
    background-color .3s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

.expoBannerK8_prev {
  left: 22px;
}

.expoBannerK8_next {
  right: 22px;
}

.expoBannerK8:hover .expoBannerK8_arrow {
  opacity: 1;
}

.expoBannerK8_arrow:hover {
  background: #2044b9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  transform: translateY(-50%) scale(1.08);
}

.expoBannerK8_arrow:active {
  transform: translateY(-50%) scale(.95);
}

/* 使用 CSS 绘制柔和箭头 */
.expoBannerK8_arrow span {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.expoBannerK8_prev span {
  margin-left: 5px;
  transform: rotate(-135deg);
}

.expoBannerK8_next span {
  margin-right: 5px;
  transform: rotate(45deg);
}

/* 圆点指示器 */
.expoBannerK8_dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 6;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.expoBannerK8_dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition:
    width .3s ease,
    background-color .3s ease,
    transform .3s ease;
}

.expoBannerK8_dot:hover {
  background: #fff;
  transform: scale(1.2);
}

.expoBannerK8_dotActive {
  width: 25px;
  border-radius: 8px;
  background: #2044b9;
}

/* 响应式处理 */
@media (max-width: 768px) {
  .expoBannerK8 {
    height: 280px;
  }

  .expoBannerK8_arrow {
    width: 36px;
    height: 36px;
    opacity: 1;
  }

  .expoBannerK8_prev {
    left: 12px;
  }

  .expoBannerK8_next {
    right: 12px;
  }
}

/* 展会轮播图模块 END */
/* 展会新闻双栏模块 START */

.expoNewsM7,
.expoNewsM7 *,
.expoNewsM7 *::before,
.expoNewsM7 *::after {
  box-sizing: border-box;
}

.expoNewsM7 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  padding: 42px 0 45px;
}

.expoNewsM7_panel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #dedede;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoNewsM7_panel:hover {
  border-color: #2044b9;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .09);
  transform: translateY(-2px);
}

/* 标题栏 */
.expoNewsM7_title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 9px;
  border-bottom: 1px solid #eeeeee;
}

.expoNewsM7_title > a:first-child {
  color: #2044b9;
  font-size: 16px;
  text-decoration: none;
  transition: color .25s ease;
}

.expoNewsM7_title > a:first-child:hover {
  color: #486de3;
}

.expoNewsM7_more {
  color: #2044b9;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.expoNewsM7_more:hover {
  color: #486de3;
  transform: scale(1.15);
}

/* 新闻列表 */
.expoNewsM7_list {
  margin: 0;
  padding: 0 9px;
  list-style: none;
}

.expoNewsM7_list li {
  display: flex;
  align-items: center;
  height: 34px;
  border-bottom: 1px dashed #e5e5e5;
  transition: background-color .25s ease, padding-left .25s ease;
}

.expoNewsM7_list li:last-child {
  border-bottom: 0;
}

.expoNewsM7_list li:hover {
  padding-left: 5px;
  background: #f4fbf4;
}

.expoNewsM7_list li::before {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin: 0 10px 0 8px;
  border-radius: 50%;
  background: #2044b9;
  content: "";
}

.expoNewsM7_list li a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s ease;
}

.expoNewsM7_list li:hover a {
  color: #2044b9;
}

.expoNewsM7_list time {
  flex: 0 0 79px;
  margin-left: 12px;
  color: #666;
  font-size: 14px;
  line-height: 34px;
  text-align: right;
  white-space: nowrap;
}

/* 移动端自动改为单栏 */
@media (max-width: 768px) {
  .expoNewsM7 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .expoNewsM7_list time {
    flex-basis: 75px;
    font-size: 12px;
  }

  .expoNewsM7_list li a {
    font-size: 13px;
  }
}

/* 展会新闻双栏模块 END */
/* 历届峰会模块 START */

.expoSummitQ6,
.expoSummitQ6 *,
.expoSummitQ6 *::before,
.expoSummitQ6 *::after {
  box-sizing: border-box;
}

.expoSummitQ6 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 0 45px;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  background: #fff;
}

/* 标题 */
.expoSummitQ6_heading {
  margin-bottom: 30px;
  text-align: center;
}

.expoSummitQ6_heading h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: normal;
  line-height: 34px;
}

.expoSummitQ6_heading i {
  display: block;
  width: 42px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 3px;
  background: #2044b9;
}

/* 四列两行布局 */
.expoSummitQ6_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

/* 单个卡片 */
.expoSummitQ6_card {
  display: block;
  overflow: hidden;
  color: #333;
  background: #fff;
  text-align: center;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}

.expoSummitQ6_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  transform: translateY(-5px);
}

/* 图片区域 */
.expoSummitQ6_image {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #f3f3f3;
}

.expoSummitQ6_image::after {
  position: absolute;
  inset: 0;
  background: rgba(74, 179, 68, 0);
  content: "";
  transition: background-color .35s ease;
}

.expoSummitQ6_card:hover .expoSummitQ6_image::after {
  background: rgba(74, 179, 68, .12);
}

.expoSummitQ6_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.expoSummitQ6_card:hover .expoSummitQ6_image img {
  transform: scale(1.08);
}

/* 图片标题 */
.expoSummitQ6_card h3 {
  margin: 0;
  padding: 15px 8px 14px;
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 22px;
  transition: color .3s ease, background-color .3s ease;
}

.expoSummitQ6_card:hover h3 {
  color: #fff;
  background: #2044b9;
}

/* 平板 */
@media (max-width: 900px) {
  .expoSummitQ6 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .expoSummitQ6_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 520px) {
  .expoSummitQ6 {
    padding: 30px 15px;
  }

  .expoSummitQ6_heading {
    margin-bottom: 22px;
  }

  .expoSummitQ6_heading h2 {
    font-size: 21px;
  }

  .expoSummitQ6_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .expoSummitQ6_image {
    height: 115px;
  }

  .expoSummitQ6_card h3 {
    padding: 10px 4px;
    font-size: 13px;
  }
}

/* 历届峰会模块 END */
/* 查看更多按钮 */
.expoSummitQ6_moreBox {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.expoSummitQ6_moreBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #2044b9;
  border-radius: 2px;
  color: #2044b9;
  font-size: 14px;
  line-height: 40px;
  text-decoration: none;
  transition:
    color .3s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.expoSummitQ6_moreBtn span {
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
  transition: transform .3s ease;
}

.expoSummitQ6_moreBtn:hover {
  color: #fff;
  background: #2044b9;
  box-shadow: 0 5px 14px rgba(74, 179, 68, .28);
  transform: translateY(-2px);
}

.expoSummitQ6_moreBtn:hover span {
  transform: translateX(5px);
}

.expoSummitQ6_moreBtn:active {
  transform: translateY(0);
}
/* =========================================================
   视频传播模块 START
   模块前缀：expoVideoR4_
   最大内容宽度：1200px
   ========================================================= */

.expoVideoR4,
.expoVideoR4 *,
.expoVideoR4 *::before,
.expoVideoR4 *::after {
  box-sizing: border-box;
}

.expoVideoR4 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 0 45px;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 标题区域 */
.expoVideoR4_heading {
  margin-bottom: 30px;
  text-align: center;
}

.expoVideoR4_heading h2 {
  margin: 0;
  color: #333;
  font-size: 24px;
  font-weight: normal;
  line-height: 34px;
}

.expoVideoR4_heading i {
  display: block;
  width: 42px;
  height: 3px;
  margin: 13px auto 0;
  border-radius: 3px;
  background: #2044b9;
}

/* 视频列表：一行四个，共八个 */
.expoVideoR4_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 20px;
}

/* 视频卡片 */
.expoVideoR4_card {
  display: block;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.expoVideoR4_card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  transform: translateY(-5px);
}

/* 视频容器 */
.expoVideoR4_media {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: hidden;
  background: #222;
}

.expoVideoR4_media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition:
    transform .5s ease,
    filter .5s ease;
}

.expoVideoR4_card:hover .expoVideoR4_media video {
  filter: brightness(.78);
  transform: scale(1.06);
}

/* 播放按钮 */
.expoVideoR4_play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  outline: none;
  background: #2044b9;
  cursor: pointer;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition:
    opacity .25s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

/* 播放三角形 */
.expoVideoR4_play::after {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
  content: "";
}

.expoVideoR4_play:hover {
  background: #486de3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%) scale(1.1);
}

.expoVideoR4_play:active {
  transform: translate(-50%, -50%) scale(.96);
}

/* 播放状态：隐藏播放按钮 */
.expoVideoR4_media.expoVideoR4_isPlaying .expoVideoR4_play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 视频标题 */
.expoVideoR4_card h3 {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 15px 8px 14px;
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition:
    color .3s ease,
    background-color .3s ease;
}

.expoVideoR4_card:hover h3 {
  color: #fff;
  background: #2044b9;
}

/* 查看更多按钮容器 */
.expoVideoR4_moreBox {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* 查看更多按钮 */
.expoVideoR4_moreBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 40px;
  padding: 0 20px;
  border: 1px solid #2044b9;
  border-radius: 2px;
  color: #2044b9;
  font-size: 14px;
  line-height: 38px;
  text-decoration: none;
  transition:
    color .3s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.expoVideoR4_moreBtn span {
  margin-left: 10px;
  font-size: 18px;
  line-height: 1;
  transition: transform .3s ease;
}

.expoVideoR4_moreBtn:hover {
  color: #fff;
  background: #2044b9;
  box-shadow: 0 5px 14px rgba(74, 179, 68, .28);
  transform: translateY(-2px);
}

.expoVideoR4_moreBtn:hover span {
  transform: translateX(5px);
}

.expoVideoR4_moreBtn:active {
  transform: translateY(0);
}

/* 平板端 */
@media (max-width: 900px) {
  .expoVideoR4 {
    padding-right: 20px;
    padding-left: 20px;
  }

  .expoVideoR4_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }
}

/* 手机端 */
@media (max-width: 520px) {
  .expoVideoR4 {
    padding: 30px 15px 35px;
  }

  .expoVideoR4_heading {
    margin-bottom: 22px;
  }

  .expoVideoR4_heading h2 {
    font-size: 21px;
  }

  .expoVideoR4_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 10px;
  }

  .expoVideoR4_media {
    height: 115px;
  }

  .expoVideoR4_play {
    width: 38px;
    height: 38px;
  }

  .expoVideoR4_play::after {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }

  .expoVideoR4_card h3 {
    padding: 10px 4px;
    font-size: 13px;
    line-height: 20px;
  }

  .expoVideoR4_moreBox {
    margin-top: 28px;
  }
}

/* 超小屏幕 */
@media (max-width: 360px) {
  .expoVideoR4_grid {
    grid-template-columns: 1fr;
  }

  .expoVideoR4_media {
    height: 180px;
  }
}

/* 视频传播模块 END */
/* =========================================================
   展会底部模块 START
   模块前缀：expoFooterV6_
   ========================================================= */

.expoFooterV6,
.expoFooterV6 *,
.expoFooterV6 *::before,
.expoFooterV6 *::after {
  box-sizing: border-box;
}

.expoFooterV6 {
  width: 100%;
  color: #bbb;
  background: #333;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* 内容区域 */
.expoFooterV6_inner {
  display: grid;
  grid-template-columns: 1.2fr 1.6fr 1fr;
  gap: 70px;
  width: 100%;
  max-width: 1200px;
  min-height: 220px;
  margin: 0 auto;
  padding: 42px 0 36px;
}

/* 通用标题 */
.expoFooterV6 h3 {
  position: relative;
  margin: 0 0 24px;
  padding-left: 13px;
  color: #fff;
  font-size: 17px;
  font-weight: normal;
  line-height: 24px;
}

.expoFooterV6 h3::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: #2044b9;
  content: "";
}

/* 联系方式 */
.expoFooterV6_contactItem {
  display: flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 9px;
  color: #aaa;
  font-size: 14px;
  line-height: 22px;
  transition: color .3s ease, transform .3s ease;
}

.expoFooterV6_contactItem:hover {
  color: #fff;
  transform: translateX(4px);
}

.expoFooterV6_contactItem a {
  color: inherit;
  text-decoration: none;
}

.expoFooterV6_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  margin-right: 10px;
  border: 1px solid #666;
  border-radius: 50%;
  color: #2044b9;
  font-size: 13px;
  transition: border-color .3s ease, background-color .3s ease;
}

.expoFooterV6_contactItem:hover .expoFooterV6_icon {
  border-color: #2044b9;
  background: #2044b9;
  color: #fff;
}

/* 一级导航 */
.expoFooterV6_nav ul {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16px 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.expoFooterV6_nav a {
  position: relative;
  display: inline-block;
  color: #aaa;
  font-size: 14px;
  line-height: 22px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoFooterV6_nav a::before {
  position: absolute;
  top: 8px;
  left: -12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2044b9;
  content: "";
  opacity: 0;
  transition: opacity .3s ease, left .3s ease;
}

.expoFooterV6_nav a:hover {
  padding-left: 5px;
  color: #fff;
}

.expoFooterV6_nav a:hover::before {
  left: -7px;
  opacity: 1;
}

/* 关注模块 */
.expoFooterV6_about p {
  margin: 0 0 20px;
  color: #999;
  font-size: 14px;
  line-height: 24px;
}

.expoFooterV6_followBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid #2044b9;
  border-radius: 2px;
  color: #2044b9;
  font-size: 14px;
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease,
              box-shadow .3s ease, transform .3s ease;
}

.expoFooterV6_followBtn:hover {
  color: #fff;
  background: #2044b9;
  box-shadow: 0 5px 14px rgba(74, 179, 68, .25);
  transform: translateY(-2px);
}

/* 版权区域 */
.expoFooterV6_bottom {
  border-top: 1px solid #464646;
  background: #2b2b2b;
}

.expoFooterV6_bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  min-height: 58px;
  margin: 0 auto;
}

.expoFooterV6_bottom p {
  margin: 0;
  color: #888;
  font-size: 13px;
  line-height: 22px;
  transition: color .3s ease;
}

.expoFooterV6_bottom p:hover {
  color: #ccc;
}

/* 平板端 */
@media (max-width: 900px) {
  .expoFooterV6_inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 35px 20px;
  }

  .expoFooterV6_about {
    grid-column: span 2;
  }

  .expoFooterV6_bottomInner {
    padding: 0 20px;
  }
}

/* 手机端 */
@media (max-width: 600px) {
  .expoFooterV6_inner {
    display: block;
    padding: 32px 18px 25px;
  }

  .expoFooterV6_contact,
  .expoFooterV6_nav,
  .expoFooterV6_about {
    margin-bottom: 30px;
  }

  .expoFooterV6_about {
    margin-bottom: 0;
  }

  .expoFooterV6_nav ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
  }

  .expoFooterV6_bottomInner {
    display: block;
    padding: 13px 18px;
    text-align: center;
  }

  .expoFooterV6_bottom p + p {
    margin-top: 4px;
  }
}

/* 展会底部模块 END */
/* 会议议程模块 START */

.expoAgendaT3,
.expoAgendaT3 *,
.expoAgendaT3 *::before,
.expoAgendaT3 *::after {
  box-sizing: border-box;
}

.expoAgendaT3 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 0;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.expoAgendaT3_inner {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 24px;
}

/* 左侧 */
.expoAgendaT3_left,
.expoAgendaT3_right {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoAgendaT3_left:hover,
.expoAgendaT3_right:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
}

.expoAgendaT3_tabs {
  display: flex;
  height: 52px;
  border-bottom: 1px solid #eee;
}

.expoAgendaT3_tab {
  flex: 1;
  border: 0;
  background: #f7f7f7;
  color: #666;
  font-size: 15px;
  cursor: pointer;
  transition: color .3s ease, background-color .3s ease;
}

.expoAgendaT3_tab:hover,
.expoAgendaT3_tabActive {
  background: #2044b9;
  color: #fff;
}

.expoAgendaT3_tabContent {
  display: none;
  align-items: flex-start;
  min-height: 190px;
  padding: 30px 25px;
}

.expoAgendaT3_contentActive {
  display: flex;
}

.expoAgendaT3_date {
  display: flex;
  flex: 0 0 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-right: 18px;
  border-radius: 3px;
  background: #2044b9;
  color: #fff;
}

.expoAgendaT3_date strong {
  font-size: 27px;
  line-height: 30px;
}

.expoAgendaT3_date span {
  font-size: 12px;
}

.expoAgendaT3_registerIcon {
  display: flex;
  flex: 0 0 66px;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  margin-right: 18px;
  border: 1px solid #2044b9;
  border-radius: 50%;
  color: #2044b9;
  font-size: 30px;
}

.expoAgendaT3_info {
  min-width: 0;
}

.expoAgendaT3_info h3 {
  margin: 2px 0 12px;
  color: #444;
  font-size: 16px;
  font-weight: normal;
}

.expoAgendaT3_info p {
  margin: 0 0 15px;
  color: #888;
  font-size: 13px;
  line-height: 23px;
}

.expoAgendaT3_info a,
.expoAgendaT3_title a {
  color: #2044b9;
  font-size: 13px;
  text-decoration: none;
  transition: color .3s ease;
}

.expoAgendaT3_info a:hover,
.expoAgendaT3_title a:hover {
  color: #328e2e;
}

.expoAgendaT3_info a b {
  margin-left: 6px;
  font-size: 16px;
}

/* 右侧标题 */
.expoAgendaT3_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid #eee;
}

.expoAgendaT3_title h2 {
  margin: 0;
  color: #2044b9;
  font-size: 18px;
  font-weight: normal;
}

.expoAgendaT3_title a span {
  margin-left: 5px;
  font-size: 16px;
}

/* 议程列表 */
.expoAgendaT3_schedule {
  padding: 17px 22px 10px;
}

.expoAgendaT3_scheduleItem {
  display: flex;
  min-height: 58px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoAgendaT3_scheduleItem:last-child {
  border-bottom: 0;
}

.expoAgendaT3_scheduleTime {
  flex: 0 0 70px;
  color: #2044b9;
  font-size: 16px;
  font-weight: bold;
}

.expoAgendaT3_scheduleItem h3 {
  margin: 0 0 6px;
  color: #555;
  font-size: 14px;
  font-weight: normal;
}

.expoAgendaT3_scheduleItem p {
  margin: 0;
  color: #999;
  font-size: 12px;
}

/* 信息提醒 */
.expoAgendaT3_notice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 5px 22px 22px;
  padding-top: 18px;
  border-top: 1px solid #eee;
}

.expoAgendaT3_noticeItem {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.expoAgendaT3_noticeIcon {
  display: flex;
  flex: 0 0 27px;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin-right: 8px;
  border-radius: 50%;
  background: #edf8ed;
  color: #2044b9;
  font-size: 12px;
}

.expoAgendaT3_noticeItem small {
  display: block;
  margin-bottom: 4px;
  color: #999;
  font-size: 12px;
}

.expoAgendaT3_noticeItem p {
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 12px;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 响应式 */
@media (max-width: 900px) {
  .expoAgendaT3 {
    padding: 35px 20px;
  }

  .expoAgendaT3_inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .expoAgendaT3 {
    padding: 30px 15px;
  }

  .expoAgendaT3_notice {
    grid-template-columns: 1fr;
  }

  .expoAgendaT3_noticeItem {
    margin-bottom: 8px;
  }

  .expoAgendaT3_tabContent {
    padding: 25px 18px;
  }
}

/* 会议议程模块 END */
/* =========================================================
   展会概况内容模块 START
   模块前缀：expoIntroL5_
   ========================================================= */

.expoIntroL5,
.expoIntroL5 *,
.expoIntroL5 *::before,
.expoIntroL5 *::after {
  box-sizing: border-box;
}

.expoIntroL5 {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  width: 100%;
  max-width: 1200px;
  min-height: 575px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧栏 */
.expoIntroL5_sidebar {
  padding-right: 10px;
}

/* 左侧主标题 */
.expoIntroL5_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

/* 左侧菜单 */
.expoIntroL5_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoIntroL5_menu li {
  height: 43px;
  border-bottom: 1px dashed #e6e6e6;
}

.expoIntroL5_menu li:last-child {
  border-bottom: 0;
}

.expoIntroL5_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoIntroL5_menu li:hover a,
.expoIntroL5_menuActive a {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧功能入口 */
.expoIntroL5_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    background-color .3s ease,
    transform .3s ease;
}

.expoIntroL5_action:hover {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

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

  margin-right: 13px;
  overflow: hidden;
}

.expoIntroL5_actionIcon img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoIntroL5_action:hover .expoIntroL5_actionIcon img {
  transform: scale(1.1);
}

.expoIntroL5_actionText {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.expoIntroL5_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  transition: color .3s ease;
}

.expoIntroL5_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoIntroL5_action:hover .expoIntroL5_actionText strong {
  color: #2044b9;
}

/* 右侧内容 */
.expoIntroL5_content {
  min-width: 0;
  padding: 0 10px 30px 0;
  border: 1px solid #e5e5e5;
}

.expoIntroL5_content h2 {
  height: 45px;
  margin: 0;
  padding-left: 5px;
  color: #2044b9;
  font-size: 16px;
  font-weight: normal;
  line-height: 45px;
  border-bottom: 1px solid #e5e5e5;
}

.expoIntroL5_line {
  width: 35px;
  height: 2px;
  margin: -2px 0 26px 5px;
  background: #2044b9;
}

/* 文章内容 */
.expoIntroL5_article {
  padding: 0 10px 0 10px;
  color: #555;
  font-size: 14px;
  line-height: 26px;
  transition: color .3s ease;
}

.expoIntroL5_article:hover {
  color: #333;
}

.expoIntroL5_article p {
  margin: 0 0 2px;
  text-align: justify;
  word-break: break-all;
}

/* 平板端 */
@media (max-width: 760px) {
  .expoIntroL5 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoIntroL5_action {
    padding: 0 12px;
  }

  .expoIntroL5_actionIcon {
    margin-right: 8px;
  }

  .expoIntroL5_article {
    font-size: 13px;
    line-height: 24px;
  }
}

/* 手机端 */
@media (max-width: 600px) {
  .expoIntroL5 {
    display: block;
    min-height: auto;
    padding: 0 15px;
  }

  .expoIntroL5_sidebar {
    padding-right: 0;
  }

  .expoIntroL5_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoIntroL5_action:last-child {
    margin-right: 0;
  }

  .expoIntroL5_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoIntroL5_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoIntroL5_actionText strong {
    font-size: 13px;
  }

  .expoIntroL5_actionText small {
    font-size: 9px;
  }

  .expoIntroL5_content {
    margin-top: 16px;
    padding: 0 0 25px;
    border-top: 1px solid #e5e5e5;
    border-left: 0;
  }

  .expoIntroL5_article {
    padding: 0 5px;
    font-size: 13px;
    line-height: 24px;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoIntroL5_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoIntroL5_actionText strong {
    font-size: 14px;
  }

  .expoIntroL5_actionText small {
    font-size: 11px;
  }
}

/* 展会概况内容模块 END */
/* =========================================================
   新闻列表页 START
   模块前缀：expoNewsPageR8_
   ========================================================= */

.expoNewsPageR8,
.expoNewsPageR8 *,
.expoNewsPageR8 *::before,
.expoNewsPageR8 *::after {
  box-sizing: border-box;
}

.expoNewsPageR8 {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  min-height: 590px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧区域 */
.expoNewsPageR8_sidebar {
  min-width: 0;
}

/* 左侧标题 */
.expoNewsPageR8_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

/* 左侧菜单 */
.expoNewsPageR8_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoNewsPageR8_menu li {
  height: 43px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoNewsPageR8_menu li:last-child {
  border-bottom: 0;
}

.expoNewsPageR8_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoNewsPageR8_menu li:hover a,
.expoNewsPageR8_menuActive a {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧功能入口 */
.expoNewsPageR8_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin: 0 0 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition:
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease,
    background-color .3s ease;
}

.expoNewsPageR8_action:hover {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.expoNewsPageR8_actionIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 13px;
  overflow: hidden;
}

.expoNewsPageR8_actionIcon img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoNewsPageR8_action:hover img {
  transform: scale(1.1);
}

.expoNewsPageR8_actionText {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.expoNewsPageR8_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  transition: color .3s ease;
}

.expoNewsPageR8_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoNewsPageR8_action:hover strong {
  color: #2044b9;
}

/* 右侧新闻内容 */
.expoNewsPageR8_content {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoNewsPageR8_content:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* 右侧标题栏 */
.expoNewsPageR8_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 10px 0 5px;
  border-bottom: 1px solid #e5e5e5;
}

.expoNewsPageR8_header h2 {
  margin: 0;
  color: #2044b9;
  font-size: 16px;
  font-weight: normal;
  line-height: 46px;
}

.expoNewsPageR8_more {
  color: #2044b9;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  cursor: pointer;
  transition: color .3s ease, transform .3s ease;
}

.expoNewsPageR8_more:hover {
  color: #486de3;
  transform: scale(1.15);
}

/* 新闻列表 */
.expoNewsPageR8_list {
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.expoNewsPageR8_list li {
  display: flex;
  align-items: center;
  height: 34px;
  border-bottom: 1px dashed #e1e1e1;
  transition: background-color .25s ease, padding-left .25s ease;
}

.expoNewsPageR8_list li:hover {
  padding-left: 5px;
  background: #f5fbf5;
}

.expoNewsPageR8_list li::before {
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  margin: 0 10px 0 8px;
  border-radius: 50%;
  background: #2044b9;
  content: "";
}

.expoNewsPageR8_list li a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: color .25s ease;
}

.expoNewsPageR8_list li:hover a {
  color: #2044b9;
}

.expoNewsPageR8_list time {
  flex: 0 0 80px;
  margin-left: 15px;
  color: #666;
  font-size: 14px;
  line-height: 34px;
  text-align: right;
  white-space: nowrap;
}

/* 分页 */
.expoNewsPageR8_pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 27px 0 25px;
}

.expoNewsPageR8_pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid #ddd;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition:
    color .3s ease,
    border-color .3s ease,
    background-color .3s ease,
    transform .3s ease;
}

.expoNewsPageR8_pagination a:hover,
.expoNewsPageR8_pagination .expoNewsPageR8_pageActive {
  border-color: #2044b9;
  background: #2044b9;
  color: #fff;
  transform: translateY(-2px);
}

/* 平板端 */
@media (max-width: 760px) {
  .expoNewsPageR8 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoNewsPageR8_action {
    padding: 0 12px;
  }

  .expoNewsPageR8_actionIcon {
    margin-right: 8px;
  }

  .expoNewsPageR8_list a {
    font-size: 13px;
  }

  .expoNewsPageR8_list time {
    flex-basis: 75px;
    font-size: 12px;
  }
}

/* 手机端 */
@media (max-width: 600px) {
  .expoNewsPageR8 {
    display: block;
    min-height: auto;
    padding: 0 15px;
  }

  .expoNewsPageR8_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoNewsPageR8_action:last-child {
    margin-right: 0;
  }

  .expoNewsPageR8_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoNewsPageR8_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoNewsPageR8_actionText strong {
    font-size: 13px;
  }

  .expoNewsPageR8_actionText small {
    font-size: 9px;
  }

  .expoNewsPageR8_content {
    margin-top: 16px;
  }

  .expoNewsPageR8_list {
    padding: 0 8px;
  }

  .expoNewsPageR8_list li {
    height: 38px;
  }

  .expoNewsPageR8_list li a,
  .expoNewsPageR8_list time {
    line-height: 38px;
  }

  .expoNewsPageR8_list time {
    flex-basis: 72px;
    margin-left: 8px;
    font-size: 11px;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoNewsPageR8_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoNewsPageR8_actionText strong {
    font-size: 14px;
  }

  .expoNewsPageR8_actionText small {
    font-size: 11px;
  }
}

/* 新闻列表页 END */
/* =========================================================
   新闻详情页 START
   模块前缀：expoNewsDetailD9_
   最大内容宽度：1200px
   ========================================================= */

.expoNewsDetailD9,
.expoNewsDetailD9 *,
.expoNewsDetailD9 *::before,
.expoNewsDetailD9 *::after {
  box-sizing: border-box;
}

.expoNewsDetailD9 {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧通用区域 */
.expoNewsDetailD9_sidebar {
  min-width: 0;
}

/* 左侧标题 */
.expoNewsDetailD9_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

/* 左侧菜单 */
.expoNewsDetailD9_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoNewsDetailD9_menu li {
  height: 43px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoNewsDetailD9_menu li:last-child {
  border-bottom: 0;
}

.expoNewsDetailD9_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoNewsDetailD9_menu li:hover a,
.expoNewsDetailD9_menuActive a {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧三个功能入口 */
.expoNewsDetailD9_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition:
    border-color .3s ease,
    background-color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.expoNewsDetailD9_action:hover {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.expoNewsDetailD9_actionIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 13px;
  overflow: hidden;
}

.expoNewsDetailD9_actionIcon img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoNewsDetailD9_action:hover img {
  transform: scale(1.1);
}

.expoNewsDetailD9_actionText {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.expoNewsDetailD9_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  transition: color .3s ease;
}

.expoNewsDetailD9_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoNewsDetailD9_action:hover strong {
  color: #2044b9;
}

/* 右侧文章区域 */
.expoNewsDetailD9_article {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoNewsDetailD9_article:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* 文章标题 */
.expoNewsDetailD9_articleHeader {
  padding: 20px 16px 19px;
  border-bottom: 1px solid #eeeeee;
}

.expoNewsDetailD9_articleHeader h1 {
  margin: 0 0 25px;
  color: #222;
  font-size: 24px;
  font-weight: normal;
  line-height: 34px;
}

.expoNewsDetailD9_articleHeader p {
  margin: 0;
  color: #aaa;
  font-size: 13px;
  line-height: 22px;
}

.expoNewsDetailD9_articleHeader time {
  margin-left: 5px;
  color: #999;
}

/* 正文 */
.expoNewsDetailD9_articleBody {
  padding: 20px 16px 35px;
  color: #555;
  font-size: 14px;
  line-height: 27px;
  transition: color .3s ease;
}

.expoNewsDetailD9_articleBody:hover {
  color: #444;
}

.expoNewsDetailD9_articleBody p {
  margin: 0 0 2px;
  text-align: justify;
  word-break: break-word;
}

/* 文章底部 */
.expoNewsDetailD9_articleFooter {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 16px;
  border-top: 1px solid #eeeeee;
  background: #fafafa;
}

.expoNewsDetailD9_articleFooter a {
  overflow: hidden;
  color: #777;
  font-size: 13px;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
  transition: color .3s ease;
}

.expoNewsDetailD9_articleFooter a:hover {
  color: #2044b9;
}

/* 平板端 */
@media (max-width: 760px) {
  .expoNewsDetailD9 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoNewsDetailD9_action {
    padding: 0 12px;
  }

  .expoNewsDetailD9_actionIcon {
    margin-right: 8px;
  }

  .expoNewsDetailD9_articleHeader h1 {
    font-size: 21px;
  }

  .expoNewsDetailD9_articleBody {
    font-size: 13px;
    line-height: 25px;
  }
}

/* 手机端 */
@media (max-width: 600px) {
  .expoNewsDetailD9 {
    display: block;
    padding: 0 15px;
  }

  .expoNewsDetailD9_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoNewsDetailD9_action:last-child {
    margin-right: 0;
  }

  .expoNewsDetailD9_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoNewsDetailD9_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoNewsDetailD9_actionText strong {
    font-size: 13px;
  }

  .expoNewsDetailD9_actionText small {
    font-size: 9px;
  }

  .expoNewsDetailD9_article {
    margin-top: 18px;
  }

  .expoNewsDetailD9_articleHeader {
    padding: 18px 12px;
  }

  .expoNewsDetailD9_articleHeader h1 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 30px;
  }

  .expoNewsDetailD9_articleBody {
    padding: 18px 12px 25px;
    font-size: 13px;
    line-height: 24px;
  }

  .expoNewsDetailD9_articleFooter {
    display: block;
    padding: 13px 12px;
  }

  .expoNewsDetailD9_articleFooter a {
    display: block;
    margin: 5px 0;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoNewsDetailD9_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoNewsDetailD9_actionText strong {
    font-size: 14px;
  }

  .expoNewsDetailD9_actionText small {
    font-size: 11px;
  }
}

/* 新闻详情页 END */
/* 图片列表页面 START */

.expoGalleryP3,
.expoGalleryP3 *,
.expoGalleryP3 *::before,
.expoGalleryP3 *::after {
  box-sizing: border-box;
}

.expoGalleryP3 {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧 */
.expoGalleryP3_sidebar {
  min-width: 0;
}

.expoGalleryP3_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

.expoGalleryP3_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoGalleryP3_menu li {
  height: 43px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoGalleryP3_menu li:last-child {
  border-bottom: 0;
}

.expoGalleryP3_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoGalleryP3_menu li:hover a,
.expoGalleryP3_menuActive a {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧入口 */
.expoGalleryP3_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition: border-color .3s ease, box-shadow .3s ease,
              transform .3s ease, background-color .3s ease;
}

.expoGalleryP3_action:hover {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.expoGalleryP3_actionIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 13px;
  overflow: hidden;
}

.expoGalleryP3_actionIcon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoGalleryP3_action:hover img {
  transform: scale(1.1);
}

.expoGalleryP3_actionText {
  display: flex;
  flex-direction: column;
}

.expoGalleryP3_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
}

.expoGalleryP3_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoGalleryP3_action:hover strong {
  color: #2044b9;
}

/* 右侧内容 */
.expoGalleryP3_content {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoGalleryP3_content:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* 右侧标题 */
.expoGalleryP3_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 10px 0 5px;
  border-bottom: 1px solid #e5e5e5;
}

.expoGalleryP3_header h2 {
  margin: 0;
  color: #2044b9;
  font-size: 16px;
  font-weight: normal;
}

.expoGalleryP3_header span {
  color: #2044b9;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* 图片列表 */
.expoGalleryP3_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 18px;
  padding: 25px 18px 10px;
}

.expoGalleryP3_card {
  display: block;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fff;
  text-decoration: none;
  transition: box-shadow .35s ease, transform .35s ease;
}

.expoGalleryP3_card:hover {
  border-color: #2044b9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  transform: translateY(-5px);
}

.expoGalleryP3_image {
  width: 100%;
  /* height: 145px; */
  overflow: hidden;
  background: #f3f3f3;
}

.expoGalleryP3_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}

.expoGalleryP3_card:hover .expoGalleryP3_image img {
  filter: brightness(.85);
  transform: scale(1.08);
}

.expoGalleryP3_card h3 {
  overflow: hidden;
  margin: 0;
  padding: 13px 10px;
  color: #555;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease;
}

.expoGalleryP3_card:hover h3 {
  color: #fff;
  background: #2044b9;
}

/* 分页 */
.expoGalleryP3_pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 25px 0;
}

.expoGalleryP3_pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid #ddd;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: color .3s ease, background-color .3s ease,
              border-color .3s ease, transform .3s ease;
}

.expoGalleryP3_pagination a:hover,
.expoGalleryP3_pagination .expoGalleryP3_pageActive {
  border-color: #2044b9;
  background: #2044b9;
  color: #fff;
  transform: translateY(-2px);
}

/* 平板 */
@media (max-width: 760px) {
  .expoGalleryP3 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoGalleryP3_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 600px) {
  .expoGalleryP3 {
    display: block;
    padding: 0 15px;
  }

  .expoGalleryP3_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoGalleryP3_action:last-child {
    margin-right: 0;
  }

  .expoGalleryP3_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoGalleryP3_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoGalleryP3_actionText strong {
    font-size: 13px;
  }

  .expoGalleryP3_actionText small {
    font-size: 9px;
  }

  .expoGalleryP3_content {
    margin-top: 16px;
  }

  .expoGalleryP3_grid {
    gap: 15px 10px;
    padding: 18px 10px 5px;
  }

  .expoGalleryP3_image {
    /* height: 110px; */
  }

  .expoGalleryP3_card h3 {
    padding: 9px 5px;
    font-size: 13px;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoGalleryP3_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoGalleryP3_grid {
    grid-template-columns: 1fr;
  }

  .expoGalleryP3_image {
    /* height: 180px; */
  }
}

/* 图片列表页面 END */
/* =========================================================
   视频列表页面 START
   模块前缀：expoVideoPageN2_
   最大内容宽度：1200px
   ========================================================= */

.expoVideoPageN2,
.expoVideoPageN2 *,
.expoVideoPageN2 *::before,
.expoVideoPageN2 *::after {
  box-sizing: border-box;
}

.expoVideoPageN2 {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧标题 */
.expoVideoPageN2_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

/* 左侧菜单 */
.expoVideoPageN2_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoVideoPageN2_menu li {
  height: 43px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoVideoPageN2_menu li:last-child {
  border-bottom: 0;
}

.expoVideoPageN2_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoVideoPageN2_menu li:hover a,
.expoVideoPageN2_menuActive a {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧功能入口 */
.expoVideoPageN2_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition: border-color .3s ease, background-color .3s ease,
              box-shadow .3s ease, transform .3s ease;
}

.expoVideoPageN2_action:hover {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.expoVideoPageN2_actionIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 13px;
  overflow: hidden;
}

.expoVideoPageN2_actionIcon img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoVideoPageN2_action:hover img {
  transform: scale(1.1);
}

.expoVideoPageN2_actionText {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.expoVideoPageN2_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  transition: color .3s ease;
}

.expoVideoPageN2_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoVideoPageN2_action:hover strong {
  color: #2044b9;
}

/* 右侧内容 */
.expoVideoPageN2_content {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoVideoPageN2_content:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* 标题栏 */
.expoVideoPageN2_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 46px;
  padding: 0 10px 0 5px;
  border-bottom: 1px solid #e5e5e5;
}

.expoVideoPageN2_header h2 {
  margin: 0;
  color: #2044b9;
  font-size: 16px;
  font-weight: normal;
}

.expoVideoPageN2_header span {
  color: #2044b9;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
}

/* 视频列表：一行三个 */
.expoVideoPageN2_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px 18px;
  padding: 25px 18px 8px;
}

.expoVideoPageN2_card {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  cursor: pointer;
  transition: border-color .3s ease, box-shadow .35s ease,
              transform .35s ease;
}

.expoVideoPageN2_card:hover {
  border-color: #2044b9;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
  transform: translateY(-5px);
}

.expoVideoPageN2_media {
  position: relative;
  width: 100%;
  height: 145px;
  overflow: hidden;
  background: #222;
}

.expoVideoPageN2_media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}

.expoVideoPageN2_card:hover video {
  filter: brightness(.8);
  transform: scale(1.06);
}

/* 播放按钮 */
.expoVideoPageN2_play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  background: #2044b9;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .25s ease, background-color .3s ease,
              box-shadow .3s ease, transform .3s ease;
}

.expoVideoPageN2_play span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.expoVideoPageN2_play:hover {
  background: #486de3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .22);
  transform: translate(-50%, -50%) scale(1.1);
}

/* 播放状态隐藏按钮 */
.expoVideoPageN2_media.expoVideoPageN2_isPlaying .expoVideoPageN2_play {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* 视频标题 */
.expoVideoPageN2_card h3 {
  overflow: hidden;
  margin: 0;
  padding: 13px 8px;
  color: #555;
  font-size: 14px;
  font-weight: normal;
  line-height: 22px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .3s ease, background-color .3s ease;
}

.expoVideoPageN2_card:hover h3 {
  color: #fff;
  background: #2044b9;
}

/* 分页 */
.expoVideoPageN2_pagination {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 25px 0;
}

.expoVideoPageN2_pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  border: 1px solid #ddd;
  color: #666;
  font-size: 13px;
  text-decoration: none;
  transition: color .3s ease, border-color .3s ease,
              background-color .3s ease, transform .3s ease;
}

.expoVideoPageN2_pagination a:hover,
.expoVideoPageN2_pagination .expoVideoPageN2_pageActive {
  border-color: #2044b9;
  background: #2044b9;
  color: #fff;
  transform: translateY(-2px);
}

/* 平板 */
@media (max-width: 760px) {
  .expoVideoPageN2 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoVideoPageN2_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 手机 */
@media (max-width: 600px) {
  .expoVideoPageN2 {
    display: block;
    padding: 0 15px;
  }

  .expoVideoPageN2_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoVideoPageN2_action:last-child {
    margin-right: 0;
  }

  .expoVideoPageN2_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoVideoPageN2_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoVideoPageN2_actionText strong {
    font-size: 13px;
  }

  .expoVideoPageN2_actionText small {
    font-size: 9px;
  }

  .expoVideoPageN2_content {
    margin-top: 16px;
  }

  .expoVideoPageN2_grid {
    gap: 15px 10px;
    padding: 18px 10px 5px;
  }

  .expoVideoPageN2_media {
    height: 110px;
  }

  .expoVideoPageN2_card h3 {
    padding: 9px 5px;
    font-size: 13px;
  }

  .expoVideoPageN2_play {
    width: 38px;
    height: 38px;
  }

  .expoVideoPageN2_play span {
    border-top-width: 6px;
    border-bottom-width: 6px;
    border-left-width: 9px;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoVideoPageN2_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoVideoPageN2_grid {
    grid-template-columns: 1fr;
  }

  .expoVideoPageN2_media {
    height: 180px;
  }
}

/* 视频列表页面 END */
/* =========================================================
   展会/参观预登记页面 START
   模块前缀：expoRegisterX7_
   最大内容宽度：1200px
   ========================================================= */

.expoRegisterX7,
.expoRegisterX7 *,
.expoRegisterX7 *::before,
.expoRegisterX7 *::after {
  box-sizing: border-box;
}

.expoRegisterX7 {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  margin-top: 25px;
}

/* 左侧区域 */
.expoRegisterX7_sidebar {
  min-width: 0;
}

.expoRegisterX7_sideTitle {
  height: 45px;
  padding: 0 20px;
  color: #fff;
  background: #2044b9;
  font-size: 16px;
  line-height: 45px;
}

.expoRegisterX7_menu {
  margin: 0 0 16px;
  padding: 7px 20px;
  border: 1px solid #e5e5e5;
  border-top: 0;
  list-style: none;
}

.expoRegisterX7_menu li {
  height: 43px;
  border-bottom: 1px dashed #e5e5e5;
}

.expoRegisterX7_menu li:last-child {
  border-bottom: 0;
}

.expoRegisterX7_menu a {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 43px;
  text-decoration: none;
  transition: color .3s ease, padding-left .3s ease;
}

.expoRegisterX7_menu a:hover {
  padding-left: 5px;
  color: #2044b9;
}

/* 左侧功能入口 */
.expoRegisterX7_action {
  display: flex;
  align-items: center;
  height: 80px;
  margin-bottom: 12px;
  padding: 0 20px;
  border: 1px solid #dedede;
  background: linear-gradient(135deg, #fff, #f3f3f3);
  text-decoration: none;
  transition: border-color .3s ease, background-color .3s ease,
              box-shadow .3s ease, transform .3s ease;
}

.expoRegisterX7_action:hover,
.expoRegisterX7_actionActive {
  border-color: #2044b9;
  background: #f7fff7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
  transform: translateX(4px);
}

.expoRegisterX7_actionIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin-right: 13px;
  overflow: hidden;
}

.expoRegisterX7_actionIcon img {
  display: block;
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: transform .35s ease;
}

.expoRegisterX7_action:hover img {
  transform: scale(1.1);
}

.expoRegisterX7_actionText {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.expoRegisterX7_actionText strong {
  color: #555;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
  transition: color .3s ease;
}

.expoRegisterX7_actionText small {
  color: #888;
  font-size: 12px;
  line-height: 20px;
  white-space: nowrap;
}

.expoRegisterX7_action:hover strong,
.expoRegisterX7_actionActive strong {
  color: #2044b9;
}

/* 右侧内容 */
.expoRegisterX7_content {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e2e2e2;
  background: #fff;
  transition: box-shadow .3s ease, transform .3s ease;
}

.expoRegisterX7_content:hover {
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

/* 右侧标题 */
.expoRegisterX7_header {
  height: 48px;
  padding: 0 10px;
  border-bottom: 1px solid #e5e5e5;
}

.expoRegisterX7_header h2 {
  margin: 0;
  color: #2044b9;
  font-size: 16px;
  font-weight: normal;
  line-height: 48px;
}

/* 表单 */
.expoRegisterX7_form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 0 45px;
}

.expoRegisterX7_tips {
  margin: 0 0 27px;
  color: #555;
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
}

.expoRegisterX7_tips span {
  font-weight: normal;
}

.expoRegisterX7_tips b,
.expoRegisterX7_form em {
  color: #f00;
  font-style: normal;
}

/* 表单行 */
.expoRegisterX7_formRow {
  display: flex;
  align-items: center;
  min-height: 66px;
}

.expoRegisterX7_formRow > label {
  flex: 0 0 100px;
  margin-right: 15px;
  color: #555;
  font-size: 14px;
  font-weight: bold;
  line-height: 38px;
  text-align: right;
}

.expoRegisterX7_field {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.expoRegisterX7_field input,
.expoRegisterX7_field select {
  height: 36px;
  padding: 0 8px;
  border: 1px solid #d8d8d8;
  outline: none;
  background: #fff;
  color: #777;
  font-family: inherit;
  font-size: 13px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.expoRegisterX7_field input:focus,
.expoRegisterX7_field select:focus {
  border-color: #2044b9;
  box-shadow: 0 0 0 2px rgba(74, 179, 68, .1);
}

.expoRegisterX7_field > input {
  flex: 1;
  width: 100%;
}

.expoRegisterX7_field > em {
  flex: 0 0 14px;
  margin-left: 15px;
  font-size: 14px;
}

/* 地址 */
.expoRegisterX7_address {
  gap: 13px;
}

.expoRegisterX7_address select {
  flex: 1;
  min-width: 0;
}

/* 联系电话 */
.expoRegisterX7_phone {
  gap: 13px;
}

.expoRegisterX7_phone select {
  flex: 0 0 187px;
}

.expoRegisterX7_phone input {
  flex: 1;
}

/* 验证码 */
.expoRegisterX7_captcha {
  gap: 10px;
}

.expoRegisterX7_captcha > input {
  flex: 0 0 130px;
}

.expoRegisterX7_code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 36px;
  border: 1px solid #555;
  color: #111;
  background: repeating-linear-gradient(
    165deg,
    #fff 0,
    #fff 3px,
    #d9d9d9 4px,
    #fff 5px
  );
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: line-through;
  user-select: none;
}

.expoRegisterX7_refresh {
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #777;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}

.expoRegisterX7_refresh:hover {
  color: #2044b9;
}

/* 提交按钮 */
.expoRegisterX7_submitRow {
  padding-left: 115px;
  padding-top: 8px;
}

.expoRegisterX7_submitRow button {
  width: 240px;
  height: 45px;
  border: 0;
  outline: none;
  background: #80c900;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .3s ease, box-shadow .3s ease,
              transform .3s ease;
}

.expoRegisterX7_submitRow button:hover {
  background: #68ae00;
  box-shadow: 0 6px 14px rgba(128, 201, 0, .3);
  transform: translateY(-2px);
}

.expoRegisterX7_submitRow button:active {
  transform: translateY(0);
}

/* 平板 */
@media (max-width: 760px) {
  .expoRegisterX7 {
    grid-template-columns: 180px minmax(0, 1fr);
    padding: 0 15px;
  }

  .expoRegisterX7_action {
    padding: 0 12px;
  }

  .expoRegisterX7_actionIcon {
    margin-right: 8px;
  }

  .expoRegisterX7_form {
    padding-right: 18px;
    padding-left: 18px;
  }
}

/* 手机 */
@media (max-width: 600px) {
  .expoRegisterX7 {
    display: block;
    padding: 0 15px;
  }

  .expoRegisterX7_action {
    display: inline-flex;
    width: calc(33.333% - 9px);
    height: 76px;
    margin-right: 9px;
    padding: 0 8px;
  }

  .expoRegisterX7_action:last-child {
    margin-right: 0;
  }

  .expoRegisterX7_actionIcon {
    width: 32px;
    height: 32px;
    margin-right: 5px;
  }

  .expoRegisterX7_actionIcon img {
    width: 32px;
    height: 32px;
  }

  .expoRegisterX7_actionText strong {
    font-size: 13px;
  }

  .expoRegisterX7_actionText small {
    font-size: 9px;
  }

  .expoRegisterX7_content {
    margin-top: 16px;
  }

  .expoRegisterX7_form {
    padding: 25px 12px 35px;
  }

  .expoRegisterX7_tips {
    font-size: 13px;
    text-align: left;
  }

  .expoRegisterX7_formRow {
    display: block;
    margin-bottom: 15px;
  }

  .expoRegisterX7_formRow > label {
    display: block;
    margin: 0 0 6px;
    line-height: 25px;
    text-align: left;
  }

  .expoRegisterX7_field {
    width: 100%;
  }

  .expoRegisterX7_submitRow {
    padding-left: 0;
  }

  .expoRegisterX7_submitRow button {
    width: 100%;
  }
}

/* 超小屏幕 */
@media (max-width: 400px) {
  .expoRegisterX7_action {
    display: flex;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .expoRegisterX7_address,
  .expoRegisterX7_phone {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .expoRegisterX7_phone select {
    width: 100%;
  }

  .expoRegisterX7_captcha {
    flex-wrap: wrap;
  }

  .expoRegisterX7_captcha > em {
    display: none;
  }
}

/* 展会/参观预登记页面 END */