/* ===== 首页 Hero（浅色单页，无轮播） ===== */
.szyj-hero {
    position: relative;
    /* 整块 Hero 高度约缩减六分之一 */
    padding: 83px 0 53px;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f0fe 30%, #f8f9fc 100%);
}

.szyj-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.szyj-hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.szyj-hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.szyj-hero__content {
    max-width: 720px;
}

.szyj-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #4b5563;
}

.szyj-hero__badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

.szyj-hero__title {
    margin: 0 0 15px;
    font-size: clamp(2.5rem, 3.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.03em;
    color: #1a1a2e;
}

.szyj-hero__title span {
    color: #1a56db;
    /* 强制与标题主体同字号、字重和行高；宽度不足时自然换行 */
    display: inline;
    font-size: 1em !important;
    font-weight: 800 !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
}

.szyj-hero__desc {
    margin: 0 0 27px;
    max-width: 560px;
    font-size: 1.4rem;
    line-height: 1.72;
    color: #4b5563;
}

.szyj-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 33px;
}

.szyj-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    text-decoration: none;
    transition: all 0.2s ease;
}

.szyj-hero__btn--primary {
    background: #1a56db;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.28);
}

.szyj-hero__btn--primary:hover {
    background: #1245b3;
    color: #fff !important;
    transform: translateY(-1px);
}

.szyj-hero__btn--outline {
    background: #fff;
    color: #1a56db !important;
    border: 2px solid #1a56db;
}

.szyj-hero__btn--outline:hover {
    background: #e8effd;
    color: #1a56db !important;
}

.szyj-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 7px;
    padding-top: 27px;
    border-top: 1px solid #e5e7eb;
}

.szyj-hero__stat .num {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a56db;
    line-height: 1.2;
}

.szyj-hero__stat .num span {
    font-size: 1.25rem;
    font-weight: 700;
}

.szyj-hero__stat .label {
    margin-top: 4px;
    font-size: 1.125rem;
    color: #6b7280;
}

.szyj-hero__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.szyj-hero__qr-card {
    width: 100%;
    max-width: 320px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px 22px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.szyj-hero__qr-card h5 {
    margin: 0 0 16px;
    font-size: 1.44rem;
    font-weight: 700;
    color: #1a1a2e;
}

.szyj-hero__qr-card img {
    display: block;
    width: 164px;
    height: 164px;
    margin: 0 auto 14px;
    object-fit: contain;
}

.szyj-hero__qr-card p {
    margin: 0;
    font-size: 1.125rem;
    color: #6b7280;
}

.szyj-hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.szyj-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 1.1rem;
    color: #4b5563;
}

.szyj-hero__trust i {
    color: #1a56db;
}

@media (max-width: 991px) {
    .szyj-hero {
        padding: 60px 0 47px;
    }

    .szyj-hero__content {
        max-width: none;
        text-align: center;
    }

    .szyj-hero__desc {
        margin-left: auto;
        margin-right: auto;
    }

    .szyj-hero__actions {
        justify-content: center;
    }

    .szyj-hero__stats {
        justify-content: center;
        gap: 24px;
    }

    .szyj-hero__stat {
        text-align: center;
    }
}

/* ===== 首页身份背板（替换原「立即搜索」区域） ===== */
.szyj-identity {
    background: #1a56db;
    /* 蓝色资质条高度增加约四分之一 */
    padding: 52px 0;
    color: #fff;
}

.szyj-identity__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.szyj-identity__item {
    text-align: center;
}

.szyj-identity__item h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.szyj-identity__item p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
    .szyj-identity {
        padding: 32px 0;
    }

    .szyj-identity__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
