body {
  font-family: 'Roboto-Light-10';
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.6;
}
:root {
  --primary-color: #004a98;
  --text-dark: #2d2a26;
  --text-light: #fff;
  --transition-duration: 0.3s;
  --container-padding: 1rem;
  --section-padding: 2rem 0;
}
body {
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  color: var(--text-dark);
  line-height: 1.6;
}
/* 响应式图片 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* 添加页面锚点偏移 */
[id]:target {
  scroll-margin-top: 120px;
}
/* 响应式基础样式*/
.container,
.navbar .container,
.elevator-nav .container,
.banner .content,
.topProject .project,
.business .bigBox,
.report .reportContain,
.video,
.initiatives .initiativesBox,
.projectsArea .projectsRoom {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  padding: var(--container-padding);
}
/* 导航栏区域 */
.navbar {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0 1rem;
  transition: transform 0.3s ease-in-out;
  /* 移动端汉堡导航栏 */
  /* 导航菜单栏 */
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  padding: 0;
}
.navbar .container .logo {
  height: 3.5rem;
  width: 120px;
}
.navbar .container .logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar .mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
}
.navbar .mobile-menu-toggle:hover {
  color: #ff9800;
}
.navbar .nav-items {
  display: flex;
  list-style: none;
  transition: all var(--transition-duration);
  /* 下拉菜单样式 */
}
.navbar .nav-items .nav-item {
  position: relative;
  white-space: nowrap;
}
.navbar .nav-items .nav-item a {
  display: flex;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 0.8rem;
  transition: all 0.3s;
  align-items: center;
}
.navbar .nav-items .nav-item a p {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
}
.navbar .nav-items .nav-item a p span {
  margin-left: 5px;
}
.navbar .nav-items .dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  min-width: 12.5rem;
  transition: all var(--transition-duration);
  list-style: none;
  padding: 0.5rem 0;
}
.navbar .nav-items .dropdown .dropdown-menu li {
  padding: 0.5rem 1rem;
}
.navbar .nav-items .dropdown .dropdown-menu a {
  text-decoration: none;
  color: white;
  position: relative;
  padding: 0.5rem 1rem;
  display: block;
  font-size: 0.9rem;
}
.navbar .nav-items .dropdown .dropdown-menu a:hover {
  color: white;
  font-weight: 500;
}
.navbar .nav-items .dropdown .dropdown-menu a:before {
  content: "";
  position: absolute;
  width: 90%;
  height: 2px;
  bottom: -0.3125rem;
  left: 0;
  background: currentColor;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}
.navbar .nav-items .dropdown .dropdown-menu a:hover:before {
  visibility: visible;
  transform: scaleX(1);
}
.navbar .nav-items .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar.hidden {
  transform: translateY(-100%);
}
/* 电梯导航*/
.elevator-nav {
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.elevator-nav .container .elevator-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 0;
}
.elevator-nav .container .elevator-items li {
  margin: 0.5rem 1rem;
}
.elevator-nav .container .elevator-items a {
  color: #fff;
  font-size: 1rem;
  position: relative;
  opacity: 0.7;
  transition: var(--transition);
  text-decoration: none;
}
.elevator-nav .container .elevator-items a.active {
  opacity: 1;
}
.elevator-nav .container .elevator-items a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.elevator-nav .container .elevator-items a.active::after,
.elevator-nav .container .elevator-items a:hover::after {
  width: 100%;
}
.elevator-nav.visible {
  top: 0;
}
/* Banner区域 */
.banner {
  height: 60vh;
  min-height: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner .background-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/Projects/banner.jpg) center / cover;
}
.banner .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
}
.banner .content .top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.banner .content .top div a {
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.banner .content .top div:nth-child(1) a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.banner .content .top div:nth-child(1) a span {
  margin-left: 0.9375rem;
}
.banner .content .top div:nth-child(1) a:hover {
  color: #fff;
}
.banner .content .top div:nth-child(1) a::before {
  content: "";
  position: absolute;
  width: 80%;
  /* 改为100%宽度 */
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transform-origin: left center;
  /* 添加变换起点 */
  transform: scaleX(0);
  /* 初始状态 */
  transition: transform 0.3s ease-in-out;
}
.banner .content .top div:nth-child(1) a:hover:before {
  transform: scaleX(1);
  /* 结束状态 */
  transform-origin: left center;
  /* 可选反向动画 */
}
.banner .content .top div:nth-child(2) a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.banner .content .top div:nth-child(2) a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  /* 下划线高度 */
  background: #ffffff;
  /* 半透明下划线 */
  transform: scaleX(1);
  /* 控制下划线长度 (0-1) */
  transform-origin: center;
  transition: transform 0.3s ease;
}
.banner .content .bottom {
  margin-bottom: 2rem;
}
.banner .content .bottom h3 {
  font-size: clamp(2rem, 8vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
}
.banner .content .bottom p {
  margin-top: 1.75rem;
  color: #f6f5f2;
  font-size: 1.625rem;
  font-weight: 400;
}
/* 文字内容样式优化 */
.topText,
.citationText,
.expertise,
.topProject,
.projects,
.newsroom {
  padding: 4rem 0;
}
.citationText,
.expertise,
.topProject,
.projects {
  background: var(--dark-bg);
  color: var(--light-text);
}
/* 项目展示区域 */
.projectsArea {
  height: auto;
  width: 100%;
  background-color: #fff;
}
.projectsArea .projectsRoom {
  padding: 80px 0;
  height: auto;
  margin: 0 auto;
}
.projectsArea .projectsRoom .projects {
  height: auto;
  width: 100%;
  display: flex;
  /* 从左向右排列 */
  justify-content: flex-start;
  flex-wrap: wrap;
  overflow: hidden;
}
.projectsArea .projectsRoom .projects .project {
  height: auto;
  /* 每行3个项目 */
  width: calc(33.333% - 20px);
  /* 上下间距60px，左右间距10px */
  margin: 0 10px 60px;
  /* 初始显示 */
  display: block;
  box-sizing: border-box;
}
.projectsArea .projectsRoom .projects .project a {
  height: auto;
  width: 400px;
}
.projectsArea .projectsRoom .projects .project a .pic {
  width: 400px;
  height: 250px;
  overflow: hidden;
}
.projectsArea .projectsRoom .projects .project a .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s;
}
.projectsArea .projectsRoom .projects .project a h3 {
  color: #004a98;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}
.projectsArea .projectsRoom .projects .project a h4 {
  color: #2d2a26;
  font-size: 26px;
  font-weight: 400;
  margin-top: 10px;
}
.projectsArea .projectsRoom .projects .project a h5 {
  color: #625f5c;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}
.projectsArea .projectsRoom .projects .project a p {
  position: relative;
  display: inline-block;
  height: 24px;
  color: #004a98;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 10px;
}
.projectsArea .projectsRoom .projects .project a p span {
  font-size: 15px;
  margin-left: 15px;
}
.projectsArea .projectsRoom .projects .project a p::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #004a98;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.projectsArea .projectsRoom .projects .project a:hover img {
  transform: scale(1.2);
}
.projectsArea .projectsRoom .projects .project a:hover {
  transform: translateY(0px);
}
.projectsArea .projectsRoom .projects .project a:hover p::after {
  width: 100%;
}
.projectsArea .projectsRoom .btns {
  height: auto;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: space-evenly;
}
.projectsArea .projectsRoom .btns .left {
  height: 64px;
  width: 64px;
  background-color: #fff;
  border-radius: 0 0 20px 0;
  cursor: pointer;
  border: 1px #004a98 solid;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: transparent !important;
}
.projectsArea .projectsRoom .btns .left span {
  font-size: 20px;
  color: #004a98;
  position: relative;
  z-index: 1;
  transition: color 0.3s 0.1s;
  /* 添加0.1s延迟 */
}
.projectsArea .projectsRoom .btns .left:hover {
  border-color: #004a98;
}
.projectsArea .projectsRoom .btns .middle {
  height: 64px;
  width: auto;
}
.projectsArea .projectsRoom .btns .middle input {
  height: 64px;
  width: 64px;
  border: 1px #e8e5df solid;
  text-align: center;
  margin-right: 15px;
  color: #000;
  font-size: 19px;
  transition: all 0.3s ease;
  border: 1px solid #e8e5df;
  background: #fff;
}
.projectsArea .projectsRoom .btns .middle input:focus {
  border: 2px solid #000;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.projectsArea .projectsRoom .btns .middle .text1 {
  color: #000;
  font-size: 19px;
  height: 20px;
  line-height: 20px;
  font-weight: 600;
}
.projectsArea .projectsRoom .btns .middle .text2 {
  color: #000;
  font-size: 19px;
  height: 20px;
  line-height: 20px;
  font-weight: 600;
  margin-left: 5px;
}
.projectsArea .projectsRoom .btns .right {
  height: 64px;
  width: 64px;
  background-color: #fff;
  border-radius: 0 0 20px 0;
  cursor: pointer;
  border: 1px #004a98 solid;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: transparent !important;
}
.projectsArea .projectsRoom .btns .right span {
  font-size: 20px;
  color: #004a98;
  position: relative;
  z-index: 1;
  transition: color 0.3s 0.1s;
  /* 添加0.1s延迟 */
}
.projectsArea .projectsRoom .btns .right:hover {
  border-color: #004a98;
}
.projectsArea .projectsRoom .btns .left::before,
.projectsArea .projectsRoom .btns .right::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #004a98;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.projectsArea .projectsRoom .btns .left:hover::before,
.projectsArea .projectsRoom .btns .right:hover::before {
  transform: translateX(100%);
}
.projectsArea .projectsRoom .btns .left:hover span,
.projectsArea .projectsRoom .btns .right:hover span {
  color: #fff !important;
}
/* 底部区 */
footer {
  background-color: #2d2a26;
}
footer .container .logoArea {
  max-width: 10rem;
  height: 120px;
  width: 160px;
  margin-bottom: 1.25rem;
}
footer .container .logoArea a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
footer .container .bottomNav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4rem;
}
footer .container .bottomNav .list {
  flex: 1;
  min-width: 200px;
}
footer .container .bottomNav .list h2 {
  height: 52px;
  width: 180px;
  font-size: 19px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 24px;
}
footer .container .bottomNav .list h2 a {
  color: #fff;
  position: relative;
  /* 确保伪元素定位基准 */
  display: inline-block;
  /* 保持下划线宽度正确 */
  text-decoration: none;
}
footer .container .bottomNav .list h2 a::before {
  content: "";
  position: absolute;
  width: 100%;
  /* 改为100%宽度 */
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transform-origin: center;
  /* 添加变换起点 */
  transform: scaleX(0);
  /* 初始状态 */
  transition: transform 0.3s ease-in-out;
}
footer .container .bottomNav .list h2 a:hover::before {
  transform: scaleX(1);
  /* 结束状态 */
  transform-origin: center;
  /* 可选反向动画 */
}
footer .container .bottomNav .list ul li {
  margin-bottom: 15px;
}
footer .container .bottomNav .list ul li a {
  color: #e8e5df;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  /* 确保伪元素定位基准 */
  display: inline-block;
  /* 保持下划线宽度正确 */
  text-decoration: none;
}
footer .container .bottomNav .list ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  /* 改为100%宽度 */
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #e8e5df;
  transform-origin: center;
  /* 添加变换起点 */
  transform: scaleX(0);
  /* 初始状态 */
  transition: transform 0.3s ease-in-out;
}
footer .container .bottomNav .list ul li a:hover::before {
  transform: scaleX(1);
  /* 结束状态 */
  transform-origin: center;
  /* 可选反向动画 */
}
footer .container .copyright {
  margin-bottom: 0.9375rem;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
footer .container .copyright p {
  color: #e8e5df;
  font-size: 20px;
}
/* 响应式媒体查询 */
@media (min-width: 1200px) {
  .business .bigBox {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
  .business .bigBox .boxContain {
    width: 25rem;
  }
  .expertise .container .expertiseArea {
    flex-direction: row;
    gap: 2rem;
  }
  .expertise .container .expertiseArea .left {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
  }
  .expertise .container .expertiseArea .left button {
    width: 100%;
    margin-bottom: 1rem;
  }
  .expertise .container .expertiseArea .left button p {
    font-size: 1.25rem;
  }
  .expertise .container .expertiseArea .right {
    flex: 0 0 65%;
  }
  /* 确保按钮内的箭头在选中/悬停时可见 */
  .expertise .expertiseArea .left button.selected p span,
  .expertise .expertiseArea .left button:hover p span {
    opacity: 1;
  }
}
@media (max-width: 1200px) {
  .projectsArea .projectsRoom .projects .project {
    width: calc(50% - 20px);
  }
  .video {
    padding: 5rem 2.5rem;
  }
  .video .pic {
    width: 37.5rem;
    height: 30rem;
    overflow: hidden;
  }
  .video .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video .text {
    width: 21.875rem;
  }
  .expertise .container .expertiseArea .left button p {
    font-size: 1.625rem;
  }
  .topProject .project {
    height: 50vh;
  }
  .topProject .project .pic {
    height: 90%;
  }
  .topProject .project .projectContent {
    bottom: 0rem;
  }
  .business .bigBox .boxContain {
    width: 22.5rem;
  }
}
@media (max-width: 992px) {
  .projectsArea .projectsRoom .projects .project {
    width: calc(50% - 20px);
  }
  /* 报告区域响应式 */
  .report .reportContain .top {
    flex-direction: column;
    gap: 2rem;
  }
  .report .reportContain .top .left,
  .report .reportContain .top .right {
    width: 100%;
  }
  .report .reportContain .bottom h3 {
    font-size: 2rem;
  }
  /* 图片视频区域响应式 */
  .video {
    flex-direction: column;
    gap: 2rem;
  }
  .video .text,
  .video .pic {
    width: 100%;
  }
  .expertise .container .expertiseArea .left {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  .expertise .container .expertiseArea .left button p {
    font-size: 1rem;
  }
  /* 专业区域上的引文样式 */
  .citationText .container .contentArea h3 {
    font-size: 2rem;
  }
  .business .bigBox {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
  .business .bigBox .boxContain {
    width: 18.75rem;
  }
  /* 汉堡菜单样式 */
  .mobile-menu-toggle {
    display: block !important;
  }
  .nav-items {
    position: fixed;
    top: 3.75rem;
    left: -100%;
    width: 80%;
    height: calc(100vh);
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 2rem 1rem;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }
  /* 增加选择器权重 */
  .nav-items.active {
    left: 0 !important;
  }
  .nav-item {
    margin: 0.5rem 0;
    width: 100%;
  }
  .dropdown-menu {
    position: static !important;
    background: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    min-width: auto !important;
    padding: 0 !important;
    margin-top: 0.5rem;
    display: none;
  }
  .dropdown-menu.active {
    display: block !important;
  }
  .dropdown-menu li {
    padding: 0.5rem 0 !important;
  }
  .dropdown-menu a {
    padding-left: 1.5rem !important;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
    transform: none;
    top: auto;
  }
  .banner {
    min-height: 500px;
  }
  .banner .top div:nth-child(2) {
    margin-left: 0;
  }
  .banner .content .bottom p {
    font-size: 1rem;
  }
  .expertise .expertiseArea {
    flex-direction: column;
  }
  .banner .content .top {
    margin-top: 3.125rem;
  }
}
@media (max-width: 768px) {
  .projectsArea .projectsRoom .projects .project {
    width: calc(100% - 20px);
  }
  /* 移动端按钮样式优化 */
  .projectsArea .projectsRoom .btns .left,
  .projectsArea .projectsRoom .btns .right {
    width: 50px;
    height: 50px;
  }
  .projectsArea .projectsRoom .btns .middle input {
    width: 50px;
    height: 50px;
  }
  /* 导航电梯栏样式 */
  .elevator-nav .container .elevator-items li {
    width: 5rem;
  }
  /* 措施区域响应式 */
  .initiatives .initiativesBox .infoCard {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .initiatives .initiativesBox .infoCard .box {
    width: 100%;
    max-width: 400px;
  }
  .initiatives .initiativesBox .infoCard .box .pic {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  /* 报告区域进一步优化 */
  .report .reportContain .top {
    margin-bottom: 40px;
  }
  .report .reportContain .top .left h3 {
    font-size: 2rem;
  }
  /* 图片视频区域优化 */
  .video .text h3 {
    font-size: 2rem;
  }
  .video .text p {
    font-size: 1rem;
  }
  .expertise .container .expertiseArea .left {
    grid-template-columns: 1fr;
  }
  .business .bigBox {
    grid-template-columns: 1fr;
  }
  .mobile-menu-toggle {
    display: block;
  }
  body {
    padding: 0;
  }
  .banner,
  .topText,
  .citationText,
  .expertise,
  .topProject,
  .projects,
  .newsroom,
  .contactArea,
  footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .banner .content {
    padding: 1rem;
  }
  .banner .top {
    flex-direction: column;
    gap: 0.5rem;
  }
  /* 文字展示区域 */
  .topProject {
    height: 60vh;
  }
  .topProject .project {
    height: 100% !important;
  }
  .topProject .project .pic {
    height: 70%;
    width: 85%;
  }
  .topProject .project .projectContent {
    padding: 1.5rem;
    bottom: 5rem;
  }
  .contain2 .right {
    height: 300px;
  }
  .newsroom .mainNew .left {
    height: 300px;
  }
}
@media (max-width: 480px) {
  /* 项目列表展示区域 */
  .projectsArea .projectsRoom .projects .project a {
    width: 100%;
  }
  .projectsArea .projectsRoom .projects .project a .pic {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .projectsArea .projectsRoom .projects .project a h4 {
    font-size: 22px;
  }
  .projectsArea .projectsRoom .projects .project a h5 {
    font-size: 18px;
  }
  /* 措施区域手机优化 */
  .initiatives .initiativesBox .label h3 {
    font-size: 2.5rem;
  }
  .initiatives .initiativesBox .label p {
    font-size: 1rem;
  }
  /* 报告区域手机优化 */
  .report .reportContain .top .left h3 {
    font-size: 1.8rem;
  }
  .report .reportContain .top .left p {
    font-size: 1rem;
  }
  .report .reportContain .bottom h3 {
    font-size: 1.5rem;
  }
  /* 图片视频区域手机优化 */
  .video {
    padding: 2.5rem;
  }
  .video .text h3 {
    font-size: 1.8rem;
  }
  .navbar .container {
    height: 4rem;
  }
  .navbar .logo {
    height: 2.5rem;
  }
  .banner {
    min-height: 400px;
  }
  .banner .bottom h3 {
    font-size: 2.5rem;
  }
  .topText,
  .citationText,
  .expertise,
  .topProject,
  .projects,
  .newsroom {
    padding: 3rem 0;
  }
  .expertise .left button {
    flex: 1 1 100%;
  }
}
