
/* #fp-nav ul li,
.fp-slidesNav ul li {
  padding: 26px 0;
} */

.fullpage-wrapper {
  z-index: 9;
}

/* #fp-nav ul li .fp-tooltip {
  padding: 14px 0 !important;
} */


#fp-nav ul li a span,
.fp-slidesNav ul li a span,
#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  margin: -5.5px 0 0 -5.5px !important;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  margin: -5.5px 0 0 -5.5px !important;
}

/* 导航点样式类 */
/* 深色背景的导航点样式 */
.fp-nav-dark {
  /* 普通导航点为浅灰色 */
}

.fp-nav-dark #fp-nav ul li a span {
  background: #999 !important;
}

.fp-nav-dark #fp-nav ul li.active a span {
  background: #ffffff !important;
}

.fp-nav-dark #fp-nav ul li .fp-tooltip {
  color: #ffffff !important;
}

/* 浅色背景的导航点样式 */
.fp-nav-light {
  /* 普通导航点为深灰色 */
}

.fp-nav-light #fp-nav ul li a span {
  background: #333 !important;
}

.fp-nav-light #fp-nav ul li.active a span {
  background: #204ecf !important;
}

.fp-nav-light #fp-nav ul li .fp-tooltip {
  color: #ffffff !important;
}

/* 搜索弹窗样式 */
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.search-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.search-popup-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.search-popup.active .search-popup-content {
  transform: scale(1);
}

.search-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1;
}

.close-icon {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: var(--duration);
}

.search-popup-close:hover .close-icon {
  opacity: 0.7;
}

.search-popup-title {
  font-family: Open Sans, sans-serif;
  font-size: var(--font28);
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.search-popup-form {
  display: flex;
  margin-bottom: 30px;
}

.search-input {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #e0e0e0;
  border-radius: 4px 0 0 4px;
  font-size: var(--font16);
  color: #333;
  outline: none;
  transition: var(--duration);
}

.search-input:focus {
  border-color: var(--theme);
}

.search-submit {
  width: 100px;
  height: 50px;
  background-color: var(--theme);
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: var(--font16);
  cursor: pointer;
  transition: var(--duration);
}

.search-submit:hover {
  background-color: #1a3db8;
}

.search-popup-suggestions {
  margin-top: 20px;
}

.suggestions-title {
  font-size: var(--font16);
  color: #666;
  margin-bottom: 15px;
}

.suggestions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestions-tags .tag {
  padding: 8px 15px;
  background-color: #f5f5f5;
  border-radius: 20px;
  font-size: var(--font14);
  color: #666;
  transition: var(--duration);
}

.suggestions-tags .tag:hover {
  background-color: var(--theme);
  color: #fff;
}

#fp-nav.fp-nav-dark ul li:hover .fp-tooltip,
#fp-nav.fp-nav-dark.fp-show-active a.active+.fp-tooltip {
  color: #fdff77 !important;
}

body #fp-nav.fp-nav-dark li a.active span {
  background: #fdff77;
  border: 1px solid #fdff77;
}

#fp-nav.fp-nav-dark li .fp-tooltip {
  color: #e2e2e2 !important;

}

#fp-nav.fp-nav-dark ul::before {

  background-color: rgba(249, 255, 165, 0.3);
}

.index-banner .section-title:after {
  display: none;
}