/* 自定义样式 */
.iphone-frame {
  position: relative;
  width: 375px;
  height: 812px;
  background-color: white;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 20px;
}

.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 30px;
  background-color: #000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 10;
}

.status-bar {
  height: 44px;
  width: 100%;
  background-color: #f8f8f8;
  position: relative;
  z-index: 5;
}

.bottom-bar {
  height: 34px;
  width: 100%;
  background-color: #f8f8f8;
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-indicator {
  width: 120px;
  height: 5px;
  background-color: #333;
  border-radius: 3px;
}

.app-content {
  height: calc(100% - 78px);
  overflow-y: auto;
}

.screen-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.screen-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* 主题颜色 */
:root {
  --theme-primary: #f472b6; /* 粉色 */
  --theme-secondary: #9f7aea; /* 紫色 */
  --theme-success: #10b981; /* 绿色 */
  --theme-info: #60a5fa; /* 蓝色 */
  --theme-warning: #f59e0b; /* 黄色 */
  --theme-danger: #ef4444; /* 红色 */
  --theme-light: #f3f4f6; /* 浅灰色 */
  --theme-dark: #4b5563; /* 深灰色 */
  --theme-background: #f9fafb; /* 背景色 */
}

/* 通用组件样式 */
.theme-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.theme-header {
  padding: 1rem;
  background-color: white;
  border-bottom: 1px solid #f3f4f6;
}

.theme-button-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  border: none;
}

.theme-button-outline {
  background-color: white;
  color: var(--theme-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  border: 1px solid #e5e7eb;
}

.theme-icon-container {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--theme-light);
  color: var(--theme-dark);
}

.theme-icon-pink {
  background-color: #fce7f3;
  color: var(--theme-primary);
}

.theme-icon-purple {
  background-color: #ede9fe;
  color: var(--theme-secondary);
}

.theme-icon-blue {
  background-color: #e0f2fe;
  color: var(--theme-info);
}

/* 导航栏 */
.theme-navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #f3f4f6;
  height: 4rem;
  padding: 0 1rem;
  z-index: 50;
}

.theme-navbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  font-size: 0.75rem;
}

.theme-navbar-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

/* 渐变背景 */
.hero-gradient {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
}

.banner-gradient {
  background: linear-gradient(135deg, #f9f0ff 0%, #f0f9ff 100%);
} 