/* 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 头部导航栏样式 */
header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

header nav {
    margin-top: 10px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: center;
}

header nav ul li a {
    color: white;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #0056b3;
}

/* 关于工作室部分样式 */
#about {
    padding: 40px;
    text-align: center;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 团队部分样式 */
#team {
    padding: 40px;
    text-align: center;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-member {
    display: inline-block;
    margin: 20px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
}

.btn:hover {
    background-color: #0056b3;
}

/* 工作成果部分样式 */
#work {
    padding: 40px;
    text-align: center;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.work-item {
    display: inline-block;
    margin: 20px;
}

.work-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* 底部版权信息样式 */
footer {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
}

footer p {
    margin: 5px;
}

/* 团队列表样式 */
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #007bff;
    color: white;
}
