.content-section {
    background-color: #f0f8ff; /* 浅蓝色背景 */
    padding: 60px 0;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-container {
    display: flex;
    gap: 40px;
    margin-bottom: 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;
}


/* 右侧相册模块 - 九宫格设计 */
.gallery-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;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 15px 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.caption-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.caption-date {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    .profile-info, .gallery-section {
        padding: 20px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}