/* Company homepage: independent from the /home mobile app shell. */
:root {
    --company-content-width: min(1120px, calc(100% - 40px));
    --company-copy-width: min(760px, 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html.wechat-font-booting body {
    opacity: 0;
}

html.wechat-font-ready body {
    opacity: 1;
}

body {
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow-x: hidden;
    color: #111827;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.5;
    touch-action: manipulation;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    min-width: 0;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

.company-home-page {
    min-width: 0;
    color: #111827;
    background: #ffffff;
}

.company-home-page::before {
    display: none;
}

.company-home-page .container {
    width: var(--company-content-width);
    margin-right: auto;
    margin-left: auto;
}

.company-site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.company-site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 72px;
}

.company-site-brand {
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.company-site-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-site-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 6px;
    color: #667085;
    font-weight: 700;
}

.company-site-links a:hover,
.company-site-links a:focus-visible {
    color: #2563eb;
    background: #eff6ff;
}

.company-main {
    overflow: hidden;
}

.company-hero {
    padding: 88px 0 80px;
    color: #111827;
    background: #ffffff;
}

.company-hero-inner {
    max-width: none;
    text-align: left;
}

.company-hero-inner > * {
    max-width: var(--company-copy-width);
}

.company-eyebrow,
.company-section-head span,
.company-contact-copy span {
    display: block;
    margin: 0 0 10px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.company-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #111827;
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.12;
}

.company-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: #667085;
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
}

.company-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 32px;
}

.company-primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 6px;
    font-weight: 800;
}

.company-primary-link {
    color: #ffffff;
    background: #2563eb;
}

.company-primary-link:hover,
.company-primary-link:focus-visible,
.company-form-actions button:hover,
.company-form-actions button:focus-visible {
    color: #ffffff;
    background: #1d4ed8;
}

.company-section-head p,
.company-contact-copy p,
.company-section-text,
.company-form-status {
    margin: 0;
    color: #667085;
    line-height: 1.75;
}

.company-section {
    padding: 64px 0;
    border-top: 1px solid #e5e7eb;
    background: #f7f8fa;
}

.company-contact-section {
    background: #ffffff;
}

.company-section-inner {
    max-width: none;
}

.company-section-head {
    max-width: var(--company-copy-width);
    margin-bottom: 18px;
}

.company-section-text {
    max-width: var(--company-copy-width);
}

.company-section-head h2,
.company-contact-copy h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 30px;
    line-height: 1.25;
}

.company-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 34px;
    align-items: start;
}

.company-contact-copy {
    max-width: 520px;
}

.company-message-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
}

.company-message-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: #111827;
    font-weight: 800;
}

.company-message-form input,
.company-message-form textarea {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    padding: 0 12px;
    color: #111827;
    background: #ffffff;
    font: inherit;
}

.company-message-form textarea {
    min-height: 128px;
    padding-top: 12px;
    resize: vertical;
}

.company-message-form input:focus,
.company-message-form textarea:focus {
    outline: 3px solid rgba(37, 99, 235, 0.18);
    border-color: #2563eb;
}

.company-message-full,
.company-form-actions {
    grid-column: 1 / -1;
}

.company-form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.company-form-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 46px;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    background: #2563eb;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.company-form-actions button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.company-form-status {
    min-height: 24px;
    font-weight: 700;
}

.company-form-status[data-type="success"] {
    color: #2563eb;
}

.company-form-status[data-type="error"] {
    color: #9c2f2b;
}

.company-site-footer {
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.company-site-footer .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    min-height: 70px;
    color: #667085;
    font-size: 14px;
}

@media (max-width: 920px) {
    .company-section-inner,
    .company-contact-layout {
        grid-template-columns: 1fr;
    }

    .company-message-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 16px;
        line-height: 1.55;
    }

    .company-message-form input,
    .company-message-form textarea {
        min-height: 44px;
        font-size: 16px;
    }

    .company-site-nav {
        min-height: 64px;
    }

    .company-site-brand {
        font-size: 16px;
    }

    .company-site-links {
        gap: 4px;
    }

    .company-site-links a {
        padding: 0 10px;
    }

    .company-hero {
        padding: 56px 0 48px;
    }

    .company-section {
        padding: 48px 0;
    }

    .company-message-form {
        padding: 18px;
    }
}



