/* style.css */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f7f1; /* 淡米色，秋日感 */
}
header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d4af37; /* 秋金色 */
}
h1 {
    color: #8B0000; /* 深红，秋叶色 */
    font-size: 2.5em;
}
nav {
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav a {
    display: inline-block;
    margin: 0 15px;
    text-decoration: none;
    color: #5a5a5a;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}
nav a:hover, nav a.active {
    background-color: #d4af37;
    color: white;
}
.section {
    background: white;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h2 {
    color: #8B4513; /* 马鞍棕 */
    border-left: 4px solid #d4af37;
    padding-left: 10px;
}
.map-container {
    height: 400px;
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.highlight {
    background-color: #fff8e1;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: bold;
}
.tip {
    background-color: #e8f5e9;
    border-left: 3px solid #4caf50;
    padding: 10px;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}
/* 小红书搜索按钮 */
.xhs-link {
    display: inline-block;
    margin-left: 6px;
    font-size: 12px;
    line-height: 1;
    padding: 3px 6px;
    border-radius: 10px;
    color: #fff;
    background-color: #ff2e4d; /* 小红书红 */
    text-decoration: none;
}
.xhs-link:hover {
    background-color: #e32542;
}
footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    color: #777;
    border-top: 1px solid #eee;
}

/* 滴滴召车按钮 */
.didi-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #ff8800;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.didi-btn:hover {
    background-color: #e67600;
}