/* ===== 最新来访 + 按钮 + 弹窗 独立样式 ===== */
.jushoujigzh-latest-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.jushoujigzh-latest-visitors {
  flex: 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  min-width: 260px;
}
.jushoujigzh-visitor-title {
  font-size: 14px;
  font-weight: 700;
  color: #2a8c77;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jushoujigzh-visitor-title::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  animation: jushoujigzh-vpulse 1.5s infinite;
}
@keyframes jushoujigzh-vpulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.75); }
}
.jushoujigzh-visitor-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-wrap: nowrap;
  padding-bottom: 2px;
}
.jushoujigzh-visitor-list::-webkit-scrollbar { display: none; }
.jushoujigzh-visitor-tag {
  background: #f8f9fa;
  color: #444;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid #e9ecef;
  cursor: pointer;
  transition: all .25s;
  animation: jushoujigzh-vfade .4s ease both;
  flex-shrink: 0;
}
.jushoujigzh-visitor-tag:hover {
  background: #e6f7f2;
  color: #2a8c77;
  border-color: #2a8c77;
}
@keyframes jushoujigzh-vfade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.jushoujigzh-join-btn {
  background: #2a8c77;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  height: 46px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s;
  box-shadow: 0 2px 8px rgba(42,140,119,.2);
}
.jushoujigzh-join-btn:hover {
  background: #1f6e5c;
}
.jushoujigzh-faq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.jushoujigzh-faq-modal-overlay.jushoujigzh-active {
  display: flex;
}
.jushoujigzh-faq-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 720px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  animation: jushoujigzh-modalIn .25s ease;
}
@keyframes jushoujigzh-modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.jushoujigzh-faq-modal-head {
  position: relative;
  padding: 18px 24px 10px;
  border-bottom: 1px solid #f0f0f0;
}
.jushoujigzh-faq-modal-head h2 {
  margin: 0;
  font-size: 18px;
  color: #222;
}
.jushoujigzh-faq-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 26px;
  color: #2a8c77;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.jushoujigzh-faq-close:hover { color: #1f6e5c; }
.jushoujigzh-faq-body { padding: 12px 20px 20px; }
.jushoujigzh-faq-item {
  border-bottom: 1px solid #f0f0f0;
}
.jushoujigzh-faq-item:last-child { border-bottom: none; }
.jushoujigzh-faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  user-select: none;
}
.jushoujigzh-faq-arrow {
  font-size: 12px;
  color: #2a8c77;
  transition: transform .3s;
}
.jushoujigzh-faq-item.jushoujigzh-open .jushoujigzh-faq-arrow {
  transform: rotate(180deg);
}
.jushoujigzh-faq-content {
  display: none;
  padding: 0 4px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.jushoujigzh-faq-item.jushoujigzh-open .jushoujigzh-faq-content {
  display: block;
}
.jushoujigzh-red-text { color: #d32f2f; }
.jushoujigzh-faq-content textarea {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  margin: 6px 0;
  padding: 6px 8px;
  font-family: monospace;
  font-size: 12px;
  color: #333;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
}