/* 特色诊疗 */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.treatment-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.treatment-item:hover {
  transform: translateY(-5px);
}

.treatment-item h3 {
  color: #1a5a8a;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.treatment-note {
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

/* 骨架屏样式 */
.skeleton-item {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.skeleton-title {
  height: 24px;
  width: 60%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 15px;
}

.skeleton-desc {
  height: 16px;
  width: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 10px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 错误状态 */
.treatment-error {
  margin-top: 50px;
  padding: 20px;
  background-color: #fff3f3;
  border-radius: 8px;
  color: #dc3545;
  text-align: center;
}

/* 响应式设计 */
@media (max-width: 992px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
}