* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background-color: #e6f2ff;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 顶部标题区域 */
.header {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.welcome {
    font-size: 36px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: 24px;
    color: #666;
    margin-top: 10px;
}

.bunny-decoration {
    position: absolute;
    right: 20px;
    top: 0;
    width: 100px;
}

/* 导航菜单 */
.nav {
    background-color: #ffb6c1;
    border-radius: 10px;
    margin-bottom: 20px;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: #ff8da1;
    border-radius: 5px;
}

/* 主内容区域 */
.main-content {
    display: flex;
    gap: 20px;
}

/* 左侧个人信息 */
.sidebar {
    flex: 0 0 300px;
}

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.profile-card h3 {
    color: #ff8da1;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffb6c1;
    padding-bottom: 5px;
}

.info-item {
    margin-bottom: 10px;
    display: flex;
}

.info-item .label {
    flex: 0 0 60px;
    color: #666;
}

.info-item .value {
    flex: 1;
    color: #333;
}

/* 右侧内容区域 */
.content {
    flex: 1;
}

.intro,
.interests {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.intro h3,
.interests h3 {
    color: #ff8da1;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffb6c1;
    padding-bottom: 5px;
}

.flower-deco {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 100px;
    opacity: 0.8;
}

/* 图集区域 */
.gallery {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery h3 {
    color: #ff8da1;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffb6c1;
    padding-bottom: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* 页脚样式 */
.footer {
    background-color: #fff;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info {
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8da1;
}

.footer-copyright {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 10px;
} 