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 {
  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/Land-Acquisition/Banner.png) 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: 3rem;
}
.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);
}
/* 文字展示区域 */
.topText {
  background: #fff;
}
.topText .container .titleArea div {
  font-weight: 400;
  margin-bottom: 2rem;
}
.topText .container .titleArea div span {
  font-size: clamp(2rem, 5vw, 3.5rem);
  display: inline-block;
}
.topText .container .titleArea div span:nth-child(1) {
  color: #2d2a26;
  font-weight: 400;
}
.topText .container .titleArea div span:nth-child(2) {
  margin-left: 0.625rem;
  color: #004a98;
  font-weight: 400;
}
.topText .container .contentArea div,
.topText .container .contentArea p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #625f5c;
  margin-bottom: 1.5rem;
}
/* 业务展示区域 */
.business {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  justify-content: center;
  gap: 30px;
  padding: 80px 0;
  max-width: 1300px;
  margin: 0 auto;
}
.business .boxContain {
  display: flex;
  justify-content: space-between;
  height: 200px;
  padding: 20px;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  min-width: 300px;
  max-width: 100%;
  margin: 0 auto;
}
.business .boxContain .left {
  height: 100%;
  color: #2d2a26;
  font-size: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
}
.business .boxContain .right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 96px;
  margin-left: 15px;
}
.business .boxContain .right img {
  height: 96px;
  width: 100%;
  object-fit: contain;
  /* 确保图片完整显示 */
  max-width: 100%;
  display: block;
}
/* 引文区域 */
.citationText {
  background-color: #fff;
}
.citationText .container .contentArea {
  color: #fff;
}
.citationText .container .contentArea .laberText {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #004a98;
  font-weight: 600;
}
.citationText .container .contentArea .laberText span {
  margin-right: 1.25rem;
}
.citationText .container .contentArea p {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  color: #625f5c;
}
/* 新闻区域 */
.newsroom {
  background: #004a98;
  padding: 4rem 0;
}
.newsroom .container .mainNew a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 3rem;
}
.newsroom .container .mainNew a .left {
  height: 400px;
  overflow: hidden;
}
.newsroom .container .mainNew a .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsroom .container .mainNew a .right {
  padding: 1.5rem 0;
}
.newsroom .container .mainNew a .right h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.newsroom .container .mainNew a .right h4 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: #fff;
  margin: 1rem 0;
}
.newsroom .container .mainNew a .right .text {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.newsroom .container .mainNew a .right p {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.newsroom .container .mainNew a .right p::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.newsroom .container .mainNew a:hover .left img {
  transform: scale(1.05);
}
.newsroom .container .mainNew a:hover p::after {
  width: 100%;
}
.newsroom .container .news {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.newsroom .container .news a {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}
.newsroom .container .news .pic {
  height: 200px;
  overflow: hidden;
}
.newsroom .container .news .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.newsroom .container .news .text {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}
.newsroom .container .news h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 1rem 0;
  font-weight: 400;
}
.newsroom .container .news p {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.newsroom .container .news p::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}
.newsroom .container .news a:hover {
  transform: translateY(-10px);
}
.newsroom .container .news a:hover .pic img {
  transform: scale(1.1);
}
.newsroom .container .news a:hover p::after {
  width: 100%;
}
/* 联系区域 */
.contactArea {
  background-color: #f1efec;
  padding: 4rem 0;
}
.contactArea .container .contain2 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.contactArea .container .contain2 .left {
  flex: 1 1 50%;
  min-width: 300px;
}
.contactArea .container .contain2 .left p {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.contactArea .container .contain2 .left h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: #2d2a26;
  margin: 1.5rem 0;
}
.contactArea .container .contain2 .left a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: var(--primary-color);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 600;
}
.contactArea .container .contain2 .left a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}
.contactArea .container .contain2 .left a:hover::after {
  transform: scaleX(1);
}
.contactArea .container .contain2 .right {
  flex: 1 1 40%;
  min-width: 300px;
  height: 400px;
}
.contactArea .container .contain2 .right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
/* 底部区 */
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 {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }
}
@media (max-width: 992px) {
  .business {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
  }
  /* 汉堡菜单样式 */
  .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;
  }
  .expertise .expertiseArea {
    flex-direction: column;
  }
  .banner .content .top {
    margin-top: 3.125rem;
  }
}
@media (max-width: 768px) {
  .business {
    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) {
  .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%;
  }
}
