帮我设计一个智能简历解析系统的一个页面,其可以实现上传pdf文件功能,要求要美观
时间: 2024-02-13 21:06:28 浏览: 131
好的,以下是一个简单的智能简历解析系统页面设计,包含上传PDF文件功能。
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>智能简历解析系统</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="title">智能简历解析系统</h1>
<form action="#" method="post" enctype="multipart/form-data">
<input type="file" name="resume" id="resume" class="file-input">
<label for="resume" class="file-label">选择PDF简历文件</label>
<button type="submit" class="submit-btn">解析简历</button>
</form>
<p class="instruction">请上传PDF格式的简历文件</p>
</div>
</body>
</html>
```
CSS代码:
```css
body {
margin: 0;
padding: 0;
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
.container {
max-width: 600px;
margin: 50px auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
padding: 30px;
text-align: center;
}
.title {
font-size: 36px;
color: #333;
margin-bottom: 20px;
}
.file-input {
display: none;
}
.file-label {
display: inline-block;
padding: 10px 20px;
background-color: #00bfa5;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
}
.file-label:hover {
background-color: #009688;
}
.submit-btn {
display: inline-block;
padding: 10px 20px;
background-color: #f44336;
color: #fff;
border-radius: 5px;
text-decoration: none;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
margin-left: 20px;
}
.submit-btn:hover {
background-color: #e53935;
}
.instruction {
font-size: 14px;
color: #666;
margin-top: 20px;
}
```
您可以根据需要进行自定义修改,例如添加更多的页面元素和样式。
阅读全文