123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>宴会厅管理系统</title>
- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
- <style>
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
- }
-
- :root {
- --primary: #1a56db;
- --secondary: #0e2a53;
- --accent: #f59e0b;
- --light: #f8fafc;
- --dark: #0f172a;
- --card-bg: rgba(255, 255, 255, 0.85);
- --glass: rgba(255, 255, 255, 0.1);
- --glass-border: rgba(255, 255, 255, 0.2);
- --shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
- }
-
- body {
- background: linear-gradient(135deg, #0f172a, #1e293b);
- color: var(--light);
- min-height: 100vh;
- padding: 20px;
- position: relative;
- overflow-x: hidden;
- }
-
- body::before {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background:
- radial-gradient(circle at 10% 20%, rgba(26, 86, 219, 0.15) 0%, transparent 30%),
- radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 30%);
- z-index: -1;
- }
-
- .container {
- max-width: 1200px;
- margin: 0 auto;
- }
-
- /* 头部样式 */
- header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 20px 0;
- margin-bottom: 20px;
- }
-
- .logo {
- display: flex;
- align-items: center;
- gap: 15px;
- }
-
- .logo-text h1 {
- font-size: 24px;
- font-weight: 700;
- background: linear-gradient(to right, #fbcfe8, #c7d2fe);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
-
- .logo-text p {
- font-size: 14px;
- color: #cbd5e1;
- letter-spacing: 1px;
- }
-
- .header-actions {
- display: flex;
- gap: 15px;
- }
-
- .btn {
- padding: 10px 20px;
- border-radius: 10px;
- font-weight: 600;
- cursor: pointer;
- transition: all 0.3s ease;
- border: none;
- display: flex;
- align-items: center;
- gap: 8px;
- }
-
- .btn-primary {
- background: linear-gradient(135deg, var(--accent), #fbbf24);
- color: var(--dark);
- box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
- }
-
- .btn-primary:hover {
- transform: translateY(-2px);
- box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
- }
-
- .btn-outline {
- background: transparent;
- border: 1px solid var(--glass-border);
- color: #e2e8f0;
- }
-
- .btn-outline:hover {
- background: rgba(255, 255, 255, 0.1);
- }
-
- /* 时间显示 */
- .time-display {
- text-align: center;
- margin-bottom: 30px;
- }
-
- .time-display h2 {
- font-size: 80px;
- font-weight: 300;
- letter-spacing: 2px;
- color: var(--light);
- margin-bottom: 5px;
- text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
- }
-
- .time-display p {
- font-size: 18px;
- color: #cbd5e1;
- }
-
- /* 功能标题 */
- .section-title {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- padding: 0 10px;
- }
-
- .section-title h2 {
- font-size: 24px;
- font-weight: 700;
- background: linear-gradient(to right, #fde68a, #fcd34d);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
-
- /* 宴会厅卡片 */
- .hall-cards {
- display: grid;
- grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
- gap: 25px;
- margin-bottom: 80px;
- }
-
- .hall-card {
- background: var(--card-bg);
- backdrop-filter: blur(10px);
- border-radius: 20px;
- border: 1px solid rgba(255, 255, 255, 0.2);
- overflow: hidden;
- box-shadow: var(--shadow);
- transition: all 0.3s ease;
- color: var(--dark);
- position: relative;
- }
-
- .hall-card:hover {
- transform: translateY(-8px);
- box-shadow: 0 15px 30px rgba(31, 38, 135, 0.25);
- }
-
- .hall-image {
- height: 200px;
- background-size: cover;
- background-position: center;
- position: relative;
- }
-
- .hall-image::after {
- content: '';
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
- }
-
- .hall-name {
- position: absolute;
- bottom: 20px;
- left: 20px;
- z-index: 2;
- }
-
- .hall-name h3 {
- font-size: 24px;
- font-weight: 700;
- color: white;
- margin-bottom: 5px;
- }
-
- .hall-name p {
- font-size: 16px;
- color: #e2e8f0;
- }
-
- .hall-price {
- position: absolute;
- top: 20px;
- right: 20px;
- background: rgba(255, 255, 255, 0.9);
- padding: 8px 15px;
- border-radius: 30px;
- font-weight: 700;
- font-size: 18px;
- color: var(--dark);
- z-index: 2;
- box-shadow: 0 4px 10px rgba(0,0,0,0.1);
- }
-
- .discount-price {
- text-decoration: line-through;
- color: #ef4444;
- font-size: 14px;
- margin-left: 5px;
- }
-
- .hall-info {
- padding: 20px;
- }
-
- .info-row {
- display: flex;
- justify-content: space-between;
- padding: 12px 0;
- border-bottom: 1px solid rgba(0, 0, 0, 0.05);
- }
-
- .info-row:last-child {
- border-bottom: none;
- }
-
- .info-label {
- font-weight: 600;
- color: #475569;
- }
-
- .info-value {
- font-weight: 600;
- color: var(--dark);
- }
-
- .hall-footer {
- display: flex;
- justify-content: space-between;
- padding: 15px 20px;
- background: rgba(241, 245, 249, 0.7);
- border-top: 1px solid rgba(0, 0, 0, 0.05);
- }
-
- .hall-btn {
- padding: 8px 15px;
- border-radius: 8px;
- font-size: 14px;
- font-weight: 600;
- cursor: pointer;
- display: flex;
- align-items: center;
- gap: 5px;
- border: none;
- transition: all 0.2s ease;
- }
-
- .hall-btn:hover {
- transform: translateY(-2px);
- }
-
- .btn-book {
- background: linear-gradient(135deg, var(--primary), #3b82f6);
- color: white;
- }
-
- .btn-details {
- background: rgba(203, 213, 225, 0.5);
- color: var(--dark);
- }
-
- /* 底部导航 */
- .bottom-nav {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- background: rgba(15, 23, 42, 0.95);
- backdrop-filter: blur(10px);
- border-top: 1px solid var(--glass-border);
- display: flex;
- justify-content: space-around;
- padding: 15px 0;
- z-index: 1000;
- }
-
- .nav-item {
- display: flex;
- flex-direction: column;
- align-items: center;
- gap: 5px;
- color: #94a3b8;
- cursor: pointer;
- transition: all 0.3s ease;
- padding: 5px 15px;
- border-radius: 15px;
- }
-
- .nav-item.active, .nav-item:hover {
- background: rgba(26, 86, 219, 0.2);
- color: #e2e8f0;
- }
-
- .nav-item i {
- font-size: 20px;
- }
-
- .nav-item span {
- font-size: 12px;
- }
-
- /* 响应式调整 */
- @media (max-width: 768px) {
- .hall-cards {
- grid-template-columns: 1fr;
- }
-
- .time-display h2 {
- font-size: 60px;
- }
- }
- </style>
- </head>
- <body>
- <div class="container">
- <header>
- <div class="logo">
- <div class="logo-text">
- <h1>宴会厅管理系统</h1>
- <p>专业宴会场地预订与管理</p>
- </div>
- </div>
- <div class="header-actions">
- <button class="btn btn-outline">
- <i class="fas fa-search"></i> 搜索场地
- </button>
- <button class="btn btn-primary">
- <i class="fas fa-plus"></i> 新增/管理
- </button>
- </div>
- </header>
-
- <div class="time-display">
- <h2 id="currentTime">17:15</h2>
- <p id="currentDate">2023年10月15日 星期三</p>
- </div>
-
- <div class="section-title">
- <h2>推荐宴会厅</h2>
- <button class="btn btn-outline">
- <i class="fas fa-filter"></i> 筛选
- </button>
- </div>
-
- <div class="hall-cards">
- <!-- 苏州庄 -->
- <div class="hall-card">
- <div class="hall-image" style="background-image: url('https://images.unsplash.com/photo-1511795409834-ef04bbd61622?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');">
- <div class="hall-name">
- <h3>LUXURS 苏州庄</h3>
- <p>古典与现代完美融合</p>
- </div>
- <div class="hall-price">¥456,888.00</div>
- </div>
- <div class="hall-info">
- <div class="info-row">
- <span class="info-label">餐标</span>
- <span class="info-value">1999元/桌</span>
- </div>
- <div class="info-row">
- <span class="info-label">宴会厅高</span>
- <span class="info-value">4.5m</span>
- </div>
- <div class="info-row">
- <span class="info-label">全厅面积</span>
- <span class="info-value">728㎡</span>
- </div>
- <div class="info-row">
- <span class="info-label">容纳桌数</span>
- <span class="info-value">45-60桌</span>
- </div>
- </div>
- <div class="hall-footer">
- <button class="hall-btn btn-details">
- <i class="fas fa-info-circle"></i> 查看详情
- </button>
- <button class="hall-btn btn-book">
- <i class="fas fa-calendar-check"></i> 立即预订
- </button>
- </div>
- </div>
-
- <!-- 奥斯卡 -->
- <div class="hall-card">
- <div class="hall-image" style="background-image: url('https://images.unsplash.com/photo-1566665797739-1674de7a421a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80');">
- <div class="hall-name">
- <h3>OSCARS 奥斯卡</h3>
- <p>欧式奢华宴会厅</p>
- </div>
- <div class="hall-price">¥388,800.00</div>
- </div>
- <div class="hall-info">
- <div class="info-row">
- <span class="info-label">餐标</span>
- <span class="info-value">1999元/桌</span>
- </div>
- <div class="info-row">
- <span class="info-label">宴会厅高</span>
- <span class="info-value">4.5m</span>
- </div>
- <div class="info-row">
- <span class="info-label">餐厅面积</span>
- <span class="info-value">500㎡</span>
- </div>
- <div class="info-row">
- <span class="info-label">容纳桌数</span>
- <span class="info-value">30-40桌</span>
- </div>
- </div>
- <div class="hall-footer">
- <button class="hall-btn btn-details">
- <i class="fas fa-info-circle"></i> 查看详情
- </button>
- <button class="hall-btn btn-book">
- <i class="fas fa-calendar-check"></i> 立即预订
- </button>
- </div>
- </div>
-
- <!-- 星空之镜 -->
- <div class="hall-card">
- <div class="hall-image" style="background-image: url('https://images.unsplash.com/photo-1519671482749-fd09be7ccebf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');">
- <div class="hall-name">
- <h3>SHARRY 星空之镜</h3>
- <p>梦幻星空主题宴会厅</p>
- </div>
- <div class="hall-price">¥229,999.00 <span class="discount-price">(¥289,999.00)</span></div>
- </div>
- <div class="hall-info">
- <div class="info-row">
- <span class="info-label">餐标</span>
- <span class="info-value">1999元/桌</span>
- </div>
- <div class="info-row">
- <span class="info-label">宴会厅高</span>
- <span class="info-value">4.5m</span>
- </div>
- <div class="info-row">
- <span class="info-label">全厅面积</span>
- <span class="info-value">428㎡</span>
- </div>
- <div class="info-row">
- <span class="info-label">容纳桌数</span>
- <span class="info-value">25-35桌</span>
- </div>
- </div>
- <div class="hall-footer">
- <button class="hall-btn btn-details">
- <i class="fas fa-info-circle"></i> 查看详情
- </button>
- <button class="hall-btn btn-book">
- <i class="fas fa-calendar-check"></i> 立即预订
- </button>
- </div>
- </div>
- </div>
- </div>
-
- <!-- 底部导航 -->
- <div class="bottom-nav">
- <div class="nav-item active">
- <i class="fas fa-home"></i>
- <span>主页</span>
- </div>
- <div class="nav-item">
- <i class="fas fa-calendar-alt"></i>
- <span>日历</span>
- </div>
- <div class="nav-item">
- <i class="fas fa-bell"></i>
- <span>消息</span>
- </div>
- <div class="nav-item">
- <i class="fas fa-desktop"></i>
- <span>工作台</span>
- </div>
- <div class="nav-item">
- <i class="fas fa-user"></i>
- <span>我的</span>
- </div>
- </div>
-
- <script>
- // 更新时间显示
- function updateTime() {
- const now = new Date();
- const hours = now.getHours().toString().padStart(2, '0');
- const minutes = now.getMinutes().toString().padStart(2, '0');
- document.getElementById('currentTime').textContent = `${hours}:${minutes}`;
-
- const options = {
- year: 'numeric',
- month: 'long',
- day: 'numeric',
- weekday: 'long'
- };
- document.getElementById('currentDate').textContent = now.toLocaleDateString('zh-CN', options);
- }
-
- // 初始更新时间
- updateTime();
- // 每分钟更新一次时间
- setInterval(updateTime, 60000);
-
- // 底部导航交互
- const navItems = document.querySelectorAll('.nav-item');
- navItems.forEach(item => {
- item.addEventListener('click', function() {
- navItems.forEach(i => i.classList.remove('active'));
- this.classList.add('active');
- });
- });
-
- // 预订按钮交互
- const bookButtons = document.querySelectorAll('.btn-book');
- bookButtons.forEach(button => {
- button.addEventListener('click', function() {
- const hallName = this.closest('.hall-card').querySelector('h3').textContent;
- alert(`您已开始预订: ${hallName} 宴会厅`);
- });
- });
-
- // 详情按钮交互
- const detailButtons = document.querySelectorAll('.btn-details');
- detailButtons.forEach(button => {
- button.addEventListener('click', function() {
- const hallName = this.closest('.hall-card').querySelector('h3').textContent;
- alert(`查看 ${hallName} 的详细信息`);
- });
- });
-
- // 新增/管理按钮
- document.querySelector('.btn-primary').addEventListener('click', function() {
- alert('打开宴会厅新增/管理界面');
- });
- </script>
- </body>
- </html>
|