.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;  /* 减少上边距 */
}

.contact-header__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-header__description {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-button {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #1f2937;
}

.contact-button:hover {
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}

.contact-info {
  flex: 1;
  font-size: 1rem;
}

.contact-value {
  color: #6b7280;
  font-size: 0.875rem;
}

.wechat-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.wechat-modal.active {
  display: flex;
}

.wechat-qr {
  width: 300px;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.wechat-qr img {
  width: 100%;
  height: auto;
}

/* 隐藏滚动条 */
body {
  overflow: hidden;
}

@media (max-width: 640px) {
  .contact-container {
    padding: 1rem;
  }
} 