: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;
  margin: 0;
  background: #f0f4f8;
}
/* 响应式基础样式 */
.contain,
.navbar .container,
.banner .container,
.citation .container,
.capabilities .container,
.introduce .container,
.resources .container,
.page .container,
.contact .container,
footer .container,
footer .copyright {
  max-width: 1500px;
  width: 90%;
  margin: 0 auto;
  padding: var(--container-padding);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* 导航栏区域 */
.navbar {
  background-color: #002b49;
  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: 7.5rem;
  padding: 0;
  position: relative;
}
.navbar .container .logo {
  height: 3.5rem;
  width: 120px;
}
.navbar .container .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.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 {
  margin-left: 30px;
  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 .nav-item:hover {
  background-color: #163e6a;
}
.navbar .nav-items .dropdown .dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  top: 5.4rem;
  left: 0;
  background-color: #163e6a;
  width: 100vw;
  transition: all var(--transition-duration);
  list-style: none;
}
.navbar .nav-items .dropdown .dropdown-menu .dropdown-container {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.navbar .nav-items .dropdown .dropdown-menu .dropdown-container li {
  width: 33.33%;
  padding: 0.5rem 0;
  /* 移除左右内边距 */
  box-sizing: border-box;
}
.navbar .nav-items .dropdown .dropdown-menu .dropdown-container a {
  padding: 0.5rem 1rem;
  /* 添加左右内边距 */
}
.navbar .nav-items .dropdown .dropdown-menu li {
  width: 100%;
  padding: 0.5rem 0;
}
.navbar .nav-items .dropdown .dropdown-menu a {
  text-decoration: none;
  color: #8b9fb5;
  position: relative;
  padding: 0.5rem;
  display: block;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.navbar .nav-items .dropdown .dropdown-menu a:hover {
  color: #fff;
  border: 1px solid white;
}
.navbar .nav-items .dropdown .dropdown-menu .laberText {
  color: #fff;
  width: 100%;
  padding: 0.5rem 0;
  margin-bottom: 1rem;
  display: block;
}
.navbar .nav-items .dropdown .dropdown-menu .laberText .laber1 {
  display: inline-block;
  /* 使边框只包裹文本 */
  border-bottom: 2px solid #007bff;
  padding-bottom: 0.5rem;
  /* 添加底部内边距 */
}
.navbar .nav-items .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 5.4rem;
}
/* banner区域 */
.banner {
  height: 700px;
  width: 100%;
  background: url(../Image/Conventional-PCB/banner.jpg) center / cover;
}
.banner .container {
  position: relative;
  height: 100%;
  width: 90%;
}
.banner .container .text {
  position: absolute;
  align-items: center;
  top: 50%;
  height: auto;
  width: 100%;
}
.banner .container .text p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
}
.banner .container .text h3 {
  color: #fff;
  height: auto;
  font-size: 70px;
  padding: 32px 0;
}
.banner .container .text span {
  font-size: 24px;
  font-weight: 400;
  color: #fff;
}
/* 引文区域 */
.citation {
  background-color: #fff;
  height: auto;
  width: 100%;
}
.citation .container {
  position: relative;
  height: auto;
  padding: 60px 16px 80px;
  border-bottom: 1px #ebebeb solid;
}
.citation .container h3 {
  width: 100%;
  font-size: 50px;
  color: #00205b;
  text-align: left;
  font-weight: 400;
  margin-bottom: 50px;
}
.citation .container p {
  width: 100%;
  font-size: 22px;
  color: #586274;
  text-align: left;
  margin-bottom: 20px;
}
.citation .container .pic {
  position: absolute;
  bottom: -12px;
  right: 50%;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 2px #ececec solid;
  text-align: center;
  background-color: #fff;
}
.citation .container .pic span {
  font-size: 16px;
  color: #fa6400;
  line-height: 28px;
  font-weight: 600;
}
/* capabilities区域 */
.capabilities {
  height: auto;
  width: 100%;
  background-color: #fff;
}
.capabilities .container {
  position: relative;
  height: auto;
  padding: 60px 16px 80px;
  border-bottom: 1px #ebebeb solid;
}
.capabilities .container .main-title {
  color: #fa6400;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
}
.capabilities .container .ContentBox {
  height: auto;
  width: 100%;
  /* 展开状态下的detail容器 */
}
.capabilities .container .ContentBox .capabilityContainer {
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.125);
  padding: 50px 70px 0px;
  margin-bottom: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* 添加阴影效果 */
  transition: all 0.3s ease;
  /* 添加过渡动画 */
  overflow: hidden;
  /* 隐藏溢出内容 */
}
.capabilities .container .ContentBox .capabilityContainer .subheading {
  height: 45px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  cursor: pointer;
}
.capabilities .container .ContentBox .capabilityContainer .subheading h3 {
  color: #00205b;
  font-size: 22px;
  font-weight: 700;
  line-height: 45px;
}
.capabilities .container .ContentBox .capabilityContainer .subheading span {
  font-size: 24px;
  color: #4CAF50;
  line-height: 45px;
  transition: all 0.5s;
}
.capabilities .container .ContentBox .capabilityContainer .detail {
  height: auto;
  width: 100%;
  max-height: 0;
  /* 初始高度为0 */
  overflow: hidden;
  /* 隐藏内容 */
  transition: max-height 0.5s ease;
  /* 展开动画 */
}
.capabilities .container .ContentBox .capabilityContainer .detail ul {
  list-style-type: disc;
  margin-left: 40px;
}
.capabilities .container .ContentBox .capabilityContainer .detail ul li {
  font-size: 18px;
  color: #586274;
  margin-bottom: 10px;
  font-weight: 300;
}
.capabilities .container .ContentBox .capabilityContainer .detail ul li::marker {
  color: #007bff;
}
.capabilities .container .ContentBox .capabilityContainer.active .detail {
  max-height: 500px;
  margin-bottom: 50px;
  /* 足够容纳内容的高度 */
}
.capabilities .container .ContentBox .capabilityContainer.active .subheading span {
  transform: rotate(180deg);
  /* 展开时旋转180度 */
}
.capabilities .container .pic {
  position: absolute;
  bottom: -12px;
  right: 50%;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 2px #ececec solid;
  text-align: center;
  background-color: #fff;
}
.capabilities .container .pic span {
  font-size: 16px;
  color: #fa6400;
  line-height: 28px;
  font-weight: 600;
}
/* 介绍区域 */
.introduce {
  height: auto;
  width: 100%;
  background-color: #fff;
}
.introduce .container {
  height: auto;
  position: relative;
  padding: 60px 16px 80px;
  border-bottom: 1px #ebebeb solid;
}
.introduce .container .main-title {
  color: #fa6400;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
}
.introduce .container .introduceBox {
  height: auto;
  width: 100%;
}
.introduce .container .introduceBox ul {
  margin-left: 40px;
  list-style-type: disc;
}
.introduce .container .introduceBox ul li {
  font-size: 18px;
  font-weight: 300;
  color: #586274;
  margin-bottom: 10px;
}
.introduce .container .introduceBox ul li::marker {
  color: #007bff;
}
.introduce .container .pic {
  position: absolute;
  bottom: -12px;
  right: 50%;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 2px #ececec solid;
  text-align: center;
  background-color: #fff;
}
.introduce .container .pic span {
  font-size: 16px;
  color: #fa6400;
  line-height: 28px;
  font-weight: 600;
}
/* 资源区域 */
.resources {
  height: auto;
  width: 100%;
  background-color: #fff;
}
.resources .container {
  position: relative;
  height: auto;
  padding: 60px 16px 80px;
  border-bottom: 1px #ebebeb solid;
}
.resources .container .main-title {
  color: #fa6400;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
}
.resources .container .resourcesBox {
  display: flex;
  height: auto;
  width: 100%;
}
.resources .container .resourcesBox .resourcesBook {
  height: auto;
  width: 360px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
  margin-right: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* 添加过渡效果 */
}
.resources .container .resourcesBox .resourcesBook .laber2 {
  display: flex;
  justify-content: space-between;
  height: 60px;
}
.resources .container .resourcesBox .resourcesBook .laber2 h3 {
  color: #183c6a;
  font-weight: 300;
  font-size: 20px;
}
.resources .container .resourcesBox .resourcesBook .laber2 span {
  color: #183c6a;
  font-weight: 300;
  font-size: 20px;
}
.resources .container .resourcesBox .resourcesBook h3 {
  height: 120px;
  font-size: 24px;
  color: #00205b;
  font-weight: 400;
  margin-bottom: 20px;
}
.resources .container .resourcesBox .resourcesBook .middle {
  height: 180px;
  width: 300px;
}
.resources .container .resourcesBox .resourcesBook .middle img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.resources .container .resourcesBox .resourcesBook .bottom1 {
  height: 40px;
  margin-top: 20px;
}
.resources .container .resourcesBox .resourcesBook .bottom1 p {
  text-align: right;
  font-size: 18px;
  color: #fa6400;
}
.resources .container .resourcesBox .resourcesBook .bottom1 p span {
  margin-right: 18px;
}
.resources .container .resourcesBox .resourcesBook:hover {
  transform: translateY(-5px);
  /* 上移5px */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  /* 增强阴影效果 */
}
.resources .container .pic {
  position: absolute;
  bottom: -12px;
  right: 50%;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 2px #ececec solid;
  text-align: center;
  background-color: #fff;
}
.resources .container .pic span {
  font-size: 16px;
  color: #fa6400;
  line-height: 28px;
  font-weight: 600;
}
/* 相关页面链接区域 */
.page {
  background-color: #fff;
  padding: 60px 0;
}
.page .container {
  position: relative;
}
.page .container .main-title {
  color: #fa6400;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: center;
}
.page .container .pageBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* 改为左对齐 */
  gap: 30px;
}
.page .container .pageBox .pageContent {
  position: relative;
  display: block;
  width: calc(30% - 30px);
  /* 3列布局 */
  height: 380px;
  margin: 0 15px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-duration), box-shadow var(--transition-duration);
  /* 渐变覆盖层 */
}
.page .container .pageBox .pageContent .back-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.page .container .pageBox .pageContent .back-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.page .container .pageBox .pageContent .back-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  z-index: 1;
}
.page .container .pageBox .pageContent h3 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  padding: 0 30px;
  font-size: 32px;
  color: #fff;
  font-weight: 500;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 0;
}
.page .container .pageBox .pageContent p {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  padding: 0 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  z-index: 2;
  display: flex;
  align-items: center;
  margin: 0;
}
.page .container .pageBox .pageContent p span {
  display: inline-block;
  margin-right: 15px;
  transition: transform var(--transition-duration);
}
.page .container .pageBox .pageContent:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.page .container .pageBox .pageContent:hover .back-img img {
  transform: scale(1.05);
}
/* 联系区域 */
.contact {
  height: auto;
  width: 100%;
  background-color: #f9f9f9;
  padding: 60px 0;
}
.contact .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.contact .container .text2 {
  flex: 1;
  min-width: 300px;
}
.contact .container .text2 h3 {
  color: #fa6400;
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.contact .container .text2 p {
  color: #586274;
  font-size: 1.1rem;
  line-height: 1.8;
}
.contact .container .contactArea {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  /* 输入框容器 */
  /* 浮动标签 */
  /* 输入框聚焦/有内容时标签上移 */
}
.contact .container .contactArea .inputBox input {
  width: 100%;
  padding: 15px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  transition: all 0.3s;
}
.contact .container .contactArea .inputBox input:focus {
  border-color: #004a98;
  box-shadow: 0 0 0 3px rgba(0, 74, 152, 0.1);
  outline: none;
}
.contact .container .contactArea .inputBox select {
  width: 100%;
  padding: 15px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  transition: all 0.3s;
}
.contact .container .contactArea .inputBox select:focus {
  border-color: #004a98;
  box-shadow: 0 0 0 3px rgba(0, 74, 152, 0.1);
  outline: none;
}
.contact .container .contactArea .inputBox .error-message {
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: #c33339;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.contact .container .contactArea .inputBox.error input,
.contact .container .contactArea .inputBox.error select {
  border-color: #c33339;
}
.contact .container .contactArea .textBox textarea {
  width: 100%;
  padding: 15px 15px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  transition: all 0.3s;
  height: 150px;
  resize: vertical;
}
.contact .container .contactArea .textBox textarea:focus {
  border-color: #004a98;
  box-shadow: 0 0 0 3px rgba(0, 74, 152, 0.1);
  outline: none;
}
.contact .container .contactArea .textBox .error-message {
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: #c33339;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.contact .container .contactArea .textBox.error textarea {
  border-color: #c33339;
}
.contact .container .contactArea .inputBox,
.contact .container .contactArea .textBox {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 28px;
  /* 增加底部空间 */
}
.contact .container .contactArea .inputBox .text3,
.contact .container .contactArea .textBox .text4 {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #96a1b6;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
  background: transparent;
  padding: 0 5px;
}
.contact .container .contactArea .inputBox.active .text3,
.contact .container .contactArea .textBox.active .text4 {
  top: -10px;
  font-size: 0.85rem;
  color: #004a98;
  background: white;
  z-index: 3;
}
.contact .container .contactArea .textBox .text4 {
  top: 25px;
  transform: none;
}
.contact .container .contactArea .submit button {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
}
.contact .container .contactArea .submit button:hover {
  background-color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* 底部区域 */
footer {
  position: relative;
  padding: 60px 0;
  background-color: #002a49;
  width: 100%;
  height: auto;
  /* 版权区域 */
  /* 返回顶部工具 */
}
footer .container {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  /* 信息栏1 */
  /* 信息栏2 、3*/
  /* 信息栏4 */
}
footer .container .box {
  height: auto;
  width: 25%;
  position: relative;
}
footer .container .box:before {
  content: '';
  position: absolute;
  right: -1px;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: #fff;
}
footer .container .box:nth-child(1) {
  padding: 0 1.5rem;
}
footer .container .box:nth-child(1) .top {
  display: flex;
  height: 50px;
  width: 100%;
}
footer .container .box:nth-child(1) .top a {
  height: 100%;
  width: 50%;
}
footer .container .box:nth-child(1) .top a img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
footer .container .box:nth-child(1) .top .text {
  font-size: 16px;
  padding-left: 2rem;
  height: 100%;
  width: 50%;
  color: #fff;
  border-left: #004a98 1px solid;
}
footer .container .box:nth-child(1) .top .text h4 {
  font-weight: 300;
}
footer .container .box:nth-child(1) .top .text h4 span {
  font-weight: 700;
}
footer .container .box:nth-child(1) .bottom {
  color: #fff;
  font-size: 0.875rem;
  margin-top: 30px;
}
footer .container .box:nth-child(2),
footer .container .box:nth-child(3) {
  padding: 0 1.5rem;
}
footer .container .box:nth-child(2) ul,
footer .container .box:nth-child(3) ul {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 80px 20px;
}
footer .container .box:nth-child(2) ul a,
footer .container .box:nth-child(3) ul a {
  font-size: 20px;
  color: #fff;
  transform: all 0.8s;
}
footer .container .box:nth-child(2) ul a:hover,
footer .container .box:nth-child(3) ul a:hover {
  color: #163e6a;
}
footer .container .box:nth-child(4) {
  padding: 0 1.5rem;
}
footer .container .box:nth-child(4) .laber {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
footer .container .box:nth-child(4) p {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 14px;
}
footer .container .box:nth-child(4) .form {
  position: relative;
  padding-bottom: 25px;
  /* 为错误提示预留空间 */
  /* 创建背景填充层 */
  /* 悬停时触发填充动画 */
  /* 错误状态样式 */
}
footer .container .box:nth-child(4) .form .input-container {
  position: relative;
  margin-bottom: 1.8rem;
  /* 增加间距防止重叠 */
  /* 错误提示样式 */
  /* 输入框聚焦效果 */
  /* 输入框聚焦时隐藏placeholder */
  /* 输入框中placholder样式 */
}
footer .container .box:nth-child(4) .form .input-container .error-message {
  position: absolute;
  bottom: -1.5rem;
  /* 在输入框下方显示 */
  left: 0;
  color: #c33339;
  font-size: 0.75rem;
  font-weight: 600;
  display: none;
  width: 100%;
}
footer .container .box:nth-child(4) .form .input-container input {
  height: 40px;
  width: 100%;
  border: 1px #fff solid;
  margin-bottom: 15px;
  background-color: #19405b;
  padding: 1rem 0.5rem;
  color: #fff;
  font-size: 20px;
}
footer .container .box:nth-child(4) .form .input-container input:focus {
  border: 2px solid #000 !important;
  outline: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .container .box:nth-child(4) .form .input-container input:focus::-webkit-input-placeholder {
  color: transparent;
}
footer .container .box:nth-child(4) .form .input-container input:focus::-moz-placeholder {
  color: transparent;
}
footer .container .box:nth-child(4) .form .input-container input:focus:-ms-input-placeholder {
  color: transparent;
}
footer .container .box:nth-child(4) .form .input-container input:focus::placeholder {
  color: transparent;
}
footer .container .box:nth-child(4) .form .input-container input::placeholder {
  margin-left: 10px;
  color: #bac5cd;
  font-size: 20px;
}
footer .container .box:nth-child(4) .form .input-container input.valid {
  border-color: #4CAF50 !important;
  /* 验证通过 - 绿色 */
}
footer .container .box:nth-child(4) .form .input-container input.invalid {
  border-color: #F44336 !important;
  /* 验证失败 - 红色 */
}
footer .container .box:nth-child(4) .form button {
  position: relative;
  height: 40px;
  width: 100%;
  background-color: #002a49;
  color: #fff;
  border: 1px #fff solid;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
footer .container .box:nth-child(4) .form button span {
  position: relative;
  z-index: 1;
  transition: color 0.3s 0.1s;
}
footer .container .box:nth-child(4) .form button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
footer .container .box:nth-child(4) .form button:hover::before {
  transform: translateX(100%);
}
footer .container .box:nth-child(4) .form button:hover span {
  color: #fff !important;
}
footer .container .box:nth-child(4) .form .input-container.error input {
  border-color: #c33339;
}
footer .copyright {
  height: 50px;
  width: 100%;
  padding: 0;
}
footer .copyright span {
  color: #fff;
  height: 100%;
  width: 100%;
  right: 10px;
  font-size: 16px;
  line-height: 50px;
  display: block;
  text-align: right;
}
footer .tool {
  display: block;
  height: 48px;
  width: 90px;
  position: fixed;
  right: 60px;
  bottom: 60px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}
footer .tool img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
footer .tool.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
footer .tool:hover img {
  transform: translateY(-5px);
}
/* 响应式调整 */
@media (max-width: 1450px) {
  footer .container .box:nth-child(1) .top .text {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  /* 页面链接区域 */
  .page .container .pageBox {
    justify-content: center;
  }
  .page .container .pageBox .pageContent h3 {
    font-size: 24px;
  }
  .page .container .pageBox .pageContent {
    width: calc(33.333% - 30px);
    /* 二列布局 */
  }
  /* 联系区域 */
  .contact .container {
    gap: 30px;
  }
  /* footer区域 */
  footer .container .box:nth-child(2) ul,
  footer .container .box:nth-child(3) ul {
    margin: 40px 20px;
  }
  footer .container .box:nth-child(1) .top .text {
    font-size: 12px;
  }
  footer .tool {
    right: 25px;
    bottom: 120px;
  }
  footer .copyright {
    padding-right: 1.25rem;
  }
}
@media (max-width: 992px) {
  /* 顶部导航区域 */
  .navbar .mobile-menu-toggle {
    display: block;
  }
  .navbar .nav-items {
    position: fixed;
    top: 7.5rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 7.5rem);
    background-color: #002b49;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
  }
  .navbar .nav-items.active {
    transform: translateX(0);
  }
  .navbar .nav-items .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  .navbar .nav-items .nav-item a {
    justify-content: center;
  }
  .navbar .nav-items .dropdown .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-top: 10px;
  }
  .navbar .nav-items .dropdown .dropdown-menu.active {
    display: block;
  }
  .navbar .nav-items .dropdown .dropdown-menu .dropdown-container {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .navbar .nav-items .dropdown .dropdown-menu .dropdown-container li {
    width: 100%;
    padding: 0.5rem 0;
  }
  .navbar .nav-items .dropdown .dropdown-menu .dropdown-container a {
    padding: 0.8rem 1rem;
    color: #8b9fb5;
  }
  .dropdown-toggle {
    position: relative;
  }
  .dropdown-toggle::after {
    content: ">";
    position: absolute;
    right: 15px;
    transform: rotate(90deg);
    transition: transform 0.3s;
  }
  .dropdown-toggle.active::after {
    transform: rotate(-90deg);
  }
  /* banner区域 */
  .banner {
    height: 400px;
  }
  .banner .container .text h3 {
    font-size: 2.5rem;
    padding: 24px 0;
    height: auto;
    line-height: 1.2;
    /* 增加行高 */
  }
  .banner .container .text span {
    font-size: 1.2rem;
  }
  /* 资源区域 */
  .resources .container .resourcesBox {
    flex-wrap: wrap;
    justify-content: center;
  }
  .resources .container .resourcesBox .resourcesBook {
    width: calc(50% - 30px);
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 30px;
  }
  /* 页面链接区域 */
  .page .container .main-title {
    font-size: 42px;
  }
  .page .container .pageBox .pageContent {
    width: calc(50% - 30px);
    /* 两列布局 */
  }
  .page .container .pageBox .pageContent h3 {
    font-size: 28px;
  }
  /* 联系区域 */
  .contact .container {
    flex-direction: column;
    gap: 40px;
  }
  .contact .text2,
  .contact .contactArea {
    flex: 1 0 100%;
    min-width: 100%;
  }
  .contact .text2 h3 {
    font-size: 2.2rem;
  }
  .contact .text2 p {
    font-size: 1rem;
  }
  /* footer区域 */
  footer .container {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  footer .container .box {
    width: 50%;
    margin-bottom: 30px;
  }
  /* 移除分隔线 */
  footer .container .box:before {
    display: none;
  }
  footer .container .box:nth-child(1),
  footer .container .box:nth-child(4) {
    width: 100%;
  }
  footer .container .box:nth-child(2) ul,
  footer .container .box:nth-child(3) ul {
    margin: 20px 0;
  }
  footer .container .box:nth-child(1) .top .text {
    padding-left: 1rem;
  }
  footer .copyright span {
    text-align: center;
  }
  footer .tool {
    right: 20px;
    bottom: 20px;
    height: 42px;
    width: 80px;
  }
}
@media (max-width: 768px) {
  /* 全局优化 */
  body {
    font-size: 14px;
  }
  /* banner区域 */
  .banner {
    height: 300px;
  }
  .banner .container .text h3 {
    font-size: 2rem;
    padding: 16px 0;
  }
  .banner .container .text p {
    font-size: 14px;
  }
  .banner .container .text span {
    font-size: 1rem;
  }
  /* 引文区域 */
  .citation .container h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .citation .container p {
    font-size: 1.1rem;
  }
  /* capability区域 */
  .capabilities .container .ContentBox .capabilityContainer {
    padding: 30px 20px;
    /* 小屏幕减少内边距 */
  }
  .capabilities .container .ContentBox .capabilityContainer .subheading {
    margin-bottom: 30px;
    /* 减少间距 */
  }
  .capabilities .container .ContentBox .capabilityContainer.active .detail {
    max-height: 800px;
    /* 小屏幕需要更大的高度 */
  }
  /* 资源区域 */
  .resources .container .resourcesBox {
    flex-direction: column;
    align-items: center;
  }
  .resources .container .resourcesBox .resourcesBook {
    width: 100%;
    max-width: 400px;
    margin-right: 0;
    margin-left: 0;
  }
  .resources .container .resourcesBox .resourcesBook .middle {
    width: 100%;
    height: auto;
    max-height: 200px;
  }
  /* 页面链接区域 */
  .page .container .main-title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .page .container .pageBox .pageContent {
    width: calc(100% - 30px);
    /* 单列布局 */
    height: 320px;
    /* 两列布局 */
  }
  .page .container .pageBox .pageContent h3 {
    font-size: 24px;
    top: 20px;
  }
  .page .container .pageBox .pageContent p {
    bottom: 20px;
    font-size: 16px;
  }
  /* 联系区域 */
  .contact {
    padding: 40px 0;
  }
  .contact .text2 h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .contact .contactArea {
    padding: 25px;
  }
  .contact .container .contactArea .inputBox,
  .contact .container .contactArea .textBox {
    margin-bottom: 1.2rem;
    padding-bottom: 24px;
  }
  .contact .container .contactArea input,
  .contact .container .contactArea select,
  .contact .container .contactArea textarea {
    padding: 12px;
    font-size: 0.95rem;
  }
  .contact .container .contactArea .submit button {
    padding: 12px;
    font-size: 1rem;
  }
  /* footer区域 */
  footer .container {
    flex-wrap: wrap;
  }
  footer .container .box {
    width: 50% !important;
    margin-bottom: 2rem;
  }
  footer .container .box:nth-child(1),
  footer .container .box:nth-child(4) {
    width: 100%;
  }
  footer .container .box:nth-child(2) ul,
  footer .container .box:nth-child(3) ul {
    margin: 20px 0;
  }
  footer .container .box:nth-child(1) .top {
    flex-direction: column;
    height: auto;
  }
  footer .container .box:nth-child(1) .top a,
  footer .container .box:nth-child(1) .top .text {
    width: 100%;
    padding: 10px 0;
  }
  footer .container .box:nth-child(1) .top .text {
    border-left: none;
    border-top: 1px solid #004a98;
    padding-top: 15px;
  }
  footer .container .box:nth-child(4) .form input {
    font-size: 16px;
  }
  footer .tool {
    right: 15px;
    bottom: 15px;
    height: 36px;
    width: 70px;
  }
}
@media (max-width: 576px) {
  /* banner区域 */
  .banner {
    height: 300px;
  }
  .banner .container .text h3 {
    font-size: 1.8rem;
    padding: 12px 0;
    text-align: left;
  }
  /* capability区域 */
  .capabilities .container .ContentBox .capabilityContainer {
    padding: 20px 15px;
    /* 超小屏幕进一步减少内边距 */
  }
  .capabilities .container .ContentBox .capabilityContainer .subheading {
    margin-bottom: 0;
  }
  .capabilities .container .ContentBox .capabilityContainer.active .detail {
    margin-bottom: 10px;
  }
  .capabilities .container .ContentBox .capabilityContainer.active .detail ul {
    font-size: 14px;
  }
  .capabilities .container .ContentBox .capabilityContainer.active .detail ul li {
    font-size: 14px;
  }
  .capabilities .container .ContentBox .capabilityContainer .subheading h3 {
    font-size: 10px;
    /* 减小标题字体大小 */
  }
  /* 介绍区域 */
  .introduce .container .main-title {
    font-size: 30px;
  }
  /* 资源区域 */
  .resources .container .resourcesBox .resourcesBook {
    padding: 15px;
  }
  .resources .container .resourcesBox .resourcesBook h3 {
    font-size: 20px;
    height: auto;
    min-height: 80px;
  }
  .resources .container .resourcesBox .resourcesBook .laber2 h3,
  .resources .container .resourcesBox .resourcesBook .laber2 span {
    font-size: 16px;
  }
  .resources .container .resourcesBox .resourcesBook .bottom1 p {
    font-size: 16px;
  }
  /* 页面链接区域 */
  .page .container .main-title {
    font-size: 30px;
  }
  .page .container .pageBox {
    gap: 20px;
  }
  .page .container .pageBox .pageContent {
    height: 280px;
    /* 两列布局 */
  }
  .page .container .pageBox .pageContent h3 {
    font-size: 20px;
    padding: 0 20px;
  }
  .page .container .pageBox .pageContent p {
    padding: 0 20px;
    font-size: 15px;
  }
  /* 联系区域 */
  .contact {
    padding: 30px 0;
  }
  .contact .text2 h3 {
    font-size: 1.6rem;
  }
  .contact .contactArea {
    padding: 20px;
  }
  .contact .container .contactArea .inputBox,
  .contact .container .contactArea .textBox {
    margin-bottom: 1rem;
    padding-bottom: 22px;
  }
  .contact .container .contactArea input,
  .contact .container .contactArea select,
  .contact .container .contactArea textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  .contact .container .contactArea textarea {
    height: 120px;
  }
  .contact .container .contactArea .submit button {
    padding: 10px;
    font-size: 0.95rem;
  }
  .contact .container .contactArea .inputBox .text3,
  .contact .container .contactArea .textBox .text4 {
    font-size: 0.9rem;
  }
  .contact .container .contactArea .inputBox.active .text3,
  .contact .container .contactArea .textBox.active .text4 {
    font-size: 0.8rem;
  }
  /* footer区域 */
  footer {
    padding: 30px 0;
  }
  footer .container .box {
    width: 100% !important;
    margin-bottom: 30px;
  }
  footer .container .box:nth-child(2) ul,
  footer .container .box:nth-child(3) ul {
    margin: 10px 0;
    gap: 0.8rem;
  }
  footer .container .box:nth-child(4) p {
    font-size: 13px;
  }
  footer .tool {
    right: 30px;
    bottom: 10px;
    height: 30px;
    width: 60px;
  }
}
