        .team-wrap {
            max-width: 1600px;
            margin: 0 auto;padding-top:80px;
        }
        .team-title {
            font-size: 36px;
            color: #1a4b9c;
            font-weight: 700;
            border-bottom: 3px solid #3684d8;
            padding-bottom: 12px;
            margin-bottom: 40px;
        }
        .team-container {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .team-label {
            background: #2066c9;
            color: #fff;
            font-size: 28px;
            font-weight: 600;
            padding: 24px 10px;
            border-radius: 40px;
            writing-mode: vertical-rl;
            text-orientation: upright;
            letter-spacing: 2px;
        }
        .team-list {
            display: flex;
            gap: 12px;
            flex: 1;
        }
        .team-item {
            position: relative;
            width: calc(100% / 5);
            text-align: center;
        }
        /* Snow 红色外框 */
        .team-item.snow-item {
            border: 4px solid #ff3b3b;
            padding: 6px;
        }
        .avatar-box {
            /*background: #40a0e8;
            clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
            padding-bottom: 20px;
            overflow: hidden;*/
        }
        .avatar-box img {
            width: 100%;
            display: block;
        }
        .info-circle {
            width: 90%;
            margin: 0 auto;
            border: 2px dashed #64a8e4;
            border-radius: 50%;
            text-align: center;
            padding: 16px 0;
            background: #ffffff;
            margin-top: -20px;
            position: relative;
            z-index: 2;
        }
        .name {
            font-size: 26px;
            color: #1a4b9c;
            font-weight: bold;
            margin-bottom: 6px;
        }
        .job {
            font-size: 18px;
            color: #444;
            line-height: 1.4;
        }
        /* 联系方式区域，默认隐藏 */
        .contact-info {
            margin-top: 14px;
            padding: 10px;
            background-color: #194799;
            color: #fff;
            border-radius: 8px;
            opacity: 0;
            height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
.contact-info a{ color: #fff;}
        /* 悬浮展示联系方式 */
        .team-item:hover .contact-info {
            opacity: 1;
            height: auto;
            margin-top: 14px;
        }
.team-item:hover .contact-info a{color: #fff;}
        /* 适配平板手机 */
        @media (max-width: 1200px) {
            .team-list {
                flex-wrap: wrap;
            }
            .team-item {
                width: calc(50% - 10px);
            }
        }
        @media (max-width: 768px) {
            .team-container {
                flex-direction: column;
            }
            .team-label {
                writing-mode: horizontal-tb;
                padding: 10px;
                border-radius: 10px;
                text-align: center;
            }
            .team-item {
                width: 100%;
            }
            .team-title {
                font-size: 28px;
            }
        }