/**
 * 落地页默认样式
 */

body {
    background: transparent;
}

.landing-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.landing-title {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
}

.landing-content {
    margin-top: 30px;
}

.landing-info {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    text-align: center;
}

.route-list {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.route-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s;
}

.route-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.route-item h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 20px;
}

.route-info {
    color: #666;
    margin-bottom: 8px;
    font-size: 14px;
}

.route-tag {
    color: #999;
    font-size: 12px;
    margin-bottom: 16px;
}

.route-button {
    padding: 10px 24px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.route-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 147, 251, 0.4);
}

