:root {
    --sg-container: 1440px;
    --sg-blue: #0068eb;
    --sg-cyan: #0d99ff;
    --sg-text: #1d2233;
    --sg-muted: rgba(29, 34, 51, .6);
    --sg-font: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimHei, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--sg-text);
    font-family: var(--sg-font);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.seo-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sg-page {
    min-width: var(--sg-container);
    padding-top: 100px;
    overflow: hidden;
}

.sg-container {
    width: var(--sg-container);
    margin: 0 auto;
}

.sg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 56px;
    padding: 13px 29px;
    border: 1px solid var(--sg-cyan);
    border-radius: 8px;
    background: #ffffff;
    color: var(--sg-cyan);
    font-size: 20px;
    line-height: 29px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.sg-btn-primary {
    background: var(--sg-cyan);
    color: #ffffff;
}

.sg-btn:hover {
    background: var(--sg-blue);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 104, 235, .18);
}

.sg-main-title {
    margin: 0;
    text-align: center;
    color: var(--sg-text);
    font-size: 56px;
    line-height: 67px;
    font-weight: 700;
    letter-spacing: 0;
}

.sg-main-title span {
    color: var(--sg-blue);
}

.sg-hero {
    width: 100%;
    height: 660px;
    overflow: hidden;
    background: linear-gradient(180deg, #d9e8ff 0%, rgba(217, 232, 255, .3) 100%);
    user-select: none;
}

.sg-banner-window {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
}

.sg-banner-window.is-dragging {
    cursor: grabbing;
}

.sg-banner-track {
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 60px;
    will-change: transform;
    transition: transform .5s ease-out;
}

.sg-slide {
    flex: 0 0 1440px;
    width: 1440px;
    height: 460px;
    margin-right: 31px;
    border-radius: 16px;
    background-color: #d9d9d9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sg-slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 100px 745px 100px 100px;
}

.sg-slide-center .sg-slide-content {
    align-items: center;
    padding: 80px 300px;
    text-align: center;
}

.sg-slide h2 {
    margin: 0;
    padding: 10px 0;
    color: var(--sg-text);
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    letter-spacing: 0;
}

.sg-slide-center h2 {
    padding: 0;
    font-size: 56px;
    line-height: 67px;
}

.sg-slide h2 span,
.sg-slide-lead span {
    color: var(--sg-blue);
}

.sg-stock {
    margin: 10px 0 0;
    color: var(--sg-text);
    font-size: 24px;
    line-height: 29px;
}

.sg-slide p {
    margin: 20px 0 0;
    color: var(--sg-text);
    font-size: 24px;
    line-height: 40px;
}

.sg-slide-lead {
    margin-top: 40px;
    font-size: 28px;
    line-height: 43px;
    white-space: nowrap;
}

.sg-slide-lead span {
    font-size: 36px;
    font-weight: 700;
}

.sg-slide-actions {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.sg-banner-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 240px;
    padding-left: 855px;
    margin-top: 20px;
}

.sg-banner-dots {
    display: flex;
    gap: 20px;
}

.sg-banner-dot {
    width: 30px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 3px;
    background: rgba(29, 34, 51, .4);
    cursor: pointer;
    transition: width .3s ease, opacity .3s ease, background .3s ease;
}

.sg-banner-dot.active {
    width: 60px;
    background: var(--sg-text);
}

.sg-banner-play {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sg-banner-play img {
    position: relative;
    width: 12px;
    height: 12px;
    z-index: 1;
}

.sg-progress-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(var(--sg-text) var(--sg-progress-angle, 360deg), rgba(29, 34, 51, .25) 0);
}

.sg-progress-ring::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #ffffff;
}

.sg-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 192px;
    background: #ffffff;
}

.sg-stats-row {
    display: flex;
    align-items: center;
    height: 192px;
    overflow: hidden;
}

.sg-stat {
    display: flex;
    flex: 0 0 360px;
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    padding: 40px 90px;
}

.sg-stat strong {
    color: var(--sg-blue);
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.sg-stat span {
    color: #000000;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.sg-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    height: 928px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 60px;
    background: #ffffff;
}

.sg-feature-viewport {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 1px;
    overflow: hidden;
}

.sg-feature-track {
    position: absolute;
    top: 80px;
    left: 50%;
    display: flex;
    gap: 30px;
    height: 540px;
    transform: translateX(-50%);
    transition: transform .35s ease;
}

.sg-feature-card {
    position: relative;
    flex: 0 0 300px;
    width: 300px;
    height: 540px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #d9d9d9;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: flex-basis .28s ease, width .28s ease, box-shadow .28s ease;
}

.sg-feature-card.active,
.sg-feature-card:hover {
    flex-basis: 520px;
    width: 520px;
    box-shadow: 0 8px 40px rgba(0, 104, 235, .2);
}

.sg-feature-no {
    position: relative;
    z-index: 1;
    display: block;
    color: transparent;
    font-size: 120px;
    line-height: 141px;
    font-family: Roboto, var(--sg-font);
    font-weight: 700;
    -webkit-text-stroke: 1px #ffffff;
}

.sg-feature-copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

.sg-feature-copy h3 {
    margin: 0;
    color: var(--sg-text);
    font-size: 32px;
    line-height: 38px;
    font-weight: 700;
}

.sg-feature-copy p {
    margin: 20px 0 0;
    color: var(--sg-text);
    font-size: 20px;
    line-height: 24px;
}

.sg-feature-copy em {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(29, 34, 51, .4);
    color: var(--sg-text);
    font-size: 20px;
    line-height: 32px;
    font-style: normal;
}

.sg-feature-card.active .sg-feature-copy em,
.sg-feature-card:hover .sg-feature-copy em {
    display: block;
}

.sg-solutions {
    width: 100%;
    min-height: 1262px;
    padding: 120px 0 100px;
    background: linear-gradient(180deg, rgba(217, 232, 255, .7) 0%, rgba(217, 232, 255, 0) 100%);
}

.sg-solution-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 761px;
    height: 56px;
    margin: 60px auto 60px;
    border-radius: 36px;
    background: #d6e6f0;
}

.sg-solution-tabs button {
    height: 56px;
    padding: 0 30px;
    border: 0;
    border-radius: 38px;
    background: transparent;
    color: var(--sg-text);
    font-size: 20px;
    line-height: 24px;
    cursor: pointer;
}

.sg-solution-tabs button.active {
    background: var(--sg-cyan);
    color: #ffffff;
}

.sg-solution-panel {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.sg-solution-panel.active {
    display: flex;
}

.sg-solution-card {
    position: relative;
    display: block;
    flex: 0 0 460px;
    width: 460px;
    height: 447px;
    overflow: hidden;
    border-radius: 16px;
    background: #d9d9d9;
    box-shadow: 0 4px 20px rgba(160, 163, 170, .15);
    transition: box-shadow .3s ease, transform .3s ease;
}

.sg-solution-card:hover {
    box-shadow: 0 8px 30px rgba(0, 104, 235, .18);
}

.sg-solution-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.sg-solution-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(191, 216, 255, .12) 0%, rgba(255, 217, 179, .1) 60%, rgba(255, 199, 214, .08) 100%);
    transition: opacity .3s ease;
}

.sg-solution-default {
    opacity: 1;
}

.sg-solution-hover {
    opacity: 0;
    pointer-events: none;
}

.sg-solution-card:hover .sg-solution-default {
    opacity: 0;
}

.sg-solution-card:hover .sg-solution-hover {
    opacity: 1;
    pointer-events: auto;
}

.sg-solution-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    justify-content: center;
    gap: 16px;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.sg-solution-info h3 {
    margin: 0;
    color: var(--sg-text);
    font-size: 28px;
    line-height: 41px;
    font-weight: 700;
}

.sg-solution-info p {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 400px;
    margin: 0;
    color: var(--sg-text);
    font-size: 16px;
    line-height: 26px;
}

.sg-solution-info p span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border: 1px solid transparent;
    border-radius: 16px;
    color: #3d63c2;
    background: #e8f0ff;
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
}

.sg-solution-info p span:nth-child(2n) {
    color: #c6573a;
    background: #ffe9e4;
}

.sg-solution-info p span:nth-child(3n) {
    color: #2e7d5a;
    background: #e4f7ef;
}

.sg-solution-info i {
    display: block;
    width: 400px;
    height: 1px;
    margin: 4px 0;
    background: #d9d9d9;
}

.sg-solution-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sg-solution-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 116px;
    height: 42px;
    border: 1px solid #0d99ff;
    border-radius: 21px;
    color: #0d99ff;
    background: rgba(255, 255, 255, .55);
    font-size: 16px;
    line-height: 24px;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sg-solution-actions a:hover {
    color: #ffffff;
    background: #0d99ff;
    box-shadow: 0 4px 12px rgba(13, 153, 255, .22);
}

.sg-tag-cloud {
    width: 1440px;
    min-height: 262px;
    margin-top: 60px;
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.sg-tag-cloud-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.sg-tag-cloud-panel.active {
    display: flex;
}

.sg-tag-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: max-content;
    padding: 10px 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    will-change: transform;
}

.sg-tag-cloud-panel::before,
.sg-tag-cloud-panel::after {
    content: "";
    position: absolute;
}

.sg-tag-cloud-panel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 120px, #000 calc(100% - 120px), transparent 100%);
}

.sg-tag-row-left {
    animation: sgTagSlideLeft 55s linear infinite;
}

.sg-tag-row-right {
    animation: sgTagSlideRight 50s linear infinite;
}

.sg-tag-row span {
    display: inline-flex;
    align-items: center;
    height: 56px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 16px;
    color: #3d63c2;
    background: #e8f0ff;
    font-size: 20px;
    line-height: 29px;
    white-space: nowrap;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sg-tag-row span:hover {
    transform: translateY(-2px);
    border-color: #c8d7f5;
    box-shadow: 0 2px 8px rgba(13, 153, 255, .18);
}

.sg-tag-row span:nth-child(6n+1) {
    color: #7a3da1;
    background: #f5e6ff;
}

.sg-tag-row span:nth-child(6n+2) {
    color: #c6573a;
    background: #ffe9e4;
}

.sg-tag-row span:nth-child(6n+3) {
    color: #3d63c2;
    background: #e8f0ff;
}

.sg-tag-row span:nth-child(6n+4) {
    color: #a8791f;
    background: #fff4d9;
}

.sg-tag-row span:nth-child(6n+5) {
    color: #2e7d5a;
    background: #e4f7ef;
}

.sg-tag-row span:nth-child(6n) {
    color: #b23a78;
    background: #ffe8f2;
}

@keyframes sgTagSlideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes sgTagSlideRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.sg-cases {
    width: 100%;
    height: 856px;
    padding: 100px 240px 120px;
    background: #ffffff;
}

.sg-case-title {
    display: block;
}

.sg-case-sub {
    margin: 30px 0 0;
    text-align: center;
    color: rgba(29, 34, 51, .6);
    font-size: 24px;
    line-height: 29px;
}

.sg-case-grid {
    display: grid;
    grid-template-columns: repeat(5, 264px);
    gap: 30px;
    width: 1440px;
    height: 430px;
    margin-top: 80px;
}

.sg-case-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 264px;
    height: 200px;
    padding: 12px;
    border-radius: 16px;
    background: #e9eef3;
    box-shadow: 0 4px 12px rgba(16, 24, 40, .04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sg-case-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(16, 24, 40, .12);
}

.sg-case-card img {
    display: block;
    max-width: 240px;
    max-height: 140px;
    object-fit: contain;
}

.sg-achievements {
    width: 100%;
    height: 1053px;
    padding: 140px 240px;
    background: linear-gradient(180deg, rgba(217, 232, 255, .7) 0%, rgba(217, 232, 255, .28) 100%);
}

.sg-section-head {
    text-align: center;
}

.sg-section-head p {
    margin: 30px 0 0;
    color: rgba(29, 34, 51, .6);
    font-size: 24px;
    line-height: 36px;
}

.sg-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 342px);
    gap: 24px;
    margin-top: 80px;
}

.sg-achievement-card {
    position: relative;
    width: 342px;
    height: 200px;
    border-radius: 16px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 4px 24px rgba(29, 34, 51, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.sg-achievement-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(29, 34, 51, .12);
}

.sg-achievement-card img {
    position: absolute;
    top: 50px;
    left: 3px;
    width: 334px;
    height: 110px;
}

.sg-achievement-card strong {
    position: relative;
    z-index: 1;
    display: block;
    padding-top: 39px;
    color: var(--sg-text);
    font-size: 28px;
    line-height: 48px;
    font-weight: 700;
}

.sg-achievement-card em {
    position: absolute;
    right: 0;
    bottom: 12px;
    left: 0;
    z-index: 1;
    font-size: 16px;
    line-height: 19px;
    font-style: normal;
}

.sg-achievement-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 328px;
    height: 56px;
    margin: 80px auto 0;
    border-radius: 8px;
    background: var(--sg-cyan);
    color: #ffffff;
    font-size: 20px;
    line-height: 29px;
}

.sg-news {
    width: 100%;
    height: 974px;
    padding: 140px 240px;
    background: #ffffff;
}

.sg-news-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1440px;
    height: 540px;
    gap: 20px;
    margin-top: 80px;
}

.sg-news-card {
    position: relative;
    display: block;
    width: 300px;
    height: 260px;
    overflow: hidden;
    border-radius: 16px;
    background: #f5f6f7;
    box-shadow: 0 4px 24px rgba(29, 34, 51, .05);
    transition: box-shadow .3s ease;
}

.sg-news-large {
    width: 480px;
    height: 540px;
}

.sg-news-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    height: 540px;
}

.sg-news-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.sg-news-card:hover {
    box-shadow: 0 8px 32px rgba(29, 34, 51, .15);
}

.sg-news-card:hover img {
    transform: scale(1.05);
}

.sg-news-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 0 0 16px 16px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(6px);
}

.sg-news-large .sg-news-overlay {
    padding: 20px 30px;
    background: rgba(255, 255, 255, .82);
}

.sg-news-overlay h3 {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--sg-text);
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sg-news-large .sg-news-overlay p {
    display: -webkit-box;
    margin: 20px 0 0;
    overflow: hidden;
    color: var(--sg-text);
    font-size: 20px;
    line-height: 24px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.sg-more-news {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 260px;
    border-radius: 16px;
    background: #f5f6f7;
    color: rgba(29, 34, 51, .6);
    font-size: 24px;
    line-height: 32px;
    transition: box-shadow .3s ease, color .2s ease;
}

.sg-more-news:hover {
    color: var(--sg-blue);
    box-shadow: 0 8px 32px rgba(29, 34, 51, .12);
}

.sg-more-news img {
    width: 24px;
    height: 24px;
    margin-bottom: 14px;
    transform: rotate(180deg);
}

.sg-chatbot {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 477px;
    padding: 120px 240px;
    row-gap: 40px;
    background: #f3f5f7;
}

.sg-chatbot h2 {
    margin: 0;
    color: var(--sg-text);
    font-size: 56px;
    line-height: 67px;
    font-weight: 700;
}

.sg-chatbot h2 span {
    color: var(--sg-blue);
}

.sg-chatbot p {
    margin: 0;
    color: var(--sg-text);
    font-size: 28px;
    line-height: 34px;
}

.sg-chatbot div {
    display: flex;
    gap: 30px;
}

.sg-footer {
    min-width: var(--sg-container);
    background: #e8e9ee;
    color: #000000;
}

.sg-footer-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    min-height: 580px;
    margin: 0 auto;
    padding: 80px 240px 40px;
}

.sg-footer-contact {
    display: flex;
    flex: 0 0 360px;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 166px;
}

.sg-footer-contact > img {
    width: 194px;
    height: 24px;
}

.sg-footer-contact p {
    margin: 50px 0 0;
    font-size: 20px;
    line-height: 24px;
}

.sg-footer-contact strong {
    margin-top: 15px;
    font-size: 28px;
    line-height: 34px;
    white-space: nowrap;
}

.sg-socials {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.sg-social-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.sg-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 16px;
    background: #d9d9d9;
    border: 1px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    outline: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.sg-social-wrap:hover .sg-social-item,
.sg-social-wrap.active .sg-social-item,
.sg-social-item:focus {
    transform: translateY(-2px);
    border-color: #0d99ff;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(13, 153, 255, .18);
}

.sg-social-item img {
    width: 32px;
    height: 32px;
}

.sg-social-qr {
    position: absolute;
    left: 50%;
    top: 62px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 158px;
    padding: 12px 12px 10px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(29, 34, 51, .18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.sg-social-qr::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    box-shadow: -4px -4px 10px rgba(29, 34, 51, .04);
    transform: translateX(-50%) rotate(45deg);
}

.sg-social-wrap:hover .sg-social-qr,
.sg-social-wrap.active .sg-social-qr,
.sg-social-item:focus + .sg-social-qr {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.sg-social-qr img {
    position: relative;
    z-index: 1;
    width: 136px;
    height: 136px;
    object-fit: contain;
}

.sg-social-qr em {
    position: relative;
    z-index: 1;
    margin-top: 8px;
    color: #1d2233;
    font-size: 14px;
    line-height: 20px;
    font-style: normal;
}

.sg-footer-cols {
    display: flex;
    align-items: flex-start;
}

.sg-footer-cols > div {
    width: 200px;
    min-height: 400px;
    margin-left: 80px;
}

.sg-footer-cols h3 {
    margin: 0 0 40px;
    color: #000000;
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
}

.sg-footer-cols a {
    display: block;
    color: #000000;
    font-size: 14px;
    line-height: 40px;
}

.sg-footer-cols a:hover {
    color: var(--sg-blue);
    text-decoration: underline;
}

.sg-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 0;
    row-gap: 10px;
}

.sg-footer-bottom p {
    margin: 0;
    color: #000000;
    font-size: 12px;
    line-height: 17px;
}

.sg-solutions-route-view {
    width: 100%;
    background: #ffffff;
    color: #1d2233;
}

.sg-solutions-route-view[hidden],
html.sg-solutions-route-active .sg-home-view {
    display: none !important;
}

html.sg-solutions-route-active .sg-page {
    min-width: 0;
    overflow: visible;
}

.sg-solutions-route-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 480px;
    padding: 0 40px;
    gap: 60px;
    overflow: hidden;
    box-sizing: border-box;
    background: url("../../Images/ShowImg/seo-geo/solution/solution_bg.png") center / cover no-repeat;
}

.sg-solutions-route-hero > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sg-solutions-route-hero h1 {
    margin: 0;
    padding: 10px 0;
    color: #1d2233;
    font-size: 48px;
    font-weight: 400;
    line-height: 70px;
    text-align: center;
}

.sg-solutions-route-hero p {
    max-width: 1107px;
    margin: 0;
    color: #1d2233;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
}

.sg-solutions-route-hero > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 29px;
    border: 1px solid #0d99ff;
    border-radius: 8px;
    box-sizing: border-box;
    background: #ffffff;
    color: #0d99ff;
    font-size: 18px;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.sg-solutions-route-hero > a:hover,
.sg-solutions-route-hero > a:focus {
    color: #ffffff;
    background: #0d99ff;
    box-shadow: 0 6px 20px rgba(13, 153, 255, .22);
}

.sg-solutions-route-nav {
    position: sticky;
    top: 100px;
    z-index: 80;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(160, 163, 170, .1);
}

.sg-solutions-route-nav > div {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(1440px, calc(100% - 48px));
    height: 91px;
    margin: 0 auto;
    border-bottom: 1px solid #d9d9d9;
}

.sg-solutions-route-nav button {
    position: relative;
    border: 0;
    background: transparent;
    color: #1d2233;
    font: inherit;
    font-size: 24px;
    cursor: pointer;
}

.sg-solutions-route-nav button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 3px;
    background: #0068eb;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.sg-solutions-route-nav button.active {
    color: #0068eb;
}

.sg-solutions-route-nav button.active::after {
    width: 100px;
}

.sg-solutions-route-content {
    display: flex;
    flex-direction: column;
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: 60px 0 100px;
    gap: 80px;
}

.sg-solutions-route-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    scroll-margin-top: 211px;
}

.sg-solutions-route-section h2 {
    margin: 0;
    color: #777a85;
    font-size: 28px;
    font-weight: 400;
    line-height: 40px;
}

.sg-solutions-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.sg-solutions-route-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 447px;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    box-sizing: border-box;
    background-color: #d9d9d9;
    background-position: center;
    background-size: cover;
    transition: all .2s ease;
}

.sg-solutions-route-card:hover,
.sg-solutions-route-card:focus-within {
    box-shadow: inset 0 0 0 1px #0d99ff, 0 8px 30px rgba(0, 104, 235, .1);
}

.sg-solutions-route-card-placeholder {
    background-image: linear-gradient(135deg, #eef1f5, #d9d9d9);
}

.sg-solutions-route-card-panel {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    min-height: 214px;
    padding: 30px;
    gap: 20px;
    border-radius: 16px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, .85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.sg-solutions-route-card:hover .sg-solutions-route-card-panel,
.sg-solutions-route-card:focus-within .sg-solutions-route-card-panel {
    min-height: 315px;
}

.sg-solutions-route-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sg-solutions-route-card-title > span {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #d3ecff;
}

.sg-solutions-route-card-title > span::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 14px;
    width: 20px;
    height: 14px;
    border: 2px solid #1d2233;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    box-sizing: border-box;
    transform: skew(-8deg);
}

.sg-solutions-route-card-title > span::after {
    content: "••";
    position: absolute;
    left: 15px;
    top: 25px;
    color: #1d2233;
    font-size: 16px;
    letter-spacing: 5px;
}

.sg-solutions-route-card-title h3 {
    margin: 0;
    color: #1d2233;
    font-size: 28px;
    font-weight: 400;
    line-height: 41px;
}

.sg-solutions-route-tags {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
}

.sg-solutions-route-tag-row {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.sg-solutions-route-tags span {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    padding: 9px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-sizing: border-box;
    color: #1d2233;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.sg-solutions-route-divider {
    display: none;
    flex-shrink: 0;
    width: 100%;
    height: 1px;
    background: #d9d9d9;
    transition: opacity .2s ease;
}

.sg-solutions-route-actions {
    display: none;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
    align-self: stretch;
    gap: 30px;
}

.sg-solutions-route-card:hover .sg-solutions-route-divider,
.sg-solutions-route-card:focus-within .sg-solutions-route-divider,
.sg-solutions-route-card:hover .sg-solutions-route-actions,
.sg-solutions-route-card:focus-within .sg-solutions-route-actions {
    display: flex;
}

.sg-solutions-route-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 13px 29px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    box-sizing: border-box;
    color: #1d2233;
    background: #ffffff;
    font-size: 18px;
    line-height: 29px;
    transition: color .2s ease, background .2s ease;
}

.sg-solutions-route-actions a:hover,
.sg-solutions-route-actions a:focus {
    color: #ffffff;
    background: #0d99ff;
}

@media (max-width: 1440px) and (min-width: 1101px) {
    .sg-solutions-route-card-panel {
        min-height: 262px;
    }
}

@media (max-width: 1320px) and (min-width: 1101px) {
    .sg-solutions-route-card:hover .sg-solutions-route-card-panel,
    .sg-solutions-route-card:focus-within .sg-solutions-route-card-panel {
        min-height: 359px;
    }
}

@media (max-width: 1100px) {
    .sg-solutions-route-nav > div,
    .sg-solutions-route-content {
        width: calc(100% - 40px);
    }

    .sg-solutions-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sg-solutions-route-nav button {
        font-size: 19px;
    }
}

@media (max-width: 640px) {
    .sg-solutions-route-hero {
        height: 420px;
        padding: 0 20px;
        gap: 40px;
    }

    .sg-solutions-route-hero h1 {
        font-size: 34px;
        line-height: 50px;
    }

    .sg-solutions-route-hero p {
        font-size: 18px;
        line-height: 30px;
    }

    .sg-solutions-route-nav {
        overflow-x: auto;
    }

    .sg-solutions-route-nav > div {
        grid-template-columns: repeat(4, 150px);
        width: 600px;
        height: 72px;
    }

    .sg-solutions-route-nav button {
        font-size: 16px;
    }

    .sg-solutions-route-content {
        width: calc(100% - 32px);
        padding: 40px 0 70px;
        gap: 60px;
    }

    .sg-solutions-route-section {
        gap: 24px;
        scroll-margin-top: 192px;
    }

    .sg-solutions-route-section h2 {
        font-size: 24px;
    }

    .sg-solutions-route-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .sg-solutions-route-card {
        height: 420px;
    }

    .sg-solutions-route-card-panel {
        padding: 22px;
        min-height: 262px;
    }

    .sg-solutions-route-card:hover .sg-solutions-route-card-panel,
    .sg-solutions-route-card:focus-within .sg-solutions-route-card-panel {
        min-height: 359px;
    }

    .sg-solutions-route-card-title h3 {
        font-size: 24px;
    }

    .sg-solutions-route-actions {
        gap: 12px;
    }

    .sg-solutions-route-actions a {
        flex: 1;
        padding: 0 14px;
        font-size: 16px;
    }
}
