/* 通用 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* 标准色-红色 */
    --standard-red-color: #E60039;
    /* 字体色-中色 */
    --neutra-color: #6A6B6D;
    /* 字体色-深色 */
    --dark-color: #2A2B2E;
    /* 标准色-白色 */
    --white-color: #FFFFFF;
    /* 标准色-红色悬停态 */
    --standard-red-hover-color: #CC002D;
}

.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-desc {
    color: #6A6B6D;
    text-align: center;
    font-size: 20px;
    line-height: 150%;
    margin-top: 16px;
}

.n-page-content {
    position: relative;
    width: 1400px;
    margin: 60px auto 0 auto;
}

.blueBg {
    padding: 80px 0 80px 0;
    background: #FAFBFC;
    margin-top: 0px;
}

.n-main-btn {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 32px;
    border-radius: 4px;
    background: var(--standard-red-color);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    width: fit-content;
    cursor: pointer;
}

.n-main-btn:hover {
    color: var(--white-color);
    background: var(--standard-red-hover-color);
}

.whiteBtn {
    background-color: var(--white-color)!important;
    color: var(--standard-red-color)!important;
    border: 1px solid var(--standard-red-color);
}

.whiteBtn:hover {
    background-color: var(--standard-red-hover-color)!important;
    color: var(--white-color)!important;
}

.link-btn {
    display: flex;
    align-items: center;
    color: var(--standard-red-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.link-btn::after {
    content: '';
    width: 24px;
    height: 24px;
    background-image: url('../RJ-img/link.svg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-left: 8px;
}

@media screen and (max-width:1600px) {
    /* 通用 */
    .n-page-title {
        font-size: 32px;
    }
    .n-page-content {
        width: 1200px;
        margin: 48px auto 0 auto;
    }
    .n-main-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

@media screen and (max-width:1280px) {
    /*通用*/
    .n-page-title {
        font-size: 28px;
    }
    .n-page-content {
        width: 1080px;
        margin: 40px auto 0 auto;
    }
    .n-project-info {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media screen and (max-width:768px) {
    .ys_header {
        height: 64px!important;
    }
    .n-page-title {
        font-size: 22px;
    }
    .n-project-info {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .n-page-content {
        width: 100%;
        padding: 0 20px;
    }
    .blueBg {
        padding: 40px 20px 40px 20px;
        margin-top: 0px;
    }
}

.n-nav {
    position: relative;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: var(--white-color);
    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: var(--neutra-color);
    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 var(--standard-red-color);
}

.nav-show {
    display: none;
}

.n-banner {
    position: relative;
}

.n-banner-text {
    position: absolute;
    left: calc((100% - 1400px)/2);
    top: 50%;
    transform: translateY(-50%);
    max-width: 1008px;
}

.n-banner-text h1 {
    color: var(--white-color);
    font-size: 48px;
    font-weight: 600;
}

.n-banner-text h2 {
    margin-top: 12px;
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
}

.n-banner-text p {
    margin-top: 24px;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 350;
    line-height: 150%;
}

.n-banner-text a {
    margin-top: 60px;
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding: 11px 32px;
    border-radius: 4px;
    background: var(--standard-red-color);
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    margin-right: 24px;
}

.n-banner-text a:last-child {
    margin-right: 0;
}

.n-banner-text a:hover {
    background: var(--standard-red-hover-color);
}

@media screen and (max-width:1600px) {
    .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;
        padding: 10px 24px;
        font-size: 14px;
    }
    .n-nav {
        height: 48px;
    }
    .n-nav-content {
        width: 1200px;
    }
}

@media screen and (max-width:1280px) {
    .n-banner-text h1 {
        font-size: 32px;
    }
    .n-banner-text p {
        margin-top: 16px;
    }
    .n-banner-text {
        left: calc((100% - 1080px)/2);
    }
    .n-banner-text a {
        margin-top: 20px;
    }
    .n-nav-content {
        width: 1080px;
    }
    .n-nav-content a {
        font-size: 14px;
    }
}

@media screen and (max-width:768px) {
    .n-breadcrumb {
        display: none;
    }
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        background: #DFE5EB;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #FFF;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        margin-top: 50px;
        background: #DFE5EB;
    }
    .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;
    }
    .nav-show .whiteBtn {
        display: none;
    }
    .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 var(--standard-red-color);
        padding-bottom: 4px;
    }
    .arrow-active {
        transform: rotate(180deg);
    }
    .n-banner-text {
        left: 0;
        transform: unset;
        top: 0;
        width: 100%;
        padding: 40px 20px 0 20px;
    }
    .ys_header {
        height: 64px!important;
    }
    .n-banner-text h2 {
        font-size: 20px;
    }
    .n-banner-text p {
        margin-top: 20px;
        font-size: 16px;
    }
    .n-banner-text a {
        margin-top: 32px;
    }
    .whiteBtn {
        background: var(--standard-red-color);
        padding: 6px 18px;
        color: var(--white-color);
        font-size: 14px;
        border-radius: 4px;
    }
}


/* 客户案例 */

.caseInfo {
    display: flex;
    background-color: var(--white-color);
    border-radius: 12px;
    position: relative;
}

.caseInfo a,
.another-case a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.caseInfo img {
    width: 520px;
}

.caseText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 48px;
}

.speBg {
    background-image: url(../RJ-img/speBg.webp);
    background-size: cover;
}

.caseText h3 {
    color: var(--dark-color);
    font-size: 32px;
    font-weight: 600;
    line-height: 150%;
}

.caseText p,
.another-case p {
    margin-top: 16px;
    margin-bottom: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--neutra-color);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.caseDesc {
    margin-top: 4px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
}

.thumbs-container {
    margin-top: 32px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.40);
}

.thumbInfo {
    background: var(--white-color);
    padding: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.thumb-title {
    margin-top: 16px;
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 150%;
}

.thumbInfo p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 8px;
    overflow: hidden;
    color: var(--neutra-color);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    min-height: 48px;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active {
    border: 1px solid var(--standard-red-color);
    border-radius: 4px;
}

.swiper.swiper-thumbs {
    overflow: visible;
}

.main-container {
    position: relative;
}

.swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.swiper-button.prev {
    left: -140px;
}

.swiper-button.next {
    right: -140px;
}

.page-btns {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-btns .n-main-btn {
    margin-right: 24px;
}

.another-case h3 {
    color: var(--dark-color);
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
}

#anotherSwiper {
    margin-bottom: 60px;
}

.swiper-main .swiper-pagination {
    display: none;
}

.swiper-main .swiper-pagination,
#anotherSwiper .swiper-pagination {
    margin-top: 40px;
    position: unset;
}

.swiper-main .swiper-pagination-bullet,
#anotherSwiper .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    background: #F1F3F5;
    border-radius: unset;
    opacity: 1;
    margin: 0;
}

.swiper-main .swiper-pagination-bullet-active,
#anotherSwiper .swiper-pagination-bullet-active {
    background: var(--standard-red-color);
    border-radius: 4px;
}

#anotherSwiper .swiper-slide {
    opacity: 0.6;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    transition: 300ms;
    transform: scale(0.89);
}

#anotherSwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}

.another-case p {
    font-size: 15px;
}

.another-case {
    position: relative;
    border-radius: 4px;
    background-color: #F7F9FA;
}

.another-case-text {
    padding: 16px;
}

.n-project-info.bottom {
    position: relative;
    background-image: url(../RJ-img/bottom.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.n-project-info.bottom .n-page-content {
    margin-top: 0;
}

.ruijie-img {
    position: absolute;
    width: 288px;
    bottom: 0;
    left: calc((100% - 1400px)/2);
}

.ruijie-text {
    margin-left: 348px;
}

.ruijie-text h3 {
    color: var(--dark-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 150%;
    display: block;
    margin-bottom: 24px;
}

.it-history {
    padding-bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.40) 66.72%, rgba(255, 255, 255, 0.68) 86.97%), #EDF1F4;
}

.it-history .n-main-btn {
    margin-top: 24px;
}

.historySection {
    margin-top: 120px;
}

.historyCont {
    position: absolute;
    bottom: 42px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.90) 15%, rgba(255, 255, 255, 0.90) 85%, rgba(255, 255, 255, 0.00) 100%);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(4.8px);
}

.historyInfo {
    width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.historyInfo div {
    padding: 40px 0;
}

.historyInfo p {
    color: var(--dark-color);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
}

.historyInfo strong {
    display: block;
    color: var(--standard-red-color);
    font-size: 28px;
    text-align: center;
    font-weight: 600;
    line-height: 150%;
}

.history-map,
.historySection {
    position: relative;
}

.mapInfo {
    width: 14.375vw;
    padding: .625vw;
    background: var(--white-color);
    position: absolute;
}

.mapInfo h3 {
    color: var(--dark-color);
    font-size: 1vw;
    font-weight: 600;
    line-height: 150%;
}

.mapInfo p {
    margin-top: 0.42vw;
    color: var(--neutra-color);
    font-size: 0.78125vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

#map1 {
    left: 15.6vw;
    top: 2.6vw;
}

#map2 {
    left: 33.8vw;
    top: 0vw;
}

#map3 {
    left: 51.8vw;
    top: 0vw;
}

#map4 {
    left: 69.8vw;
    top: 0.2vw;
}

#map5 {
    left: 24.4vw;
    top: 19.2vw;
}

#map6 {
    left: 42.4vw;
    top: 16.2vw;
}

#map7 {
    left: 61vw;
    top: 17vw;
}

.map-line {
    display: none;
}

@media screen and (max-width: 1600px) {
    .swiper-button.prev {
        left: -80px;
    }
    .swiper-button.next {
        right: -80px;
    }
}

@media screen and (max-width: 1480px) {
    .n-banner-text {
        max-width: 900px;
    }
    .caseInfo img {
        width: 380px;
    }
    .caseText h3 {
        font-size: 28px;
    }
    .caseText p,
    .another-case p {
        font-size: 14px;
    }
    .caseDesc {
        font-size: 16px;
    }
    .swiper-button {
        display: none;
    }
    .thumbInfo p {
        font-size: 14px;
        min-height: 42px;
    }
    .thumb-title {
        font-size: 16px;
    }
    .historyInfo {
        width: 1200px;
    }
    .historyInfo p {
        font-size: 14px;
    }
    .historyInfo strong {
        font-size: 22px;
    }
    .historyInfo div {
        padding: 32px 0;
    }
    .historyCont {
        bottom: 36px;
    }
    .historySection {
        margin-top: 100px;
    }
    .ruijie-img {
        left: calc((100% - 1200px)/2);
    }
    .ruijie-text h3 {
        font-size: 28px;
    }
    #anotherSwiper .swiper-pagination {
        margin-top: 24px;
    }
    #anotherSwiper {
        margin-bottom: 42px;
    }
    .another-case h3 {
        font-size: 22px;
    }
}

@media screen and (max-width: 1281px) {
    .n-banner-text {
        max-width: 720px;
    }
    .caseInfo img {
        width: 340px;
    }
    .caseText h3 {
        font-size: 24px;
    }
    #anotherSwiper .swiper-pagination {
        margin-top: 0;
    }
    #anothercase {
        width: 960px;
    }
    .another-case h3 {
        font-size: 18px;
    }
    .caseDesc {
        font-size: 14px;
    }
    .caseText p,
    .another-case p {
        font-size: 12px;
        margin-top: 8px;
    }
    .link-btn {
        font-size: 14px;
    }
    .link-btn::after {
        width: 20px;
        height: 20px;
    }
    .historyInfo {
        width: 1100px;
    }
    .historyInfo p {
        font-size: 12px;
    }
    .historyInfo strong {
        font-size: 20px;
    }
    .ruijie-img {
        left: calc((100% - 1080px)/2);
    }
}

@media screen and (max-width: 768px) {
    .n-banner-text a {
        margin-top: 16px;
    }
    .thumbs-container {
        display: none;
    }
    .caseInfo {
        flex-direction: column;
    }
    .caseInfo img {
        width: 100%;
    }
    .caseInfo {
        background-color: #F1F3F5;
    }
    .caseText {
        padding: 20px;
    }
    .caseText h3 {
        font-size: 22px;
    }
    .caseDesc {
        font-size: 18px;
    }
    .caseText p,
    .another-case p {
        font-size: 14px;
    }
    .swiper-main .swiper-slide,
    #anotherSwiper .swiper-slide {
        height: unset;
    }
    .caseInfo {
        height: 100%;
    }
    #anothercase {
        width: 100%;
    }
    .swiper-main .swiper-pagination {
        display: block;
    }
    .swiper-main .swiper-pagination-bullet,
    #anotherSwiper .swiper-pagination-bullet {
        margin: 0 4px;
    }
    .another-case h3 {
        font-size: 22px;
    }
    #anotherSwiper .swiper-slide {
        opacity: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        -webkit-justify-content: unset;
        justify-content: unset;
        -webkit-box-align: unset;
        -ms-flex-align: unset;
        -webkit-align-items: unset;
        align-items: unset;
        transition: unset;
        transform: unset;
    }
    .ruijie-img {
        left: 50%;
        transform: translateX(-50%);
    }
    .ruijie-text {
        margin-left: 0;
        text-align: center;
    }
    .ruijie-text h3 {
        text-align: center;
        color: var(--dark-color);
        font-size: 20px;
        font-weight: 700;
        line-height: 150%;
    }
    .ruijie-text {
        padding-bottom: 240px;
    }
    .historyCont {
        position: unset;
        bottom: unset;
        padding: 0 20px;
        background: unset;
    }
    .historyInfo {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        background: unset;
    }
    .historyInfo div {
        padding: 24px 16px;
        background: #FFF;
        border-radius: 4px;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    }
    .historyInfo p {
        font-size: 16px;
    }
    .historyInfo strong {
        font-size: 28px;
    }
    .historySection img {
        display: none;
    }
    .it-history {
        background: #EEf2f3;
    }
    .historyCont {
        box-shadow: unset;
        backdrop-filter: unset;
    }
    .it-history {
        padding-bottom: 60px;
    }
    .mapInfo:first-child {
        margin-top: 0;
    }
    .historySection {
        margin-top: 60px;
    }
    .map-line {
        color: #0174E8;
        font-size: 22px;
        font-weight: 700;
        line-height: 150%;
        display: flex;
        margin-right: 12px;
    }
    .mapInfo h3 {
        font-size: 20px;
    }
    .mapInfo {
        margin-top: 40px;
        width: 100%;
        position: unset;
        background: unset;
        display: flex;
        padding: 0 20px 0 24px;
    }
    .mapInfo p {
        font-size: 15px;
        margin-top: 8px;
    }
    .circle {
        margin-top: 8px;
        position: relative;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        border: 1px solid #0174E8;
        margin-right: 8px;
        background: #FFF;
        z-index: 9;
    }
    .circle::before {
        content: "";
        position: absolute;
        width: 8px;
        height: 8px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: #0174E8;
    }
    .history-map {
        position: relative;
        margin-bottom: 84px;
    }
    .history-map::before {
        position: absolute;
        left: 32px;
        top: 12px;
        content: '';
        display: block;
        width: 2px;
        height: 95%;
        background: linear-gradient( to bottom, #0174E8 86%, rgba(255, 255, 255, 0) 100%);
    }
    .it-history .n-main-btn {
        margin-right: 0;
    }
}