/* 自定义样式 */
.status-bar {
  height: 44px;
}

.nav-bar {
  height: 44px;
}

.tab-bar {
  height: 50px;
}

.page-frame {
  width: 375px;
  height: 812px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 40px;
  position: relative;
  background-color: white;
  margin: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-frame::-webkit-scrollbar {
  width: 4px;
}

.page-frame::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.page-frame::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

.status-bar-content {
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flow-diagram {
  width: 100%;
  overflow-x: auto;
  padding: 20px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.flow-node {
  border: 2px solid #4299e1;
  background-color: white;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  display: inline-block;
  margin: 8px;
}

.flow-arrow {
  color: #4299e1;
  margin: 0 8px;
  font-size: 20px;
}

.ios-input {
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background-color: #f8fafc;
  padding: 12px 16px;
}

.ios-button {
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
}

.tab-indicator {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #3b82f6;
  transition: all 0.3s;
}

.card {
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  background-color: white;
  overflow: hidden;
} 