.invitation-card {

    width: 100%;
    background-color: #ffffff;
    border-radius: 0rem;
    overflow: hidden;
    color:#2a2b2d;
}
.card-inner { padding: 3rem 0rem; }

.top-rule {
    width: 100px;
    height: 4px;
    border-radius: 4px;
    margin-bottom: 2rem;
}

h1 {

    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.2;

    margin-bottom: 0.5rem;
}

.subhead {

    font-size: 1.5rem;
    font-weight: 500;

    margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
}

/* 统一区块标题 */
.section-title {
    font-size: 1.5rem;
    font-weight: 600;

    margin: 2rem 0 1.2rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.section-title i {

    font-size: 1.6rem;
    width: 2rem;
}
.section-title:first-of-type {
    margin-top: 0;
}

/* 联系人卡片网格 */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin: 1.5rem 0 1rem;
}
.contact-card {
    flex: 1 1 280px;


    padding: 2rem 2rem;
    border: 1px solid #e5e5e5;
    transition: all 0.2s ease;
    box-shadow: 0 6px 12px -8px rgba(0,20,30,0.1);
}
.contact-card:hover {
    border-color: #e0e0e0;
    background: #fffdfa;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: 700;


    margin-bottom: 0.25rem;
}
.contact-title {
    font-size: 1rem;

    letter-spacing: 0.5px;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.8rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;

}
.contact-detail i {

    width: 1.6rem;
    font-size: 1.2rem;
    text-align: center;
}
.contact-detail a {

    text-decoration: none;

    font-weight: 500;
}
.contact-detail a:hover {

}

.consult-note {
    background: #ecf2f9;
    border-radius: 40px;
    padding: 0.6rem 1.8rem;
    display: inline-block;
    margin: 0.5rem 0 1.5rem;
    font-size: 1rem;

    border: 1px solid #d8e2ed;
}
.consult-note i {

    margin-right: 0.5rem;
}

.footnote {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.9rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}
.footnote i {  }

/* 响应式 */
@media (max-width: 700px) {

    .card-inner { padding: 2rem 0rem; }
    h1 { font-size: 2rem; }
    .subhead { font-size: 1.25rem; }
    .section-title { font-size: 1.3rem; }
    .contact-card { padding: 1.5rem; }

    .invitation-card {



    }


}