body {
  display: flex;
  overflow-x: hidden;
  margin: 0px;
}

#main {
  margin: auto;
  width: auto;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: relative;
  margin-left: 360px;
  max-width: 289.37px;
  height: 32px;
}

header nav {
  height: 72px;
  position: relative;
  right: 360px;
  display: flex;
  gap: 16px;
  flex-grow: 1;
  justify-content: flex-end;
  font-family: 'Microsoft YaHei', '微软雅黑';
  font-size: 16px;
  font-weight: bold
}

header nav a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}

.ZGbutton {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-family: inherit;
  font-weight: bolder;
  cursor: pointer;
  position: relative;
  top: 26px;
  border: none;
  background: none;
  text-transform: uppercase;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
}

/* 最高标题字体变色 */
.ZGbutton:hover {
  color: #040000;
}

.ZGbutton:focus:after,
.ZGbutton:hover:after {
  width: 64px;
  left: 9%;
}

button:after {
  content: "";
  pointer-events: none;
  bottom: -8px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 6px;
  background-image: linear-gradient(to bottom right, #3DA8CE, #0359A0);
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

/* @keyframes scaleUp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
} */

/* 下拉菜单 - start */

/* 下拉菜单 - 关于我们 */
.NBdropdown .dropdown-content {
  width: 1924px;
  height: 0px;
  background: #FAFAFA;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  left: 672px;
  top: 72px;
  min-width: 90px;
  transition: height ease 0.5s;
  z-index: 0;
}

.NBdropdown :hover .dropdown-content {
  position: absolute;
  top: 72px;
  width: 1924px;
  height: 300px;
}

/* 下拉菜单 - 关于我们（文字） */
.NBdropdown .ZGwb {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;

  position: absolute;
  top: 72px;
  right: 372px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  line-height: 22px;
  opacity: 0;
  transition: opacity ease 0.5s;
  cursor: pointer;
  z-index: 1;

}

.NBdropdown :hover .ZGwb {
  opacity: 1;
}

/* 下拉菜单 - 解决方案 */
.NBservice .service-content {
  width: 1924px;
  height: 0px;
  background: #FAFAFA;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  left: 672px;
  top: 72px;
  min-width: 90px;
  transition: height ease 0.5s;
}

.NBservice :hover .service-content {
  position: absolute;
  top: 72px;
  width: 1924px;
  height: 300px;
}

/* 下拉菜单 - 解决方案（文字） */
.NBservice .ZGwb {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;

  position: absolute;
  top: 72px;
  right: 280px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  line-height: 22px;
  opacity: 0;
  transition: opacity ease 0.5s;
  cursor: pointer;
}

.NBservice :hover .ZGwb {
  opacity: 1;
}

#IDZGwb :hover {
  font-weight: bold;
  color: #040000;
}

/* 下拉菜单 - end */

.navbar nav {
  position: relative;
  display: flex;
  height: 52px;
  flex-grow: 1;
  /* 允许nav占据剩余空间 */
  justify-content: flex-start;
  /* 子元素向末尾对齐 */
  text-align: center;
  /* 水平居中文本 */
  line-height: 50px;
  font-style: normal;
}

.navbar nav a {
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  color: inherit;
  /* 继承父元素的颜色 */
  font-size: 16px;
  margin-left: 60px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  font-family: myfontfamily;
}

.navbar nav a:first-child {
  margin-left: 360px;
}

#FBTbutton:hover {
  color: #040000;
}

.line {
  position: absolute;
  left: 346px;
  bottom: 0;
  height: 3px;
  width: 90px;
  background-image: linear-gradient(to right, #3DA8CE, #0359A0);
  transition: all .5s;
}

/* 滑动条位置 */
.navbar nav a:nth-child(1).active~.line {
  transform: translatex(0);
}

.navbar nav a:nth-child(2).active~.line {
  transform: translatex(125px);
}

.navbar nav a:nth-child(3).active~.line {
  transform: translatex(249px);
}

.navbar nav a:nth-child(4).active~.line {
  transform: translatex(373px);
}

.navbar nav a:nth-child(5).active~.line {
  transform: translatex(497px);
}

.navbar nav a:nth-child(6).active~.line {
  transform: translatex(621px);
}

.navbar nav a:nth-child(7).active~.line {
  transform: translatex(746px);
}

.navbar nav a:nth-child(8).active~.line {
  transform: translatex(870px);
}

.TTline {
  width: 100%;
  height: 1px;
  background: #F4F4F4;
}

.sticky {
  position: fixed;
  /* 当导航栏需要停靠在顶部时，使用固定定位 */
  top: 0;
  left: 0;
  width: 100%;
  /* 根据需要设置宽度 */
  z-index: 1000;
  /* 确保导航栏在其他内容之上 */
  background-color: #fff;
  /* 可选：设置背景色，防止内容被覆盖 */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* 可选：添加阴影效果 */
}

#text1 {
  position: absolute;
  top: 178px;
  left: 360px;
  height: 160px;
  width: 620px;
}

#picture1367 {
  position: absolute;
  top: 80px;
  left: 1027px;
}

#text2 {
  position: absolute;
  top: 40px;
  left: 239px;
}

#text3 {
  position: absolute;
  top: 40px;
  left: 1061px;
  height: 160px;
  width: 620px;
}

#rectangle322 {
  position: absolute;
  top: 20px;
  left: 959px;
}

.boxtitle {
  position: absolute;
  top: 80px;
  left: 360px;
}

.background1 {
  position: relative;
  height: 956px;
  width: 1920px;
  background-image: url("../picture/组织架构_slices/wallhaven-q67r6d_5120x28802.png");
}

.picturefazhan {
  position: absolute;
  top: 164px;
  left: 360px;
}

#picture1227 {
  position: absolute;
  top: 208px;
  left: 328px;
}

.background1 p {
  font-size: 24px;
  color: #ffffff;
}

#p1 {
  position: absolute;
  top: 220px;
  left: 870px;
}

#picture1402 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 165px;
}

#picture1405 {
  position: absolute;
  top: 90px;
  left: 162px;
  height: 611px;
  width: 1596px;
}

.background2 {
  position: relative;
  height: 956px;
  width: 1920px;
  background-image: url("../picture/行业优势_slices/wallhaven-od9d35_2160x1920.png");
}

#picture1303 {
  position: absolute;
  top: 202px;
  left: 160px;
}

#picture1302 {
  position: absolute;
  top: 6px;
  left: 983px;
}

#picture1410 {
  position: absolute;
  top: 138px;
  left: 190px;
}

#picture1309 {
  position: absolute;
  top: 665px;
  left: 121px;
}

#picture1321 {
  position: absolute;
  top: 162px;
  left: 240px;
}

/* 停靠时导航栏的样式 */
.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* 可以设置为半透明，以便看到下方的内容 */
  z-index: 1000;
  /* 确保导航栏在其他内容之上 */
}

.blank {
  height: 52px;
}

.rectangle319 {
  position: absolute;
  top: 50px;
  left: 124px;
}

.buttonHDDB {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #383838;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 0px 2px #F4F4F4;
  cursor: pointer;
  transition-duration: 0.4s;
  overflow: hidden;
  position: fixed;
  top: 80%;
  right: 100px;
  z-index: 1000;
}

.svgIcon {
  width: 12px;
  transition-duration: 0.4s;
}

.svgIcon path {
  fill: #ffffff;
}

.buttonHDDB:hover {
  width: 140px;
  border-radius: 50px;
  transition-duration: 0.4s;
  background-image: linear-gradient(to right, #3DA8CE, #0359A0);
  align-items: center;
}

.buttonHDDB:hover .svgIcon {
  /* width: 20px; */
  transition-duration: 0.4s;
  transform: translateY(-200%);
}

.buttonHDDB::before {
  position: absolute;
  bottom: -20px;
  content: "Back to Top";
  color: #ffffff;
  /* transition-duration: 0.4s; */
  font-size: 0px;
}

.buttonHDDB:hover::before {
  font-size: 13px;
  opacity: 1;
  bottom: unset;
  /* transform: translateY(-30px); */
  transition-duration: 0.4s;
}

@font-face {
  font-family: myfontfamily;
  src: url(阿里汉仪智能黑体.TTF);
}

/* 党建引领 */
#box8 {
  position: relative;
  height: 744px;
  width: 1920px;
}

#picture1326 {
  position: absolute;
  top: 308px;
  left: 360px;
}

.DJYL-PZ {
  width: 289px;
  height: 208px;
  position: absolute;
  top: 366px;
  left: 987px;
}

.DJYL-WJ {
  width: 238px;
  height: 324px;
  position: absolute;
  top: 308px;
  left: 1322px;
}

.DJYL-PZ:hover,
.DJYL-WJ:hover {
  transform: scale(1.04);
  transition: all 0.4s linear;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.24));
}

#picture1443 {
  position: absolute;
  bottom: 0px;
}

.bottom {
  position: absolute;
  top: 750px;
  left: 1750px;
}

/* 页尾 */
.group_4 {
  color: #ffffff;
  z-index: 0;
}

.YWtextDS {
  box-shadow: 0px -3px 6px 0px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(90deg,
      rgba(61, 168, 206, 1) 0,
      rgba(3, 89, 160, 1) 100%);
  height: 462px;
  margin-top: -1px;
  width: 1920px;
  justify-content: flex-center;
  z-index: 0;
  position: relative;
}

.YWtext span {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: bold;
}

.YWtext a {
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
}

.YWtext a:hover {
  font-weight: bold;
  /* color: #040000; */
}

/* .YWtextXWZX {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 368px;
  top: 24px;
  z-index: 1;
} */

.YWtextGYWM {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  /* left: 520px; */
  left: 368px;
  top: 24px;
  z-index: 1;
}

.YWtextJJFA {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  /* left: 672px; */
  left: 520px;
  top: 24px;
  z-index: 1;
}

.YWtextZBCG {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  /* left: 824px; */
  left: 672px;
  top: 24px;
  z-index: 1;
}

.YWtextJRWM {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  /* left: 824px; */
  left: 824px;
  top: 24px;
  z-index: 1;
}

.YWtextLXWM {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 976px;
  top: 24px;
  z-index: 1;
}

.FGline {
  width: 1200px;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 360px;
  top: 320px;
}

.DZDH {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  left: 360px;
  top: 339px;
}

.DZ {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.DZimg {
  width: 22px;
  height: 22px;
}

.DH {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.DHimg {
  width: 22px;
  height: 22px;
}

.XJJewm {
  position: absolute;
  right: 454px;
  bottom: 20px;
}

.XJJlogo {
  position: absolute;
  right: 360px;
  top: 141px;
}

/* 锚点定位 - 下移 */
#box1,
#box2,
#box3,
#box4,
#box5,
#box6,
#box7,
#box8 {
  padding-top: 120px
}