/* color palette from <https://github.com/vuejs/theme> */
/* :root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
} */
/* semantic color variables for this project */
/* :root {
  --color-background: var(--vt-c-white);
  --color-background-soft: var(--vt-c-white-soft);
  --color-background-mute: var(--vt-c-white-mute);

  --color-border: var(--vt-c-divider-light-2);
  --color-border-hover: var(--vt-c-divider-light-1);

  --color-heading: var(--vt-c-text-light-1);
  --color-text: var(--vt-c-text-light-1);

  --section-gap: 160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: var(--vt-c-black);
    --color-background-soft: var(--vt-c-black-soft);
    --color-background-mute: var(--vt-c-black-mute);

    --color-border: var(--vt-c-divider-dark-2);
    --color-border-hover: var(--vt-c-divider-dark-1);

    --color-heading: var(--vt-c-text-dark-1);
    --color-text: var(--vt-c-text-dark-2);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
} */
/* body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  transition:
    color 0.5s,
    background-color 0.5s;
  line-height: 1.6;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    'Fira Sans',
    'Droid Sans',
    'Helvetica Neue',
    sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
} */
ul,
li {
  list-style: none;
}
html,
body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
span,
i,
a,
em,
strong,
b,
input,
textarea,
select {
  margin: 0;
  padding: 0;
  outline: none;
}
i,
em {
  font-weight: normal;
  font-style: normal;
}
b {
  font-weight: normal;
}
/* a,
i,
em,
span,
b,
img {
  display: block;
} */
/* body {
  font-family: 'Microsoft Yahei';
} */
li {
  list-style: none;
}
a,
img,
input {
  border: 0 none;
}
a {
  text-decoration: none;
  outline: none;
}
a:hover {
  text-decoration: none;
}
a:focus,
input:focus {
  outline: 0 none;
}
input::-webkit-search-cancel-button {
  display: Â none;
}
input::-ms-clear {
  display: Â none;
}
input {
  background: none;
}
button {
  border: none;
  cursor: pointer;
  outline: none;
}
textarea {
  resize: none;
  font-size: 12px;
}
/*html5*/
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
html,
body {
  width: 100%;
  height: 100%;
}
#app {
  width: 100%;
  height: 100%;
}
/*
576px: 典型的大屏手机宽度
768px: iPad竖屏宽度
992px: 小桌面显示器常用宽度
1200px: 标准桌面显示器宽度
1400px: 大屏桌面显示器起始点
*/
/*
门户网站
移动设备: < 768px
平板设备: 768px - 991px
小桌面: 992px - 1199px
桌面: 1200px - 1399px
大屏桌面: ≥ 1400px
*/
/* 1440px及以上分辨率之间的样式 */
.HomeW {
  width: 1400px !important;
  margin: 0 auto;
}
.innerW {
  width: 1200px !important;
  margin: 0 auto;
}
/* 1201px - 1439px 分辨率之间的样式 */
@media only screen and (max-width: 1439px) and (min-width: 1201px) {
  .HomeW {
    width: 1180px !important;
    max-width: 1180px;
  }
  .innerW {
    width: 1000px !important;
    max-width: 1000px;
  }
}
/* 993px - 1200px 分辨率之间的样式 */
@media only screen and (max-width: 1200px) and (min-width: 993px) {
  .HomeW {
    width: 980px !important;
    max-width: 980px;
  }
  .innerW {
    width: 800px !important;
    max-width: 800px;
  }
  .footerContainer .footerbg {
    width: calc(980px * 0.9) !important;
  }
}
/* 769px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) and (min-width: 769px) {
  .HomeW {
    width: calc(100% - 20px) !important;
    max-width: 100%; /* 添加这行 */
  }
  .innerW {
    width: calc(100% - 20px) !important;
    max-width: 100%; /* 添加这行 */
  }
  .footerContainer {
    display: none !important;
  }
}
/* 768px及以下分辨率的样式 */
@media only screen and (max-width: 768px) {
  .HomeW {
    width: 100% !important;
    max-width: 100%; /* 添加这行 */
  }
  .innerW {
    width: 100% !important;
    max-width: 100%; /* 添加这行 */
  }
  .footerContainer {
    display: none !important;
  }
}
/* 577px - 768px 分辨率之间的样式 */
/* @media only screen and (max-width: 768px) {
  .HomeW{
    width:100% !important;
  }
  .innerW{
    width:100% !important;
  }
  .footerContainer{
    display:none !important;
  }
} */
/* 576px及以下分辨率的样式 */
/* @media only screen and (max-width: 576px) {
  .HomeW{
    width:100% !important;
  }
  .innerW{
    width:100% !important;
  }
  .footerContainer{
    display:none !important;
  }
} */
.headerContainer[data-v-70dd8720] {
  width: 100%;
  /* 改为100%而不是100vw */
  max-width: 100%;
  height: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  -webkit-transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  /* 添加此行 */
}
.headerContainer.scroll-whiteBg[data-v-70dd8720] {
  background-color: #fff;
}
.headerContainer .header[data-v-70dd8720] {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerContainer .logo-image[data-v-70dd8720] {
  width: 220px /* 你的logo宽度 */;
  height: 70px /* 你的logo高度 */;
  background-image: url('/images/logo-1.DXYdzT9k.png');
  background-size: contain;
  background-repeat: no-repeat;
}
.headerContainer .logo-image.logo-active[data-v-70dd8720]:not(.logo-dark) {
  background-image: url('/images/logo-2.XwdMkBYZ.png');
}
.headerContainer .headerTab[data-v-70dd8720] {
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0px 5% 0px 10%;
  box-sizing: border-box;
}
.headerContainer .headerTab .tabUL[data-v-70dd8720] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720] {
  cursor: pointer;
  padding: 0px 15px;
  height: 100px;
  line-height: 100px;
  box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s, color 0s;
  transition: all 0.3s, color 0s;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720]:last-child {
  margin-right: 0px;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720]::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  bottom: 0px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #ffffff;
  content: ' ';
}
.headerContainer .headerTab .tabUL .tabItem.active[data-v-70dd8720]::after {
  width: 100%;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720]:hover {
  color: #ffffff;
  opacity: 0.95;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720]:hover::after {
  width: 100%;
}
.headerContainer .headerTab .tabUL .tabItem.scroll-whiteBg-after[data-v-70dd8720]::after {
  background: #00afdd;
}
.headerContainer .headerTab .tabUL .tabItem .text[data-v-70dd8720] {
  color: #ffffff;
}
.headerContainer .headerTab .tabUL .tabItem .text.scroll-whiteBg-333[data-v-70dd8720] {
  color: #333333 !important;
}
.headerContainer .headerTab .tabUL .tabItem .newsItemUL[data-v-70dd8720] {
  width: 100%;
  background-color: #ffffff;
  color: #333;
  opacity: 1;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  z-index: 1000000;
  box-shadow: 0 6px rgba(0, 0, 0, 0.1);
  padding: 10px 6px 7px 6px;
}
.headerContainer .headerTab .tabUL .tabItem .newsItemUL .newsItemChildren[data-v-70dd8720] {
  box-sizing: border-box;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}
.headerContainer .headerTab .tabUL .tabItem .newsItemUL .newsItemChildren[data-v-70dd8720]:hover {
  color: #00afdd;
}
.headerContainer .headerTab .tabUL .slide-down-enter-active[data-v-70dd8720] {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.headerContainer .headerTab .tabUL .slide-down-leave-active[data-v-70dd8720] {
  -webkit-transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
  transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
}
.headerContainer .headerTab .tabUL .slide-down-enter[data-v-70dd8720],
.headerContainer .headerTab .tabUL .slide-down-leave-active[data-v-70dd8720] {
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
  opacity: 0;
}
.headerContainer .headerTab .tabUL .slide-down-move[data-v-70dd8720] {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.headerContainer .headerTab .tabUL .slide-down-leave-active[data-v-70dd8720] {
  position: absolute !important;
  width: 100%;
}
.headerContainer .menuIcon[data-v-70dd8720] {
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.headerContainer .menuImg[data-v-70dd8720] {
  width: 100%;
  height: 100%;
}
.headerContainer .search[data-v-70dd8720] {
  width: 150px;
  height: 40px;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  cursor: pointer;
}
.headerContainer .search.border-style[data-v-70dd8720] {
  border: 1px solid #ffffff;
}
.headerContainer .search[data-v-70dd8720]:before {
  content: '';
  width: 2px;
  height: 20px;
  background-color: #ffffff;
  margin-right: 10px;
  position: absolute;
  left: 0px;
}
.headerContainer .search[data-v-70dd8720]:after {
  content: '';
  width: 2px;
  height: 20px;
  background-color: #ffffff;
  margin-right: 10px;
  position: absolute;
  right: 0px;
}
.headerContainer .search.scroll-whiteBg-active[data-v-70dd8720]:before {
  background-color: #00afdd;
}
.headerContainer .search.scroll-whiteBg-active[data-v-70dd8720]:after {
  background-color: #00afdd;
}
.headerContainer .search.scroll-whiteBg-active.border-style[data-v-70dd8720] {
  border: 1px solid #00afdd;
}
.headerContainer .search.border-style[data-v-70dd8720] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.headerContainer .search.border-style[data-v-70dd8720]:before {
  display: none;
}
.headerContainer .search.border-style[data-v-70dd8720]:after {
  display: none;
}
.headerContainer .search.border-style .inputText[data-v-70dd8720] {
  display: block;
}
.headerContainer .search .searchIcon[data-v-70dd8720] {
  margin-right: 10px;
  cursor: pointer;
}
.headerContainer .search .inputText[data-v-70dd8720] {
  width: 100%;
  outline: none;
  display: none;
}
/* 1400以下px 分辨率之间的样式 */
@media only screen and (max-width: 1400px) {
.headerContainer .headerTab[data-v-70dd8720] {
    padding: 0px 2% 0px 5%;
}
.headerContainer .headerTab .tabUL .tabItem[data-v-70dd8720] {
    padding: 0px 5px;
}
}
/* 1201px - 1439px 分辨率之间的样式 */
@media only screen and (max-width: 1200px) {
.headerContainer[data-v-70dd8720] {
    background-color: #fff;
}
.header[data-v-70dd8720] {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
}
.logo-image[data-v-70dd8720] {
    background-image: url('/images/logo-1.DXYdzT9k.png') !important;
}
.tabItem .text[data-v-70dd8720] {
    color: #333333 !important;
}
.search[data-v-70dd8720] {
    display: none !important;
}
.menuIcon[data-v-70dd8720] {
    display: block !important;
    z-index: 100;
}
.headerTab[data-v-70dd8720] {
    display: none !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #fff !important;
    position: fixed !important;
    left: 0;
    top: 100px;
    width: 100% !important;
    height: 100vh !important;
    padding: 0px 0px !important;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
}
.headerTab .tabUL[data-v-70dd8720] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    background-color: #fff !important;
}
.headerTab .mobile-tab-item[data-v-70dd8720] {
    width: 100%;
    border-bottom: 1px solid #999;
    height: 50px !important;
    line-height: 50px !important;
    overflow: hidden;
    /* 添加这行，隐藏溢出内容 */
    -webkit-transition: height 0.3s ease;
    transition: height 0.3s ease;
    /* 添加过渡动画 */
    /* 默认状态隐藏下拉菜单 */
    /* hover状态展开下拉菜单 */
}
.headerTab .mobile-tab-item .newsItemUL[data-v-70dd8720] {
    max-height: 0 !important;
    opacity: 0 !important;
    -webkit-transition: all 0.3s ease !important;
    transition: all 0.3s ease !important;
    position: static !important;
}
.headerTab .mobile-tab-item[data-v-70dd8720]:hover {
    height: auto !important;
    line-height: 50px !important;
    /* 保持标题行高 */
}
.headerTab .mobile-tab-item:hover .text[data-v-70dd8720] {
    border-bottom: 1px solid #999;
}
.headerTab .mobile-tab-item:hover .newsItemUL[data-v-70dd8720] {
    max-height: 300px !important;
    /* 足够大的值以容纳所有子项 */
    opacity: 1 !important;
}
.headerTab .mobile-tab-item[data-v-70dd8720]:first-child {
    border-top: 1px solid #999;
}
.headerTab .text[data-v-70dd8720] {
    width: 100%;
    text-align: center;
}
.openMobileMenu[data-v-70dd8720] {
    display: block !important;
}
}
/* 993px - 1200px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.headerContainer[data-v-70dd8720] {
    height: 50px !important;
    line-height: 50px !important;
}
.logo-image[data-v-70dd8720] {
    width: 100px !important;
    height: 30px !important;
}
.headerTab[data-v-70dd8720] {
    top: 50px !important;
}
}
/* 769px - 992px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.footerContainer[data-v-f1d772b0] {
  width: 100%;
  height: 185px;
  position: relative;
  z-index: 3;
  background-color: #00b0dd;
  padding-top: 30px;
  box-sizing: border-box;
}
.footerContainer .footerContent[data-v-f1d772b0] {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footerContainer .footerContent .logoGroup[data-v-f1d772b0] {
  margin-right: 175px;
}
.footerContainer .footerContent .InfosGroup[data-v-f1d772b0] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  color: #ffffff;
  line-height: 36px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}
.footerContainer .footerContent .InfosGroup .common[data-v-f1d772b0] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footerContainer .footerContent .InfosGroup .common span[data-v-f1d772b0] {
  display: block;
}
.footerContainer .footerContent .InfosGroup .info1[data-v-f1d772b0] {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.footerContainer .footerContent .InfosGroup .info2 .beianInfo1[data-v-f1d772b0] {
  margin-right: 30px;
  cursor: pointer;
}
.footerContainer .footerContent .InfosGroup .info2 .beianInfo2[data-v-f1d772b0] {
  cursor: pointer;
}
@media only screen and (max-width: 1439px) and (min-width: 1201px) {
.footerContainer[data-v-f1d772b0] {
    height: 300px;
}
.footerContainer .logoGroup[data-v-f1d772b0] {
    margin-right: 300px !important;
}
.footerContainer .InfosGroup[data-v-f1d772b0] {
    line-height: 28px !important;
}
.footerContainer .InfosGroup .common[data-v-f1d772b0] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px !important;
}
.footerContainer .InfosGroup .info2 .beianInfo2[data-v-f1d772b0] {
    margin-left: 81px;
}
}
@media only screen and (max-width: 1200px) and (min-width: 993px) {
.footerContainer[data-v-f1d772b0] {
    height: 300px;
}
.footerContainer .logoGroup[data-v-f1d772b0] {
    margin-right: 100px !important;
}
.footerContainer .InfosGroup[data-v-f1d772b0] {
    line-height: 28px !important;
}
.footerContainer .InfosGroup .common[data-v-f1d772b0] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px !important;
}
.footerContainer .InfosGroup .info2 .beianInfo2[data-v-f1d772b0] {
    margin-left: 81px;
}
}
.sidebar-buttons[data-v-f6f991d5] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  background-color: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.sidebar-item[data-v-f6f991d5] {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e3e3e3;
  padding-top: 10px;
  padding-bottom: 10px;
}
.sidebar-item .icon[data-v-f6f991d5] {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.sidebar-item .icon1[data-v-f6f991d5] {
  background: url('/images/oa1.CGtOYHLl.png') no-repeat center center;
  background-size: cover;
}
.sidebar-item .icon2[data-v-f6f991d5] {
  background: url('/images/gongzhonghao1.CiGYV7eo.png') no-repeat center center;
  background-size: cover;
}
.sidebar-item .icon3[data-v-f6f991d5] {
  background: url('/images/return1.D6DBEnbX.png') no-repeat center center;
  background-size: cover;
}
.sidebar-item[data-v-f6f991d5]:hover {
  background-color: #00b0dd;
  /* This will now work properly */
}
.sidebar-item:hover .icon1[data-v-f6f991d5] {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAA10lEQVRYhe2XsQ6CMBBAXx3YXPRzlM8zcXBQZje/DyYXdDgHEEmxVCIFmtxLOjSX9F6ubXIHSsyISCIiFxHJJTxFnSvpEzpPIGJzbDsYSygHNmHq76Qwxmzfm5UVbMukVMIhVurI2amQuGIBaHIZY5pcdoVmR4V8qJAPFfKhQj5UyIcK+YhKaB8w784VWHzHeJtYBuDqjMhn6igmaO6/Th32lQUqQj+tDjauXzYLUQodgJJqbPlnlfVZvfzyqEvAPX8P4w6sOxIDH/UJeIwg8wSyEc5RlsULk42PexJZv+8AAAAASUVORK5CYII=') no-repeat center center;
  background-size: cover;
}
.sidebar-item:hover .icon2[data-v-f6f991d5] {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAD10lEQVRYhe2XX2jWZRTHP1tzm205s/Vntv7MEsKLFqWLhJL1h4yCJIuyLqLupJDdGZHUTeWFBRqRzLDoIqKSYRaR/SMoJbfKG0krgrLJpBLR1UrcPl38nred/fa+e993s4vAA4f3eZ5zzvf3fc7znud3fnBa/mdSo5bzuRS4E1gGLATOA84Bfgd+A/YDnwPbgR9nzEgtpUvUt9VRK5Mxdad63RSYZbVYhuYAm4AHc+uDwEDKwgmgBbgI6ALOjXsEtgBrgaMzzdAC9buw67/VzeriMjvrVDepf4bYA2pHtRmKk3b1YAD8Ul1YJeBl6gcB4+eEWzWhBnVvAOpV66b5PzhDfS5g7a4GqzB4MgC8ptZMk0zU3oC5phpCc9XjKfBbtTE4zFPfUPepjxUBuFvtVz9RF+Vss9XvE+7hHO6UhB4NO1mRc3jBiXJjsLWqI8H2VZEHPBTsKyshVAssTwV3CHgnV4SX5Obzw/h8oDE3j3IBMASMpfldwKxKyn4w7eD1IoxvVf9K9gNqS7DVqO8l25i6Vm1T14ejyssfZlV4jzqr1JGdSM7rS6SxPR3VmUVster16lXq0068h8rJfrW7GKFjyWFjCULltE3dlXvYbnWdWYavUbvU+9Qt6q/Bb0x9Kk/om2T8bBpkzk47LUi/urRMTJPZ8caCeDYS2pgWR9WLqyT0ZgDtVeuriO104pthRYHQ4rC4tQrA7hC33eldplc4fgceVBsLhh1pcUy9o0Kw91PMsHrhNMgUtCds7IHCYkdgelS9ugxIs+PV+WrO1mT2+vkohzNf7VPfdWIX0JieqbotAq1MGSqQmlSSQa8Nu1qVs60Otlgo8dbPb+KttP5DbbgjtwGPkDVYLcBO4KYS92lrGA/mbEMlxr+E8eFczE/pt70uZ3gJqCPrGOuApUBH0r3ArkRgOMSclcPoA+5NMZvD+gayPrweeDkXMzv9jhQ7jjUhtcNOlhH1UJg/McXRVqr7EtYXtUyW28O4qYi9EWgL81VAMZxKZTmwKI135Jv8euAY0JDmR4BngK1AJ7CErAOoBy4HupPfaiYeT6XSAnwNLACOAx3F0jdg9obfYNa8lUpzi1njpdlbfFmVx9SsfhqOvkct+l1WZ4XdndnL82Qg9XCFca3qnkCmz3TTz/TPSCJxMoDvUe83a3+jX616Zcrk88H/Q0NrU8mndCVyG/AKE7vGUbL7ZQhoJvskn5NsY4wXQhfQ/2/UKchQQeeZtRFHrE7WRZxTlaEoDcAtwA1kldgCjJD17ANp/jgwN/l/DNz8X2SoGm1VXzS7eHui7bSUk38AMP1ttzWNMnMAAAAASUVORK5CYII=') no-repeat center center;
  background-size: cover;
}
.sidebar-item:hover .icon3[data-v-f6f991d5] {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAACtUlEQVRYhe2XS0hVQRjH/7fUopJCwjB6aRHRxop2WfSAoCdB1KJNFD127YJWRRAELSKEFu2kNiVID4oEs5J0G1ZQYBTZy7QQIbt11fy1OHNonDueezzelOD+4eN8Z775vvndYWbOXKmgmAKS2DygEegz1giUJ6mVD6A1wAey1Qmsmmig/cAPD0yofmDvRAClgHPAsAPQBDQ7bcPAGZPzT4BmATc9s1ELFBm77InXAzPzDVQJPHMGygBHPX2PAwNO36fAwnwBbQC+OgP0AOsjcjZ6cr4A68YLdMzza9uBxTlmVEAV8MLJ/QUcTgI02npoIFhLcTdBKXDbU+ciMDUuUBn+HXOWmDvGsSnAebJ3ZiMwJw5Qm5PYD+xLAOLaAeCnByonUNpKeA+szgNMaGuBj1b9rjhAJxjndymHzSc4SPuAIy5QygaaTKVSAcqUSaXwqACUSwWgXCqy/ApJNTFy7klKG79U0m5Jy817h6Q7kr5b/Ysl7XFqZCR1S2o3fraAHcTTInN27AS6PfEeYJd17syOqPUtPIt8QFuBXst+m6QBp30BUE1wHwIYAlqAx8CgacuYPi5Q2tSwvwbDwGYfkGudJuGuJ9Zgwdr3ohoL9JYH6JTVd4vVty7kSLKoSyRtN369pCdWrFXSDeNvkzQ9ok6zpE7jzx0P0BJroDZP/JF5lkiqdGJlkqokVUs6LWmZaX8TdijS2DXN8tOeuL1rSpzYSWO20pKuhC9JZuiT5a/wxJdafldEnYykJkmbJL3Mio5xUT83sc+M/IszA3htYq88i/oCwV27HCi2a4ZKelJfMs8KSS2SDkk6KOmh/q6LWk9er6S3knokDUaOMMYZSgFXGV3XCe7SUdt+hIWKWtStksoVHO9Z/GZG7pvZWWnaOyTVSbpm+kjSkKQHxn8XOSsF/Y/6AwJNsN1I/Dq+AAAAAElFTkSuQmCC') no-repeat center center;
  background-size: cover;
}
.sidebar-item:hover .text[data-v-f6f991d5] {
  color: #fff;
}
.sidebar-item[data-v-f6f991d5]:last-child {
  border-bottom: none;
}
.sidebar-item[data-v-f6f991d5]:hover {
  opacity: 0.8;
}
.sidebar-item1[data-v-f6f991d5]:hover {
  border-radius: 8px 8px 0px 0px;
}
.sidebar-item3[data-v-f6f991d5]:hover {
  border-radius: 0px 0px 8px 8px;
}
.text[data-v-f6f991d5] {
  font-size: 12px;
  color: #666;
}
/* 公众号二维码相关样式 */
.wechat-item[data-v-f6f991d5] {
  /* 给公众号按钮单独加一些样式，也可去掉 */
  position: relative;
}
.wechat-qr[data-v-f6f991d5] {
  position: absolute;
  right: calc(100% + 10px);
  /* 二维码在按钮右侧，距离 10px */
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 120px;
  /* 二维码容器宽度，可调整 */
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
  /* 避免悬浮到二维码时触发父元素 mouseleave */
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
/* 显示二维码的状态 */
.wechat-qr.show-qr[data-v-f6f991d5] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* 恢复事件，可扫描或点击二维码内元素 */
}
.qr-img[data-v-f6f991d5] {
  width: 100%;
  height: auto;
  display: block;
}
.sideBarContainer[data-v-5c16979c] {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: fixed;
  right: -80px;
  top: 33%;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sideBarContainer.scroll-hidden[data-v-5c16979c] {
  right: 10px;
  opacity: 1;
  visibility: visible;
}
.mainContainer[data-v-f89a0342] {
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}
.mainContainer .content[data-v-f89a0342] {
  min-height: 500px;
}
/* 1400以下px 分辨率之间的样式 */
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.mainContainer .content[data-v-f89a0342] {
    padding: 15px 10px;
    box-sizing: border-box;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.bannerContainer[data-v-8bd03758] {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
}
.pic[data-v-8bd03758] {
  overflow: hidden;
}
.slide-image[data-v-8bd03758] {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
.swiper-slide-active .slide-image[data-v-8bd03758] {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 5s 0.6s;
  transition: 5s 0.6s;
}
.text-bg[data-v-8bd03758] {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
[data-v-8bd03758] .swiper {
  width: 100%;
  height: 100%;
}
[data-v-8bd03758] .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
[data-v-8bd03758] .swiper-pagination {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 80px;
  box-sizing: border-box;
}
[data-v-8bd03758] .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  border-radius: 0;
}
[data-v-8bd03758] .swiper-pagination-bullet-active {
  background-color: #fff;
}
[data-v-8bd03758] .swiper-button-next,[data-v-8bd03758] .swiper-button-prev {
  color: #fff;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
[data-v-8bd03758] .swiper-button-next::after,[data-v-8bd03758] .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}
[data-v-8bd03758] .swiper-button-next:hover,[data-v-8bd03758] .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
[data-v-8bd03758] .swiper-button-next svg,[data-v-8bd03758] .swiper-button-prev svg {
  width: 50%;
  height: 50%;
}
[data-v-8bd03758] .swiper-button-next {
  right: 80px;
}
[data-v-8bd03758] .swiper-button-prev {
  left: 80px;
}
.scroll[data-v-8bd03758] {
  position: absolute;
  z-index: 10;
  bottom: 3.6%;
  left: 50%;
  margin-left: -18px;
  width: 48px;
  height: 76px;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: scrolls-8bd03758;
          animation-name: scrolls-8bd03758;
  background: url(data:image/png;base64,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) center center no-repeat;
}
.scroll.scroll-hidden[data-v-8bd03758] {
  opacity: 0;
  visibility: hidden;
}
.bannerText[data-v-8bd03758] {
  position: absolute;
  left: 0;
  top: 0%;
  z-index: 2;
  width: 100%;
  height: 100%;
}
[data-v-8bd03758] .swiper-slide-active .bannerText .text-bg {
  -webkit-animation: fadeInUp-8bd03758 1s ease;
          animation: fadeInUp-8bd03758 1s ease;
}
@-webkit-keyframes fadeInUp-8bd03758 {
from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
}
to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
}
@keyframes fadeInUp-8bd03758 {
from {
    opacity: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
}
to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
}
@-webkit-keyframes scrolls-8bd03758 {
from {
    bottom: 3.6%;
}
50% {
    bottom: calc(3.6% + 12px);
}
100% {
    bottom: 3.6%;
}
}
@keyframes scrolls-8bd03758 {
from {
    bottom: 3.6%;
}
50% {
    bottom: calc(3.6% + 12px);
}
100% {
    bottom: 3.6%;
}
}
.bannerType-2[data-v-8bd03758] {
  padding-top: 100px;
  box-sizing: border-box;
  width: 100%;
  height: 580px;
}
.bannerType-2 .bg-image[data-v-8bd03758] {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.bannerContainer[data-v-8bd03758],
  .text-bg[data-v-8bd03758] {
    height: 250px !important;
}
[data-v-8bd03758] .swiper-pagination {
    bottom: 20px;
    padding-left: 0px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}
[data-v-8bd03758] .swiper-button-prev {
    display: none;
}
[data-v-8bd03758] .swiper-button-next {
    display: none;
}
.scroll[data-v-8bd03758] {
    display: none;
}
.bannerType-2[data-v-8bd03758] {
    padding-top: 50px;
    height: 250px;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.sectionTitleContainer[data-v-d8428712] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.chinese-title[data-v-d8428712] {
  width: 100%;
  font-size: 36px;
  color: #333333;
  font-weight: bold;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.englishBox[data-v-d8428712] {
  position: relative;
}
.english-title[data-v-d8428712] {
  font-size: 16px;
  color: #d1d1d1;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: 65px;
  display: none;
}
.englishBox[data-v-d8428712]::before {
  content: ' ';
  width: 55px;
  height: 5px;
  background-color: var(--before-bg-color);
  display: block;
  margin-top: 10px;
  position: absolute;
}
.IndustryCompon-Type2[data-v-625fb7d0] {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
  /* 当鼠标悬停或点击时翻转卡片 */
}
.IndustryCompon-Type2 .imageGroup[data-v-625fb7d0] {
  width: 160px;
  height: 180px;
  position: relative;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  margin-bottom: 30px;
  cursor: pointer;
}
.IndustryCompon-Type2 .imageGroup .card-front[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup .card-back[data-v-625fb7d0] {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 隐藏背面 */
  -webkit-transition: -webkit-transform 0.6s linear;
  transition: -webkit-transform 0.6s linear;
  transition: transform 0.6s linear;
  transition: transform 0.6s linear, -webkit-transform 0.6s linear;
  /* 平滑过渡效果 */
}
.IndustryCompon-Type2 .imageGroup .card-front[data-v-625fb7d0] {
  z-index: 2;
  /* 确保正面在上方 */
  background: url('data:image/png;base64,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');
}
.IndustryCompon-Type2 .imageGroup .card-back[data-v-625fb7d0] {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  /* 初始状态为背面 */
  background: url('data:image/png;base64,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');
}
.IndustryCompon-Type2 .imageGroup .card-front .icon[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup .card-back .icon[data-v-625fb7d0] {
  width: 80px;
  height: 80px;
  fill: #ffffff;
}
.IndustryCompon-Type2 .textGroup .title[data-v-625fb7d0] {
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
}
.IndustryCompon-Type2 .imageGroup:hover .card-front[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup.is-flipped .card-front[data-v-625fb7d0] {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  /* 翻转到背面 */
}
.IndustryCompon-Type2 .imageGroup:hover .card-back[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup.is-flipped .card-back[data-v-625fb7d0] {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
  /* 翻转回正面 */
}
.IndustryCompon-Type2 .imageGroup:hover .card-back .icon[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup.is-flipped .card-back .icon[data-v-625fb7d0] {
  fill: #ffffff;
}
.IndustryCompon-Type2 .imageGroup:hover + .textGroup .title[data-v-625fb7d0],
.IndustryCompon-Type2 .imageGroup.is-flipped + .textGroup .title[data-v-625fb7d0] {
  color: #ffffff;
}
/* 1201px - 1439px 分辨率之间的样式 */
@media only screen and (max-width: 1439px) and (min-width: 1201px) {
.IndustryCompon-Type2[data-v-625fb7d0] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
}
/* 993px - 1200px 分辨率之间的样式 */
@media only screen and (max-width: 1200px) and (min-width: 993px) {
.IndustryCompon-Type2[data-v-625fb7d0] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
}
}
/* 769px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) and (min-width: 769px) {
.IndustryCompon-Type2[data-v-625fb7d0] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-bottom: 25px;
}
.IndustryCompon-Type2 .imageGroup[data-v-625fb7d0] {
    width: 120px;
    height: 145px;
    margin-bottom: 10px;
}
}
/* 768px及以下分辨率的样式 */
@media only screen and (max-width: 768px) {
.IndustryCompon-Type2[data-v-625fb7d0] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    margin-bottom: 25px;
}
.IndustryCompon-Type2 .imageGroup[data-v-625fb7d0] {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.IndustryCompon-Type2 .imageGroup .icon[data-v-625fb7d0] {
    width: 60px !important;
    height: 60px !important;
}
.IndustryCompon-Type2 .textGroup .title[data-v-625fb7d0] {
    font-size: 18px;
}
}
@media (max-width: 480px) {
.IndustryCompon-Type2[data-v-625fb7d0] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33%;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    margin-bottom: 25px;
}
.IndustryCompon-Type2 .imageGroup[data-v-625fb7d0] {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.IndustryCompon-Type2 .imageGroup .icon[data-v-625fb7d0] {
    width: 60px !important;
    height: 60px !important;
}
.IndustryCompon-Type2 .textGroup .title[data-v-625fb7d0] {
    font-size: 18px;
}
}
.industrialContainer-Type2[data-v-27c5b29a] {
  width: 100%;
  height: 100%;
  padding-top: 40px;
  box-sizing: border-box;
  overflow: hidden;
}
.industrialContainer-Type2 .sectionTitle[data-v-27c5b29a] {
  margin-bottom: 50px;
}
.industrialContainer-Type2 .industrialItemGroup[data-v-27c5b29a] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin: 0 50px;
}
/* 1400以下px 分辨率之间的样式 */
@media only screen and (max-width: 1400px) {
.industrialContainer-Type2 .industrialItemGroup[data-v-27c5b29a] {
    margin: 0 20px;
}
}
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.industrialContainer-Type2[data-v-27c5b29a] {
    padding: 20px 10px;
}
.industrialContainer-Type2 .industrialItemGroup[data-v-27c5b29a] {
    margin: 0 10px;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.newsSwiperContainer[data-v-484dc38a] {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.slide-image[data-v-484dc38a] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-v-484dc38a] .swiper {
  width: 100%;
  height: 100%;
}
[data-v-484dc38a] .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
[data-v-484dc38a] .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 20px;
  box-sizing: border-box;
}
[data-v-484dc38a] .swiper-pagination-bullet {
  width: 20px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  border-radius: 0;
}
[data-v-484dc38a] .swiper-pagination-bullet-active {
  background-color: #fff;
}
.news-swiper-text[data-v-484dc38a] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-size: 16px;
  position: absolute;
  bottom: 0px;
  text-align: left;
}
.news-swiper-text .news-swiper-textinfo[data-v-484dc38a] {
  display: inline-block;
  width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 20px;
}
/* 容器样式 */
.news-container[data-v-d1a766d0] {
  overflow: hidden;
}
.news-container:hover .news-tabs[data-v-d1a766d0]::before {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  width: 100%;
}
/* 分类标题栏 */
.news-tabs[data-v-d1a766d0] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  border-bottom: 1px solid #e3e3e3;
  background-color: #fff;
  position: relative;
}
.news-tabs[data-v-d1a766d0]::before {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 3px;
  background: var(--before-bg-color);
  content: ' ';
}
.news-tabs[data-v-d1a766d0]:hover {
  color: #00b0dd;
}
/* 分类标签 */
.news-tab[data-v-d1a766d0] {
  margin-right: 30px;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  height: 100%;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-tab[data-v-d1a766d0]:hover {
  color: var(--font-color);
}
/* 激活状态样式 */
.news-tab.active[data-v-d1a766d0] {
  color: #00b0dd;
}
/* 更多链接 */
.more-link[data-v-d1a766d0] {
  margin-left: auto;
  font-size: 18px;
  color: #888;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.more-link[data-v-d1a766d0]:hover {
  color: var(--font-color);
}
.more-link .icon-angle-right[data-v-d1a766d0] {
  margin-left: 4px;
  font-size: 12px;
}
/* 新闻内容区域 */
.news-content[data-v-d1a766d0] {
  background-color: #fff;
  max-height: 300px;
  min-height: 180px;
  margin-top: 10px;
}
/* 空状态样式 */
.empty-state[data-v-d1a766d0],
.empty-list[data-v-d1a766d0] {
  text-align: center;
  padding: 30px 0;
  color: #999;
  font-size: 14px;
}
/* 新闻列表 */
.news-list[data-v-d1a766d0] {
  width: 100%;
}
/* 新闻项 */
.news-item[data-v-d1a766d0] {
  padding: 10px 0;
  cursor: pointer;
}
/* 新闻链接 */
.news-link[data-v-d1a766d0] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
/* 新闻标题 */
.news-title[data-v-d1a766d0] {
  font-size: 18px;
  color: #333;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 12px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.news-link:hover .news-title[data-v-d1a766d0] {
  color: var(--font-color);
}
/* 新闻日期 */
.news-date[data-v-d1a766d0] {
  font-size: 18px;
  color: #999;
  white-space: nowrap;
}
.moreIcon[data-v-d1a766d0] {
  width: 8px;
  height: 14px;
  margin-left: 10px;
}
/* 响应式调整 */
@media (max-width: 480px) {
.news-container[data-v-d1a766d0] {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
}
}
.newsCenterContainer[data-v-3c75992a] {
  width: 100%;
  height: 100%;
}
.newsContent[data-v-3c75992a] {
  width: 100%;
  height: 100%;
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  box-sizing: border-box;
}
.newsContent .left[data-v-3c75992a] {
  width: 47%;
}
.newsContent .right[data-v-3c75992a] {
  width: 47%;
}
.newsContent .newsSwiper[data-v-3c75992a] {
  height: 400px;
  width: 100%;
}
.newsContent .newsGroup[data-v-3c75992a] {
  margin-top: 30px;
}
.newsContent .rightNewsGroup[data-v-3c75992a] {
  height: 310px;
}
.newsContent .rightNewsGroup2[data-v-3c75992a] {
  margin-top: 35px;
}
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.newsContent[data-v-3c75992a] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.newsContent .left[data-v-3c75992a],
  .newsContent .right[data-v-3c75992a] {
    width: 100%;
}
.newsSwiper[data-v-3c75992a] {
    height: 100px !important;
}
[data-v-3c75992a] .news-swiper-text {
    height: 30px !important;
    line-height: 30px !important;
}
[data-v-3c75992a] .swiper-pagination {
    display: none;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.newsItemContainer[data-v-72df1fa5] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  width: 100%;
}
.newsItemContainer.showLine[data-v-72df1fa5] {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 20px;
  padding-top: 20px;
}
.newsItemContainer:hover .title[data-v-72df1fa5] {
  color: #00b0dd;
}
.newsItemContainer:hover .date-box[data-v-72df1fa5] {
  border: 2px solid #00b0dd;
}
.newsItemContainer:hover .date-box .day[data-v-72df1fa5] {
  color: #00b0dd;
}
.newsItemContainer:hover .date-box .month[data-v-72df1fa5] {
  color: #00b0dd;
}
.newsItemContainer:hover .date-box[data-v-72df1fa5]::before {
  background-color: #00b0dd;
}
.newsItemContainer .textContainer[data-v-72df1fa5] {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.newsItemContainer .title[data-v-72df1fa5] {
  font-size: 24px;
  color: #333333;
  display: -webkit-box;
  overflow: hidden;
  /*! autoprefixer: off */
  -webkit-box-orient: vertical;
  /* 这里必须设为vertical（垂直方向），horizontal无效！ */
  /*! autoprefixer: on */
  -webkit-line-clamp: 1;
  /* 限制1行 */
  text-overflow: ellipsis;
  /* 省略号 */
  white-space: normal;
  /* 允许换行（配合line-clamp） */
  font-weight: bold;
  width: 100%;
  /* 或固定宽度，如300px，确保有换行边界 */
}
.newsItemContainer .content[data-v-72df1fa5] {
  font-size: 18px;
  line-height: 28px;
  color: #333333;
  margin-top: 10px;
  min-height: 60px;
  display: -webkit-box;
  overflow: hidden;
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  white-space: normal;
}
.newsItemContainer .date-box[data-v-72df1fa5] {
  border: 2px solid #1c2079;
  width: 86px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  /* 防止在 flex 布局中被压缩 */
  height: 96px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 垂直方向堆叠排列 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-right: 55px;
}
.newsItemContainer .date-box[data-v-72df1fa5]::before {
  content: '';
  /* 绘制斜线，通过绝对定位和旋转实现 */
  position: absolute;
  right: 25px;
  top: 0px;
  width: 2px;
  height: 75px;
  background-color: #1c2079;
  /* 旋转45度，形成斜线效果 */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.newsItemContainer .day[data-v-72df1fa5] {
  font-size: 30px;
  position: absolute;
  left: 8px;
  top: 5px;
  color: #1c2079;
  font-weight: bold;
}
.newsItemContainer .month[data-v-72df1fa5] {
  font-size: 18px;
  position: absolute;
  left: 8px;
  bottom: 5px;
  color: #333333;
}
/* 1400以下px 分辨率之间的样式 */
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.newsItemContainer .date-box[data-v-72df1fa5] {
    margin-right: 15px;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.noticeContent[data-v-8fcb8581] {
  width: 100%;
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  box-sizing: border-box;
}
.noticeItem[data-v-8fcb8581] {
  width: 47%;
  padding: 25px 30px;
  box-sizing: border-box;
  background-color: #ffffff;
  margin-bottom: 40px;
}
.noticeItem[data-v-8fcb8581]:not(:nth-child(2n)) {
  margin-right: calc(6% / 1);
}
.sectionTitle[data-v-8fcb8581] {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.more[data-v-8fcb8581] {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.moreText[data-v-8fcb8581] {
  color: #999999;
  margin-right: 10px;
  font-size: 18px;
}
.moreIcon[data-v-8fcb8581] {
  width: 8px;
  height: 14px;
}
/* 1400以下px 分辨率之间的样式 */
/* 1201px - 1439px 分辨率之间的样式 */
/* 993px - 1200px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.noticeItem[data-v-8fcb8581] {
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 10px !important;
    padding: 10px 15px;
}
}
/* 769px - 992px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
[data-v-c58ddc2f] .news-tabs {
  background-color: transparent;
}
[data-v-c58ddc2f] .news-content {
  background-color: transparent;
  min-height: 110px;
}
.partyContent[data-v-c58ddc2f] {
  width: 100%;
  height: 500px;
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  box-sizing: border-box;
}
.partyContent .left[data-v-c58ddc2f] {
  width: 53%;
}
.partyContent .right[data-v-c58ddc2f] {
  width: 41%;
}
.partyContent .partyPic[data-v-c58ddc2f] {
  width: 100%;
  height: 100%;
}
/* 1400以下px 分辨率之间的样式 */
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.partyContent[data-v-c58ddc2f] {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 15px;
}
.partyContent .left[data-v-c58ddc2f] {
    width: 100%;
    margin-bottom: 15px;
}
.partyContent .right[data-v-c58ddc2f] {
    width: 100%;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
.content[data-v-1b2489b2] {
  min-height: 800px;
  width: 100%;
  padding: 45px 0px;
  box-sizing: border-box;
}
.notice[data-v-1b2489b2] {
  width: 100%;
  min-height: 590px;
  background-image: url('/images/noticeBg.CqubZ188.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 45px 0px;
  box-sizing: border-box;
}
.industrial[data-v-1b2489b2] {
  width: 100%;
  height: 850px;
  background-image: url('/images/industrialBg.CewoR4Q3.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.industrial[data-v-1b2489b2] .industrialContainer {
  position: relative;
  z-index: 2;
}
.party[data-v-1b2489b2] {
  width: 100%;
  min-height: 720px;
  padding: 65px 0px 60px 0px;
  box-sizing: border-box;
}
/* 1400以下px 分辨率之间的样式 */
/* 992px - 1200px 分辨率之间的样式 */
/* 768px - 992px 分辨率之间的样式 */
@media only screen and (max-width: 992px) {
.content[data-v-1b2489b2],
  .notice[data-v-1b2489b2],
  .party[data-v-1b2489b2] {
    padding: 20px 10px !important;
}
}
/* 576px - 768px 分辨率之间的样式 */
/* 576px及以下分辨率的样式 */
