/**组件**/
       /* 第一行：2个人 */
        .row-top {
            display: flex;
            justify-content: center;
            gap: 30px;    margin-bottom: 30px;}

        /* 第二行：3个人 */
        .row-bottom {
            display: flex;
            justify-content: center;
            gap: 30px;}

        /* 成员卡片 */
        .team-member {
            width: 240px;
            text-align: center;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);}

        /* 照片区域 */
     .member-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    padding-top: 130%;
    position: relative;}
.member-photo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;}


        /* 姓名职务 */
        .member-info {
            background-color: #0066cc;
            color: #fff;
            padding: 12px 0;
            font-size: 16px;}

        /* 手机端适配 */
        @media (max-width: 768px) {
            .row-top,
            .row-bottom {
                flex-direction: column;
                align-items: center;
                gap: 20px;}
            .team-member {
                width: 280px;}
        }
