/* 全局样式 */
body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* 头部 */
header {
    background: linear-gradient(to right, #1874CD, #4facfe);
}

/* 时间线 */
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 6px;
    width: 2px;
    background-color: #e9ecef;
    z-index: 0;
}

.timeline li {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.timeline li:last-child {
    margin-bottom: 0;
}

.timeline li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #007bff;
    z-index: 1;
    border: 2px solid white;
    box-shadow: 0 0 0 1px #007bff;
}

.timeline .time {
    flex: 0 0 60px;
    font-weight: bold;
    color: #007bff;
    margin-right: 10px;
}

/* 天气卡片 */
.weather-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.weather-icon {
    color: #007bff;
}

/* 阴影效果 */
.shadow-hover {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 高德地图相关链接 */
.amap-link {
    background-color: #00b2ff;
    color: white;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.amap-link:hover {
    background-color: #0084ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* 卡片样式 */
.card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    font-weight: bold;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* 按钮样式 */
.btn-outline-primary {
    border-color: #007bff;
    color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

/* 页脚样式 */
footer {
    background: linear-gradient(to right, #343a40, #212529);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .card-img-top {
        height: 180px;
    }
    
    .timeline li {
        padding-left: 25px;
    }

    .timeline:before {
        left: 5px;
    }

    .timeline li:before {
        width: 12px;
        height: 12px;
        left: 0;
    }

    .timeline .time {
        flex: 0 0 50px;
        margin-right: 5px;
    }
}

/* 高德地图容器样式 */
#amap-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
} 