.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px #0000001a;
    z-index: 1000;
}

.navbar-container {
    max-width: 1920px;
    margin: 0 8rem;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-link {
    width: 120px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    line-height: 40px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    transition: color .3s;
    cursor: pointer;
}

.nav-link.router-link-active {
    background: #1779fe;
    color: #fff;
    border-radius: 8px;
}

.dropdown {
    position: relative;
    display: inline-block;
    height: 40px;
    line-height: 40px;
}

.dropdown .nav-link {
    cursor: pointer;
    display: inline-block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: relative;
}

.jt,
.jt-f {
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    transition: transform 1s;
    transform: rotate(0deg);
}

.jt-f {
    display: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 2px 8px #0000001a;
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1001;
}

.dropdown-menu {
    display: flex;
    min-width: 320px;
}

.menu-left {
    width: 120px;
    padding: 8px 0;
}

.menu-item {
    padding: 8px 16px;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.menu-right {
    flex: 1;
    padding: 8px 0;
}

.dropdown-item {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: all .3s;
    cursor: pointer;
}

.dropdown-item.disabled {
    color: #999;
    cursor: not-allowed;
}

.dropdown:hover .nav-link,
.dropdown .nav-link.router-link-active {
    background: #1779fe;
    color: #fff;
    border-radius: 8px;
}

.dropdown:hover .nav-link .jt,
.dropdown .nav-link.router-link-active .jt {
    display: none;
}

.dropdown:hover .nav-link .jt-f,
.dropdown .nav-link.router-link-active .jt-f {
    display: inline-block;
}

.dropdown:hover .jt-f {
    transform: rotate(180deg);
}

.home {
    background: #fff;
}

.banner {
    position: relative;
    height: 725px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    margin-top: 64px;
    background: url(../images/container-2-Xg6x36pH.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.banner-content {
    margin-left: 45rem;
    max-width: 600px;
    color: #222;
    z-index: 1;
}

.banner-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 3.125rem;
    line-height: 3.5rem;
    letter-spacing: .1875rem;
    padding-bottom: 1.5rem;
    text-align: left;
    background: linear-gradient(241.83deg, #14355d, #0d6ee5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}

.banner-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 88px;
    height: 7px;
    background: #1779fe;
    border-radius: 0;
}

.banner-desc {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #14355d;
    line-height: 2.25rem;
    letter-spacing: .0625rem;
    text-align: justify;
}

.product-section {
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    padding: 0 20px;
    box-sizing: border-box;
}

.product-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.product-block {
    padding: 32px 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 300px;
    max-width: 750px;
}

.product-img {
    width: 100%;
    max-width: 750px;
    height: auto;
    aspect-ratio: 750 / 725;
    border-radius: 1rem;
    margin-bottom: 1.9rem;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-label {
    font-size: 1.5rem;
    color: #222;
    font-weight: 500;
    text-align: center;
}

.footer {
    background: #272932;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 10rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 2rem;
}

.footer-col {
    min-width: 140px;
}

.footer-col h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p,
.footer-col a,
.contact-info div {
    display: block;
    margin: .5rem 0;
    padding: 0;
    color: #e3e3e3;
    font-size: .875rem;
    font-weight: 400;
    cursor: pointer;
    transition: color .3s ease;
    line-height: 1.5;
}

.qrcode-col {
    margin-left: 5rem;
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: flex-start;
    justify-content: center;
}

.qrcode-block {
    text-align: center;
}

.qrcode-block img {
    max-width: 100px;
    max-height: 100px;
    width: auto;


    height: auto;
    margin-bottom: .5rem;
    background: #fff;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.qrcode-block p {
    color: #fffc;
    font-size: .95rem;
}

.contact-info .contact-info-item {
    font-size: .75rem;
    color: #98999c;
    margin: .1rem 0;
    line-height: 1.2;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: #191b24;
    border-top: none;
    border-radius: 0 0 12px 12px;
    margin: 0 -10rem -1rem;
}

.footer-bottom p {
    color: #ffffff73;
    font-size: .95rem;
    margin: 0;
    line-height: 1.5;
    padding: 0;
}

.international-banner {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/product-1-D1L3UxVz.png) no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.international-banner-content {
    margin-left: 43%;
    text-align: center;
    color: #222;
    z-index: 1;
}

.international-banner-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 3.5rem;
    letter-spacing: .1875rem;
    text-align: left;
    color: #fff;
    position: relative;
    padding: 0 10rem 1rem;
}

.international-banner-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10rem;
    width: 88px;
    height: 7px;
    background: #1779fe;
}

.international-banner-desc {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #fff;
    line-height: 2.25rem;
    letter-spacing: .0625rem;
    text-align: justify;
    text-align: left;
    padding: 0 10rem;
}

.product-style {
    margin: 53px auto 51px;
}

.product-style-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11rem;
}

.product-style-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.product-style-content img {
    width: 140px;
    height: 220px;
}

.product-style-item p {
    font-size: 14px;
    color: #333;
    line-height: 2.5rem;
    letter-spacing: 1px;
}

.product-tabs {
    background: #f7fbfe;
    padding: 0 162px;
    margin-bottom: 20px;
}

.product-tabs-content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border-radius: 0;
    overflow: visible;
}

.product-tabs-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 27px 0;
    background: transparent;
    cursor: pointer;
    transition: background .2s;
    position: relative;
    border-radius: 0;
}

.product-tabs-item.active {
    background: #eaf4ff;
    position: relative;
}

.product-tabs-item.active:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #1779fe;
}

.tab-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
}

.tab-info {
    margin-left: 1rem;
    text-align: left;
}

.tab-label {
    font-size: 22px;
    font-weight: 700;
    color: #1779fe;
    margin-bottom: 4px;
}

.product-tabs-item.active .tab-desc {
    color: #1779fe;
}

.product-tabs-item:not(.active) .tab-label {
    color: #666;
}

.product-tabs-item:not(.active) .tab-icon:nth-child(2) {
    display: none;
}

.product-tabs-item.active .tab-icon:nth-child(2) {
    display: inline-block;
}

.product-tabs-item.active .tab-icon:nth-child(1) {
    display: none;
}

.product-content {
    display: flex;
    flex-direction: column;
}

.product-title {
    text-align: center;
    margin: 20px 0;
}

.product-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
}

.product-title p {
    font-size: 1.5rem;
    color: #707070;
    letter-spacing: 1px;
}

.international-product-row {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 550px;
    padding: 0 10rem;
    z-index: 1;
}

.international-product-row:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(/assets/rectangle-1-CxlUiWZM.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.international-product-row.reverse:before {
    background: none !important;
}

.international-product-img {
    flex: 1;
    min-width: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
    height: auto;
}

.international-product-img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-text {
    width: 45%;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reverse .product-text {
    padding-left: 2rem;
}

.product-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.product-text p {
    font-size: 1.25rem;
    color: #333;
    line-height: 2rem;
    letter-spacing: 1px;
}

.product-container {
    width: 116px;
    height: 116px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.product-container img {
    width: 100%;
}

.international-product-row:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/rectangle-1-CxlUiWZM.png) no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.product-page {
    padding-top: 64px;
}

.product-content-bg {
    background: url(../images/rectangle-10-BwcHUwi3.png) no-repeat center center;
    background-size: 100% 100%;
    padding: 0 9.5rem 8rem;
}

.product-content-2 {
    padding: 0 9.5rem 8rem;
}

.miniprogram {
    background: url(../images/mini-1-DD2PmyA5.png) no-repeat center center;
    background-size: cover;
}

.qrcode-container {
    width: 130px;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qrcode-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.5rem;
}

.miniprogram-content {
    margin-left: 55rem;
}

.miniprogram-content .international-banner-title {
    padding: 0 0 1rem;
}

.miniprogram-content .international-banner-desc {
    padding: 0;
}

.miniprogram-content .international-banner-title:before {
    left: 0;
}

.service-account-page {
    padding-top: 64px;
}

.service {
    position: relative;
    height: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../images/server-1-DlE1hY-N.png) no-repeat center center;
    background-size: 100% 100%;
}

.service-content {
    text-align: center;
    color: #222;
    z-index: 1;
}

.service-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.8rem;
    letter-spacing: .1875rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.service-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 88px;
    height: 7px;
    background: #1779fe;
    border-radius: 0;
}

.service-desc {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #fff;
    line-height: 2.25rem;
    letter-spacing: .0625rem;
    text-align: justify;
    text-align: center;
}

.service-qrcode-container {
    width: 220px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-qrcode-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-page {
    padding-top: 64px;
}

.about-banner {
    position: relative;
    height: 344px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    background: url(../images/about-1-Dg2fI8LE.png) no-repeat center center;
    background-size: 100% 100%;
}

.about-banner-content {
    text-align: center;
    color: #222;
    z-index: 1;
}

.about-banner-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.8rem;
    letter-spacing: .1875rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
}

.about-banner-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 88px;
    height: 7px;
    background: #1779fe;
    border-radius: 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto 64px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f5faff;
    height: auto;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

.about-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #303c43;
    margin-bottom: 18px;
    padding: 0 85px;
}

.about-text p {
    font-size: 1rem;
    color: #000;
    line-height: 2rem;
    padding: 0 85px;
}

.about-img {
    flex: 1;
    min-width: 320px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.img-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.contact {
    background: #fff;
}

.contact-banner {
    position: relative;
    height: 344px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    margin-top: 75px;
    background: url(../images/contact-1-CYzlx_-v.png) no-repeat center center;
    background-size: 100% 100%;
}

.contact-banner-content {
    text-align: center;
    color: #222;
    z-index: 1;
}


.contact-banner-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.8rem;
    letter-spacing: .1875rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #000;
    position: relative;
}

.contact-banner-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 88px;
    height: 7px;
    background: #1779fe;
    border-radius: 0;
}

.contact-banner-desc {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #14355d;
    line-height: 2.25rem;
    letter-spacing: .0625rem;
    text-align: center;
}

.contact-Info {
    max-width: 1200px;
    margin: 2.3rem auto;
    padding: 0 2rem;
}

.contact-Info h3 {
    font-weight: 700;
    font-size: 30px;
    color: #000;
    line-height: 35px;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: justify;
    margin-bottom: 1rem;
}

.contact-info-item p {
    padding: 0;
    margin: 0;
}

#container {
    width: 100%;
    height: 460px;
    overflow: hidden;
    box-shadow: 0 2px 12px #00000014;
    z-index: 10;
}

.amap-icon img {
    width: 19px !important;
}

.mobile-header {
    display: none;
}

.mobile-footer {
    display: none;
}

.params-img {
    display: none;
}

.helpCenter {
    position: relative;
    height: 344px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 48px;
    margin-top: 75px;
    background: url(../images/help-YB3z8xHf.png) no-repeat center center;
    background-size: cover;
}

.helpCenter-content {
    text-align: center;
    color: #222;
    z-index: 1;
}

.helpCenter-title {
    font-family: HarmonyOS Sans SC;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 2.8rem;
    letter-spacing: .1875rem;
    padding-bottom: 1.5rem;
    text-align: center;
    color: #000;
    position: relative;
}

.helpCenter-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 88px;
    height: 7px;
    background: #1779fe;
    border-radius: 0;
}

.helpCenter-Info {
    max-width: 1200px;
    margin: 2.3rem auto;
    padding: 0 2rem;
}

.helpCenter-Info h3 {
    font-weight: 700;
    font-size: 24px;
    color: #000;
    line-height: 28px;
    letter-spacing: 1px;
    margin-bottom: 1.6rem;
    position: relative;
}

.helpCenter-Info h3:before {
    content: "";
    position: absolute;
    bottom: -.8rem;
    left: 0;
    width: 36px;
    height: 2px;
    background: #3970eb;
    border-radius: 0;
}

.helpCenter-info-item {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #f6f6f6;
    border-radius: 0;
    margin-bottom: .7rem;
    padding-left: .7rem;
    display: flex;
    align-items: center;
    font-family: HarmonyOS Sans SC;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    line-height: 16px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.helpCenter-info-item-icon {
    width: 16px;
    height: 16px;
    background: url(../images/pdf.png) no-repeat center center;
    background-size: cover;
    margin-right: .5rem;
}