.help-search-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;

	h1 {
		margin-top: 32px;
		width: 100%;
		text-align: left;
		color: var(--color-surface);
	}
}

.help-search-page.website-help .help-banner {
	height: 160px !important;
}

.website-help .help-search-content {
	margin-top: 32px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	height: 100%;
	padding: 0 24px;
}

.help-search-category-left {
	width: 268px;
	flex: 0 0 268px;
	display: flex;
	flex-direction: column;
	border-right: 1px solid #e6e6e6;

}

.help-search-search {
	display: flex;
	align-items: center;

	border-radius: 6px;
	width: 250px;
	height: 40px;
	margin-bottom: 32px;
	position: relative;
	flex-shrink: 0;
	border: 1px solid #e6e6e6;

	input {
		width: calc(100% - 60px);
		height: 100%;
		margin-left: 2px;
	}
}

.help-search-search input {
	font-size: 16px;
}

input,
button {

	outline: none;
	border: none;
	padding: 0 12px;
}

.help-search-search-btn {
	padding: 4px 12px;
	text-align: center;
	border-radius: 8px;
	background-color: var(--brand-700, #1c8a4d);
	color: #fff;
	font-size: 14px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	cursor: pointer;
}


.help-search-side {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 250px;
	height: 100%;
}

.help-search-category {
	flex: 1;
	margin-left: 60px;
	overflow: auto;
}

.search-category-content-item {

	margin-bottom: 16px;
}

.search-category-content-item-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-size: 16px;
	color: #000000;
	cursor: pointer;
	white-space: nowrap;

	i {
		margin-right: 8px;
	}

	.search-category-content-item-content-item {
		padding: 8px 0;
		font-size: 14px;
		color: var(--color-fg);
	}

	.search-category-content-item-content-item:hover {
		color: var(--color-brand);
	}
}


.search-category-content-item-view-all {
	color: #2073f9;
	margin: 24px 0 20px;
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
}

.help-search-title-desktop {
	margin: 40px 0 24px;
	font-size: 24px;
	font-weight: 600;
}



@media screen and (max-width: 768px) {
	.help-search-content {
		width: calc(100% - 40px) !important;
		margin-top: 12px;
		flex-direction: column;
		padding: 0px !important;
	}
	.help-search-drawer-content{
		width: 100% !important;
	}

	.help-search-category-left {
		display: none;
	}

	.help-search-category {
		width: 100%;
		margin-left: unset !important;
	}

	.help-search-title-mobile {
		margin: 15px 0 12px;
		font-size: 24px;
		font-weight: 600;
	}
	.help-search-title-mobile i{
		margin-left: 8px;
	}

	.website-help .help-search-content{
		margin-top: 15px;
	}
}

/* 搜索结果样式 */
.help-search-results h3 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333;
}
.help-search-breadcrumb {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #212121;
}

.help-search-breadcrumb-item {
  /* margin: 0 4px; */
}

.help-search-breadcrumb-item:first-child,
.help-search-breadcrumb-item:nth-child(2),
.help-search-breadcrumb-item:nth-child(3) {
  color: var(--brand-700, #1c8a4d);
}

.help-search-breadcrumb-separator {
  margin: 0 4px;
  color: #212121;
}

.help-search-breadcrumb-clickable {
  cursor: pointer;
  transition: color 0.2s ease;
}

.help-search-breadcrumb-clickable:hover {
  color: var(--brand-700, #1c8a4d);
}
.help-search-category-content {
  /* padding: 20px 0; */
}

.help-search-loading {
  text-align: center;
  padding: 40px 0;
  color: #212121;
  font-size: 14px;
}

.search-category-content-item-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.help-search-faq-detail {
  padding: 20px 0;
}

.help-search-faq-detail h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
  line-height: 1.4;
}

.help-search-faq-answer {
  font-size: 14px;
  line-height: 1.6;
  color: #212121;
  white-space: pre-line;
}

.help-search-empty {
  text-align: center;
  padding: 40px 0;
  color: #212121;
  font-size: 14px;
}



.help-search-faq-list h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.help-search-faq-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.help-search-faq-ul li {
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.help-search-faq-ul li i {
  flex-shrink: 0;
  font-size: 22px;
}

.help-search-faq-ul li span{
  font-size: 16px;
}


.help-search-faq-ul li:hover {
  color: var(--color-brand);
}

.help-search-faq-ul li:last-child {
  border-bottom: none;
}

/* 子分类样式 */
.help-search-faq-subcategory {
  font-size: 18px;
  font-weight: 600;
  color: #212121;
  margin-top: 12px;
  margin-bottom: 8px;
  cursor: default;
}

.help-search-faq-subcategory:hover {
  color: #666;
  text-decoration: none;
}

.help-search-faq-toggle{
  color: var(--color-brand);
}

@media screen and (max-width: 768px) {
  .help-search-faq-subcategory {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #212121;
  }

  .search-category-content-item-content,
  .help-search-faq-list,
  .help-search-faq-subcategory {
    width: 100%;
  }

  .help-search-faq-item-div {
    width: 100%;
    border-bottom: 4px solid #e6e6e6;
  }

  .help-search-faq-ul li {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #e6e6e6;
  }

  .help-search-faq-toggle{
    font-size: 14px;
  }

  .help-search-faq-ul li>span {
    width: calc(100% - 22px);
    display: block;
    order: 0;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .help-search-faq-ul li i {
    flex-shrink: 0;
    order: 1;
    margin-right: unset !important;
  }

}
.help-search-faq-accordion {
 
  overflow: hidden;
  width: 100%;
}

.help-search-faq-acc-item {
  border-bottom: 1px solid #e6e6e6;
}

.help-search-faq-acc-item:last-child {
  border-bottom: none;
}

.help-search-faq-acc-q {
  width: 100%;
  padding: 16px;
  background: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex; 
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #212121;
  transition: all 0.3s ease;
}

.help-search-faq-acc-q:hover {
  background: #f9f9f9;
}

.help-search-faq-acc-icon {
  transition: transform 0.3s ease;
  font-size: 22px !important;
}

.help-search-faq-acc-icon--open {
  transform: rotate(180deg);
}

.help-search-faq-acc-a {
  padding: 0 16px 16px;
   
  animation: helpSearchSlideDown 0.3s ease;
}

.help-search-faq-acc-atext {
  font-size: 14px;
  line-height: 1.5;
  color: #212121;
}

.help-search-faq-acc-answer {
  margin-bottom: 12px;
  padding: 8px 0;
  line-height: 1.6;
}

.help-search-faq-acc-children {
 
}

.help-search-faq-acc-child {
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 14px;
}

.help-search-faq-acc-child:hover {
  color: var(--color-brand);
}

.help-search-faq-acc-child:last-child {
  border-bottom: none;
}

@keyframes helpSearchSlideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}



/*# sourceMappingURL=website-route-help-search.8615f462.chunk.css.map*/