191 lines
3.0 KiB
CSS
191 lines
3.0 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: rgba(28, 108, 178, 0.9);
|
|
color: white;
|
|
padding: 20px;
|
|
width: 100%;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
align-items: center;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.logo {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-left: 20px;
|
|
}
|
|
|
|
.nav-buttons {
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
.nav-buttons a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
padding: 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.nav-buttons a:hover {
|
|
background-color: #155a8c;
|
|
}
|
|
|
|
.user-menu {
|
|
position: relative;
|
|
display: flex;
|
|
align-items: center;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.user-menu span {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
}
|
|
|
|
.dropbtn {
|
|
background-color: rgba(28, 108, 178, 0.9);
|
|
color: white;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.dropdown-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 160px;
|
|
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
z-index: 1;
|
|
right: 0;
|
|
}
|
|
|
|
.dropdown-content a {
|
|
color: black;
|
|
padding: 12px 16px;
|
|
text-decoration: none;
|
|
display: block;
|
|
}
|
|
|
|
.dropdown-content a:hover {
|
|
background-color: #f1f1f1;
|
|
}
|
|
|
|
.dropdown:hover .dropdown-content {
|
|
display: block;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
width: 80%;
|
|
margin: 20px auto;
|
|
padding-top: 80px; /* 给主内容增加顶部填充,以避免被固定导航栏遮挡 */
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
color: #1c6cb2;
|
|
}
|
|
|
|
.order-info, .passenger-info, .order-summary {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.order-info p, .order-summary p {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
table, th, td {
|
|
border: 1px solid #ccc;
|
|
}
|
|
|
|
th, td {
|
|
padding: 10px;
|
|
text-align: center;
|
|
}
|
|
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
.btn {
|
|
padding: 10px 20px;
|
|
background-color: #1c6cb2;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.btn:hover {
|
|
background-color: #155a8c;
|
|
}
|
|
|
|
.cancel-btn {
|
|
background-color: #ff4d4d;
|
|
}
|
|
|
|
.cancel-btn:hover {
|
|
background-color: #cc0000;
|
|
}
|
|
|
|
.back-btn {
|
|
background-color: #f2f2f2;
|
|
color: black;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 10px 20px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.back-btn:hover {
|
|
background-color: #d9d9d9;
|
|
}
|
|
|
|
footer {
|
|
background-color: rgba(28, 108, 178, 0.9);
|
|
color: white;
|
|
text-align: center;
|
|
padding: 10px 0;
|
|
width: 100%;
|
|
position: relative;
|
|
margin-top: auto; /* 将footer推到页面底部 */
|
|
} |