/* Tailwind 配置扩展 */
@layer utilities {
  .content-auto {
    content-visibility: auto;
  }
  .shadow-soft {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .transition-custom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

/* 自定义Tailwind配置 */
:root {
  --color-primary: #1677ff;
  --color-secondary: #0FC6C2;
  --color-neutral: #F5F7FA;
  --color-dark: #1D2129;
}

/* 客服页面样式 */
.customer-service-header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1rem 1.5rem;
}

.customer-service-container {
  max-width: 28rem;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.service-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #f1f1f1;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.service-option:hover {
  background-color: #f9f9f9;
}

.service-option-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}