:root {
  /* 主色调 - 热情红 */
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-200: #fecaca;
  --primary-300: #fca5a5;
  --primary-400: #f87171;
  --primary-500: #ef4444;
  --primary-600: #dc2626;
  --primary-700: #b91c1c;
  --primary-color:#ee5a52;
  --warning-color: #fa8c16;
  
  /* 中性色 */
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  
  /* 功能色 */
  --success: #10b981;
  --warning: #f59e0b;
  --info: #3b82f6;
  
  /* 阴影系统 */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 40px rgba(239, 68, 68, 0.15);
  
  /* 圆角系统 */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 10px;
  --radius-2xl: 28px;
  --radius-full: 9999px;
  
  /* 过渡 */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ========== 英雄区模块 ========== */
.planner-hero {
  background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 50%, var(--primary-50) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.planner-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-100) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.planner-hero .text-center {
  position: relative;
  z-index: 1;
}

.planner-hero h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.planner-hero .text-muted {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* 步骤卡片 */
.step-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  cursor: default;
  margin-top: 20px;
}

.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, var(--primary-200) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
  border: 3px solid #fff;
  z-index: 10;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 20px;
  transition: all var(--transition-base);
  position: relative;
}

.step-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--primary-200), transparent);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-base);
}

.step-card:hover .step-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, var(--primary-100) 0%, var(--primary-200) 100%);
}

.step-card:hover .step-icon::after {
  opacity: 0.5;
}

.step-icon i {
  font-size: 28px;
  color: var(--primary-500);
  transition: transform var(--transition-base);
}

.step-card:hover .step-icon i {
  transform: scale(1.1);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ========== 需求表单模块 ========== */
.need-form-section {
  margin-bottom: 20px;
}
.hero-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: center;
   
}
@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        align-items: stretch;
        gap: 2rem;
    }
    .hero-filter-panel { flex: 4; min-width: 0; }
    .hero-image-panel { flex: 3; min-width: 0; }
}
/* 移动端时两个面板各占满宽，自然堆叠 */
.hero-filter-panel, .hero-image-panel {
    width: 100%;
}
@media (min-width: 992px) {
    .hero-filter-panel, .hero-image-panel {
        width: auto;
    }
}
.brand-image-card {
    border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg);
    background:linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
     height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    padding: 2rem; color: #fff; text-align: center;
    min-height: 260px;
}

.hero-image-panel .consult-button {
    background: white;
    color: #ff6b6b;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
    display:inline-block;
    border:none;
}
@media (max-width: 767px) {
    .brand-image-card { min-height: 220px; padding: 1.5rem; }
    .hero-filter-card { padding: 1.5rem; }
}

.mobile-filter-header {
    background: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#mobile-filter-toggle {
    background: var(--primary-color) ;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
}
.filter-panel {
	display:none;
}
.filter-panel-open{
	display: block;
}
.filter-row .lience-type-img{
	width:6rem;
}
.filter-row .locate{
	width:70px;
	text-align: center;
}
.filter-row .locate img{
	height:20px;
}
.filter-row  .address-picker{
	flex:1;
}
.filter-row  .p-label {
    	min-width:80px;
    }
.filter-row .address{
	height: 58px;
  		line-height: 58px;
  		border:none;
  		width:100%;
  		font-size:16px;
  		padding-left: 10px;
  		outline:none;
}
.filter-row  .address::placeholder{
	font-size:16p;
	color:#ccc;
}

.form-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 100%);
  padding: 24px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

.form-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-header h2 i {
  font-size: 1.25rem;
}

.form-body {
  padding: 28px 24px;
}

.form-label {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-label {
	min-weidth:70px;
}
.form-label i {
  font-size: 1rem;
  opacity: 0.8;
}

.form-select,
.form-control {
  border-radius: var(--radius-md);
  border: 1.5px solid var(--gray-200);
  padding: 14px 16px;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  background: #fff;
}

.form-select:hover,
.form-control:hover {
  border-color: var(--gray-300);
}

.form-select:focus,
.form-control:focus {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
  outline: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* 时间按钮组 */
.time-btn {
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--gray-300);
  background: #fff;
  color: var(--gray-600);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.time-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.time-btn span {
  position: relative;
  z-index: 1;
}

.time-btn:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.time-btn.active {
  border-color: var(--primary-500);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: #fff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.time-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

/* 主按钮 */
#generatePlanBtn {
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border: none;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

#generatePlanBtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

#generatePlanBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}

#generatePlanBtn:hover::before {
  opacity: 1;
}

#generatePlanBtn:active {
  transform: translateY(0);
}

#generatePlanBtn i,
#generatePlanBtn span {
  position: relative;
  z-index: 1;
}

 /* 结果区 */

.mobile-placeholder {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.mobile-placeholder .icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.mobile-placeholder h3 {
    margin-bottom: 8px;
    color: #666;
}

.result-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 20px;
  animation: fadeInUp 0.5s ease backwards;
}

.result-card:nth-child(1) { animation-delay: 0.1s; }
.result-card:nth-child(2) { animation-delay: 0.2s; }
.result-card:nth-child(3) { animation-delay: 0.3s; }
.result-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-header {
  background: linear-gradient(135deg, var(--primary-50) 0%, #ffffff 100%);
  padding: 24px;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.result-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-200), transparent);
}

.result-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-header h2 i {
  font-size: 1.25rem;
}

/* 流程图 */
.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 32px 20px;
  gap: 12px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 85px;
  padding: 16px 12px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: default;
}

.process-step:hover {
  background: var(--primary-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.process-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
  transition: all var(--transition-base);
}

.process-step:hover .process-number {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.process-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}

.process-content p {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0;
  white-space: nowrap;
}

.process-arrow {
  color: var(--gray-300);
  display: flex;
  align-items: center;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.5; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(2px); }
}

.process-arrow i {
  font-size: 20px;
}

@media (max-width: 768px) {
.planner-hero {
    padding: 20px 16px 40px;
    border-radius: var(--radius-md);
  }
  

.step-card {
    margin-top: 24px;
    padding: 34px 16px 10px;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: -14px;
  }
  
  .step-icon {
    width: 56px;
    height: 56px;
    margin: 4px auto 16px;
  }
  
  .step-icon i {
    font-size: 24px;
  }
.process-flow {
    flex-direction: column;
    gap: 8px;
    padding: 20px 16px;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .process-step {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 14px 16px;
    gap: 16px;
  }
  
  .process-number {
    margin-bottom: 0;
    width: 36px;
    height: 36px;
    font-size: 0.9375rem;
  }
  
  .process-content {
    text-align: left;
  }
  
  .process-content p {
    white-space: normal;
  }
	
}

/* 提示框 */
.process-tips {
  background: linear-gradient(90deg, #fefce8 0%, #fef9c3 100%);
  border-left: 3px solid var(--warning);
  padding: 16px 20px;
  margin: 0 20px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.875rem;
  color: #92400e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.process-tips i {
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* 成功步骤样式 */
.success-step .process-number {
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* 推荐基地 */
.training-field{
  background-color: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #efefef;
  margin-bottom: 10px;
  
}
.training-field .field-name {
  color: #2c3e50;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: left;
}
.field-image-container{
  width: 100%;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  border: 1px #efefef solid;
}
.field-image-container .field-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
 }
.field-overall-rating {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    color: #333;
}
.training-field .star-score {
    position: relative;
    display: block;
    height: 1.2em;
    width: 5.2em;
}
.training-field .star-score .star {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 5em;
    height: 1.04em;
    background-repeat: no-repeat;
}
.training-field .star-score .star .normal {
    background: url(../../../../../img/star5-bg.png) center left no-repeat;
    z-index: 2;
    background-size: 5em .8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
}
.training-field .star-score .star .light {
    background: url(../../../../../img/star5-highlight.png) center left no-repeat;
    z-index: 3;
    width: 0;
    background-size: 5em .8em;
}
.field-address {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: left;
}
.field-navigation {
  margin-left: 5px;
}
.field-image-container .image-count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.field-image-container.image-count:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.field-image-container .count-number {
  font-weight: bold;
  margin-right: 4px;
}

.traffic-section {
  background-color: #f8f9ff;
  border-radius: 12px;
  padding: 15px 6px;
  margin-bottom: 20px;
}

.traffic-mode {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px; /* 进一步减小间距 */
  margin-bottom: 10px;
  font-size: 16px;
}

.traffic-mode:last-child {
  margin-bottom: 0;
}

.traffic-mode .mode-icon {
  font-size: 18px;
}

.traffic-mode .route {
  display: inline;
  word-break: break-word; /* 允许在长单词处换行 */
}

.traffic-mode .mode-label {
  font-weight: 500;
  color: #2c3e50;
}

.traffic-mode .route-info {
  color: #666;
  font-size: 14px;
}

.traffic-mode .distance {
  color: #3498db;
  font-size: 20px;
  font-weight: 700;
}

.traffic-mode .time-separator {
  color: #999;
}

.traffic-mode .time {
  color: #2c3e50;
  font-weight: 600;
}

.traffic-mode .transport-note {
  margin: 0 2px;
  color: #3498db;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  padding: 0;
}



.traffic-mode .time-value {
  font-size: 22px;
  font-weight: 800;
  color: #3498db;
  margin: 0 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.detailed-ratings {
  margin-bottom: 20px;
  padding: 15px 30px 15px 15px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.rating-row:last-child {
  margin-bottom: 0;
}

.rating-item {
  color: #555;
  width: 100px;
}

.rating-stars {
  color: #f1c40f;
  font-size: 14px;
  letter-spacing: -2px;
  flex: 1;
}

.rating-score {
  color: #333;
  font-weight: 600;
  width: 30px;
  text-align: right;
}

/* 学员印象标签云 */
.tags-section {
  margin-bottom: 20px;
}

.tags-section .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tags-section .tag {
  background-color: transparent;
  color: #2685eb;
  padding: 4px 8px;
  font-size: 13px;
  transition: all 0.2s ease;
  border-radius: 0;
}

.tags-section .tag:hover {
  color: #2980b9;
  text-decoration: underline;
  transform: none;
}


.tags-section .comment-count {
     color: #7f8c8d;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.2s ease;
}
.training-field .rating-value {
  font-weight: 700;
  font-size: 20px;
}

.price-info {
            background-color: rgba(250, 140, 22, 0.05);
            padding: 12px 16px;
            margin-top: 16px;
            border-radius: 4px;
        }
        
        .price-highlight {
            color: var(--warning-color);
            font-weight: 600;
            font-size: 18px;
        }


/* 服务卡片 */
.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary-300) 0%, transparent 50%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  background: var(--primary-50);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.25);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35);
}

.service-icon i {
  font-size: 26px;
  color: #fff;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 0;
}

/* 咨询模块 */
.consultation-card .result-header {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}

.consultation-card .result-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.consultation-card .result-header h2 {
  color: #fff;
  font-size: 1.25rem;
}

.consultation-card .result-header p {
  color: rgba(255, 255, 255, 0.85);
}

.service-tags {
  padding: 24px 20px;
  display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.service-tag {
  background: var(--primary-50);
  color: var(--primary-600);
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
  border: 1px solid var(--primary-100);
}

.service-tag:hover {
  background: var(--primary-100);
  transform: translateY(-2px);
}

.service-tag i {
  font-size: 1rem;
}

.consultation-form {
  padding: 24px;
  background: var(--gray-50);
}

#submitConsultation {
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-600) 100%);
  border: none;
  transition: all var(--transition-base);
}

#submitConsultation:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.35);
}