/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}

/* banner样式 */
.banner {
    height: 220px;
    background-image: url('images/banner.png');
    background-size: cover;
    background-position: center;
}

/* 导航栏样式 */
nav {
    background-color: #ffd1dc;
}

nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 15px 0;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

/* 主要内容区样式 */
.main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 个人信息样式 */
.profile {
    display: flex;
    margin-bottom: 30px;
}

.avatar img {
    width: 200px;
    border-radius: 10px;
}

.info {
    margin-left: 30px;
}

.info h2 {
    margin-bottom: 20px;
    color: #333;
}

.info p {
    margin-bottom: 10px;
    color: #666;
}

/* 个人简介样式 */
.intro {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    margin-bottom: 20px;
    color: #333;
}

.intro-text p {
    line-height: 1.8;
    color: #666;
}

.video {
    width: 400px;
}

.video video {
    width: 100%;
    border-radius: 10px;
}

/* 底部样式 */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #ffd1dc;
    color: #333;
}

/* 导航栏当前页面高亮样式 */
nav a.active {
    color: #ff9eaa;
    font-weight: bold;
} 