
        /* 内容区域样式 */
        .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;
        }

        /* 右侧内容区域 */
        .profile-right {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* 个人介绍 */
        .profile-intro {
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .intro-title {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #4dabf7;
            display: inline-block;
        }

        .intro-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #555;
            text-align: justify;
            text-indent: 2em; /* 首行缩进2字符 */
        }

        /* 图片展示区 - 缩小版 */
        /* 图片展示区 - 一行四列 */
.gallery-section {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-bottom: 5px;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #4dabf7;
    margin-top: 8px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 改为4列 */
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* 响应式设计 - 调整不同屏幕尺寸下的列数 */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr); /* 中等屏幕显示3列 */
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); /* 小屏幕显示2列 */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr; /* 超小屏幕显示1列 */
    }
}
        /* 响应式设计 */
        @media (max-width: 992px) {
            .profile-container {
                flex-direction: column;
            }
            
            .profile-right {
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .profile-info, .profile-intro, .gallery-section {
                padding: 20px;
            }
            
            .profile-avatar {
                width: 100px;
                height: 100px;
            }
        }