/* 前台首页样式 */
body {
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 32px;
}

.name-list {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.name-item {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s;
}

.name-item:last-child {
    border-bottom: none;
}

.name-item:hover {
    background-color: #f5f5f5;
}

.name-format {
    font-size: 16px;
    color: #333;
}

.no-data {
    background: white;
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.no-data p {
    color: #999;
    font-size: 18px;
}






