* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none !important;
}
img {
  border: none;
  max-width: 100%;
  vertical-align: middle;
}

body {
  min-width: 1200px;
  overflow-x: auto;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.red {
  color: #00A846;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav {
  width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  height: 80px;
  max-width: 280px;
  flex-shrink: 0;
  margin-right: 50px;
  gap: 10px;
}

.logo img {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  white-space: nowrap;
}
.logo-text span {
  font-size: 14px;
  color: #666;
  display: block;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 15px;
  height: 80px;
  /* 去掉原来的往上偏移 margin-top:10px */
}

.nav-item {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-list > .nav-item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 8px;
}

.nav-list > .nav-item > a span {
  font-size: 16px;
  color: #333;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
  transition: color 0.3s ease;
}

/* 悬浮变色保留，无任何平移 */
.nav-item:hover > a span {
  color: #00A846 !important;
}

.nav-list > .nav-item.active > a span {
  color: #00A846 !important;
}

/* 二级菜单 自适应宽度 + 不换行 */
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 140px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  border-radius: 4px;
  padding: 8px 0;
  z-index: 9999;
  white-space: nowrap;
}

.sub-link {
  display: block;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 18px;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.sub-link:hover {
  color: #00A846 !important;
}

/* 三级菜单 自适应宽度 + 不换行 */
.third-menu {
  position: absolute;
  top: 0;
  left: 100%;
  width: auto;
  min-width: 180px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: none;
  border-radius: 4px;
  padding: 8px 0;
  z-index: 9999;
  white-space: nowrap;
}

.third-link {
  display: block;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: #333;
  padding: 0 18px;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.third-link:hover {
  color: #00A846 !important;
}

.nav-item:hover > .submenu {
  display: block;
}

.nav-item-sub:hover > .third-menu {
  display: block;
}

.nav-right-group {
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  height: 80px;
  flex-shrink: 0;
}

.search {
  position: relative;
  display: flex;
  align-items: center;
  height: 80px;
}

.search > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 18px;
}

.search > a:hover {
  color: #00A846 !important;
}

.search-box {
  position: absolute;
  top: 100%;
  right: 0;
  width: 380px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 15px;
  display: none;
  z-index: 9999;
}
.search:hover .search-box {
  display: block;
}

.search-input-group {
  display: flex;
  border: 2px solid #00A846;
  border-radius: 4px;
  overflow: hidden;
}
.search-input-group input {
  flex: 1;
  height: 42px;
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
}
.search-input-group button {
  width: 80px;
  background: #00A846;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.search-history {
  margin-top: 12px;
  display: none;
}
.search-history.show {
  display: block;
}
.history-head {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
}
.history-clear {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
}
.history-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.history-item {
  padding: 4px 10px;
  background: #f5f5f5;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
}
.history-item:hover {
  color: #00A846 !important;
}

.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
  white-space: nowrap;
}
.nav-tel i {
  color: #00A846;
  font-style: normal;
}

#footer {
  background: #191f26;
  padding: 50px 0 0;
}

.footer-wrap {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  gap: 20px;
}

.footer-left {
  width: 260px;
  flex-shrink: 0;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo-row img {
  height: 50px;
  max-width: 200px;
  object-fit: contain;
}

.footer-left p {
  font-size: 14px;
  color: #8c9094;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-left .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #8c9094;
  margin-bottom: 12px;
}
.footer-left .contact-info i {
  color: #00A846;
}

.footer-col {
  width: 15%;
}
.footer-col h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}
.footer-col ul {
  text-align: center;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #8c9094;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #00A846 !important;
}

.footer-right {
  width: 15%;
  text-align: center;
}
.footer-right h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}
.footer-right img {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.footer-bottom {
  background: #12161c;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  color: #8c9094;
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  background: #00A846;
  color: #fff;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  display: none;
  z-index: 999;
}

.page-content {
  padding: 120px 0 60px;
}

/* 友情链接样式 */
.footer-friendlink {
  width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid #333;
}

.footer-friendlink h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
}

.friendlink-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.friendlink-item a {
  font-size: 14px;
  color: #8c9094;
  font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
  transition: color 0.3s ease;
}

.friendlink-item a:hover {
  color: #00A846; /* 悬浮改为科技绿 */
}
.ds{
	font-family: "思源黑体 Bold", "Montserrat Bold", sans-serif;
	color: #8c9094;
}