* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial, sans-serif;
}

body {
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
}

.profile-container {
    display: flex;
    gap: 40px;
}

/* 左侧个人信息模块 - 保持不变 */
.profile-info {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
   
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    margin-top: 20px;
}

.profile-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 40px;
    margin-top: 40px;
}

.profile-details {
    text-align: left;
    margin-top: 50px;
}

.profile-details p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.profile-details i {
    width: 22px;
    color: #4dabf7;
    margin-right: 8px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 40px;
}
.jieshao{
    margin-top: 60px;
}


/* 右侧兴趣爱好模块 - 新设计 */
.hobbies-section {
    flex: 2;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 8px;
    border-bottom: 2px solid #4dabf7;
    display: inline-block;
}

.hobby-item {
    display: flex;
    gap: 25px;
    padding: 10px 0;
    align-items: center;
}

.hobby-item:not(:last-child) {
    border-bottom: 1px dashed #ccc;
}

.hobby-image {
    flex: 1;
    min-width: 250px;
    max-height: 130px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hobby-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.hobby-image:hover img {
    transform: scale(1.05);
}

.hobby-content {
    flex: 2;
}

.hobby-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.hobby-description {
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    
    .hobby-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .hobby-image {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-info, .hobbies-section {
        padding: 20px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
}