vue3实现招聘求职类app微网站ui原型图h5代码
代码语言:html
所属分类:其他
代码描述:vue3实现招聘求职类app微网站ui原型图h5代码
代码标签: vue 招聘 求职 app 微网站 ui 原型图 h5 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vue3 BOSS直聘 App</title>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue3.2.22.js"></script>
<style>
:root {
--primary-color: #15c2b1;
--bg-color: #f8f8f8;
--text-color: #333;
--text-secondary-color: #666;
--text-light-color: #999;
--border-color: #eee;
--white: #fff;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
margin: 0; background-color: var(--bg-color); color: var(--text-color); font-size: 14px;
}
#app {
max-width: 480px; margin: 0 auto; background-color: var(--white);
min-height: 100vh; position: relative; padding-bottom: 60px;
}
.page-container { padding: 10px; }
.icon { width: 1em; height: 1em; vertical-align: -0.15em; fill: currentColor; overflow: hidden; }
/* Bottom Nav */
.bottom-nav {
position: fixed; bottom: 0; left: 0; right: 0; max-width: 480px; margin: 0 auto;
height: 55px; background-color: var(--white); border-top: 1px solid var(--border-color);
display: flex; justify-content: space-around; align-items: center; z-index: 100;
}
.nav-item {
cursor: pointer; text-align: center; color: var(--text-secondary-color);
display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.nav-item .icon { font-size: 22px; }
.nav-item.active { color: var(--primary-color); }
.nav-item span { font-size: 10px; }
/* Job Page */
.job-list { display: flex; flex-direction: column; gap: 10px; }
.job-card { padding: 15px; border-bottom: 5px solid var(--bg-color); cursor: pointer; }
.job-card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.job-title { font-size: 16px; font-weight: bold; }
.job-salary { font-size: 16px; font-weight: bold; color: var(--primary-color); }
.job-tags { margin: 8px 0; display: flex; gap: 8px; font-size: 12px; color: var(--text-secondary-color); }
.job-company { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.job-company img { width: 20px; height: 20px; border-radius: 4px; }
.job-recruiter { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.recruiter-avatar { width: 30px; height: 30px; border-radius: 50%; }
.re.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0