* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 通用 */
.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%;
}
.n-page-content{
    width: 1400px;
    margin: 60px auto 0 auto;
}
.blueBg {
    padding: 80px 0 80px 0;
    background: #F7F9FA;
    margin-top: 0px;
}
/* banner和nav */
.n-nav {
    position: relative;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: #2A2B2E;
}

.n-nav-content {
    display: flex;
    justify-content: space-between;
    width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.n-nav-content a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
}

.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: rgba(255,255,255,1);
    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%);
    width: 663px;
}
.n-banner-text h1 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
}

.n-banner-text p {
    margin-top: 24px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}
.n-banner-text a {
    margin-top: 48px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    height: 46px;
    padding: 12px 40px;
    border-radius: 4px;
    background: #E60039;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    margin-right: 24px;
}
.n-banner-text a:hover{
    background: #CC002D;
}
.n-banner-text a:last-child {
    margin-right: 0;
}
.n-banner-text .whiteBtn{
    background: #FFF;
    color: #E60039;
}
.primary-btn:hover,.n-banner-text .whiteBtn:hover{
    background: #CC002D;
    color: #FFF;
}
.primary-btn{
    display: inline-block;
    color: #FFF!important;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    height: 60px;
    padding: 8px 48px;
    background: #E60039;
}

/*概述*/
#beijing{
    padding-top: 60px;
}
.overviewCont {
    display: flex;
}
.overviewInfo .n-project-title {
    text-align: left;
    margin-bottom: 0;
    color: #292929;
    font-size: 36px;
    font-weight: 700;
    line-height: 150%; /* 54px */
}
.overviewInfo ul{
    margin-bottom: 8px;
}

.overviewInfo p {
    margin-top: 24px;
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.overviewImg {
    max-width: unset;
    min-width: unset;
    width: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-right: 48px;
}

.overviewCont {
    display: flex;
    align-items: stretch;
}
.overviewImg {
    /* pc图片 */
    background-image: url(/fa/ly/20241030/RJ-img/overview.webp);
}
.title-line {
    position: relative;
    padding-bottom: 24px;
}
.title-line::after {
    content: '';
    display: block;
    height: 2px;
    width: 50px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #E60039;
}
.overviewImg-m{
    display: none;
}
@media screen and (max-width:1600px) {
    .overviewImg {
        width: 602px;
    }
}

@media screen and (max-width:1440px) {
    .overviewImg {
        width: 602px;
    }
    .overviewImg {
        margin-right: 42px;
    }
    .overviewInfo p {
        margin-top: 20px;
    }
}

@media screen and (max-width:1280px) {
    .overviewInfo p {
        margin-top: 16px;
        font-size: 14px;
    }
    .overviewImg {
        width: 512px;
        margin-right: 36px;
    }
}

@media screen and (max-width:1068px) {
    .overviewCont {
        flex-wrap: wrap;
    }
    .overviewCont .n-project-title {
        text-align: center;
    }
    .title-line::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .overviewImg {
        width: 100%;
        height: 330px;
        margin-right: 0;
    }
}

@media screen and (max-width:768px) {
    .overviewImg {
        height: 240px;
    }
    .overviewInfo p {
        margin-top: 24px;
        font-size: 16px;
    }
    .overviewImg{
        display: none;
    }
    .overviewImg-m {
        width: 100%;
        height: 160px;
        background-size: cover;
        background-repeat: no-repeat;
        flex-shrink: 0;
        margin: 24px 0;
        display: block;
        /* 移动端图片 */
        background-image: url(/fa/ly/20241030/RJ-img/overview.webp);
    }
}

@media screen and (max-width:480px) {
    .overviewImg {
        height: 160px;
    }
}
/*架构*/
#jiagou p{
    color: #6A6B6D;
    text-align: center;
    font-size: 16px;
    line-height: 150%; /* 24px */
    margin-top: 16px;
}
.zoomBtn{
    display: none;
}
/*价值*/
.n-value-list{
    display: flex;
    justify-content: space-between;
}
.n-value-card{
    padding: 48px 24px;
    width: 450px;
    text-align: center;
}
.n-value-card img{
    width: 232px;
}
.n-value-title{
    margin: 32px auto 12px;
    color: #2A2B2E;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%; /* 28.8px */
}
.n-value-desc{
    color: #6A6B6D;
    text-align: center;
    font-size: 16px;
    line-height: 150%; /* 24px */
}

/*案例*/
.n-anli-list{
    display: flex;
    justify-content: space-between;
}

.n-anli-card{
    width: 450px;
}
.n-anli-card img {
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease-out;
    -webkit-transition:all 0.3s ease-out;
    -moz-transition:all 0.3s ease-out;
    -o-transition:all 0.3s ease-out;
}
.n-anli-content{
    padding: 24px;
    background-color: #FFFFFF;
    border-radius: 0 0 4px 4px;
    min-height: 240px;
}
.n-anli-title{
    color: #2A2B2E;
    font-size: 20px;
    font-weight: 700;
    line-height: 125%; /* 25px */
}
.n-anli-subtitle{
    color: #2A2B2E;
    font-size: 20px;
    font-weight: 400;
    line-height: 125%; /* 25px */
    margin:8px 0 12px 0;
}
.n-anli-desc{
    color: #6A6B6D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%; /* 22.5px */
    margin-bottom: 24px;
}
.transparent-commonlink {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #E60039;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    width: 100px;
    margin: 24px 0 0 0;
}
.transparent-commonlink:hover{
    cursor: pointer;
}

.transparent-commonlink::after {
    content: '';
    background-image: url(/fa/ly/20241030/RJ-img/link.svg);
    margin-left: 8px;
    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);
    }
}

/*相关产品*/
.n-products {
    gap: 24px;
    height: unset;
    display: flex;
    flex-wrap: wrap;
    background-color: unset;
}

.n-products a {
    width: 450px;
    text-align: center;
    background-color: #FAFBFC;
    padding: 24px;
}

.n-products a img {
    width: 250px;
}

.n-products a i {
    display: block;
    font-style: normal;
    margin-top: 12px;
    color: #2A2B2E;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.n-products a p {
    margin-top: 12px;
    overflow: hidden;
    color: #6A6B6D;
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.n-products a span {
    margin: 24px auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DA0030;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.n-products a span::after {
    content: '';
    background-image: url(/fa/ly/20241030/RJ-img/link.svg);
    margin-left: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    transition: transform .16s linear;
}

.resourcesSection {
    display: flex;
    align-items: flex-start;
}

.resources-tab {
    flex-shrink: 0;
}

.resources-tab-word {
    display: none;
}

.resources-tab {
    position: relative;
    padding: 12px 0;
    margin-right: 248px;
}

.resources-tab div {
    position: relative;
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    padding: 0 0 0 24px;
    margin-top: 48px;
    cursor: pointer;
}

.resources-tab div.active {
    color: #E60039;
    pointer-events: none;
}

.resources-tab div.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 2px;
    background-color: #E60039;
    display: block;
}

.resources-tab div:first-child {
    margin-top: 0;
}

.resources-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    background-color: #D5D5D5;
    display: block;
}

.resourcesCont {
    width: 100%;
}

.resourceCards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.resourceCard {
    position: relative;
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid #D5D5D5;
}

.resourceCard p {
    color: #2A2B2E;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%; /* 27px */
    margin-bottom: 42px;
}

.resourceCard a,
.resourceImg a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 4;
}

.resourceImgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.resourceImg {
    position: relative;
}

.resourceImg img {
    width: 100%;
}

.resourceImg p {
    color: #2A2B2E;
    font-size: 18px;
    font-weight: 700;
    line-height: 150%; /* 27px */
    margin:16px 0 12px;
}

.resourceImg i {
    color: #9B9FA8;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.resourceImgCover {
    position: relative;
    overflow: hidden;
}

.resourceImgCover img {
    transition: transform .16s linear;
}

.resourceVideo .resourceImgCover::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 2;
}

.resourceVideo .resourceImgCover::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/fa/ly/20241030/RJ-css/videoPlay.svg);
    z-index: 3;
}

@media screen and (min-width:1068px) {
    .resourceImg:hover .resourceImgCover img {
        transform: scale(1.05);
    }
}

@media screen and (max-width:1440px) {
    .resources-tab {
        margin-right: 214px;
    }
    .resourceCard p {
        font-size: 18px;
    }
    .resourceImg p {
        margin-top: 14px;
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {
    .resources-tab {
        margin-right: 184px;
    }
    .resources-tab div {
        margin-top: 36px;
        font-size: 16px;
    }
    .resourceCard p {
        font-size: 16px;
    }
    .resourceImg p {
        margin-top: 12px;
        font-size: 14px;
    }
    .resourceCard .transparent-commonlink {
        font-size: 14px;
    }
    .resourceCard .transparent-commonlink::after {
        width: 20px;
        height: 20px;
    }
    .resourceVideo .resourceImgCover::after {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width:1068px) {
    .resourcesSection {
        flex-direction: column;
        align-items: center;
    }
    .resources-tab {
        display: flex;
        justify-content: center;
        margin-right: 0;
        padding: 0;
        margin-bottom: 36px;
    }
    .resources-tab div {
        margin-top: 0;
        padding: 0 12px 12px 12px;
    }
    .resources-tab::before {
        width: 100%;
        height: 1px;
        bottom: 0;
        left: 0;
        top: unset;
    }
    .resources-tab div.active::before {
        top: unset;
        bottom: 0;
        width: 100%;
        height: 2px;
    }
    .resourceImgs {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .resourceCards {
        gap: 20px;
    }
}

@media screen and (max-width:768px) {
    .resourceCard {
        padding: 16px;
    }
}

@media screen and (max-width:600px) {
    .resourceCards {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:520px) {
    .resourceImgs {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/*faq*/
#faq{
    padding-bottom: 120px;
}
.n-question{
    padding: 36px 0;
    border-bottom: 1px solid #E3E5E6;
}
.n-question-q{
    color: #2A2B2E;
    font-size: 18px;
    font-weight: 700;
}
.n-question-a{
    color: #6A6B6D;
    font-size: 16px;
    line-height: 150%; /* 24px */
    margin-top: 12px;
}
.n-question:nth-child(n+4) {
    display: none;
}

#faq .whiteBtn{
    background: #FFF;
    color: #E60039;
    padding: 12px 40px;
    border-radius: 4px;
    border: 1px solid #E60039;
    backdrop-filter: blur(2.5px);
    width:144px;
    margin: 24px auto;
    cursor: pointer;
    text-align: center;
}
#faq .whiteBtn:hover{
    background: #CC002D;
    color: #FFF;
}

#contactus{
    padding: 40px 0;
    background-image: url("/fa/ly/20241030/RJ-img/contact-bg.webp");
}
#contactus .n-page-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto 0 auto;
}
.n-box-title{
    color: #2A2B2E;
    font-size: 30px;
    font-weight: 700;
    line-height: 150%; /* 45px */
    margin-bottom: 24px;
}
.n-box-desc{
    color: #6A6B6D;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
}
#contactus .primary-btn{
    color: #FFF !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 44px;
    height: 60px;
    padding: 8px 48px;
    width: 400px;
    text-align: center;
    border-radius: 4px;
}

@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-banner-text a {
        margin-top: 24px;
        height: 40px;
        padding: 10px 24px;
        font-size: 14px;
    }
    .n-nav {
        height: 48px;
    }
    .n-nav-content {
        width: 1200px;
    }
    .primary-btn {
        height: 48px;
    }

    .overviewInfo .n-project-title {
        font-size: 28px;
    }
    .title-line {
        padding-bottom: 16px;
    }
    .overviewInfo p {
        margin-top: 16px;
        font-size: 14px;
    }
    .n-value-card {
        width: 382px;
        padding: 36px 24px;
    }
    .n-value-card img {
        width: 200px;
    }
    .n-anli-card {
        width: 382px;
    }
    .n-products a {
        width: 382px;
    }
    #contactus .primary-btn {
        width: 320px;
    }
}

@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: 60px;
        padding-bottom: 60px;
    }
    /* banner */
    .n-banner-text {
        left: calc((100% - 1080px)/2);
    }
    .n-nav-content {
        width: 1080px;
    }
    .overviewInfo .n-project-title {
        font-size: 24px;
    }
    .overviewInfo p {
        font-size: 12px;
    }

    .n-value-card {
        width: 344px;
    }
    .n-anli-card {
        width: 344px;
    }
    .n-products a {
        width: 344px;
    }
    .n-value-title {
        margin: 24px auto 12px;
        font-size: 20px;
    }
    .n-anli-content {
        min-height: 265px;
    }
    #faq {
        padding-bottom: 80px;
    }
    .n-box-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

@media screen and (max-width:768px) {
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        margin-top: -50px;
        background: #2A2B2E;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #FFF;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 50px;
        background: #2A2B2E;
    }
    .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: #FFFFFF;
    }
    .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 img{
        display: block;
    }
    .n-banner video{
        display: none;
    }
    .n-banner-text {
        left: 0;
        transform: unset;
        top: 0;
        width: 100%;
        padding: 40px 20px 0 20px;
    }
    .ys_header {
        height: 64px!important;
    }
    .n-banner-text h1 {
        font-size: 24px;
    }
    .n-banner-text h2 {
        font-size: 16px;
    }
    .n-banner-text p {
        margin-top: 12px;
        font-size: 12px;
    }
    .n-banner-text a {
        margin-top: 32px;
        height: 40px;
        padding: 12px 24px;
        font-size: 16px;
        line-height: 100%;
    }
    .n-page-title {
        font-size: 22px;
    }
    .n-project-info {
        padding-top: 40px;
    }
    .n-page-content {
        width: 100%;
        padding: 0 20px;
        margin: 40px auto 0 auto;
    }
    .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;
    }
    .n-nav-content .primary-btn{
        display: none;
    }
    .nav-show .whiteBtn{
        height: 50px;
        border-radius: 0;
        line-height: 38px;
    }
    .zhixunbtn{
        display: none!important;
    }
    .n-project-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #beijing {
        padding-top: 32px;
    }
    .overviewInfo .n-project-title {
        font-size: 22px;
    }
    .title-line {
        padding-bottom: 12px;
    }
    .overviewInfo p {
        font-size: 16px;
    }
    .n-value-list {
        flex-wrap: wrap;
    }
    .n-value-card {
        width: 100%;
        padding: 32px 16px;
        margin-bottom: 24px;
    }
    .n-value-card:last-child{
        margin-bottom: 0;
    }
    .n-value-title {
        font-size: 16px;
    }
    #anli{
        padding-top: 80px;
    }
    .n-anli-list{
        flex-wrap: wrap;
    }
    .n-anli-card {
        width: 100%;
        margin-bottom: 24px;
    }
    .n-anli-content {
        padding: 24px 18px;
        min-height: auto;
    }
    .n-anli-desc {
        margin-bottom: 0px;
    }

    .n-products a {
        width: 48%;
        padding: 16px;
        margin-bottom: 12px;
    }
    .n-products {
        gap: 0px;
        justify-content: space-between;
    }
    .n-products a img {
        width: 120px;
    }
    .n-products a i {
        margin-top: 8px;
        font-size: 12px;
    }
    .n-products a span {
        margin: 24px auto 0px auto;
        font-size: 12px;
    }
    .n-products a span::after {
        margin-left: 4px;
        width: 20px;
        height: 20px;
        transition: transform .16s linear;
    }
    .n-question:first-child {
        padding: 12px 0;
    }
    #contactus .n-page-content {
        flex-wrap: wrap;
        
    }
    #contactus {
        padding: 40px 0px;
        background-size: 100% 100%;
    }
    .n-box-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .n-box-desc {
        font-size: 16px;
        margin-bottom: 32px;
    }
    #contactus .primary-btn {
        color: #FFF !important;
        font-size: 20px;
        line-height: 30px;
        height: 54px;
        padding: 12px 60px;
        width: 250px;
    }
    .zoomBtn{
        display: block;
        position: absolute;
        right: 16px;
        bottom: 16px;
    }

}

