﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.zoomBtn {
    display: none;
}

.n-tabs_m {
    display: none;
}

.gaishu-img_m {
    display: none;
}


/* 通用 */

.n-project-page img {
    width: 100%;
}

.n-project-info {
    padding-top: 80px;
    padding-bottom: 80px;
}

.n-page-title {
    color: #2A2B2E;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%;
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.n-page-desc {
    width: 850px;
    text-align: center;
    margin: 20px 0px 40px;
    color: #6A6B6D;
    font-size: 16px;
    line-height: 150%;
    margin-left: auto;
    margin-right: auto;
}

.n-page-content {
    width: 1400px;
    margin: 60px auto 0 auto;
}

.blueBg {
    padding: 80px 0 80px 0;
    background: #FAFBFC;
    margin-top: 0px;
}

.transparent-commonlink {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #E60039;
    font-size: 18px;
    font-weight: 400;
    line-height: 125%;
    margin-top: 40px;
}

.transparent-commonlink:hover {
    color: #E60039;
    cursor: pointer;
    text-decoration: underline;
}

.transparent-commonlink::after {
    content: '';
    background-image: url(../image/link1.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: transform .16s linear;
    -webkit-transition: transform .16s linearr;
    -moz-transition: transform .16s linear;
    -o-transition: transform .16s linear;
}

@media screen and (min-width:1068px) {
    .transparent-commonlink.active::after {
        transform: translateX(6px);
    }
}


/* banner和nav */

.n-nav {
    position: relative;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.n-nav-content {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
}

.n-breadcrumb {
    display: flex;
}

.n-nav-content a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #6A6B6D;
    cursor: pointer;
}

.n-breadcrumb a::after {
    content: '>';
    display: block;
    margin: 2px 6px 0 6px;
}

.n-breadcrumb a:last-child:after {
    content: '';
}

.n-nav-content ul {
    display: flex;
}

.n-nav-content ul li {
    margin-right: 24px;
}

.n-nav-content ul li:last-child {
    margin-right: 0;
}

.n-nav-content .n-nav-active {
    color: #292929;
    font-weight: 700;
    border-bottom: 2px solid #DA0030;
}

.nav-show {
    display: none;
}

.n-banner {
    position: relative;
}

.n-banner-text {
    position: absolute;
    left: calc((100% - 1400px)/2);
    top: 50%;
    transform: translateY(-50%);
}

.n-banner-text h1 {
    color: #2A2B2E;
    font-size: 48px;
    font-weight: 700;
}

.n-banner-text h2 {
    margin-top: 20px;
    color: #2A2B2E;
    font-size: 24px;
    font-weight: 400;
}

.n-banner-text p {
    margin-top: 24px;
    color: #2A2B2E;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    max-width: 680px;
}

.n-btn-primary {
    margin-top: 40px;
    display: inline-flex;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    height: 46px;
    padding: 11px 32px;
    border-radius: 4px;
    background: #E60039;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    margin-right: 24px;
    border-radius: 24px;
}

.n-btn-primary.circle {
    border-radius: 4px;
}

.n-banner-text .whiteBtn {
    background: #FFFFFF;
    color: #E60039;
    border: 1px solid #E60039;
    cursor: pointer;
}

.n-btn-primary.red {
    color: #E60039;
    border: 1px solid #E60039;
    background: unset;
}

.n-banner-text a:last-child {
    margin-right: 0;
}

.n-btn-primary:hover {
    background: #CC002D;
    color: #FFF;
    cursor: pointer;
}

.n-btn-white {
    background-color: #FFFFFF;
    color: #2A2B2E;
    border: 1px solid #2A2B2E;
}

.n-btn-white:hover {
    background-color: #CC002D;
    color: #FFF;
    border: 1px solid #CC002D;
}

.n-btn-primary img {
    width: 18px;
    margin-left: 8px;
}


/*概述*/

.valueTabs {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.valueTab {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    cursor: pointer;
}

.valueTab.active {
    pointer-events: none;
}

.valueTab.active .valueIcon {
    background-position: 0 -56px;
}

.valueTab span {
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    margin-left: 24px;
}

.valueTab .valueIcon {
    background-position: 0 0;
    width: 56px;
    height: 56px;
}

.valueTab:nth-child(1) .valueIcon {
    background-image: url(../image/icon1.svg);
}

.valueTab:nth-child(2) .valueIcon {
    background-image: url(../image/icon2.svg);
}

.valueTab:nth-child(3) .valueIcon {
    background-image: url(../image/icon3.svg);
}

.valueTab.active {
    background: #F7F9FD;
}

.valueCont {
    position: relative;
}

#valueSwiper {
    margin-top: 24px;
}

.valueText {
    position: absolute;
    left: calc((100% - 1400px)/2);
    top: 50%;
    transform: translateY(-50%);
}

.valueTitle {
    position: relative;
    color: #292929;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.valueTitle::after {
    content: '';
    background-color: #D5D5D5;
    height: 1px;
    width: 624px;
    display: block;
    bottom: 0;
    left: 0;
    position: absolute;
}

.valueText ul li {
    color: #292929;
    font-size: 14px;
    font-weight: 400;
    line-height: 200%;
    list-style-type: disc;
    margin-left: 20px;
}

.valueBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.valueBtn.prev {
    left: 36px;
}

.valueBtn.next {
    right: 36px;
}


/*架构*/

#topo .n-page-content {
    margin: 0px auto 0 auto;
}


/*场景*/

.n-scene-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 40px;
}

.n-scene-box:last-child {
    margin-bottom: 60px;
}

.n-scene-box img {
    width: 800px;
}

.n-scene-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 95px;
    justify-content: center;
}

.n-scene-tag {
    color: #2A2B2E;
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
}

.n-green-bg {
    border-radius: 24px;
    border: 1px solid #F0FBFA;
    background: rgba(238, 251, 241, 0.70);
}

.n-blue-bg {
    border-radius: 24px;
    border: 1px solid #F0FBFA;
    background: rgba(238, 255, 253, 0.70);
}

.n-scene-title {
    margin: 40px 0 20px;
    color: #2A2B2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.n-scene-desc {
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
}

.n-dev-tag {
    position: absolute;
    cursor: pointer!important;
}

.circleTag {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 4px solid #00aaff;
    box-sizing: border-box;
    transform-origin: center center;
    overflow: visible;
    animation: ripple 1s infinite ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: .3;
    }
}

.RG-S7620-20SFG2CQ {
    top: 192px;
    left: 306px;
}

.RG-S7810C {
    top: 312px;
    left: 418px;
}

.RG-MUX-8LCLC {
    top: 258px;
    left: 312px;
}

.RG-AP820-AR {
    top: 130px;
    left: 122px;
}

.RG-SF2920-8GT22XS-P {
    top: 218px;
    left: 642px;
}

.RG-MAP852-SF-M {
    top: 156px;
    left: 72px;
}

.RG-MAP852-SF-U {
    top: 48px;
    left: 520px;
}

.dev-card {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #FFF;
    background: linear-gradient(0deg, #FFF 7.43%, #F4F6F9 86.49%);
}

.dev-card img {
    width: 50px;
}

.tipso_bubble {
    padding: 0px!important;
}

.dev-content {
    text-align: left;
    position: relative;
}

.dev-content span {
    color: #9B9FA8;
    font-size: 12px;
}

.dev-content p {
    color: #2A2B2E;
    font-size: 14px;
    font-weight: 700;
    padding-top: 6px;
}

.dev-close {
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 7px;
    color: #6A6B6D;
    font-size: 24px;
}

.dev-content a:hover {
    text-decoration: underline;
}

.tipso_style {
    border-bottom: 0px!important;
}


/*资源*/

#resource .n-page-content {
    margin: 20px auto 20px auto;
}

.n-resource-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 72px;
    margin-top: 56px;
}

.n-resource-card {
    display: flex;
}

.n-resource-img {
    width: 338px;
    flex-shrink: 0;
    margin-right: 16px;
}

.n-resource-title {
    color: #2A2B2E;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%;
    /* 25px */
}

.n-resource-desc {
    overflow: hidden;
    color: #6A6B6D;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding: 20px 0;
}

#resource .transparent-commonlink {
    font-size: 16px;
    margin-top: 0px;
}


/*案例*/

#anli {
    background-image: url(../image/caseBg.webp);
    background-size: cover;
}

.n-more {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    /* 20px */
    position: absolute;
    bottom: 20px;
    right: 37px;
}

.n-more:hover {
    cursor: pointer;
    color: #FFF;
    text-decoration: underline;
}

#caseSwiper {
    margin-top: 120px;
    padding-bottom: 80px;
}

#caseSwiper .swiper-pagination {
    bottom: 0;
}

#caseSwiper .swiper-pagination-bullet {
    width: 48px;
    height: 4px;
    border-radius: unset;
    background: #FFF;
    opacity: 1;
}

#caseSwiper .swiper-pagination-bullet-active {
    background: #E60039;
}

#anli {
    text-align: center;
}

.caseInfo {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    text-align: left;
}

.caseDesc {
    color: #2A2B2E;
    font-size: 18px;
    font-weight: 700;
    line-height: 200%;
}

.caseImg {
    width: 696px;
    flex-shrink: 0;
    margin-left: 90px;
}

.caseText h3 {
    color: #2A2B2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 200%;
}

.caseText p {
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 16px;
}

.arrowBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    cursor: pointer;
}

.arrowBtn.prev {
    left: 5%;
}

.arrowBtn.next {
    right: 5%;
}

.caseCont {
    position: relative;
}


/* faq */

.n-content-faq {
    padding: 12px 0;
    border-bottom: 1px solid #D5D5D5;
}

.n-faq-title {
    padding: 10px 0 10px 10px;
    color: #292929;
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.n-faq-desc {
    padding: 10px;
    text-align: left;
    color: #9B9FA8;
    font-size: 16px;
    line-height: 150%;
}

.n-faq-desc-active {
    display: block;
}

.n-faq-list {
    margin-top: 40px;
}
.cta-box {
    margin-top: 48px;
    text-align: center;
}
.n-anli-btn {
    border-radius: 4px;
    border: 1px solid #E60039;
    backdrop-filter: blur(2.5px);
    padding: 12px 40px;
    margin: 52px auto 0 auto;
    color: #E60039;
    font-size: 16px;
    line-height: 150%;
    width: 180px;
}
.n-anli-btn:hover{
    background: #C7002A;
    color: #fff;
}

#concact {
    background-image: url(../image/concact-bg.webp);
    background-size: cover;
}

#concact .n-page-content {
    margin: 122px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.n-concact-title {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    /* 45px */
}

.n-concact-desc {
    color: #9B9FA8;
    font-size: 20px;
    line-height: 150%;
    /* 30px */
}

.n-closedesc-faq {
    color: #9B9FA8;
    font-weight: 400;
    font-size: 30px;
    cursor: pointer;
}

@media screen and (max-width:1600px) {
    /* 通用 */
    .n-page-title {
        font-size: 32px;
    }
    .n-page-content {
        width: 1200px;
    }
    /* banner */
    .n-banner-text {
        left: calc((100% - 1200px)/2);
    }
    .n-banner-text h1 {
        font-size: 42px;
    }
    .n-banner-text h2 {
        margin-top: 8px;
        font-size: 20px;
    }
    .n-banner-text p {
        margin-top: 20px;
        font-size: 14px;
    }
    .n-btn-primary {
        margin-top: 24px;
        height: 40px;
        padding: 10px 24px;
        font-size: 14px;
    }
    .n-nav {
        height: 48px;
    }
    .n-nav-content {
        width: 1200px;
    }
    .n-project-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .n-page-box img {
        width: 710px;
    }
    .n-box-list {
        width: 410px;
    }
    .n-scene-box img {
        width: 700px;
    }
    .n-scene-title {
        font-size: 20px;
    }
    .circleTag {
        width: 48px;
        height: 48px;
    }
    .RG-S7620-20SFG2CQ {
        top: 170px;
        left: 268px;
    }
    .RG-S7810C {
        top: 285.25px;
        left: 370.125px;
    }
    .RG-MUX-8LCLC {
        top: 226px;
        left: 275px;
    }
    .RG-AP820-AR {
        top: 112px;
        left: 106px;
    }
    .RG-SF2920-8GT22XS-P {
        top: 190px;
        left: 560px;
    }
    .RG-MAP852-SF-M {
        top: 134px;
        left: 63px;
    }
    .RG-MAP852-SF-U {
        top: 42px;
        left: 456px;
    }
    .valueText {
        left: calc((100% - 1200px)/2);
    }
    .valueTitle {
        font-size: 28px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .valueBtn {
        width: 48px;
    }
    .valueTitle::after {
        width: 480px;
    }
    .n-resource-img {
        width: 290px;
    }
    .n-resource-title {
        font-size: 18px;
    }
    .n-resource-desc {
        padding: 0 0;
        margin: 10px 0;
        /* 显示3行文字 */
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
    }
    #resource .transparent-commonlink {
        font-size: 14px;
    }
    .arrowBtns {
        display: none;
    }
    .caseImg {
        width: 598px;
    }
    .caseInfo {
        width: 1200px;
    }
}

@media screen and (max-width:1440px) {
    .valueBtn {
        display: none;
    }
    .valueTab .valueIcon {
        width: 40px;
        height: 40px;
        background-repeat: no-repeat;
        background-size: 40px;
    }
    .valueTab.active .valueIcon {
        background-position: 0 -40px;
    }
    .caseInfo {
        width: 1100px;
    }
    .caseDesc {
        font-size: 16px;
    }
    .caseText h3 {
        font-size: 22px;
    }
}

@media screen and (max-width:1280px) {
    /* 通用 */
    .n-page-title {
        font-size: 28px;
    }
    .n-page-content {
        width: 1080px;
        margin: 48px auto 0 auto;
    }
    .n-project-info {
        padding-top: 20px;
        padding-bottom: 60px;
    }
    .n-banner-text h1 {
        font-size: 36px;
    }
    /* banner */
    .n-banner-text {
        left: calc((100% - 1080px)/2);
    }
    .n-nav-content {
        width: 1080px;
    }
    .n-page-box img {
        width: 640px;
    }
    .n-box-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .n-scene-box img {
        width: 640px;
    }
    .n-scene-content {
        padding: 0px 78px;
    }
    .RG-S7620-20SFG2CQ {
        top: 161.6px;
        left: 248.8px;
    }
    .RG-S7810C {
        top: 260.8px;
        left: 338.4px;
    }
    .RG-MUX-8LCLC {
        top: 204px;
        left: 250px;
    }
    .RG-AP820-AR {
        top: 102px;
        left: 94px;
    }
    .RG-SF2920-8GT22XS-P {
        top: 174px;
        left: 511px;
    }
    .RG-MAP852-SF-M {
        top: 120px;
        left: 56px;
    }
    .RG-MAP852-SF-U {
        top: 35px;
        left: 415px;
    }
    .valueText {
        left: calc((100% - 1000px)/2);
    }
    .valueTitle::after {
        width: 320px;
    }
    .valueTitle {
        font-size: 24px;
    }
}

@media screen and (max-width:768px) {
    .n-banner-text h1 span {
        font-size: 20px;
    }
    .n-breadcrumb {
        display: none;
    }
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        background: #F7F9FA;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #FFF;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 50px;
        background: #F7F9FA;
    }
    .n-nav-content ul {
        flex-direction: column;
        width: 100%;
    }
    .nav-show {
        width: 100%;
        display: flex;
        height: 50px;
        align-items: center;
        padding: 0 1.25rem;
        justify-content: space-between;
    }
    .nav-show span {
        font-weight: 400;
        font-size: 14px;
        color: #292929;
    }
    .nav-show div {
        display: flex;
        align-items: center;
    }
    .nav-show img {
        margin-left: 8px;
        width: 24px;
    }
    .n-nav-content ul li {
        padding: 10px 0 10px 1.25rem;
        width: 100%;
    }
    .n-nav .n-nav-content .n-nav-active {
        display: unset;
        border-bottom: 1px solid #DA0030;
        padding-bottom: 4px;
    }
    .arrow-active {
        transform: rotate(180deg);
    }
    .n-banner-text {
        left: 0;
        transform: unset;
        top: 0;
        width: 100%;
        padding: 30px 20px 0 20px;
    }
    .ys_header {
        height: 64px!important;
    }
    .n-banner-text h1 {
        font-size: 32px;
    }
    .n-banner-text h2 {
        margin-top: 16px;
        font-size: 20px;
    }
    .n-banner-text p {
        margin-top: 16px;
        font-size: 12px;
    }
    .n-page-title {
        font-size: 24px;
        width: 100%;
    }
    .n-page-content {
        width: 100%;
        padding: 0 20px;
    }
    .n-banner-text .whiteBtn {
        background: #FFF;
        color: #E60039;
        font-size: 14px;
        border-radius: 4px;
    }
    .whiteBtn {
        background: #E60039;
        padding: 6px 18px;
        color: #FFF;
        font-size: 14px;
        border-radius: 4px;
    }
    .nav-show .whiteBtn {
        display: none;
    }
    .n-project-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .n-btn-primary {
        padding: 10px 18px;
    }
    .n-page-desc {
        width: 100%;
        margin: 16px 0px 40px;
    }
    #gaishu-img {
        display: none;
    }
    .gaishu-img_m {
        display: block;
        width: 100%!important;
        margin: 24px 0;
    }
    .n-resource-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }
    .n-anli-box {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px
    }
    .n-anli-card-content {
        padding: 30px 27px 20px;
    }
    .n-anli-card img {
        width: 27px;
    }
    .n-anli-card3 {
        height: 610px;
    }
    .n-anli-card3 .n-anli-card-content {
        height: 431px;
    }
    #topo .n-page-content {
        position: relative;
    }
    .zoomBtn {
        display: block;
        position: absolute;
        right: 36px;
        bottom: 36px;
        cursor: pointer;
    }
    #concact .n-page-content {
        flex-direction: column;
    }
    #concact {
        background-image: url(../image/concact-bg_750.webp);
    }
    #concact .n-page-content {
        margin: 42px auto;
    }
    .n-concact-desc {
        font-size: 16px;
        padding: 0 36px;
        position: absolute;
        margin-top: 110px;
    }
    .n-concact-title .n-btn-primary {
        margin-top: 96px;
    }
    .n-scene-box img {
        width: 100%;
    }
    .n-scene-box {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
    }
    .n-scene-content {
        padding: 32px 50px;
    }
    .n-scene-title {
        margin: 20px 0 20px;
    }
    .n-scene-content .transparent-commonlink {
        margin-top: 24px;
    }
    .n-scene-box-reverse {
        flex-direction: column-reverse;
    }
    .n-scene-box:last-child {
        margin-bottom: 8px;
    }
    .circleTag {
        width: 9vw;
        height: 9vw;
    }
    .RG-S7620-20SFG2CQ {
        top: 20vw;
        left: 32vw;
    }
    .RG-S7810C {
        top: 33vw;
        left: 45vw;
    }
    .RG-MUX-8LCLC {
        top: 27vw;
        left: 34vw;
    }
    .RG-AP820-AR {
        top: 13vw;
        left: 12vw;
    }
    .RG-SF2920-8GT22XS-P {
        top: 22.8vw;
        left: 69.6vw;
    }
    .RG-MAP852-SF-M {
        top: 15.2vw;
        left: 6.6vw;
    }
    .RG-MAP852-SF-U {
        top: 4vw;
        left: 56vw;
    }
    .n-dev-tag img {
        width: 24px !important;
    }
    .valueText {
        width: 100%;
        left: 0;
        padding: 0 24px;
        top: 100px;
        transform: unset;
    }
    .valueTitle::after {
        width: 100%;
    }
    .valueTab span {
        font-size: 16px;
    }
    .n-resource-card {
        flex-direction: column;
    }
    .n-resource-img {
        width: 100%;
    }
    .n-resource-title {
        margin-top: 16px;
    }
    .caseInfo {
        width: 100%;
        flex-direction: column-reverse;
        padding: 0 20px;
    }
    .caseImg {
        width: 100%;
        margin-left: 0;
    }
    .caseText h3 {
        font-size: 20px;
        margin-top: 24px;
    }
    #caseSwiper {
        margin-top: 48px;
    }
}

#contactus {
    padding: 40px 0;
    background-image: url("../image/contact-bg.webp");
    background-position: center;
    background-size: 100% 100%;
    margin: 80px 0 0;
}

#contactus .n-page-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto 0 auto;
}

#contactus .n-box-title {
    color: #2A2B2E;
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    /* 45px */
    margin-bottom: 8px;
}

#contactus .n-box-desc {
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    /* 30px */
}

#contactus .n-main-btn {
    color: #FFF;
    padding: 12px 120px;
    text-align: center;
}

#contactus .n-main-btn img {
    margin-right: 8px;
    width: fit-content;
}

.n-main-btn {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 32px;
    border-radius: 4px;
    background: #E60039;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    width: fit-content;
    cursor: pointer;
}

.n-main-btn:hover {
    background: #CC002D;
}

@media screen and (max-width: 1440px) {
    #contactus .n-box-title {
        font-size: 22px;
    }
    #contactus .n-box-desc {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    #contactus {
        margin: 40px 0 0;
    }
    #contactus .n-page-content {
        display: flex;
        flex-wrap: wrap;
        padding: 0px 20px;
        gap: 40px;
    }
    #contactus .n-main-btn {
        padding: 12px 24px;
    }
}