
/* 加载状态 */
.loading-container[data-v-3fcf88e9] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}
.loading-spinner[data-v-3fcf88e9] {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #198754;
  border-radius: 50%;
  animation: spin-3fcf88e9 1s linear infinite;
  margin-bottom: 20px;
}
@keyframes spin-3fcf88e9 {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.loading-container p[data-v-3fcf88e9] {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* 错误状态 */
.error-container[data-v-3fcf88e9] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin-bottom: 30px;
}
.error-icon[data-v-3fcf88e9] {
  font-size: 48px;
  margin-bottom: 20px;
}
.error-message[data-v-3fcf88e9] {
  color: #dc3545;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 400px;
}
.retry-btn[data-v-3fcf88e9] {
  background: #198754;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.retry-btn[data-v-3fcf88e9]:hover {
  background: #157347;
}

/* FAQ 容器 */
.faq-accordion[data-v-3fcf88e9] {
  margin-bottom: 30px;
}

/* FAQ 单项样式 */
.faq-item[data-v-3fcf88e9] {
  margin-bottom: 15px;
  border: 1px solid rgba(83, 94, 123, 0.25);
  border-radius: 12px;
  background: linear-gradient(115deg, rgb(32, 32, 32) 20%, rgb(44, 39, 60) 75%);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.faq-item[data-v-3fcf88e9]:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.faq-item.active[data-v-3fcf88e9] {
  border-color: rgba(83, 94, 123, 0.25);
  box-shadow: 0 4px 16px rgba(25, 135, 84, 0.2);
}

/* FAQ 头部 */
.faq-header[data-v-3fcf88e9] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.2s ease;
  background: transparent;
}
.faq-header[data-v-3fcf88e9]:focus {
  outline: 2px solid #198754;
  outline-offset: -2px;
  border-radius: 8px;
}
.faq-item.active .faq-header[data-v-3fcf88e9] {
  background-color: linear-gradient(115deg, rgb(32, 32, 32) 20%, rgb(44, 39, 60) 75%);
  border-bottom: 1px solid rgb(74, 83, 105);
}

/* 问题区域 */
.faq-question-wrapper[data-v-3fcf88e9] {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.faq-ico[data-v-3fcf88e9] {
  width: 28px;
  height: 28px;
  margin-right: 16px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.faq-question[data-v-3fcf88e9] {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
  word-break: break-word;
}

/* 切换按钮 */
.faq-toggle-btn[data-v-3fcf88e9] {
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-toggle-btn.rotated[data-v-3fcf88e9] {
  transform: rotate(180deg);
}
.toggle-symbol[data-v-3fcf88e9] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #198754, #157347);
  color: white;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}
.faq-item.active .toggle-symbol[data-v-3fcf88e9] {
  background: linear-gradient(135deg, #dc3545, #c82333);
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* 内容区域 */
.faq-content-wrapper[data-v-3fcf88e9] {
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-content[data-v-3fcf88e9] {
  padding: 24px;
  color: #fff;
  line-height: 1.7;
  font-size: 15px;
  background-color:linear-gradient(115deg, rgb(32, 32, 32) 20%, rgb(44, 39, 60) 75%);
  border-top: 1px solid rgba(233, 236, 239, 0.5);
}
.faq-content p[data-v-3fcf88e9] {
  margin-bottom: 16px;
  color: #666;
}
.faq-content p[data-v-3fcf88e9]:last-child {
  margin-bottom: 0;
}
.faq-content a[data-v-3fcf88e9] {
  color: #198754;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.2s ease;
}
.faq-content a[data-v-3fcf88e9]:hover {
  color: #157347;
  text-decoration: underline;
}

/* 折叠动画 */
.faq-collapse-enter-active[data-v-3fcf88e9],
.faq-collapse-leave-active[data-v-3fcf88e9] {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.faq-collapse-enter-from[data-v-3fcf88e9],
.faq-collapse-leave-to[data-v-3fcf88e9] {
  height: 0 !important;
  opacity: 0;
}
.faq-collapse-enter-to[data-v-3fcf88e9],
.faq-collapse-leave-from[data-v-3fcf88e9] {
  opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
.faq-header[data-v-3fcf88e9] {
    padding: 16px 20px;
}
.faq-question[data-v-3fcf88e9] {
    font-size: 15px;
}
.faq-ico[data-v-3fcf88e9] {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}
.toggle-symbol[data-v-3fcf88e9] {
    width: 28px;
    height: 28px;
    font-size: 18px;
}
.faq-content[data-v-3fcf88e9] {
    padding: 20px;
    font-size: 14px;
}
}
@media (max-width: 480px) {
.faq-header[data-v-3fcf88e9] {
    padding: 14px 16px;
}
.faq-question[data-v-3fcf88e9] {
    font-size: 14px;
}
.faq-content[data-v-3fcf88e9] {
    padding: 16px;
}
}

/* 保持原有分页样式 */
.page-pagination[data-v-3fcf88e9] {
  padding-top: 20px;
}

