1. 提高设计目标、美学风格 9Sep.25
来源:

源提示词:
Instead of emojis, use icons. Fix the padding so every component is spaced perfectly - not too close to other components but not too dispersed to waste space.
The goal of the site is to look sleek, premium, and minimalist, like a spa in Switzerland. Design this in a way that matches what a working professional would reasonably pay thousands of dollars a month for, in a way that would make Steve Jobs smile.
Avoid using colors unnecessarily, instead pick from a palette that is cohesive and stick to it. Ensure the site is responsive and elegant on both desktop and mobile.
updated by Gemini:
sc:
### 项目目标与美学 (Project Goal & Aesthetics)
* **核心理念 (Core Concept)**: 创建一个视觉上极其简洁、高端、简约的网页,风格类似“瑞士的奢华水疗中心”。整体感觉要精确、冷静、注重细节,追求一种能让史蒂夫·乔布斯赞许的“恰到好处”的设计。
* **目标用户 (Target Audience)**: 吸引愿意为高品质服务付费的专业人士,设计必须传达出信任感和专业性。
### 具体设计与技术规范 (Specific Design & Technical Specifications)
1. **布局与间距 (Layout & Spacing)**:
* 采用 **8px 网格系统** 作为所有间距 (`margin`, `padding`, `gap`) 和组件尺寸的基础单位。例如,使用 `8px`, `16px`, `24px`, `32px` 等。
* 使用 CSS Flexbox 或 Grid 实现主布局,确保在桌面和移动设备上都能优雅地响应式呈现。**禁止使用任何外部 CSS 框架** (如 Bootstrap, Tailwind)。
2. **颜色方案 (Color Palette)**:
* 使用 CSS 变量 (`--var-name`) 定义全局颜色,方便统一管理。
* **主背景色 (Primary Background)**: `#FFFFFF` (纯白) 或 `#F8F9FA` (极浅灰)。
* **主文字颜色 (Primary Text)**: `#111827` (非常深的灰色,避免纯黑的刺目感)。
* **次要文字/边框颜色 (Secondary Text/Borders)**: `#6B7280` (中度灰色)。
* **唯一强调色 (Single Accent Color)**: `#3B82F6` (一种沉稳的蓝色),仅用于关键按钮、链接和活动状态。
3. **字体排印 (Typography)**:
* **字体 (Font Family)**: 全站使用 [Google Fonts](https://fonts.google.com/) 上的 `Inter` 字体。
* **字重 (Font Weight)**: 正文内容使用 `400` (Regular),标题使用 `600` (Semi-bold)。
* **基础字号 (Base Font Size)**: 设置为 `16px`,并使用相对单位 (rem) 以实现响应式缩放。
4. **图标 (Icons)**:
* **图标库 (Icon Library)**: 使用开源的 [Heroicons](https://heroicons.com/),并统一采用其 `outline` (线条) 风格,以保持轻盈感。
* **实现方式 (Implementation)**: 直接将 SVG 代码内联到 HTML 中,以减少外部请求并方便控制样式。
5. **交互与细节 (Interaction & Details)**:
* 为所有可交互元素(如按钮、链接)添加**平滑、快速的过渡效果**,例如 `transition: all 0.2s ease-in-out;`。
* 按钮悬停 (hover) 时,背景色应有轻微的加深或变浅效果,而不是剧烈的颜色变化。
### 输出要求 (Output Requirements)
* 请将所有代码生成在一个**独立的 HTML 文件**中,并将所有 CSS 样式写在 `<head>` 内的 `<style>` 标签里。
en:
### Project Goal & Aesthetics
* **Core Concept**: Create a visually clean, premium, and minimalist webpage, styled like a "luxury Swiss spa." The overall feel should be precise, calm, and detail-oriented, striving for a "just right" design that would be approved by Steve Jobs.
* **Target Audience**: Attract professionals willing to pay for high-quality service. The design must convey trust and professionalism.
### Specific Design & Technical Specifications
1. **Layout & Spacing**:
* Implement an **8px grid system** as the base unit for all spacing (`margin`, `padding`, `gap`) and component sizes. For example, use increments like `8px`, `16px`, `24px`, `32px`, etc.
* Use CSS Flexbox or Grid for the main layout to ensure it is elegant and responsive on both desktop and mobile devices. **Do not use any external CSS frameworks** (like Bootstrap or Tailwind).
2. **Color Palette**:
* Define all global colors using CSS variables (`--var-name`) for easy and consistent management.
* **Primary Background**: `#FFFFFF` (Pure White) or `#F8F9FA` (Very Light Gray).
* **Primary Text**: `#111827` (A very dark gray to avoid the harshness of pure black).
* **Secondary Text/Borders**: `#6B7280` (A medium gray).
* **Single Accent Color**: `#3B82F6` (A calm, stable blue), to be used exclusively for key buttons, links, and active states.
3. **Typography**:
* **Font Family**: Use the `Inter` font from [Google Fonts](https://fonts.google.com/specimen/Inter) for the entire site.
* **Font Weight**: Use `400` (Regular) for body text and `600` (Semi-bold) for headlines.
* **Base Font Size**: Set to `16px` and use relative units (rem) to allow for responsive scaling.
4. **Icons**:
* **Icon Library**: Use the open-source [Heroicons](https://heroicons.com/) library and consistently apply the `outline` style to maintain a light, airy feel.
* **Implementation**: Inline the SVG code directly into the HTML to reduce external requests and allow for easy styling.
5. **Interaction & Details**:
* Add **smooth, fast transition effects** to all interactive elements (like buttons and links), for example: `transition: all 0.2s ease-in-out;`.
* On hover, buttons should have a subtle background color change (slightly darker or lighter), avoiding drastic color shifts.
### Output Requirements
* Please generate all code in a **single, self-contained HTML file**, with all CSS styles placed inside a `<style>` tag within the `<head>`.
