/* 全局样式 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

/* 顶部状态栏 */
.status-bar {
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* 页面标题栏 */
.header {
  background-color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-icon,
.menu-icon,
.search-icon {
  font-size: 20px;
}

.title {
  flex-grow: 1;
  text-align: center;
}

/* 主视觉区域 */
.hero {
  background-color: #e6f7ff;
  padding: 0px;
  text-align: center;
}

.hero h1 {
  font-size: 28px;
  color: #007bff;
}

.sub-title {
  color: #dc3545;
}

.illustration {
  width: 100%;
  height: 100%;
  margin-top: 0px;
}

/* 医院名称 */
.hospital-name {
  background-color: white;
  padding: 10px;
  margin: 10px;
  text-align: center;
}

/* 功能按钮区域 */
.button-container {
  display: flex;
  justify-content: space-around;
  padding: 5px;
}

.button {
  text-align: center;
  height: auto;
  padding: 5px 5px;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: white;
}

.red-button {
  background-color: #dc3545;
}

.orange-button {
  background-color: #fd7e14;
}

/* 流程说明区域 */
.process-section {
  background-color: white;
  padding: 10px;
  margin: 10px;
}

.info-icon {
  color: #007bff;
  font-size: 20px;
  margin-right: 10px;
}

.process-section h3 {
  margin-bottom: 10px;
}

ol {
  padding-left: 20px;
}
