fukyu,gikl
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>信息收集</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Microsoft YaHei", sans-serif;
}
body {
background-color: #f5f5f5;
padding: 30px;
}
.container {
max-width: 500px;
margin: 0 auto;
background: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
margin-bottom: 25px;
color: #333;
}
.form-item {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #555;
}
input, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 6px;
font-size: 16px;
}
textarea {
resize: vertical;
min-height: 100px;
}
button {
width: 100%;
padding: 14px;
background-color: #409eff;
color: white;
border: none;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #337ecc;
}
</style>
</head>
<body>
<div class="container">
<h2>你好!请填写以下信息</h2>
<form>
<div class="form-item">
<label>姓名</label>
<input type="text" placeholder="请输入您的姓名">
</div>
<div class="form-item">
<label>联系方式</label>
<input type="text" placeholder="请输入电话/微信/QQ">
</div>
<div class="form-item">
<label>您的需求</label>
<textarea placeholder="请详细描述您的需求..."></textarea>
</div>
<button type="submit">提交信息</button>
</form>
</div>
</body>
</html>