/* base */
.home-page {
    margin: 0 !important;
}
.title-blue {
    color: #017AEB;
}
.main-btn .btn-svg,
.btn-blur .btn-svg {
    width: 23px;
    height: 28px;
    margin: 8px 13px 0 0;
}
.btn-blur {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 278px;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.51);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    overflow: hidden;
}
.btn-blur:hover {
    color: #fff;
    transform: scale(1.05);
    animation: home-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.btn-group {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 46px auto 0;
}
@keyframes home-pulse {
    50% {
        opacity: .7;
    }
}

.index-title {
    font-weight: bold;
    font-size: 42px;
    line-height: 48px;
    text-align: center;
    color: #1A1A1A;
}
.index-desc {
    max-width: 792px;
    margin: 22px auto 0;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #1A1A1A;
}

.index-maxwidth {
    margin: 0 auto;
}
@media (max-width: 1445px) {
    .index-maxwidth {
        padding: 0 15px;
    }
}
@media (max-width: 1023px) {
    .index-title {
        font-size: 26px;
        line-height: 32px;
    }
    .index-desc {
        margin: 20px auto 0;
        font-size: 15px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin: 30px auto 0;
    }
}
@media (max-width: 360px) {
    .index-maxwidth {
        padding: 0 6px;
    }
}
/* base */

/* banner */
.banner {
    position: relative;
    height: 100vh;
    padding: 249px 0 0;
}
.banner-box {
    position: relative;
    z-index: 1;
}
.banner-title {
    margin: 0 auto;
    color: #fff;
    font-size: 50px;
    line-height: 60px;
    text-align: center;
}
.banner-desc {
    margin: 25px auto 0;
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
}
.banner-desc-item:last-child {
    margin-top: 10px;
}
.banner .btn-blur {
    width: 260px;
    height: 72px;
    margin: 40px auto 0;
    font-size: 18px;
}
.banner-video {
    position: absolute;
    inset: 0;
}
.banner-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.banner-bg-video.curr {
    opacity: 1;
}
.banner-switch {
    position: absolute;
    top: 50%;
    right: 30px;
    gap: 25px;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 2;
}
.banner-sw-item {
    width: 85px;
    height: 68px;
    object-fit: cover;
    border-radius: 7px;
    cursor: pointer;
}
.banner-sw-item.curr {
    border: 1px solid #FFFFFF;
}

@media (max-width: 1445px) {
    .banner-switch {
        flex-direction: row;
        top: unset;
        bottom: 40px;
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 1023px) {
    .banner {
        height: 593px;
        padding: 138px 0 0;
    }
    .banner-box {
        padding: 0 15px;
    }
    .banner-title {
        max-width: 330px;
        margin: 0 auto;
        font-size: 26px;
        line-height: 32px;
    }
    .banner-desc {
        font-size: 15px;
        line-height: 18px;
    }
    .banner-desc-item:last-child {
        margin-top: 15px;
    }
    .banner .btn-blur {
        width: 240px;
        height: 65px;
        margin: 37px auto 0;
        font-size: 16px;
    }
    .banner-switch {
        bottom: 20px;
        gap: 25px;
        width: 245px;
    }
    .banner-sw-item {
        width: 65px;
        height: 52px;
        border-radius: 6px;
    }
}
/* banner */

/* discover */
.discover {
    padding: 75px 0;
}
.discover-switch {
    display: flex;
    justify-content: center;
    width: 682px;
    height: 72px;
    padding: 8px 6px;
    margin: 48px auto 0;
    border-radius: 12px;
    background: #F5F7F9;
}
.discover-s-item {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #81828B;
    border-radius: inherit;
    cursor: pointer;
}
.discover-s-item.curr {
    color: #fff;
    background: #D063FF;
}
.discover-s-item span {
    margin-left: 5px;
}
.discover-content {
    position: relative;
    max-width: 1399px;
    margin: 30px auto 0;
}
.discover-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 26px;
}
.discover-l-item {
    position: relative;
    width: 330px;
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
}
.discover-l-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .3s linear;
}
.discover-l-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.discover-l-item:not(.discover-l-mask):hover .discover-l-img {
    transform: scale(1.05);
}
.discover .btn-blur {
    position: absolute;
    left: 50%;
    bottom: 0;
    opacity: 0;
    transform: translateX(-50%);
    visibility: hidden;
    transition: all .3s;
}
.discover .btn-blur:hover {
    transform: translateX(-50%);
    opacity: 1;
    animation: unset;
}
.discover-l-item:not(.discover-l-mask):hover .btn-blur {
    bottom: 20px;
    opacity: 1;
    visibility: visible;
}
.discover-l-mask::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
}
.discover-link {
    position: absolute;
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
}
.discover-link:hover {
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 1450px) {
    .discover-list {
        gap: 18px;
    }
    .discover-l-item {
        width: 300px;
        height: 410px;
    }
}
@media (max-width: 1365px) {
    .discover-l-item {
        width: 250px;
        height: 360px;
    }
}
@media (max-width: 1248px) {
    .discover-l-item {
        width: 230px;
        height: 340px;
    }
}
@media (max-width: 1023px) {
    .discover {
        padding: 30px 0;
    }
    .discover-switch {
        width: 344px;
        height: 65px;
        margin: 25px auto 0;
    }
    .discover-s-item {
        font-size: 16px;
    }
    .discover-s-item span {
        display: none;
    }
    .discover-content {
        max-width: 345px;
        margin: 20px auto 0;
    }
    .discover-list {
        gap: 13px;
    }
    .discover-l-item {
        width: 166px;
        height: 221px;
        border-radius: 10px;
    }
    .discover-msak-mhide {
        display: none;
    }
   .discover-link {
        bottom: 5px;
    }
    .discover .btn-blur {
        bottom: 20px;
        width: 150px;
        height: 43px;
        font-size: 13px;
        border-radius: 7px;
        opacity: 1;
        visibility: visible;
    }
    .discover .btn-blur .btn-svg {
        display: none;
    }
}
/* discover */

/* explore */
.explore {
    padding: 75px 0;
}
.explore-list-scroll {
    scroll-behavior: smooth;
    overflow-y: scroll;
    /* iOS 惯性滚动 */
    -webkit-overflow-scrolling: touch;
    /* Firefox */
    scrollbar-width: none;
    /* IE / Edge (旧) */
    -ms-overflow-style: none;
}
/* Chrome / Safari / 新 Edge */
.explore-list-scroll::-webkit-scrollbar {
  display: none;
}
.explore-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px auto 0;
}
.explore-l-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 57px;
    font-size: 18px;
    color: #1A1A1A;
    font-weight: 600;
    border-radius: 10px;
    background: #F5F7F9;
    cursor: pointer;
}
.explore-l-item.curr {
    color: #fff;
    background: #D063FF;
}
.explore-l-item svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
.explore-content {
    max-width: 1780px;
    margin: 72px auto 0;
}
.explore-sw-box {
    display: flex;
    justify-content: center;
    align-items: center;
}
.explore-sw-left {
    max-width: 740px;
    max-height: 443px;
}
.explore-sw-right {
    width: 537px;
    margin-left: 94px;
}
.explore-sw-title {
    color: #1A1A1A;
    font-weight: bold;
    font-size: 32px;
    line-height: 100%;
}
.explore-sw-desc {
    margin: 35px 0 0;
    color: #1A1A1A;
    font-size: 18px;
}
.explore .main-btn {
    margin-top: 120px;
}

@media (max-width: 1450px) {
    .explore-content {
        max-width: 1340px;
        margin: 72px auto 0;
    }
    .explore-sw-left {
        max-width: 660px;
        max-height: 363px;
    }
    .explore-sw-right {
        margin-left: 66px;
    }
}
@media (max-width: 1366px) {
    .explore-content {
        max-width: 990px;
    }
    .explore-sw-left {
        max-width: 390px;
        max-height: 231px;
    }
    .explore-sw-right {
        width: 432px;
        margin-left: 45px;
    }
    .explore-sw-title {
        font-size: 22px;
    }
    .explore-sw-desc {
        margin: 25px 0 0;
        font-size: 14px;
    }
    .explore .main-btn {
        margin-top: 30px;
        width: 235px;
        height: 60px;
    }
}
@media (max-width: 1023px) {
    .explore {
        padding: 30px 0;
    }
    .explore-content {
        max-width: 345px;
    }
    .explore-list {
       gap: 9px;
       flex-wrap: nowrap;
       justify-content: flex-start;
       margin: 25px auto 0;
    }
    .explore-l-item {
        flex-shrink: 0;
        width: fit-content;
        height: 45px;
        padding: 0 9px;
        margin-bottom: 3px;
        font-size: 14px;
        border-radius: 8px;
    }
    .explore-l-item svg {
        width: 19px;
        height: 19px;
        margin-right: 5px;
    }
    .explore-content {
        margin: 25px auto 0;
    }
    .explore-sw-box {
        flex-direction: column-reverse;
        padding-bottom: 87px;
    }
    .explore-sw-left {
        max-width: 319px;
        max-height: 190px;
    }
    .explore-sw-right {
        width: 100%;
        margin: 0 0 27px 0;
    }
    .explore-sw-title {
        font-size: 18px;
        text-align: center;
    }
    .explore-sw-desc {
        margin: 14px 0 0;
        font-size: 14px;
        text-align: center;
    }
    .explore-sw-box .swiper-slide {
        position: static;
    }
    .explore .main-btn {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        margin: auto;
    }
}
/* explore */

/* trusted */
.trusted {
    padding: 75px 0;
}
.trusted-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    padding: 77px 15px 98px;
    max-width: 1780px;
    margin: 0 auto;
    border-radius: 50px;
    background: #d28fff url(https://images.noviai.ai/noviaien/assets/product/index/trusted_bg.png) no-repeat center bottom;
}
.trusted-title {
    max-width: 696px;
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.4;
}
.trusted-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 510px;
    margin-top: 36px;
    gap: 38px 45px;
}
.trusted-list img {
    width: 138px;
    height: 43px;
}
.trusted-img {
    display: block;
    max-width: 640px;
}

@media (max-width: 1780px) {
    .trusted {
        padding: 0 15px;
    }
}
@media (max-width: 1445px) {
    .trusted-img {
        max-width: 470px;
    }
}
@media (max-width: 1024px) {
    .trusted-box {
        gap: 30px;
    }
    .trusted-img {
        max-width: 400px;
    }
    .trusted-title {
        font-size: 26px;
    }
    .trusted-list {
        gap: 23px 26px;
    }
}
@media (max-width: 1023px) {
    .trusted {
        padding: 30px 0;
    }
    .trusted-box {
        flex-direction: column;
        gap: 59px;
        padding: 30px 21px 77px;
        max-width: 345px;
        border-radius: 18px;
        background: #d28fff url(https://images.noviai.ai/noviaien/assets/product/index/trusted_bgsmall.png) no-repeat center bottom;
    }
    .trusted-title {
        max-width: 100%;
        font-size: 20px;
        text-align: center;
    }
    .trusted-list {
        justify-content: center;
        max-width: 100%;
        margin: 25px auto 0;
        gap: 15px 12px;
    }
    .trusted-list img {
        width: 92px;
        height: 29px;
    }
    .trusted-img {
        max-width: 100%;
    }
}
/* trusted */

/* faqs */
.pur-faqs {
    margin: 75px auto;
    padding: 97px 0 115px;
    background: #F5F7F9;
}
.pur-faqs-box {
    max-width: 1400px;
    margin: 0 auto;
}
.pur-faqs-list {
    margin-top: 50px;
}
.pur-fl-item {
    padding: 26px 29px 28px 50px;
    border-radius: 14px;
    background: #fff;
}
.pur-fl-item:not(:first-child) {
    margin-top: 20px;
}
.pur-fl-title {
    position: relative;
    padding-right: 15px;
    font-weight: 700;
    font-size: 22px;
    cursor: pointer;
}
.pur-fl-item.curr .pur-fl-title {
    color: #CF60FF;
}
.pur-fl-title::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 15px;
    height: 15px;
    background: url(https://images.noviai.ai/noviaien/assets/purchase/faq_jia.svg) no-repeat center/contain;
}
.pur-fl-item.curr .pur-fl-title::before {
    background: url(https://images.noviai.ai/noviaien/assets/purchase/faq_jian.svg) no-repeat center/contain;
}
.pur-fl-desc {
    display: none;
    max-width: 95%;
    padding-top: 17px;
    font-size: 16px;
}

@media (max-width: 1023px) {
    .pur-faqs {
        padding: 30px 0;
        margin: 30px auto;
    }
    .pur-faqs-list {
        margin-top: 30px;
    }
    .pur-fl-item {
        padding: 12px 12px 12px 17px;
        border-radius: 8px;
    }
    .pur-fl-item:not(:first-child) {
        margin-top: 15px;
    }
    .pur-fl-title {
        padding-right: 13px;
        font-size: 16px
    }
    .pur-fl-title::before {
        top: 3px;
        width: 13px;
        height: 13px;
    }
    .pur-fl-desc {
        max-width: 100%;
        padding-top: 6px;
        font-size: 14px;
    }
}
/* faqs */

/* guides */
.guides {
    padding: 75px 0;
}
.guides-swiper {
    position: relative;
    max-width: 1515px;
    margin: 48px auto 0;
    box-shadow: 0px 3.8px 50.37px 0px #A0B3D32B;
}
.guides-item {
    width: 360px;
    height: auto;
    padding: 19px 18px 30px;
    border-radius: 19px;
    border: 1px solid #DFDFDF;
    box-shadow: 0px 3.8px 50.37px 0px #A0B3D32B;
    background: #fff;
}
.guides-img {
    display: block;
    width: 100%;
    height: 186px;
    object-fit: cover;
    border-radius: 11px;
}
.guides-item-title {
    display: block;
    margin-top: 27px;
    color: #2E2E2E;
    font-weight: 700;
    font-size: 18px;
}
.guides .main-btn {
    margin: 45px auto 0;
}
.guides-fbox {
    position: absolute;
    bottom: -69px;
    right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}
.guides-fbox .swiper-button-next,
.guides-fbox .swiper-button-prev {
    position: static;
    width: 41px;
    height: 41px;
    margin: 0;
    opacity: 1;
    background: url(https://images.noviai.ai/noviaien/assets/product/index/guides_arrowl.svg) no-repeat center/100% 100%;
}
.guides-fbox .swiper-button-next {
    transform: scaleX(-1);
}
.guides-fbox .swiper-button-prev:hover {
    transform: scaleX(-1);
    background: url(https://images.noviai.ai/noviaien/assets/product/index/guides_arrow.svg) no-repeat center/100% 100%;
}
.guides-fbox .swiper-button-next:hover {
    transform: scaleX(1);
    background: url(https://images.noviai.ai/noviaien/assets/product/index/guides_arrow.svg) no-repeat center/100% 100%;
}
.guides .swiper-pagination {
    display: none;
}

@media (max-width: 1560px) {
    .guides-swiper {
        max-width: 100%;
    }
}
@media (max-width: 1023px) {
    .guides {
        padding: 30px 0;
    }
    .guides-swiper {
        max-width: 345px;
        margin: 23px auto 0;
    }
    .guides-item {
        width: 100%;
        padding: 18px 18px 25px;
        border-radius: 18px;
    }
    .guides-img {
        height: 178px;
        border-radius: 10px;
    }
    .guides-item-title {
        margin-top: 25px;
        font-size: 17px;
    }
    .guides .main-btn {
        margin: 57px auto 0;
    }
    .guides-fbox {
        display: none;
    }

    .guides .swiper-pagination {
        display: block;
        left: 50%;
        bottom: -33px;
        transform: translateX(-50%);
    }
    .guides .swiper-pagination-bullet {
        position: relative;
        width: 30px;
        height: 5px;
        margin: 0 5px;
        border-radius: 20px;
        background: #F8EEFF;
        opacity: 1;
    }
    .guides .swiper-pagination-bullet::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        border-radius: inherit;
        background: #D063FF;
    }
    .guides .swiper-pagination-bullet-active::before {
        width: 100%;
        transition: width 5s linear;
    }
}
/* guides */

/* possible */
.possible {
    margin-top: 75px;
}
.possible-box {
    position: relative;
    padding: 201px 30px 271px;
    border-radius: 60px;
    overflow: hidden;
}
.possible-box-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.possible-box-bg.curr {
    opacity: 1;
}
.possible-bg1 {
    background: url(https://images.noviai.ai/noviaien/assets/product/index/possible_bg1.jpg) no-repeat center/cover;
}
.possible-bg2 {
    background: url(https://images.noviai.ai/noviaien/assets/product/index/possible_bg2.jpg) no-repeat center/cover;
}
.possible-title {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    z-index: 1;
}
.possible .btn-group {
    gap: 53px;
    margin: 56px auto 0;
}
.possible .btn-blur {
    width: 260px;
    height: 72px;
    font-size: 18px;
}
.possible-switch {
    position: absolute;
    top: 50%;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 29px;
    transform: translateY(-50%);
}
.possible-sw-item {
    width: 100px;
    height: 100px;
    border-radius: 22px;
}
.possible-sw-item.curr {
    border: 2px solid #FFFFFF9E
}

@media (max-width: 1200px) {
    .possible {
        padding: 0 15px;
    }
    .possible-switch {
        flex-direction: row;
        top: unset;
        bottom: 50px;
        right: 50%;
        transform: translateX(50%);
    }
}
@media (max-width: 1023px) {
    .possible {
        margin-top: 30px;
    }
    .possible-box {
        padding: 53px 10px 249px;
        border-radius: 18px; 
    }
    .possible-title {
        max-width: 250px;
        font-size: 26px;
    }
    .possible-bg1 {
        background: url(https://images.noviai.ai/noviaien/assets/product/index/possible_bgsmall1.jpg) no-repeat center/cover;
    }
    .possible-bg2 {
        background: url(https://images.noviai.ai/noviaien/assets/product/index/possible_bgsmall2.jpg) no-repeat center/cover;
    }
    .possible .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 22px;
        margin: 40px auto 0;
    }
    .possible .btn-blur {
        width: 204px;
        height: 54px;
        font-size: 15px;
    }
    .possible-switch {
        gap: 15px;
    }
    .possible-sw-item {
        width: 50px;
        height: 50px;
        border-radius: 11px;
    }
}
/* possible */

/* tools */
.tools {
    padding: 94px 0 75px;
    background: linear-gradient(178.32deg, #EBCBFF -11.35%, #FFFFFF 90%);
}
.tools-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px auto 0;
}
.tools-left,
.tools-right {
    max-width: 740px;
}
.tools-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.tools-card {
    display: block;
    padding: 35px;
    color: #1A1A1A;
    border-radius: 25px;
    border: 2px solid #FFFFFF;
    box-shadow: 0px 4px 23.8px 0px #00000008;
}
.tools-card:hover {
    color: #1A1A1A;
}
.tools-card1 {
    background: linear-gradient(180deg, rgba(219, 233, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.tools-card2 {
    background: linear-gradient(180deg, rgba(224, 255, 240, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.tools-card3 {
    background: linear-gradient(180deg, rgba(253, 255, 182, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
}
.tools-card2,
.tools-card3 {
    padding-bottom: 26px;
}
.tools-title {
    font-weight: 700;
    font-size: 26px;
}
.tools-desc {
    margin-top: 15px;
    font-size: 16px;
}
.tools-img-box {
    margin-top: 31px;
    border-radius: 18px;
    overflow: hidden;
}
.tools-img {
    display: block;
    width: 100%;
    transition: all .3s linear;
}
.tools-card:hover .tools-img {
    transform: scale(1.1);
}
@media (max-width: 1200px) {
    .tools-content {
        align-items: center;
    }
}
@media (max-width: 1023px) {
    .tools {
        padding: 50px 0 30px;
    }
    .tools-content {
        flex-direction: column;
        gap: 20px;
        max-width: 345px;
        margin: 22px auto 0;
    }
    .tools-left,
    .tools-right {
        max-width: 100%;
    }
    .tools-right {
        gap: 20px;
        justify-content: unset
    }
    .tools-card {
        padding: 16px 16px 26px;
        border-radius: 12px;
        border: 1px solid #FFFFFF;
        box-shadow: 0px 1.87px 11.11px 0px #00000008;
    }
    .tools-card2,
    .tools-card3 {
        padding-bottom: 24px;
    }
    .tools-title {
        font-size: 16px;
    }
    .tools-desc {
        font-size: 14px;
    }
    .tools-img-box {
        margin-top: 15px;
        border-radius: 12px;
    }
}
/* tools */

/* models */
.models {
    /* padding: 150px 0 0; */
}
.models .index-title {
    margin-bottom: 50px;
}
.models-scroll {
    overflow: hidden;
}
.models-list {
    display: flex;
}
.models-litem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 320px;
    padding: 27px 0 21px;
    border-top: 1px solid #DADADA;
}
.models-litem:not(:last-child) {
    border-right: 1px solid #DADADA;
}
.models-item-top {
    display: flex;
    align-items: center;
}
.models-item-img {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 7px;
    text-align: center;
}
.models-item-title {
    color: #282828;
    font-weight: 600;
    font-size: 20px;
}
.models-item-desc {
    margin-top: 17px;
    color: #575757;
    font-size: 16px;
}

@media (max-width: 1366px) {
    .models-litem {
        width: 270px;
        padding: 21px 0 17px;
    }
}
@media (max-width: 1023px) {
    .models {
        /* padding: 60px 0; */
    }
    .models .index-title {
        margin-bottom: 20px;
    }
    .models-litem {
        width: fit-content;
        padding: 10px 20px;
        border-top: none;
    }
    .models-litem:not(:last-child) {
        border-right: none;
    }
    .models-item-img {
        width: 22px;
        height: 22px;
        margin-right: 5px;
    }
    .models-item-title {
        font-size: 15px;
    }
    .models-item-desc {
        margin-top: 3px;
        font-size: 13px;
    }
}
/* models */

/* createai */
.createai {
    padding: 75px 0;
}
.createai-content {
    position: relative;
    margin-top: 50px;
}
.createai-card {
    position: sticky;
    top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    padding: 92px 16px 100px;
    color: #1A1A1A;
    border-radius: 60px;
    transform-style: preserve-3d;
    will-change: transform;
    transition: none;
}
.createai-cardbg1 {
    background: url(https://images.noviai.ai/noviaien/assets/product/index/createai_bg1.jpg) no-repeat center/cover;
}
.createai-cardbg2 {
    background: url(https://images.noviai.ai/noviaien/assets/product/index/createai_bg2.jpg) no-repeat center/cover;
}
.createai-card:not(:last-child) {
    /* margin-bottom: 50px; */
}
.createai-cleft {
    max-width: 450px;
}
.createai-cright {
    max-width: 922px;
    height: 519px;
    border-radius: 33px;
    overflow: hidden;
}
.createai-ctitle {
    font-weight: 700;
    font-size: 40px;
}
.createai-cdesc {
    margin-top: 25px;
    font-size: 20px;
}
.createai .main-btn {
    margin-top: 60px;
}
.createai-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1500px) {
    .createai-ctitle {
        font-size: 30px;
    }
    .createai-card {
        gap: 40px;
    }
}
@media (max-width: 1200px) {
    .createai-card {
        gap: 20px;
    }
    .createai-cright {
        max-width: 540px;
    }
}
@media (max-width: 1023px) {
    .createai {
        padding: 30px 0;
    }
    .createai-box {
        /* max-width: 345px; */
        margin: 0 auto;
    }
    .createai-content {
        margin-top: 28px;
    }
    .createai-card {
        flex-direction: column;
        gap: 23px;
        padding: 35px 16px 137px;
        border-radius: 18px;
    }
    .createai-cardbg1 {
        background: url(https://images.noviai.ai/noviaien/assets/product/index/createai_bgsmall1.jpg) no-repeat center/cover;
    }
    .createai-cardbg2 {
        background: url(https://images.noviai.ai/noviaien/assets/product/index/createai_bgsmall2.jpg) no-repeat center/cover;
    }
    .createai-card:not(:last-child) {
        /* margin-bottom: 24px; */
    }
    .createai-cleft {
        max-width: 100%;
    }
    .createai-cright {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
    }
    .createai-ctitle {
        text-align: center;
        font-size: 22px;
    }
    .createai-cdesc {
        margin-top: 16px;
        font-size: 15px;
    }
    .createai .main-btn {
        position: absolute;
        bottom: 44px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
    }
}
/* createai */

/* discord-popu */
.discord-popu {
    display: none;
    position: fixed;
    right: -10px;
    bottom: 222px;
    z-index: 10;
}
.discord-popu.show {
    display: block;
}
.discord-pbox {
    width: 340px;
    height: 292px;
    padding: 111px 40px 15px 41px;
    color: #1A1A1A;
    text-align: center;
    background: url(https://images.noviai.ai/noviaien/assets/product/index/discord_pop_bg.png) no-repeat center/100% 100%;
}
.discord-ptitle {
    font-weight: 800;
    font-size: 18px;
}
.discord-ptitle span,
.discord-pdesc-item span {
    color: #D00BEF;
}
.discord-pdesc {
    margin-top: 5px;
}
.discord-pdesc-item {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}
.discord-pbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 163px;
    height: 39px;
    margin: 7px auto 0;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    border-radius: 11px;
}
.discord-pbtn:hover {
    color: #fff;
}
.discord-pbtn img {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}
.discord-pclose {
    margin-top: 10px;
    color: #3F3C42;
    font-weight: 500;
    font-size: 12px;
    text-decoration: underline;
    cursor: pointer;
}
@media (max-width: 1024px) {
    .discord-popu {
        bottom: 250px;
    }
}
@media (max-width: 767px) {
    .discord-popu {
        right: -10px;
        bottom: 69px;
    }
    .discord-pbox {
        width: 170px;
        height: 146px;
        padding: 52px 20px 10px 20px;
    }
    .discord-ptitle {
        font-size: 12px;
    }
    .discord-pdesc {
        margin-top: 3px;
    }
    .discord-pdesc-item {
        font-size: 8px;
        line-height: 12px;
    }
    .discord-pbtn {
        width: 81px;
        height: 20px;
        margin: 3px auto 0;
        font-size: 7px;
        border-radius: 6px;
    }
    .discord-pbtn img {
        width: 9px;
        height: 9px;
        margin-right: 2px;
    }
    .discord-pclose {
        margin-top: 5px;
        font-size: 6px;
    }
}
/* discord-popu */