* {
    margin: 0;
    padding: 0;
}

.n-project-page {
    padding-bottom: 140px;
}

.n-project-page img {
    width: 100%;
}

.n-banner {
    position: relative;
}

.n-banner img {
    display: none;
}

.n-banner-content {
    width: 1400px;
    left: calc((100% - 1400px)/2);
    height: 100%;
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #292929;
    z-index: 9;
}

.n-banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
}

.n-banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 120%;
}

.n-banner-content p {
    margin-top: 12px;
    width: 720px;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
}

.n-banner-btns {
    margin-top: 20px;
    display: flex;
}

.n-project-btn {
    display: inline-block;
    padding: 10px 36px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border-radius: 4px;
}

.n-banner-btns .n-project-btn {
    margin-right: 24px;
    cursor: pointer;
}

.n-banner-btns .n-project-btn:last-child {
    margin-right: 0;
}

.redBtn {
    color: #FFFFFF;
    border-radius: 4px;
    background: #DA0030;
    backdrop-filter: blur(2.5px);
    -webkit-backdrop-filter: blur(2.5px);
    transition: background .36s ease;
}

.redBtn:hover {
    background: #C7002A;
    color: #FFFFFF;
}

.whiteBtn {
    color: #DA0030;
    background: #FFFFFF;
    box-shadow: 5px 4px 20px 0px #DBDBDB;
}

.whiteBtn:hover {
    color: #DA0030;
}

.n-nav {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    top: 0;
    height: 60px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
}

.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: #7D7D7D;
    cursor: pointer;
}

.n-breadcrumb a::after {
    content: '>';
    display: block;
    margin: 2px 6px 0 6px;
}

.n-breadcrumb a:last-child:after {
    content: '';
}

@media screen and (min-width:768px) {
    .n-breadcrumb a:hover {
        color: #292929;
        font-weight: 700;
    }
    .n-nav-content ul li a:hover {
        color: #292929;
        font-weight: 700;
        border-bottom: 1px solid #DA0030;
    }
}

.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: 1px solid #DA0030;
}

.nav-show {
    display: none;
}

.n-page-title {
    padding-top: 80px;
    text-align: center;
    color: #292929;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
}

.n-page-desc {
    margin-top: 12px;
    color: #292929;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

.n-page-info {
    margin-top: 48px;
}

.n-page-content {
    width: 1400px;
    margin: 0 auto;
}

.colorBg {
    position: relative;
    background: #F5FFFF;
}

.colorBg::before {
    top: 0;
    background-image: linear-gradient(to right, #48CFC9, #48CFC900, #FFFFFF);
}

.colorBg::before,
.colorBg::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.colorBg::after {
    bottom: 0;
    background-image: linear-gradient(to left, #48CFC9, #48CFC900, #FFFFFF);
}

.n-questions,
.n-cases {
    padding: 44px 0;
    display: flex;
    justify-content: space-between;
}

.n-quesiton,
.n-case {
    width: 435px;
    text-align: center;
}

.n-quesiton h5,
.n-case h5 {
    margin-top: 24px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(180deg, #15D0C3 0%, #61BBEE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.n-quesiton p,
.n-case p {
    margin-top: 12px;
    color: #7D7D7D;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.n-case {
    position: relative;
}

.n-case a {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.n-makeup {
    padding: 48px 0;
}

.n-product {
    display: block;
    width: 688px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border-radius: 12px;
}

.n-product h5 {
    color: #292929;
    font-size: 22px;
    font-weight: 400;
}

.n-product strong {
    display: block;
    margin-top: 14px;
    color: #0094FF;
    font-size: 14px;
    font-weight: 400;
}

.n-product span {
    border-radius: 0 0 12px 12px;
    border: 1px solid #7DFAF1;
    display: block;
    padding: 36px 0 42px 42px;
    transition: box-shadow ease .36s;
}

.n-product:hover span {
    box-shadow: 7px 13px 50px 0px rgba(8, 145, 150, 0.20);
}


/* 模态框 */

.n-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
}

.n-modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.modalCloseBtn {
    position: absolute;
    right: 60px;
    top: 60px;
    cursor: pointer;
}

.modal-content-hide {
    display: none;
}


/* wis轮播图 */

.swiperbox {
    width: 984px;
    position: relative;
    text-align: center;
}

.greenBtn {
    position: relative;
    color: #5EDFE5;
    border: 1px solid #30D9DF;
}

.greenBtn::before {
    content: '';
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(264deg, #18B3FE 7.58%, #1FFFF2 80.86%);
    border-radius: 4px;
    z-index: -1;
    transition: all .36s ease;
}

@media screen and (min-width:768px) {
    .greenBtn:hover::before {
        width: 100%;
    }
    .greenBtn:hover {
        color: #292929!important;
    }
}

.wis-btns .n-project-btn {
    margin-right: 64px;
}

.wis-btns .n-project-btn:hover {
    color: #5EDFE5;
}

.wis-btns {
    margin-top: 84px;
}

.wis-btns .n-project-btn:last-child {
    margin-right: 0;
}

.wis-prev,
.wis-next {
    position: absolute;
    top: 30%;
    width: 40px;
    cursor: pointer;
}

.wis-prev {
    left: -10%;
}

.wis-next {
    right: -10%;
}

#folder5 {
    color: #5EDFE5;
    text-align: center;
}

#folder5 p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
}

.wis-head {
    text-align: left;
}

#folder5 .wis-line {
    width: unset;
    height: 42px;
    margin: 10px 0 6px 0;
}

#folder5 span {
    text-align: left;
    display: block;
    margin-bottom: 30px;
}

#folder5 .n-project-btn {
    margin-top: 68px;
}

#folder5 .wis-prev,
#folder5 .wis-next {
    top: 44%;
}


/* 中间部分 */

.n-wis-main {
    position: relative;
    background-color: #F5FFFF;
}

.n-wis-main-img {
    position: relative;
}


/* 第一段 */

.step1 {
    position: relative;
    margin-bottom: -24px;
}

.step1-img {
    width: 405px;
    margin-left: 122px;
    z-index: 2;
}

.n-animation {
    width: 100%;
}

#ani1 {
    margin-top: 114px;
    position: absolute;
    top: 0;
    right: 0;
}

#ani2 {
    margin-top: -38px;
    margin-bottom: -110px;
}

#ani3 {
    margin-top: -110px;
    margin-bottom: -56px;
}

#ani4 {
    margin-top: -88px;
    margin-bottom: -64px;
}

#ani5 {
    margin-top: -64px;
}

.n-point h5 {
    color: #292929;
    font-size: 32px;
    font-weight: 700;
    text-align: left;
}

.n-point ul li {
    color: #7D7D7D;
    font-size: 14px;
    font-weight: 400;
    line-height: 200%;
    list-style: disc;
    text-align: left;
}

.n-point ul {
    margin: 22px 0 0 16px;
}

.n-link {
    color: #0094FF;
    font-size: 14px;
    font-weight: 400;
    line-height: 125%;
    cursor: pointer;
    margin-top: 22px;
    text-align: left;
}

#point1 {
    margin: 110px 0 0 148px;
}

.n-wis-main {
    text-align: center;
}

.n-wis-main-content {
    display: flex;
    position: relative;
    z-index: 2;
}

#pointSwiper {
    width: 815px;
}

#content2-img {
    width: 753px;
}

#content3-img {
    width: 815px;
}

#content4-img {
    width: 844px;
    margin-left: 40px;
}

#point2 {
    margin: 120px 0 0 120px;
}

.n-wis-main-content-desc {
    margin-top: -60px;
    color: #7D7D7D;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    position: relative;
}

.n-wis-main-content-desc::before,
.n-wis-main-content-desc::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 16px;
    background-size: cover;
    background-repeat: no-repeat;
}

.n-wis-main-content-desc::before {
    margin-left: -2%;
    background-image: url(../RJ-img/mark-prev.svg);
}

.n-wis-main-content-desc::after {
    margin-left: 1%;
    margin-top: 1%;
    background-image: url(../RJ-img/mark-next.svg);
}

.n-wis-main .n-project-btn {
    margin: 68px 0 78px 0;
    font-weight: 700;
}

#point3 {
    margin: 120px 55px 0 104px;
}

#point4 {
    margin: 120px 0 0 62px;
}

.n-point h6 {
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(180deg, #15D0C3 0%, #61BBEE 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(70px);
    transition: all .68s ease;
    opacity: 1;
}

.n-point-content {
    opacity: 0;
    transform: translateY(70px);
    transition: all .68s ease;
}

.text-active h6 {
    transform: translateY(-70px);
    opacity: 0;
}

.text-active .n-point-content {
    transform: translateY(-70px);
    opacity: 1;
}

.n-download {
    display: flex;
    align-items: flex-start;
}

.n-tab {
    border-left: 1px solid #E4E4E4;
}

.n-tab div {
    padding-left: 24px;
    position: relative;
    margin-bottom: 24px;
    color: #292929;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
}

.n-tab div:last-child {
    margin-bottom: 0;
}

.n-tab .n-tab-selected {
    font-weight: 700;
    pointer-events: none;
}

.n-tab .n-tab-selected::before {
    content: '';
    width: 2px;
    height: 100%;
    background-color: #7DFAF1;
    display: block;
    position: absolute;
    left: -1px;
}

.n-download-content {
    display: flex;
    margin-left: 160px;
}

.n-download-content .n-download-news {
    display: block;
    width: 350px;
    height: 160px;
    background: #F5FFFF;
    padding: 40px 16px 26px 26px;
    box-sizing: border-box;
    margin-right: 24px;
}

.n-download-content a:last-child {
    margin-right: 0;
}

.n-download-content h6 {
    color: #292929;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    min-height: 54px;
}

.n-download-content span {
    display: block;
    margin-top: 20px;
    color: #0094FF;
    font-size: 14px;
    font-weight: 400;
    line-height: 125%;
}

.n-download-video {
    width: 350px;
    height: 290px;
    margin-right: 24px;
    background: #F5FFFF;
}

.n-download-video h6 {
    margin: 26px 16px 0 28px;
    min-height: unset;
}

.n-download-video span {
    margin: 16px 0 0 28px;
}

#content1 {
    margin-top: -54px;
    margin-bottom: -96px;
}

@media screen and (max-width:1440px) {
    .n-banner-content {
        width: 1200px;
        left: calc((100% - 1200px)/2);
    }
    .n-banner-content h1 {
        font-size: 42px;
    }
    .n-banner-content h2 {
        font-size: 28px;
    }
    .n-banner-content p {
        margin-top: 10px;
        font-size: 14px;
        width: 620px;
    }
    .n-banner-btns {
        margin-top: 16px;
    }
    .n-banner-btns .n-project-btn {
        margin-right: 20px;
    }
    .n-project-btn {
        padding: 8px 30px;
        font-size: 16px;
    }
    .n-nav-content {
        width: 1200px;
    }
    .n-page-content {
        width: 1200px;
    }
    .n-quesiton,
    .n-case {
        width: 374px;
    }
    .n-quesiton h5,
    .n-case h5 {
        margin-top: 20px;
        font-size: 20px;
    }
    .n-quesiton p,
    .n-case p {
        font-size: 14px;
        margin-top: 10px;
    }
    .n-questions,
    .n-cases {
        padding: 38px 0;
    }
    .n-page-title {
        padding-top: 68px;
        font-size: 30px;
    }
    .n-page-info {
        margin-top: 42px;
    }
    .n-page-desc {
        margin-top: 10px;
        font-size: 20px;
    }
    .n-makeup {
        padding: 42px 0;
    }
    .n-product {
        width: 592px;
    }
    .n-product span {
        padding: 30px 36px 36px;
    }
    .n-product h5 {
        font-size: 18px;
    }
    .n-product strong {
        margin-top: 10px;
    }
    .n-project-page {
        padding-bottom: 120px;
    }
    .step1-img {
        width: 348px;
        margin-left: 104px;
    }
    #pointSwiper {
        width: 700px;
    }
    #point1 {
        margin: 94px 0 0 128px;
    }
    .n-point h6 {
        font-size: 28px;
        transform: translateY(60px);
    }
    .text-active h6 {
        transform: translateY(-60px);
    }
    .n-point-content {
        transform: translateY(60px);
    }
    .text-active .n-point-content {
        transform: translateY(-60px);
    }
    .n-point h5 {
        font-size: 28px;
    }
    .n-point ul {
        margin: 18px 0 0 14px;
    }
    .n-link {
        margin-top: 18px;
    }
    #ani1 {
        margin-top: 98px;
    }
    #content2-img {
        width: 648px;
    }
    #ani2 {
        margin-top: -32px;
        margin-bottom: -96px;
    }
    #point2 {
        margin: 104px 0 0 104px;
    }
    #ani3 {
        margin-top: -94px;
        margin-bottom: -46px;
    }
    .step1 {
        margin-bottom: -20px;
    }
    #point3 {
        margin: 104px 48px 0 90px;
    }
    #content3-img {
        width: 700px;
    }
    #ani4 {
        margin-top: -80px;
        margin-bottom: -60px;
    }
    #content4-img {
        width: 726px;
        margin-left: 34px;
    }
    #point4 {
        margin: 104px 0 0 54px;
    }
    #ani5 {
        margin-top: -50px;
    }
    .n-wis-main-content-desc {
        font-size: 20px;
        margin-top: -52px;
    }
    .n-wis-main .n-project-btn {
        margin: 58px 0 66px 0;
    }
    .swiperbox {
        width: 846px;
    }
    .wis-btns {
        margin-top: 68px;
    }
    .wis-prev,
    .wis-next {
        width: 32px;
    }
    .wis-btns .n-project-btn {
        margin-right: 48px;
    }
    #folder5 p {
        font-size: 14px;
    }
    .process-main {
        margin-top: 42px;
        grid-template-columns: repeat(2, 448px);
        grid-template-rows: auto auto;
        grid-gap: 80px;
    }
    .process-main span {
        margin-top: 20px;
    }
    #folder5 .n-project-btn {
        margin-top: 42px;
    }
    .n-tab div {
        padding-left: 20px;
        margin-bottom: 20px;
        font-size: 16px;
    }
    .n-download-content .n-download-news {
        width: 300px;
        height: 136px;
        margin-right: 20px;
        padding: 32px 16px 20px 20px;
    }
    .n-download-content {
        margin-left: 136px;
    }
    .n-download-content .n-download-news h6 {
        min-height: 46px;
    }
    .n-download-content h6 {
        font-size: 16px;
    }
    .n-download-content span {
        font-size: 12px;
    }
    .n-download-video {
        width: 300px;
        height: 250px;
    }
    .n-download-video h6 {
        margin: 20px 16px 0 24px;
    }
    .n-download-video span {
        margin: 12px 0 0 20px;
    }
    .n-download-video {
        margin-right: 20px;
    }
}

@media screen and (max-width:1280px) {
    .n-banner-content h1 {
        font-size: 36px;
    }
    .n-banner-content h2 {
        font-size: 24px;
    }
    .n-banner-content {
        width: 1040px;
        left: calc((100% - 1040px)/2);
    }
    .n-nav-content {
        width: 1040px;
    }
    .n-nav-content a {
        font-size: 14px;
    }
    .n-banner-content p {
        width: 526px;
    }
    .n-banner-btns .n-project-btn {
        margin-right: 16px;
    }
    .n-banner-btns {
        margin-top: 14px;
    }
    .n-project-btn {
        padding: 6px 24px;
        font-size: 14px;
    }
    .n-page-title {
        padding-top: 58px;
        font-size: 26px;
    }
    .n-page-info {
        margin-top: 36px;
    }
    .n-page-content {
        width: 1040px;
    }
    .n-quesiton,
    .n-case {
        width: 318px;
    }
    .n-quesiton h5,
    .n-case h5 {
        font-size: 16px;
        margin-top: 16px;
    }
    .n-quesiton p,
    .n-case p {
        margin-top: 8px;
        font-size: 12px;
    }
    .n-page-desc {
        margin-top: 8px;
        font-size: 16px;
    }
    .n-product {
        width: 504px;
    }
    .n-product span {
        padding: 24px 0 30px 30px;
    }
    .step1 {
        margin-bottom: -16px;
    }
    .step1-img {
        margin-left: 88px;
        width: 296px;
    }
    #ani1 {
        margin-top: 84px;
    }
    .n-point h6,
    .n-point h5 {
        font-size: 24px;
    }
    .n-point h6 {
        transform: translateY(50px);
    }
    .text-active h6 {
        transform: translateY(-50px);
    }
    .n-point-content {
        transform: translateY(50px);
    }
    .text-active .n-point-content {
        transform: translateY(-50px);
    }
    #point1 {
        margin: 80px 0 0 108px;
    }
    #pointSwiper {
        width: 595px;
    }
    .n-point ul li {
        font-size: 12px;
    }
    .n-point ul {
        margin: 14px 0 0 12px;
    }
    #ani2 {
        margin-top: -26px;
        margin-bottom: -84px;
    }
    #content2-img {
        width: 550px;
    }
    #point2 {
        margin: 88px 0 0 88px;
    }
    #ani3 {
        margin-top: -80px;
        margin-bottom: -42px;
    }
    #content3-img {
        width: 595px;
    }
    #ani4 {
        margin-top: -68px;
        margin-bottom: -50px;
    }
    #content4-img {
        width: 616px;
        margin-left: 28px;
    }
    #point4 {
        margin: 88px 0 0 46px;
    }
    .n-wis-main-content-desc {
        font-size: 18px;
        margin-top: -44px;
    }
    .n-wis-main .n-project-btn {
        margin: 50px 0 56px 0;
    }
    .n-product h5 {
        font-size: 16px;
    }
    .swiperbox {
        width: 720px;
    }
    .wis-btns {
        margin-top: 58px;
    }
    .wis-prev,
    .wis-next {
        width: 28px;
    }
    .wis-btns .n-project-btn {
        margin-right: 40px;
    }
    .modalCloseBtn {
        right: 48px;
        top: 48px;
        width: 14px;
    }
    .process-main {
        margin-top: 34px;
        grid-template-columns: repeat(2, 320px);
        grid-template-rows: auto auto;
        grid-gap: 24px;
    }
    .process-main span {
        margin-top: 8px;
        font-size: 14px;
    }
    #folder5 .n-project-btn {
        margin-top: 20px;
    }
    #folder5 span {
        font-size: 14px;
    }
    .n-tab div {
        padding-left: 16px;
        margin-bottom: 16px;
        font-size: 14px;
    }
    .n-download-content .n-download-news {
        width: 254px;
        height: 116px;
        margin-right: 16px;
        padding: 26px 14px 16px 16px;
    }
    .n-download-content {
        margin-left: 116px;
    }
    .n-download-content .n-download-news h6 {
        min-height: 40px;
    }
    .n-download-content h6 {
        font-size: 14px;
    }
    .n-download-video {
        width: 254px;
        height: 212px;
    }
    .n-download-video h6 {
        margin: 16px 14px 0 20px;
    }
    .n-download-video span {
        margin: 10px 0 0 16px;
    }
    .n-download-video {
        margin-right: 16px;
    }
}

@media screen and (max-width:1068px) {
    #content1 {
        margin-top: 0;
        margin-bottom: 0;
    }
    .n-banner-content {
        width: 750px;
        left: calc((100% - 750px)/2);
    }
    .n-banner-content h1 {
        font-size: 30px;
    }
    .n-banner-content h2 {
        font-size: 20px;
    }
    .n-banner-content p {
        width: 384px;
        font-size: 12px;
        margin-top: 6px;
    }
    .n-banner-btns .n-project-btn {
        margin-right: 10px;
    }
    .n-project-btn {
        padding: 4px 20px;
        font-size: 12px;
    }
    .n-page-title {
        padding-top: 42px;
    }
    .n-page-content {
        width: 750px;
    }
    .n-questions,
    .n-cases {
        flex-wrap: wrap;
    }
    .n-quesiton,
    .n-case {
        width: 48%;
    }
    .n-quesiton:nth-child(3),
    .n-case:nth-child(3) {
        margin-top: 24px;
    }
    .n-product h5 {
        font-size: 16px;
    }
    .swiperbox {
        width: 526px;
    }
    .wis-btns {
        margin-top: 42px;
    }
    .wis-prev,
    .wis-next {
        width: 20px;
    }
    .wis-btns .n-project-btn {
        margin-right: 28px;
    }
    .modalCloseBtn {
        right: 36px;
        top: 36px;
    }
    .process-main {
        margin-top: 24px;
        grid-template-columns: repeat(2, 278px);
        grid-template-rows: auto auto;
        grid-gap: 48px;
    }
    .process-main span {
        margin-top: 12px;
    }
    #folder5 span {
        font-size: 12px;
    }
    #folder5 .n-project-btn {
        margin-top: 26px;
    }
    .n-wis-main-content {
        flex-direction: column;
    }
    #ani1,
    #ani2,
    #ani3,
    #ani4,
    #ani5 {
        display: none;
    }
    #point1,
    #point2,
    #point3,
    #point4 {
        margin: 0 auto;
    }
    .step1-img {
        width: 400px;
        margin: 0 auto;
    }
    #content1,
    #content3 {
        flex-direction: column-reverse;
    }
    .step1 {
        margin-bottom: 0;
    }
    #pointSwiper {
        width: 560px;
        margin-top: 24px;
    }
    .n-point h6 {
        margin-top: 24px;
        font-size: 22px;
        transform: unset;
        text-align: center;
    }
    .n-point-content {
        opacity: 1;
        text-align: center;
        transform: unset;
    }
    .n-point h5 {
        margin-top: 16px;
        text-align: center;
        font-size: 18px;
    }
    .n-point ul li {
        line-height: 200%;
        list-style: none;
        text-align: center;
        font-size: 14px;
    }
    .n-link {
        margin-top: 12px;
        font-size: 14px;
        text-align: center;
    }
    #content2-img {
        width: 480px;
        margin-top: 48px;
        margin-left: 114px;
    }
    #content3-img {
        width: 480px;
        margin-top: 48px;
        margin-left: 114px;
    }
    #content4-img {
        margin-top: 48px;
        width: 580px;
        margin-left: 88px;
    }
    .n-wis-main-content-desc {
        margin-top: 48px;
    }
    .n-wis-main-content-desc::before {
        margin-left: -3%;
    }
    .n-wis-main-content-desc::after {
        margin-left: 1.5%;
        margin-top: 2%;
    }
    .n-wis-main-content-desc::before,
    .n-wis-main-content-desc::after {
        width: 14px;
        height: 12px;
    }
    .n-nav-content {
        width: 750px;
    }
    .n-nav {
        height: 48px;
        margin-top: -48px;
    }
    .n-download {
        flex-direction: column;
        align-items: center;
    }
    .n-tab {
        display: flex;
        border-left: none;
        border-top: 1px solid #E4E4E4;
    }
    .n-tab .n-tab-selected::before {
        width: 100%;
        height: 2px;
        left: 0;
        top: -1px;
    }
    .n-tab div {
        text-align: center;
        padding: 10px 10px 0 10px;
    }
    .n-download-content {
        margin-left: unset;
        margin-top: 48px;
    }
}

@media screen and (max-width:768px) {
    .n-modal {
        display: none!important;
    }
    .n-breadcrumb {
        display: none;
    }
    .n-nav {
        flex-direction: column;
        height: unset;
        align-items: flex-start;
        margin-top: -50px;
        background: #EFF2F4;
    }
    .n-nav-content {
        display: none;
        width: 100%;
        position: absolute;
        background: #EFF2F4;
        backdrop-filter: blur(50px);
        -webkit-backdrop-filter: blur(50px);
        margin-top: 50px;
    }
    .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;
    }
    .n-nav-content a {
        font-size: 14px;
    }
    .nav-show div {
        display: flex;
        align-items: center;
    }
    .nav-show img {
        margin-left: 8px;
        width: 12px;
    }
    .n-nav-content ul li {
        padding: 10px 0 10px 1.25rem;
        width: 100%;
    }
    .n-nav .n-nav-content .n-nav-active {
        box-sizing: border-box;
        border: none;
    }
    .arrow-active {
        transform: rotate(180deg);
    }
    .n-banner-content {
        width: 20.4375rem;
        left: calc((100% - 20.4375rem)/2);
        justify-content: start;
    }
    .n-banner-content p {
        width: 100%;
        font-size: .75rem;
        margin-top: .4375rem;
    }
    .n-banner-content h1 {
        margin-top: 1.875rem;
        font-size: 1.3125rem;
    }
    .n-banner-content h2 {
        font-size: 1.125rem;
        padding-bottom: .4375rem;
        border-bottom: 1px solid rgba(193, 203, 208, .5);
    }
    .n-banner video {
        display: none;
    }
    .n-banner img {
        display: block;
    }
    .n-project-btn {
        font-size: .75rem;
        padding: .3125rem 1.125rem;
    }
    .n-banner-btns {
        margin-top: 2.375rem;
    }
    .n-banner-btns .redBtn {
        display: none;
    }
    .n-banner-btns .whiteBtn {
        color: #FFFFFF;
        background: #DA0030;
    }
    .n-page-title {
        padding: 2.8125rem 2.6875rem 0 2.6875rem;
        font-size: 1.25rem;
    }
    .n-page-info {
        margin-top: .75rem;
    }
    .n-page-content {
        width: 20.9375rem;
    }
    .n-quesiton {
        width: 100%;
        display: flex;
        flex-direction: row;
    }
    .n-quesiton h5,
    .n-case h5 {
        font-size: 1rem;
    }
    .n-quesiton p,
    .n-case p {
        font-size: .75rem;
        margin-top: .375rem;
    }
    .n-quesiton div {
        margin-left: .5rem;
    }
    .n-page-desc {
        font-size: 1rem;
        margin-top: .75rem;
    }
    .n-case {
        margin-top: 1.5rem;
        width: 100%;
        border-bottom: 1px solid #75E6EA;
        padding-bottom: 1.5rem;
    }
    .n-case p {
        margin-top: .75rem;
    }
    .n-case:nth-child(1) {
        margin-top: 0;
    }
    .n-case:last-child {
        border-bottom: none;
    }
    .n-questions,
    .n-cases {
        padding: 2.125rem 0;
    }
    .n-product {
        width: 100%;
    }
    .n-product span {
        padding: 1.125rem 0 1.5rem 1.3125rem;
        box-shadow: 7px 13px 50px 0px rgba(8, 145, 150, 0.20);
    }
    .n-product h5 {
        font-size: .875rem;
    }
    .n-product strong {
        margin-top: .75rem;
        font-size: .75rem;
    }
    .n-wis-main-content-desc {
        margin-top: .9375rem;
        font-size: .75rem;
    }
    .n-wis-main .n-project-btn {
        margin: 1rem 0 3.875rem 0;
    }
    .n-wis-main-content {
        flex-direction: column;
    }
    .step1-img {
        width: 15.625rem;
        margin: 0 auto;
        padding-top: 1.875rem;
    }
    #pointSwiper {
        margin-top: 1.6875rem;
        width: 20.3125rem;
    }
    .n-point h6 {
        margin-top: 1.5rem;
    }
    .n-point h6 {
        font-size: 1.125rem;
    }
    .n-point h5 {
        font-size: .9375rem;
        text-align: center;
        margin-top: .75rem;
    }
    .n-point ul {
        margin: .75rem 0 0 0;
    }
    .n-point ul li {
        font-size: .75rem;
        list-style: none;
        text-align: center;
        line-height: 200%;
    }
    .n-point .n-link {
        display: none;
    }
    #content2-img {
        margin: 2.5rem 0 0 0;
        width: 21.875rem;
    }
    .n-wis-main {
        width: 100%;
    }
    #content3-img {
        margin: 2.5rem 0 0 0;
        width: 21.875rem;
    }
    #content4-img {
        width: 21.5rem;
        margin: 2.5rem auto 0 auto;
    }
    .n-download-main {
        width: 100%;
    }
    .n-download-content {
        margin-top: 0;
        flex-direction: column;
    }
    .n-download-content .n-download-news {
        width: 100%;
        padding: 1.5rem 0 1.5rem 1.5625rem;
        margin-top: .75rem;
        height: 5.9375rem;
    }
    .n-download-content .n-download-news h6 {
        min-height: unset;
        font-size: .875rem;
    }
    .n-download-content .n-download-news span {
        font-size: .75rem;
        margin-top: .75rem;
    }
    .n-download-video {
        margin-right: 0;
        width: 100%;
        height: 15rem;
        margin-top: .75rem;
    }
    .n-download-video:first-child {
        margin-top: 0;
    }
    .n-download-video h6 {
        margin: 1.125rem 0 0 1.3125rem;
        font-size: .875rem;
    }
    .n-download-video span {
        font-size: .75rem;
        margin: .75rem 0 0 1.125rem;
    }
}

.n-qa {
    margin-top: 36px;
    font-size: 18px;
    color: #292929;
    border-bottom: 1px solid rgba(216, 216, 216, 0.50);
    padding-bottom: 36px;
}

.n-qa:first-child {
    margin-top: 0;
}

.n-qa:last-child {
    border-bottom: none;
}

.n-ask {
    font-weight: 700;
}

.n-answer {
    font-size: 16px;
    color: #9B9FA8;
    margin-top: 12px;
    font-weight: 400;
    line-height: 175%;
}

@media screen and (max-width:1440px) {
    .n-qa {
        font-size: 16px;
    }
    .n-answer {
        font-size: 14px;
    }
}

@media screen and (max-width:1280px) {
    .n-qa {
        margin-top: 32px;
        padding-bottom: 32px;
    }
}