/**
 * 线路选择页默认样式
 */

body {
    background: white;
}

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

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

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

.route-detail {
    margin-bottom: 30px;
}

.route-detail h2 {
    color: #2c3e50;
    margin-bottom: 16px;
    font-size: 24px;
}

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

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

.custom-fields {
    margin-top: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-fields h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 16px;
}

.custom-fields ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-fields li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
}

.custom-fields li:last-child {
    border-bottom: none;
}

.custom-fields strong {
    color: #2c3e50;
    margin-right: 8px;
}

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

.route-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.route-button:active {
    transform: translateY(0);
}

/* 加载动画样式 */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    min-height: 300px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4facfe;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: #666;
    font-size: 16px;
    margin: 0;
    text-align: center;
}
