vue3实现移动端上门维修保洁家政维修按摩等服务app的ui原型图代码
代码语言:html
所属分类:布局界面
代码描述:vue3实现移动端上门维修保洁家政维修按摩等服务app的ui原型图代码
代码标签: vue 移动端 上门 维修 保洁 家政 维修 按摩 服务 app ui 原型图 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!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>到位服务 - 品质生活专家</title>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue3.2.22.js"></script>
<style>
:root {
--primary-color: #3498db; /* 专业、可靠的蓝色 */
--primary-light-color: #eaf5fc;
--secondary-color: #f39c12; /* 用于突出/评分的橙色 */
--text-color: #34495e;
--text-light-color: #7f8c8d;
--bg-color: #f4f7f6;
--card-bg-color: #ffffff;
--border-color: #ecf0f1;
--shadow: 0 6px 15px rgba(52, 73, 94, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
-webkit-tap-highlight-color: transparent;
}
/* App Layout */
.app-layout {
max-width: 600px;
margin: 0 auto;
background-color: var(--card-bg-color);
min-height: 100vh;
display: flex;
flex-direction: column;
}
.app-content {
flex: 1;
padding-bottom: 70px; /* Space for bottom nav */
overflow-y: auto;
}
/* Page Common Styles */
.page {
padding: 20px;
animation: fadeIn 0.4s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
.page-header {
display: flex;
align-items: center;
margin-bottom: 25px;
position: relative;
}
.back-btn {
position: absolute;
left: -10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
padding: 10px;
}
.page-title {
font-size: 22px;
font-weight: 600;
text-align: center;
width: 100%;
}
.section-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px;
}
/* Bottom Navigation */
.bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
max-width: 600px;
margin: 0 auto;
height: 65px;
background-color: var(--card-bg-color);
display: flex;
justify-content: space-around;
align-items: center;
border-top: 1px solid var(--border-color);
}
.nav-item {
cursor: pointer; text-align: center; color: var(--text-light-color); transition: all 0.2s;
}
.nav-item .icon { width: 24px; height: 24px; margin-bottom: 3px; }
.nav-item .label { font-size: 12px; }
.nav-item.active { color: var(--primary-color); transform: translateY(-3px); }
/* Common Components */
.btn {
display: inline-block; padding: 12px 25px.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0