/**
 * 导航页默认样式
 * 根据模板ID可以加载不同的样式文件
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-container {
    background: white;
    border-radius: 12px;
    /* padding: 40px; */
    max-width: 500px;
    width: 100%;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); */
    text-align: center;
}

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

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

.nav-info {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.6;
}

.nav-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-family: inherit;
}

.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

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

