feat: 新增快速预定页面

This commit is contained in:
duanshuwen
2025-10-18 15:44:48 +08:00
parent d71e63b666
commit 4b066626cf
13 changed files with 624 additions and 9 deletions

View File

@@ -11,6 +11,10 @@
background-color: #17294e;
}
.bg-E5E8EE {
background-color: #e5e8ee;
}
.bg-liner {
background: linear-gradient(205deg, #8ae3fc 0%, rgba(138, 227, 252, 0) 20%),
linear-gradient(155deg, #fef7e1 0%, rgba(254, 247, 225, 0) 20%),

View File

@@ -1,4 +1,8 @@
// 外边距-bottom
.ml-auto {
margin-left: auto;
}
.m-4 {
margin: 4px;
}
@@ -7,6 +11,18 @@
margin-right: 4px;
}
.mb-4 {
margin-bottom: 4px;
}
.mt-6 {
margin-top: 6px;
}
.mb-6 {
margin-bottom: 6px;
}
.m-8 {
margin: 8px;
}
@@ -15,6 +31,10 @@
margin-top: 8px;
}
.ml-8 {
margin-left: 8px;
}
.mr-8 {
margin-right: 8px;
}
@@ -39,18 +59,14 @@
margin-bottom: 12px;
}
.mt-6 {
margin-top: 6px;
}
.mb-6 {
margin-bottom: 6px;
}
.ml-12 {
margin-left: 12px;
}
.ml-16 {
margin-left: 16px;
}
.ml-20 {
margin-left: 20px;
}

View File

@@ -7,6 +7,10 @@
border-radius: 8px;
}
.rounded-10 {
border-radius: 10px;
}
.rounded-12 {
border-radius: 12px;
}