style:調整上方成員.搜尋.日期列表排版(WIP)

This commit is contained in:
2026-05-08 19:00:57 +08:00
parent b643adc45d
commit 16e89049de
2 changed files with 446 additions and 60 deletions
+81 -6
View File
@@ -500,11 +500,31 @@ footer {
.member-tabs {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 12px;
margin: 0 auto 14px;
margin: 14px auto 14px;
max-width: 1100px;
padding: 0 20px;
padding: 4px 20px;
}
#itinerary-search {
display: block;
max-width: 1100px;
width: 100%;
margin: 0 auto 14px;
padding: 10px 16px;
border: 1px solid #e4dbb8;
border-radius: 999px;
font-size: 0.92rem;
background: #fffef8;
color: #444;
outline: none;
}
#itinerary-search:focus {
border-color: #ffcc00;
box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
}
.tab-btn {
@@ -564,20 +584,72 @@ footer {
}
.itinerary-list {
background: transparent;
border: 0;
box-shadow: none;
border-radius: 0;
padding-top: 0;
padding-bottom: 0;
display: grid;
gap: 12px;
gap: 14px;
padding: 0 14px;
}
.day-group {
padding: 0 !important;
border: 0 !important;
box-shadow: none !important;
border-radius: 14px;
background: #fff8df;
overflow: hidden;
width: 100%;
margin: 0;
}
.day-toggle {
width: calc(100% - 20px);
margin: 10px auto 8px;
border: 0;
background: #fff8df;
color: #4b4020;
font-size: 0.95rem;
font-weight: 800;
letter-spacing: 0.4px;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: space-between;
cursor: pointer;
border-radius: 12px;
}
.day-toggle i {
transition: transform 0.2s ease;
}
.day-group.expanded .day-toggle i {
transform: rotate(180deg);
}
.day-cards {
display: grid;
gap: 10px;
width: calc(100% - 20px);
margin: 0 auto 10px;
padding: 10px;
background: #fff;
border-radius: 12px;
}
.polaroid-card {
display: flex;
align-items: flex-start;
gap: 14px;
border: 1px solid #f0e9cf;
border-radius: 12px;
padding: 12px;
background: #fff;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
position: relative;
}
@@ -595,7 +667,6 @@ footer {
.polaroid-card:hover,
.polaroid-card.active {
transform: translateY(-1px);
border-color: #f3d56a;
box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
background: #fffdf4;
}
@@ -703,6 +774,10 @@ footer {
grid-template-columns: 1fr;
}
#itinerary-search {
width: calc(100% - 28px);
}
.map-sticky {
position: static;
padding: 14px;