div+css布局简洁的经销存管理系统app的ui原型界面代码
代码语言:html
所属分类:布局界面
代码描述:div+css布局简洁的经销存管理系统app的ui原型界面代码
代码标签: div css 布局 简洁 经销存 管理 系统 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>云链ERP - 进销存UI原型</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap" rel="stylesheet">
<style>
:root {
--primary-color: #007AFF; /* 科技蓝 */
--primary-color-light: #EBF5FF;
--success-color: #34C759; /* 生命绿 */
--danger-color: #FF3B30; /* 活力红 */
--warning-color: #FF9500;
--bg-color: #F2F2F7;
--surface-color: #FFFFFF;
--text-color: #1D1D1F;
--text-secondary-color: #8A8A8E;
--border-color: #E5E5EA;
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; overflow: hidden; }
body { font-family: 'Noto Sans SC', sans-serif; background-color: #111; color: var(--text-color); }
#app-container { position: relative; max-width: 420px; height: 100%; margin: 0 auto; background-color: var(--bg-color); overflow: hidden; display: flex; flex-direction: column; }
.page-container { position: relative; flex: 1; overflow: hidden; }
.page { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; background-color: var(--bg-color); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 10; }
.page.sub-page { transform: translateX(100%); box-shadow: -5px 0 15px rgba(0,0,0,0.05); }
.page.active { transform: translateX(0); z-index: 20; }
.main-view.moving-out .page.active { transform: translateX(-30%); filter: brightness(0.95); }
.header { flex-shrink: 0; display: flex; align-items: center; justify-content: space-between; padding: 10px 20px; background-color: var(--surface-color); height: 60px; }
.header-title { font-size: 1.25rem; font-weight: 700; }
.back-btn { background: none; border: none; cursor: pointer; padding: 5px; margin-left: -5px; width: 36px;}
.content { flex-grow: 1; overflow-y: auto; padding: 20px; }
.card { background-color: var(--surface-color); border-radius: 16px; padding: 20px; margin-bottom: 20px; }
.list-item { display: flex; align-items: center; padding: 15px; background-color: var(--surface-color); cursor: pointer; border-bottom: 1px solid var(--border-color); }
.list-item:last-child { border-bottom: none; }
.product-img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; margin-right: 15px; background-color: #eee; flex-shrink: 0; }
.btn { padding: 12px 20px; border: none; border-radius: 12px; font-size: 1rem; font-weight: 500; cursor: pointer; text-decoration: none; display: block; text-align: center; }
.btn-primary { background-color.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0