* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #1d3557;
    font-family: "Microsoft YaHei", Arial, sans-serif;
    background: #f4f8fc;
}

.page {
    min-height: 100vh;
}

.header {
    padding: 72px 20px 88px;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(9, 53, 110, .96), rgba(32, 126, 190, .9)),
        #1261a0;
}

.header-label {
    margin-bottom: 18px;
    color: #a9d9ff;
    font-size: 14px;
    letter-spacing: 4px;
}

.header-title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
}

.header-line {
    width: 56px;
    height: 3px;
    margin: 26px auto 0;
    background: #67c5ff;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.company-section {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    align-items: center;
    padding: 76px 0;
}

.section-mark {
    color: #1688ca;
    font-size: 13px;
    letter-spacing: 3px;
}

.section-title {
    margin: 12px 0 22px;
    color: #102f57;
    font-size: 30px;
}

.company-text {
    margin: 0;
    color: #60748d;
    font-size: 16px;
    line-height: 2;
}

.company-symbol {
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
    border: 1px solid #b9dff5;
    background: #e4f3fc;
}

.company-symbol::before,
.company-symbol::after {
    position: absolute;
    content: "";
    background: #1688ca;
}

.company-symbol::before {
    top: 42px;
    left: 42px;
    width: 96px;
    height: 20px;
    box-shadow: 0 38px 0 #1688ca, 0 76px 0 #1688ca;
}

.company-symbol::after {
    top: 42px;
    left: 42px;
    width: 20px;
    height: 96px;
    box-shadow: 38px 0 0 #1688ca, 76px 0 0 #1688ca;
}

.products-section {
    padding: 72px 0 92px;
    background: #ffffff;
}

.products-heading {
    margin-bottom: 42px;
    text-align: center;
}

.products-heading .section-title {
    margin-bottom: 12px;
}

.products-subtitle {
    margin: 0;
    color: #7c8da1;
    font-size: 15px;
}

.product-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

.product-card {
    display: grid;
    grid-template-columns: 106px 1fr;
    gap: 28px;
    min-height: 260px;
    padding: 34px;
    border: 1px solid #dcebf5;
    border-top: 4px solid #1688ca;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(31, 91, 132, .08);
}

.product-logo {
    display: flex;
    width: 92px;
    height: 92px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    background: #1688ca;
    box-shadow: 10px 10px 0 #cbeafa;
}

.product-name {
    margin: 2px 0 14px;
    color: #12365f;
    font-size: 22px;
}

.product-text {
    margin: 0;
    color: #687d93;
    font-size: 14px;
    line-height: 1.9;
}

.footer {
    color: #c1d5e7;
    background: #0c2e52;
}

.footer-inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 60px;
    align-items: center;
    min-height: 220px;
    padding: 40px 0;
}

.license-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
}

.license {
    position: relative;






}



.license-header {
    padding-bottom: 6px;
    border-bottom: 1px solid #d79563;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
}

.license-line {
    width: 80%;
    height: 4px;
    margin-top: 10px;
    background: #d79563;
}

.license-small-line {
    width: 52%;
    height: 3px;
    margin-top: 8px;
    background: #e5b38e;
}

.footer-info {
    text-align: right;
}

.footer-company {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 20px;
}

.footer-info p {
    margin: 8px 0;
    font-size: 13px;
    line-height: 1.8;
}
.footer-info p a{
    color: #ffffff;
}

@media (max-width: 720px) {
    .header {
        padding: 54px 20px 64px;
    }

    .header-title {
        font-size: 32px;
    }

    .company-section {
        display: block;
        padding: 54px 0;
    }

    .company-symbol {
        margin: 36px auto 0;
    }

    .product-list {
        grid-template-columns: 1fr;
    }

    .product-card {
        grid-template-columns: 78px 1fr;
        gap: 20px;
        padding: 24px;
    }

    .product-logo {
        width: 68px;
        height: 68px;
        font-size: 18px;
        box-shadow: 6px 6px 0 #cbeafa;
    }

    .product-name {
        font-size: 19px;
    }

    .footer-inner {
        display: block;
    }

    .footer-info {
        margin-top: 38px;
        text-align: left;
    }
}