@charset "utf-8";
/* CSS Document */

 * {    text-decoration: none;
            margin: 0;
            padding: 0;
            box-sizing: border-box;            
        }

        body {
            background-color: #f5f7fc;
            scroll-behavior: smooth;
        }     
		
		.mbx {
    margin:5vw 0 0px auto;
    line-height: 40px;
    color: #666;
    white-space: nowrap;
}

.mbx span {
    font-size: 14px;
    padding-left: 5px;
    color: #4671fb;
}

.mbx a {
    color: #4671fb;
}   

/* ===== 专家团队网格 ===== */
        .team-section {
            max-width: 78%;
            margin: 0 auto;
            padding: 3rem 0rem 6rem 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
            gap: 1rem;
        }

        /* ===== 专家卡片 ===== */
        .expert-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(26, 58, 92, 0.08);
            transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
            border: 1px solid #edf4f9;
            display: flex;
            flex-direction: column;
        }

        .expert-card.hidden {
            display: none;
        }

        .expert-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 45px rgba(26, 58, 92, 0.14);
            border-color: #cde0e9;
        }

        .expert-card .card-img {
            width: 100%;
            height: auto;
            background: linear-gradient(145deg, #d4e9f2, #b8d8e8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            color: #1a3a5c;
            position: relative;
            overflow: hidden;
        }

        .expert-card .card-img img {
            width: 50%;
            height: 100%;
            object-fit: cover;
        }

        /* 头像占位图标（当没有图片时） */
        .expert-card .card-img .avatar-placeholder {padding-top: 3rem;
            background: #fff;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            color: #2a5f7a;
        }

        .expert-card .card-body {
            padding: 1.4rem 1.6rem 1.6rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .expert-card .card-body .expert-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #333;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .expert-card .card-body .expert-name .badge {
            font-size: 0.7rem;
            font-weight: 600;
            background: #f39c12;
            color: #fff;
            padding: 2px 12px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        .expert-card .card-body .expert-title {
            font-size: 0.95rem;
            color: #2a7f9e;
            font-weight: 500;
            margin: 4px 0 6px;
        }

        .expert-card .card-body .expert-dept {
            font-size: 0.85rem;
            color: #555;
            margin: 10px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .expert-card .card-body .expert-dept i {
            color: #7ec8e3;
            width: 18px;
        }

        .expert-card .card-body .expert-desc {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
            margin: 6px 0 14px;
            flex: 1;
        }

        .expert-card .card-body .expert-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 10px;
            margin: 16px 0;
        }

        .expert-card .card-body .expert-tags span {
            background: #ecf5fa;
            padding: 3px 14px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
            color: #7593f3;
            letter-spacing: 0.3px;
        }

        .expert-card .card-body .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            padding-top: 14px;
            border-top: 1px solid #ecf3f8;
        }

        .expert-card .card-body .card-footer .schedule-btn {
            background: linear-gradient(135deg, #2eb4fc, #1366f7);
            color: #fff;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            border: none;
            transition: background 0.3s ease;
            cursor: default;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .expert-card .card-body .card-footer .schedule-btn i {
            font-size: 0.8rem;
        }

        .expert-card .card-body .card-footer .schedule-btn:hover {
            background: #0f2a44;
        }

        .expert-card .card-body .card-footer .expert-experience {
            font-size: 0.8rem;
            color: #6a8fa8;
        }