commit
This commit is contained in:
76
figma_html_page/index.html
Normal file
76
figma_html_page/index.html
Normal file
@@ -0,0 +1,76 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>万花筒 - AI种草内容生成</title>
|
||||
<link rel="stylesheet" href="css/common.css">
|
||||
<style>
|
||||
.index-container {
|
||||
max-width: 375px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 24px;
|
||||
text-align: center;
|
||||
}
|
||||
.index-title {
|
||||
font-size: 28px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.index-desc {
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
margin-bottom: 40px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
.page-list {
|
||||
text-align: left;
|
||||
}
|
||||
.page-list h3 {
|
||||
font-size: 16px;
|
||||
color: #333;
|
||||
margin-bottom: 16px;
|
||||
padding-bottom: 8px;
|
||||
border-bottom: 1px solid #E5E5E5;
|
||||
}
|
||||
.page-link {
|
||||
display: block;
|
||||
padding: 14px 16px;
|
||||
margin-bottom: 8px;
|
||||
background: #F8F8F8;
|
||||
border-radius: 8px;
|
||||
color: #333;
|
||||
text-decoration: none;
|
||||
font-size: 15px;
|
||||
transition: background 0.2s;
|
||||
}
|
||||
.page-link:hover {
|
||||
background: #EFEFEF;
|
||||
}
|
||||
.page-link:active {
|
||||
background: #E5E5E5;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="index-container">
|
||||
<h1 class="index-title">万花筒</h1>
|
||||
<p class="index-desc">AI种草内容生成工具<br>根据设计稿100%还原的HTML页面</p>
|
||||
|
||||
<div class="page-list">
|
||||
<h3>主要页面</h3>
|
||||
<a href="select-product.html" class="page-link">选择商品</a>
|
||||
<a href="generate-content.html" class="page-link">生成内容</a>
|
||||
|
||||
<h3>登录相关</h3>
|
||||
<a href="login.html" class="page-link">万花筒登录</a>
|
||||
<a href="phone-login.html" class="page-link">手机号登录</a>
|
||||
|
||||
<h3>个人中心</h3>
|
||||
<a href="profile.html" class="page-link">个人中心</a>
|
||||
<a href="bind-account.html" class="page-link">绑定小红书账号</a>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user