feat(ai-test): add baseline and results for AI beautification test

This commit introduces a new test suite for evaluating the HTML/CSS beautification capabilities of different AI models.

The suite includes:
- A baseline unstyled HTML file (`plain_html/index.html`) to be used as the common input.
- Standardized prompts for various design aesthetics (e.g., Professional, Minimalist).
- Initial results for the 'Professional' style from several models, including ChatGPT, Kimi, Gemini, Doubao, Deepseek,
and Yuanbao.
This commit is contained in:
xiaomai
2025-09-26 14:00:03 +08:00
parent 310a5da94f
commit b5447a9903
15 changed files with 5154 additions and 0 deletions

View File

@@ -0,0 +1,372 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>AI Beautify — 基线页面</title>
<style>
/* 基础重置与全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "微软雅黑", "Segoe UI", Roboto, sans-serif;
}
:root {
--primary-blue: #0052cc; /* 主品牌蓝 */
--secondary-gray: #f5f7fa; /* 辅助浅灰 */
--text-dark: #1a1a1a; /* 正文深灰 */
--text-light: #666; /* 次要文本 */
--border-color: #e5e7eb; /* 边框浅灰 */
--white: #ffffff; /* 纯白 */
--shadow: 0 2px 8px rgba(0, 0, 0, 0.05); /* 轻阴影 */
}
body {
line-height: 1.6;
color: var(--text-dark);
background-color: var(--white);
}
/* 头部与导航 */
header {
padding: 2rem 1rem;
background-color: var(--white);
border-bottom: 1px solid var(--border-color);
max-width: 1200px;
margin: 0 auto;
}
header h1 {
font-size: 2rem;
color: var(--primary-blue);
margin-bottom: 0.5rem;
}
header p {
color: var(--text-light);
margin-bottom: 1.5rem;
}
nav ul {
display: flex;
gap: 2rem;
list-style: none;
}
nav a {
color: var(--text-dark);
text-decoration: none;
font-weight: 500;
transition: color 0.2s;
}
nav a:hover {
color: var(--primary-blue);
}
/* 主内容容器 */
main {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
}
@media (min-width: 768px) {
main {
grid-template-columns: 2fr 1fr; /* 桌面端左右布局 */
}
}
section {
margin-bottom: 2rem;
}
h2 {
font-size: 1.5rem;
color: var(--text-dark);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid var(--primary-blue);
}
/* 功能列表 */
#features ul {
list-style: none;
display: grid;
gap: 1rem;
}
#features li {
padding: 1rem;
background: var(--secondary-gray);
border-radius: 4px;
box-shadow: var(--shadow);
}
#features h3 {
font-size: 1.1rem;
color: var(--primary-blue);
margin-bottom: 0.5rem;
}
/* 图集 */
#gallery {
display: grid;
gap: 1.5rem;
}
#gallery figure {
border: 1px solid var(--border-color);
border-radius: 4px;
overflow: hidden;
box-shadow: var(--shadow);
}
#gallery img {
width: 100%;
height: auto;
display: block;
}
#gallery figcaption {
padding: 0.75rem;
font-size: 0.9rem;
color: var(--text-light);
background: var(--white);
}
/* 价格表格 */
#pricing table {
width: 100%;
border-collapse: collapse;
background: var(--white);
box-shadow: var(--shadow);
}
#pricing th,
#pricing td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid var(--border-color);
}
#pricing th {
background: var(--secondary-gray);
font-weight: 600;
}
#pricing tr:last-child td {
border-bottom: none;
}
#pricing tr:hover {
background: var(--secondary-gray);
}
/* 联系表单 */
#contact fieldset {
border: 1px solid var(--border-color);
border-radius: 4px;
padding: 1.5rem;
margin-bottom: 1rem;
}
#contact legend {
padding: 0 0.5rem;
font-weight: 600;
color: var(--primary-blue);
}
#contact label {
display: block;
margin-bottom: 0.75rem;
font-weight: 500;
}
#contact input,
#contact textarea {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border-color);
border-radius: 4px;
font-size: 1rem;
}
#contact button {
background: var(--primary-blue);
color: var(--white);
border: none;
padding: 0.75rem 2rem;
border-radius: 4px;
cursor: pointer;
font-size: 1rem;
transition: background 0.2s;
}
#contact button:hover {
background: #0040a3;
}
/* 侧边栏与页脚 */
aside {
padding: 2rem 1rem;
background: var(--secondary-gray);
max-width: 1200px;
margin: 0 auto;
}
footer {
padding: 2rem 1rem;
text-align: center;
color: var(--text-light);
border-top: 1px solid var(--border-color);
max-width: 1200px;
margin: 2rem auto 0;
}
footer a {
color: var(--primary-blue);
text-decoration: none;
}
</style>
</head>
<body>
<!-- 原HTML结构完全保留仅通过CSS美化 -->
<header>
<h1>产品演示 — AI 美化基线</h1>
<p>
这是一个用于不同生成式 AI 美化对比的基础 HTML
页面。页面不含任何样式或脚本。
</p>
<nav aria-label="主导航">
<ul>
<li><a href="#overview">概述</a></li>
<li><a href="#features">功能</a></li>
<li><a href="#gallery">展示</a></li>
<li><a href="#pricing">价格</a></li>
<li><a href="#contact">联系</a></li>
</ul>
</nav>
</header>
<main>
<section id="overview" aria-labelledby="overview-title">
<h2 id="overview-title">概述</h2>
<p>
我们的示例产品旨在演示一个简单的单页面布局:标题、特色、图集、价格与联系表单。你可以把本文件交给多个
AI让它们为此页面生成 CSS、设计系统或重构 HTML。
</p>
</section>
<section id="features" aria-labelledby="features-title">
<h2 id="features-title">功能亮点</h2>
<ul>
<li>
<h3>高性能</h3>
<p>优化的渲染流程与低延迟响应。</p>
</li>
<li>
<h3>安全可靠</h3>
<p>采用行业标准的安全实践,保障数据与隐私。</p>
</li>
<li>
<h3>易于扩展</h3>
<p>模块化设计,便于功能扩展与集成第三方服务。</p>
</li>
</ul>
</section>
<section id="gallery" aria-labelledby="gallery-title">
<h2 id="gallery-title">作品展示</h2>
<figure>
<img src="https://picsum.photos/640/360?1" alt="示例图 1" />
<figcaption>示例图 1 — 产品界面快照</figcaption>
</figure>
<figure>
<img src="https://picsum.photos/640/360?2" alt="示例图 2" />
<figcaption>示例图 2 — 使用场景示例</figcaption>
</figure>
</section>
<section id="pricing" aria-labelledby="pricing-title">
<h2 id="pricing-title">价格一览</h2>
<table>
<caption>
方案与价格
</caption>
<thead>
<tr>
<th>方案</th>
<th>价格(每月)</th>
<th>适用对象</th>
</tr>
</thead>
<tbody>
<tr>
<td>免费</td>
<td>¥0</td>
<td>个人与试用</td>
</tr>
<tr>
<td>专业</td>
<td>¥49</td>
<td>中小型团队</td>
</tr>
<tr>
<td>企业</td>
<td>面议</td>
<td>大规模部署与 SLA</td>
</tr>
</tbody>
</table>
</section>
<section id="contact" aria-labelledby="contact-title">
<h2 id="contact-title">联系我们</h2>
<form action="#" method="post" aria-describedby="contact-desc">
<p id="contact-desc">填写下列信息,我们会尽快与您取得联系。</p>
<fieldset>
<legend>联系信息</legend>
<label for="name"
>姓名
<input id="name" name="name" type="text" required />
</label>
<label for="email"
>邮箱
<input id="email" name="email" type="email" required />
</label>
<label for="message"
>留言
<textarea id="message" name="message" rows="5"></textarea>
</label>
</fieldset>
<button type="submit">发送</button>
</form>
</section>
</main>
<aside aria-labelledby="note-title">
<h2 id="note-title">测试说明</h2>
<p>
你可以将此 HTML 原样提交给不同 AI请求它们“美化”或“生成响应式 CSS
和设计说明”。在比较时请确保所有 AI 使用相同的任务描述与约束。
</p>
</aside>
<footer>
<p>© 2025 示例组织。用于 AI 美化对比测试。</p>
<p><a href="#top">返回顶部</a></p>
</footer>
</body>
</html>