* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'PingFang SC','Microsoft YaHei','Helvetica Neue',Arial,sans-serif; background: #F5F7FA; color: #1e2a3a; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
        .page-main { padding: 24px 0 40px; }
        .dept-hero { background: linear-gradient(135deg, #08C7A3, #00a884); border-radius: 16px; padding: 40px 36px; margin-bottom: 28px; color: #fff; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
        .dept-hero .dept-icon { width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; }
        .dept-hero .dept-icon img { width: 48px; height: 48px; object-fit: contain; }
        .dept-hero .dept-info { flex: 1; min-width: 200px; }
        .dept-hero .dept-name { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
        .dept-hero .dept-desc { font-size: 15px; line-height: 1.7; opacity: 0.9; max-width: 700px; }
        .dept-section { background: #ffffff; border-radius: 16px; padding: 24px 28px 28px; margin-bottom: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); border: 1px solid #edf0f5; }
        .section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 8px 12px; }
        .section-header h2 { font-size: 22px; font-weight: 700; color: #1e2a3a; display: flex; align-items: center; gap: 8px; }
        .section-header h2 i { color: #08C7A3; font-size: 20px; }
        .section-header .more { font-size: 14px; color: #6a7a8e; display: flex; align-items: center; gap: 4px; cursor: pointer; }
        .section-header .more:hover { color: #08C7A3; }
        .expert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
        .expert-card { background: #f8fafc; border-radius: 14px; padding: 20px; border: 1px solid #edf0f5; cursor: pointer; transition: all 0.25s; position: relative; }
        .expert-card:hover { border-color: #08C7A3; box-shadow: 0 4px 16px rgba(8,199,163,0.08); }
        .expert-card .expert-top { display: flex; align-items: center; gap: 14px; }
        .expert-card .expert-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
        .expert-card .expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .expert-card .expert-name { font-size: 17px; font-weight: 600; color: #1e2a3a; }
        .expert-card .expert-titles span { display: inline-block; background: #edf2f9; border-radius: 10px; padding: 2px 10px; font-size: 12px; color: #5a6a7e; }
        .expert-card .expert-dept { font-size: 13px; color: #5a6a7e; margin-top: 2px; }
        .expert-card .expert-skill { font-size: 13px; color: #3a4a5e; margin-top: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .expert-card .expert-skill .detail { color: #08C7A3; }
        .expert-card .expert-btn { position: absolute; right: 20px; top: 20px; background: #08C7A3; color: #fff; border: none; border-radius: 20px; padding: 6px 16px; font-size: 13px; cursor: pointer; }
        .expert-card .expert-btn:hover { background: #00a884; }
        .party-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
        .party-item { padding: 12px 0; border-bottom: 1px solid #f0f3f8; cursor: pointer; }
        .party-item:last-child { border-bottom: none; }
        .party-item .party-title { font-size: 15px; font-weight: 500; color: #1e2a3a; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
        .party-item .party-summary { font-size: 13px; color: #7a8a9e; margin-top: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .party-item .detail { color: #08C7A3; }
        @media (max-width: 768px) {
            .dept-hero { padding: 28px 20px; }
            .dept-hero .dept-name { font-size: 22px; }
            .dept-section { padding: 18px 16px 20px; }
            .expert-grid { grid-template-columns: 1fr; }
            .party-list { grid-template-columns: 1fr; }
        }