/* 首页样式 */
.home-container {
    margin-top: 44px;
    margin-bottom: 50px;
    min-height: calc(100vh - 94px);
}

.banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.banner h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 14px;
    opacity: 0.9;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 10px;
}

.menu-item {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.menu-item:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.menu-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.menu-text {
    font-size: 14px;
    color: #323233;
}
