place.html 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>宴会厅管理系统</title>
  7. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
  8. <style>
  9. * {
  10. margin: 0;
  11. padding: 0;
  12. box-sizing: border-box;
  13. font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
  14. }
  15. :root {
  16. --primary: #1a56db;
  17. --secondary: #0e2a53;
  18. --accent: #f59e0b;
  19. --light: #f8fafc;
  20. --dark: #0f172a;
  21. --card-bg: rgba(255, 255, 255, 0.85);
  22. --glass: rgba(255, 255, 255, 0.1);
  23. --glass-border: rgba(255, 255, 255, 0.2);
  24. --shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  25. }
  26. body {
  27. background: linear-gradient(135deg, #0f172a, #1e293b);
  28. color: var(--light);
  29. min-height: 100vh;
  30. padding: 20px;
  31. position: relative;
  32. overflow-x: hidden;
  33. }
  34. body::before {
  35. content: '';
  36. position: absolute;
  37. top: 0;
  38. left: 0;
  39. right: 0;
  40. bottom: 0;
  41. background:
  42. radial-gradient(circle at 10% 20%, rgba(26, 86, 219, 0.15) 0%, transparent 30%),
  43. radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.15) 0%, transparent 30%);
  44. z-index: -1;
  45. }
  46. .container {
  47. max-width: 1200px;
  48. margin: 0 auto;
  49. }
  50. /* 头部样式 */
  51. header {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. padding: 20px 0;
  56. margin-bottom: 20px;
  57. }
  58. .logo {
  59. display: flex;
  60. align-items: center;
  61. gap: 15px;
  62. }
  63. .logo-text h1 {
  64. font-size: 24px;
  65. font-weight: 700;
  66. background: linear-gradient(to right, #fbcfe8, #c7d2fe);
  67. -webkit-background-clip: text;
  68. -webkit-text-fill-color: transparent;
  69. }
  70. .logo-text p {
  71. font-size: 14px;
  72. color: #cbd5e1;
  73. letter-spacing: 1px;
  74. }
  75. .header-actions {
  76. display: flex;
  77. gap: 15px;
  78. }
  79. .btn {
  80. padding: 10px 20px;
  81. border-radius: 10px;
  82. font-weight: 600;
  83. cursor: pointer;
  84. transition: all 0.3s ease;
  85. border: none;
  86. display: flex;
  87. align-items: center;
  88. gap: 8px;
  89. }
  90. .btn-primary {
  91. background: linear-gradient(135deg, var(--accent), #fbbf24);
  92. color: var(--dark);
  93. box-shadow: 0 4px 6px rgba(245, 158, 11, 0.3);
  94. }
  95. .btn-primary:hover {
  96. transform: translateY(-2px);
  97. box-shadow: 0 6px 12px rgba(245, 158, 11, 0.4);
  98. }
  99. .btn-outline {
  100. background: transparent;
  101. border: 1px solid var(--glass-border);
  102. color: #e2e8f0;
  103. }
  104. .btn-outline:hover {
  105. background: rgba(255, 255, 255, 0.1);
  106. }
  107. /* 时间显示 */
  108. .time-display {
  109. text-align: center;
  110. margin-bottom: 30px;
  111. }
  112. .time-display h2 {
  113. font-size: 80px;
  114. font-weight: 300;
  115. letter-spacing: 2px;
  116. color: var(--light);
  117. margin-bottom: 5px;
  118. text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  119. }
  120. .time-display p {
  121. font-size: 18px;
  122. color: #cbd5e1;
  123. }
  124. /* 功能标题 */
  125. .section-title {
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. margin-bottom: 20px;
  130. padding: 0 10px;
  131. }
  132. .section-title h2 {
  133. font-size: 24px;
  134. font-weight: 700;
  135. background: linear-gradient(to right, #fde68a, #fcd34d);
  136. -webkit-background-clip: text;
  137. -webkit-text-fill-color: transparent;
  138. }
  139. /* 宴会厅卡片 */
  140. .hall-cards {
  141. display: grid;
  142. grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  143. gap: 25px;
  144. margin-bottom: 80px;
  145. }
  146. .hall-card {
  147. background: var(--card-bg);
  148. backdrop-filter: blur(10px);
  149. border-radius: 20px;
  150. border: 1px solid rgba(255, 255, 255, 0.2);
  151. overflow: hidden;
  152. box-shadow: var(--shadow);
  153. transition: all 0.3s ease;
  154. color: var(--dark);
  155. position: relative;
  156. }
  157. .hall-card:hover {
  158. transform: translateY(-8px);
  159. box-shadow: 0 15px 30px rgba(31, 38, 135, 0.25);
  160. }
  161. .hall-image {
  162. height: 200px;
  163. background-size: cover;
  164. background-position: center;
  165. position: relative;
  166. }
  167. .hall-image::after {
  168. content: '';
  169. position: absolute;
  170. top: 0;
  171. left: 0;
  172. right: 0;
  173. bottom: 0;
  174. background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  175. }
  176. .hall-name {
  177. position: absolute;
  178. bottom: 20px;
  179. left: 20px;
  180. z-index: 2;
  181. }
  182. .hall-name h3 {
  183. font-size: 24px;
  184. font-weight: 700;
  185. color: white;
  186. margin-bottom: 5px;
  187. }
  188. .hall-name p {
  189. font-size: 16px;
  190. color: #e2e8f0;
  191. }
  192. .hall-price {
  193. position: absolute;
  194. top: 20px;
  195. right: 20px;
  196. background: rgba(255, 255, 255, 0.9);
  197. padding: 8px 15px;
  198. border-radius: 30px;
  199. font-weight: 700;
  200. font-size: 18px;
  201. color: var(--dark);
  202. z-index: 2;
  203. box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  204. }
  205. .discount-price {
  206. text-decoration: line-through;
  207. color: #ef4444;
  208. font-size: 14px;
  209. margin-left: 5px;
  210. }
  211. .hall-info {
  212. padding: 20px;
  213. }
  214. .info-row {
  215. display: flex;
  216. justify-content: space-between;
  217. padding: 12px 0;
  218. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  219. }
  220. .info-row:last-child {
  221. border-bottom: none;
  222. }
  223. .info-label {
  224. font-weight: 600;
  225. color: #475569;
  226. }
  227. .info-value {
  228. font-weight: 600;
  229. color: var(--dark);
  230. }
  231. .hall-footer {
  232. display: flex;
  233. justify-content: space-between;
  234. padding: 15px 20px;
  235. background: rgba(241, 245, 249, 0.7);
  236. border-top: 1px solid rgba(0, 0, 0, 0.05);
  237. }
  238. .hall-btn {
  239. padding: 8px 15px;
  240. border-radius: 8px;
  241. font-size: 14px;
  242. font-weight: 600;
  243. cursor: pointer;
  244. display: flex;
  245. align-items: center;
  246. gap: 5px;
  247. border: none;
  248. transition: all 0.2s ease;
  249. }
  250. .hall-btn:hover {
  251. transform: translateY(-2px);
  252. }
  253. .btn-book {
  254. background: linear-gradient(135deg, var(--primary), #3b82f6);
  255. color: white;
  256. }
  257. .btn-details {
  258. background: rgba(203, 213, 225, 0.5);
  259. color: var(--dark);
  260. }
  261. /* 底部导航 */
  262. .bottom-nav {
  263. position: fixed;
  264. bottom: 0;
  265. left: 0;
  266. right: 0;
  267. background: rgba(15, 23, 42, 0.95);
  268. backdrop-filter: blur(10px);
  269. border-top: 1px solid var(--glass-border);
  270. display: flex;
  271. justify-content: space-around;
  272. padding: 15px 0;
  273. z-index: 1000;
  274. }
  275. .nav-item {
  276. display: flex;
  277. flex-direction: column;
  278. align-items: center;
  279. gap: 5px;
  280. color: #94a3b8;
  281. cursor: pointer;
  282. transition: all 0.3s ease;
  283. padding: 5px 15px;
  284. border-radius: 15px;
  285. }
  286. .nav-item.active, .nav-item:hover {
  287. background: rgba(26, 86, 219, 0.2);
  288. color: #e2e8f0;
  289. }
  290. .nav-item i {
  291. font-size: 20px;
  292. }
  293. .nav-item span {
  294. font-size: 12px;
  295. }
  296. /* 响应式调整 */
  297. @media (max-width: 768px) {
  298. .hall-cards {
  299. grid-template-columns: 1fr;
  300. }
  301. .time-display h2 {
  302. font-size: 60px;
  303. }
  304. }
  305. </style>
  306. </head>
  307. <body>
  308. <div class="container">
  309. <header>
  310. <div class="logo">
  311. <div class="logo-text">
  312. <h1>宴会厅管理系统</h1>
  313. <p>专业宴会场地预订与管理</p>
  314. </div>
  315. </div>
  316. <div class="header-actions">
  317. <button class="btn btn-outline">
  318. <i class="fas fa-search"></i> 搜索场地
  319. </button>
  320. <button class="btn btn-primary">
  321. <i class="fas fa-plus"></i> 新增/管理
  322. </button>
  323. </div>
  324. </header>
  325. <div class="time-display">
  326. <h2 id="currentTime">17:15</h2>
  327. <p id="currentDate">2023年10月15日 星期三</p>
  328. </div>
  329. <div class="section-title">
  330. <h2>推荐宴会厅</h2>
  331. <button class="btn btn-outline">
  332. <i class="fas fa-filter"></i> 筛选
  333. </button>
  334. </div>
  335. <div class="hall-cards">
  336. <!-- 苏州庄 -->
  337. <div class="hall-card">
  338. <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');">
  339. <div class="hall-name">
  340. <h3>LUXURS 苏州庄</h3>
  341. <p>古典与现代完美融合</p>
  342. </div>
  343. <div class="hall-price">¥456,888.00</div>
  344. </div>
  345. <div class="hall-info">
  346. <div class="info-row">
  347. <span class="info-label">餐标</span>
  348. <span class="info-value">1999元/桌</span>
  349. </div>
  350. <div class="info-row">
  351. <span class="info-label">宴会厅高</span>
  352. <span class="info-value">4.5m</span>
  353. </div>
  354. <div class="info-row">
  355. <span class="info-label">全厅面积</span>
  356. <span class="info-value">728㎡</span>
  357. </div>
  358. <div class="info-row">
  359. <span class="info-label">容纳桌数</span>
  360. <span class="info-value">45-60桌</span>
  361. </div>
  362. </div>
  363. <div class="hall-footer">
  364. <button class="hall-btn btn-details">
  365. <i class="fas fa-info-circle"></i> 查看详情
  366. </button>
  367. <button class="hall-btn btn-book">
  368. <i class="fas fa-calendar-check"></i> 立即预订
  369. </button>
  370. </div>
  371. </div>
  372. <!-- 奥斯卡 -->
  373. <div class="hall-card">
  374. <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');">
  375. <div class="hall-name">
  376. <h3>OSCARS 奥斯卡</h3>
  377. <p>欧式奢华宴会厅</p>
  378. </div>
  379. <div class="hall-price">¥388,800.00</div>
  380. </div>
  381. <div class="hall-info">
  382. <div class="info-row">
  383. <span class="info-label">餐标</span>
  384. <span class="info-value">1999元/桌</span>
  385. </div>
  386. <div class="info-row">
  387. <span class="info-label">宴会厅高</span>
  388. <span class="info-value">4.5m</span>
  389. </div>
  390. <div class="info-row">
  391. <span class="info-label">餐厅面积</span>
  392. <span class="info-value">500㎡</span>
  393. </div>
  394. <div class="info-row">
  395. <span class="info-label">容纳桌数</span>
  396. <span class="info-value">30-40桌</span>
  397. </div>
  398. </div>
  399. <div class="hall-footer">
  400. <button class="hall-btn btn-details">
  401. <i class="fas fa-info-circle"></i> 查看详情
  402. </button>
  403. <button class="hall-btn btn-book">
  404. <i class="fas fa-calendar-check"></i> 立即预订
  405. </button>
  406. </div>
  407. </div>
  408. <!-- 星空之镜 -->
  409. <div class="hall-card">
  410. <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');">
  411. <div class="hall-name">
  412. <h3>SHARRY 星空之镜</h3>
  413. <p>梦幻星空主题宴会厅</p>
  414. </div>
  415. <div class="hall-price">¥229,999.00 <span class="discount-price">(¥289,999.00)</span></div>
  416. </div>
  417. <div class="hall-info">
  418. <div class="info-row">
  419. <span class="info-label">餐标</span>
  420. <span class="info-value">1999元/桌</span>
  421. </div>
  422. <div class="info-row">
  423. <span class="info-label">宴会厅高</span>
  424. <span class="info-value">4.5m</span>
  425. </div>
  426. <div class="info-row">
  427. <span class="info-label">全厅面积</span>
  428. <span class="info-value">428㎡</span>
  429. </div>
  430. <div class="info-row">
  431. <span class="info-label">容纳桌数</span>
  432. <span class="info-value">25-35桌</span>
  433. </div>
  434. </div>
  435. <div class="hall-footer">
  436. <button class="hall-btn btn-details">
  437. <i class="fas fa-info-circle"></i> 查看详情
  438. </button>
  439. <button class="hall-btn btn-book">
  440. <i class="fas fa-calendar-check"></i> 立即预订
  441. </button>
  442. </div>
  443. </div>
  444. </div>
  445. </div>
  446. <!-- 底部导航 -->
  447. <div class="bottom-nav">
  448. <div class="nav-item active">
  449. <i class="fas fa-home"></i>
  450. <span>主页</span>
  451. </div>
  452. <div class="nav-item">
  453. <i class="fas fa-calendar-alt"></i>
  454. <span>日历</span>
  455. </div>
  456. <div class="nav-item">
  457. <i class="fas fa-bell"></i>
  458. <span>消息</span>
  459. </div>
  460. <div class="nav-item">
  461. <i class="fas fa-desktop"></i>
  462. <span>工作台</span>
  463. </div>
  464. <div class="nav-item">
  465. <i class="fas fa-user"></i>
  466. <span>我的</span>
  467. </div>
  468. </div>
  469. <script>
  470. // 更新时间显示
  471. function updateTime() {
  472. const now = new Date();
  473. const hours = now.getHours().toString().padStart(2, '0');
  474. const minutes = now.getMinutes().toString().padStart(2, '0');
  475. document.getElementById('currentTime').textContent = `${hours}:${minutes}`;
  476. const options = {
  477. year: 'numeric',
  478. month: 'long',
  479. day: 'numeric',
  480. weekday: 'long'
  481. };
  482. document.getElementById('currentDate').textContent = now.toLocaleDateString('zh-CN', options);
  483. }
  484. // 初始更新时间
  485. updateTime();
  486. // 每分钟更新一次时间
  487. setInterval(updateTime, 60000);
  488. // 底部导航交互
  489. const navItems = document.querySelectorAll('.nav-item');
  490. navItems.forEach(item => {
  491. item.addEventListener('click', function() {
  492. navItems.forEach(i => i.classList.remove('active'));
  493. this.classList.add('active');
  494. });
  495. });
  496. // 预订按钮交互
  497. const bookButtons = document.querySelectorAll('.btn-book');
  498. bookButtons.forEach(button => {
  499. button.addEventListener('click', function() {
  500. const hallName = this.closest('.hall-card').querySelector('h3').textContent;
  501. alert(`您已开始预订: ${hallName} 宴会厅`);
  502. });
  503. });
  504. // 详情按钮交互
  505. const detailButtons = document.querySelectorAll('.btn-details');
  506. detailButtons.forEach(button => {
  507. button.addEventListener('click', function() {
  508. const hallName = this.closest('.hall-card').querySelector('h3').textContent;
  509. alert(`查看 ${hallName} 的详细信息`);
  510. });
  511. });
  512. // 新增/管理按钮
  513. document.querySelector('.btn-primary').addEventListener('click', function() {
  514. alert('打开宴会厅新增/管理界面');
  515. });
  516. </script>
  517. </body>
  518. </html>