/* 首页样式 */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.logo {
    margin-bottom: 40px;
}

.logo h1 {
    color: #333;
    font-size: 36px;
    margin-bottom: 10px;
}

.logo p {
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

.logo .company-name {
    color: #667eea;
    font-weight: 600;
    font-size: 18px;
}

.description {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.api-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e1e1e1;
}

.api-info h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
}

.api-list {
    text-align: left;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    color: #666;
}

.api-list li {
    margin-bottom: 8px;
    list-style: none;
    padding-left: 20px;
    position: relative;
}

.api-list li:before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 600px) {
    .main-container {
        padding: 40px 20px;
    }
    
    .logo h1 {
        font-size: 28px;
    }
} 