::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
    /* firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
}

html,
body {
    background: #000;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Helvetica, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit
}

body {}

.site-header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 20px;
}

.site-header .header-con {
    background: #ffffff10;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 32px;
    height: 80px;
    gap: 20px;
}

#app.scrolled .site-header .header-con {
    background: #ffffff30;
    backdrop-filter: blur(10px);
}

.site-header .logo img {
    height: 42px;
    width: 146px;
}

.site-header .btn-login {
    background: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    height: 32px;
    color: #000;
    cursor: pointer;
}

.site-header .btn-login .icon {
    width: 26px;
    height: 26px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .btn-login .txt {
    display: inline-block;
    padding: 0 10px;
}

.site-header .btn-login svg {
    display: block;
    width: 14px;
    height: 16px;
}

.site-header .nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-size: 20px;
}

.site-header .nav a {
    text-decoration: none;
    color: #ffffff80;
    font-weight: bolder;
}

.site-header .nav a.actived {
    color: #fff;
}

h2 {
    font-size: 46px;
    margin: 0 auto 45px;
    max-width: 1000px;
    text-align: center;
}

.about-p1 {
    position: relative;
    height: 745px;
    padding: 70px 70px 0;
    background: linear-gradient(90deg, #06E98A 0%, #00E5F4 100%);
}

.about-p1 img {
    width: 100%;
    height: auto;
    display: block;
}

.about-p1 .inbox {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.banner-card {
    position: absolute;
    width: 560px;
    height: 676px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner-card .banner-card-icon {
    position: absolute;
    top: 50%;
    right: -103px;
    width: 207px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.banner-card .banner-card-icon img {
    width: 100%;
}

.banner-card-list {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: contents;
    -webkit-transform:  translateX(50%);
    transform:  translateX(50%);
}

.animation-cards .banner-card-item {}



.banner-card-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    width: 330px;
    height: 676px;
    opacity: 0;
    animation-timing-function: ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased
}

.banner-card-item:nth-child(1) {
    z-index: 6
}

.animation-cards .banner-card-item:nth-child(1) {
    animation: .25s 1 forwards slide-in, .4s 1 forwards swap-card-1;
    animation-timing-function: ease-out, ease-in-out, ease-in-out, ease-in-out, ease-out;
    animation-delay: 1s, 2.5s, 3.8s, 5.2s, 8.2s
}

.banner-card-item:nth-child(2) {
    z-index: 5
}

.animation-cards .banner-card-item:nth-child(2) {
    animation: .25s 1 forwards slide-in, .4s 1 forwards swap-card-2, .4s 1 forwards swap-card-1;
    animation-timing-function: ease-out, ease-in-out, ease-in-out;
    animation-delay: 1.15s, 2.5s, 3.8s;
    transform: scale(.75) translate(-250px)
}

.banner-card-item:nth-child(3) {
    z-index: 4
}

.animation-cards .banner-card-item:nth-child(3) {
    animation: .25s 1 forwards slide-in, .4s 1 forwards swap-card-3, .4s 1 forwards swap-card-2, .4s 1 forwards swap-card-1;
    animation-timing-function: ease-out, ease-in-out, ease-in-out, ease-in-out;
    animation-delay: 1.3s, 2.5s, 3.8s, 5.2s;
    transform: scale(.5) translate(-680px)
}

.banner-card-item:nth-child(4) {
    z-index: 3
}

.animation-cards .banner-card-item:nth-child(4) {
    animation: .4s 1 forwards swap-card-4, .4s 1 forwards swap-card-3, .4s 1 forwards swap-card-2;
    animation-timing-function: ease-in-out, ease-in-out, ease-in-out;
    animation-delay: 2.5s, 3.8s, 5.2s;
    transform: scale(.4) translate(-900px)
}

.animation-cards--out__B-hod .banner-card-item:nth-child(4) {
    animation: .25s 1 forwards slide-out;
    animation-timing-function: ease-out;
    animation-delay: .2s;
    opacity: 1;
    transform: scale(1) translate(0)
}

.banner-card-item:nth-child(5) {
    z-index: 2
}

.animation-cards .banner-card-item:nth-child(5) {
    animation: .4s 1 forwards swap-card-4, .4s 1 forwards swap-card-3;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-delay: 3.8s, 5.2s;
    transform: scale(.4) translate(-900px)
}

.animation-cards--out__B-hod .banner-card-item:nth-child(5) {
    animation: .25s 1 forwards slide-out;
    animation-timing-function: ease-out;
    animation-delay: .35s;
    opacity: 1;
    transform: scale(.75) translate(-250px)
}

.banner-card-item:nth-child(6) {
    z-index: 1
}

.animation-cards .banner-card-item:nth-child(6) {
    animation: .4s 1 forwards swap-card-4;
    animation-timing-function: ease-in-out;
    animation-delay: 5.2s;
    transform: scale(.4) translate(-900px)
}



@keyframes slide-in {
    0% {
        opacity: 0;
        translate: 0 40px
    }

    to {
        opacity: 1;
        translate: 0 0
    }
}


@keyframes slide-out {
    0% {
        opacity: 1;
        translate: 0 0
    }

    to {
        opacity: 0;
        translate: 0 40px
    }
}

@keyframes swap-card-1 {
    0% {
        opacity: 1;
        transform: scale(1) translate(0)
    }

    to {
        opacity: 0;
        transform: scale(1.1) translate(100px)
    }
}

@keyframes swap-card-2 {
    0% {
        transform: scale(.75) translate(-250px)
    }

    to {
        transform: scale(1) translate(0)
    }
}

@keyframes swap-card-3 {
    0% {
        transform: scale(.5) translate(-680px)
    }

    to {
        transform: scale(.75) translate(-250px)
    }
}

@keyframes swap-card-4 {
    0% {
        opacity: 0;
        transform: scale(.4) translate(-900px)
    }

    to {
        opacity: 1;
        transform: scale(.5) translate(-680px)
    }
}

.about-p1 h1 {}

.about-p1 h1 strong {
    font-size: 90px;
    font-family: futura;
    text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000;
}

.lvct-line {
    width: 100%;
    height: 100px;
    background: url(/images/livufans-video-chat-tips/lp-line.png) center no-repeat, linear-gradient(90deg, #06E98A 0%, #00E5F4 100%);
    background-size: auto 27px;
}

.the-btn {
    display: inline-flex;
    height: 70px;
    min-width: 324px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #06E98A 0%, #00E5F4 100%);
    border-radius: 100px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}


.txt-img {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.txt-img .the-txt {
    width: 390px;
    flex-shrink: 0;
}

.txt-img .the-txt h3 {
    font-size: 32px;
}

.txt-img .the-txt p {
    font-size: 16px;
    line-height: 1.4;
    opacity: .8;
    padding: 30px 0 40px;
}

.txt-img .the-txt p a {
    color: #06E98A;
    text-decoration: none;
}

.txt-img .the-img img {
    width: 100%;
}

.the-small-img {
    max-width: 297px;
    margin: 0 auto;
}

.the-small-img img {
    width: 100%;
}



.about-p2 {
    text-align: center;
    padding: 80px 0;
    background: url(/images/livufans-video-chat-tips/p2-bg.jpg) top center no-repeat;
    background-size: 100% auto;
}



.about-p2 .lvct-border {
    width: 1194px;
    margin: 0 auto;
    /* background: url(/images/livufans-video-chat-tips/pg-bg2.png) top center no-repeat;
    background-size: 100% 100%; */
    padding: 23px 0;
    /* box-shadow: 0px 0px 34px 0px rgba(45,255,118,0.61); */
    border-radius: 68px;
    border: 1px solid #03E6F0;
}

.about-p2 .lvct-border .txt-img {
    max-width: 1148px;
    background: #000000;
    box-shadow: 0px 0px 34px 0px rgba(45,255,223,0.61);
    border-radius: 52px;
}


.about-p2 .the-img2 {
    width: 570px;
    height: 718px;
    overflow: hidden;
}

.about-p2 .the-img2 img {
    margin-top: 30px;
}


.about-p3 {
    background: url(/images/livufans-video-chat-tips/p2-bg.jpg) top center no-repeat;
    background-size: 100% 100%;
    padding: 80px 0;
}


.about-p3 .txt-img .the-img {
    margin-right: -60px;
}



.about-p3 .txt-img .the-txt {
    text-align: center;
}

.qa-box {
    max-width: 904px;
    margin: 80px auto 0;
}

.qa-list {}

.qa-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid #FFFFFF80;
    color: #fff;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 38px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s ease-in-out;
}

.qa-item .qa-item-tit {
    font-size: 20px;
    font-weight: 800;
    line-height: 28px;
    margin: 0;
}

.qa-item .qa-item-answer {
    display: none;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.75;
}

.qa-item.qa-active {
    height: auto;
    background: #000;
    color: #fff;
}

.qa-item .qa-item-arrow {
    width: 28px;
    height: 16px;
    background: url(/images/livufans-video-chat-tips/icon-arrow.png) center/cover no-repeat;
    position: absolute;
    right: 22px;
    top: 27px;
    display: inline-block;
}

.qa-item.qa-active .qa-item-answer {
    display: block;
}

.qa-item.qa-active .qa-item-arrow {
    display: none;
}



.about-p4 {
    background: linear-gradient(90deg, #06E98A 0%, #00E5F4 100%);
    color: #000;
    padding: 50px 0;

}



.about-p4 .bot-box {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-p4 .bot-box .the-btn {
    background: #000;
    color: #fff;
}

.about-p4 .bot-box .txt {
    flex: 1;
}

.about-p4 .bot-box .txt h3 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-p4 .bot-box .txt p {
    font-size: 24px;
}


.about-p5 {
    padding: 80px 0;
    background: url(/images/livufans-video-chat-tips/p5-bg.jpg) top center no-repeat;
    background-size: 100% 100%;
}

.about-p5 h2 {
    color: #000;
}

.about-p5 .the-list {
    min-width: 1368px;
}

.about-p5 .the-list .l-con {
    padding: 0 60px;
    display: flex;
    gap: 23px;
    align-items: stretch;
    justify-content: center;
    margin-bottom: 23px;
}

.about-p5 .the-list .olist {
    width: 440px;
    flex-shrink: 0;
    padding: 10px 10px 30px;
    background: #000000;
    color: #fff;
    box-shadow: 0px 0px 34px 0px rgba(45, 255, 118, 0.61);
    border-radius: 39px;
}

.about-p5 .the-list .olist img {
    display: block;
    width: 100%;
    margin-top: -15px;
    transform: scale(1.16);
}

.about-p5 .the-list .olist .txt {
    text-align: center;
    font-size: 14px;
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.about-p5 .the-list .olist .txt h3 {
    font-size: 20px;
}

.about-p5 .the-list .olist .txt p {
    flex: 1;
    opacity: 0.8;
    font-size: 12px;
    padding: 18px 0;
    line-height: 1.4;
    min-height: 110px;
}

.about-p5 .the-list .olist .txt a {
    color: #00E5EC;
    text-decoration: underline;
    font-size: 18px;
}


.site-footer {
    padding: 60px 0 20px;
    text-align: center;
}

.site-footer img {
    width: 340px;
    height: auto;
}

.site-footer .foot-nav {
    padding: 60px 0 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.site-footer .foot-nav a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
}

.site-footer p {
    opacity: .6;
}

@media screen and (max-width: 680px) {
    .site-header {
        padding: 0;
    }

    .site-header .header-con {
        background: transparent;
        border-radius: 0;
        padding: 10px 16px;
        gap: 0px;
        height: auto;
    }

    .site-header .logo img {
        width: 126px;
        height: 36px;
    }

    .site-header .nav {
        display: none;
    }

    .site-header .btn-login {
        height: 30px;
        font-size: 12px;
    }

    .site-footer {
        padding: 60px 0 20px;
        background: url(/images/home/LP-bg1.jpg) center bottom no-repeat;
        background-size: 160% 100%;
    }

    .site-footer img {
        width: 160px;
    }

    .site-footer .foot-nav {
        padding: 40px 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .site-footer .foot-nav a {
        display: block;
    }

    h2 {
        font-size: 24px;
        margin-bottom: 22px;
    }

    .qa-box {
        max-width: 100%;
        padding: 0 13px;
        margin-top: 40px;
    }

    .qa-item {
        padding: 10px 68px 10px 13px;
        margin-bottom: 8px;
    }

    .qa-item .qa-item-tit {
        font-size: 16px;
    }

    .txt-img {
        max-width: 100%;
        flex-direction: column;
    }

    .txt-img .the-txt {
        max-width: 100%;
    }

    .txt-img .the-txt h3 {
        font-size: 24px;
    }

    .about-p1 {
        height: 15.7rem;
        padding: 0;
    }

    .about-p1 .banner-card {
        overflow: hidden;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding-right: 30px;
        height: 11.42rem;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        /* -webkit-transform: scale(.7);
        transform: scale(.7); */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        left: 0;
        top: 0;
        transform: none;
    }

    .banner-card-item {
          width: 5.86rem;
          height: 11.42rem;
    }


    .animation-cards .banner-card-item:nth-child(1) {

        transform:translate(-1rem)
    }

    .animation-cards .banner-card-item:nth-child(2) {

        transform: scale(.75) translate(-5.4rem)
    }


    .animation-cards .banner-card-item:nth-child(3) {

        transform: scale(.5) translate(-12.6rem)
    }

    .animation-cards .banner-card-item:nth-child(4) {

        transform: scale(.4) translate(-13.16rem)
    }



    .animation-cards .banner-card-item:nth-child(5) {

        transform: scale(.4) translate(-13.16rem)
    }


    .animation-cards .banner-card-item:nth-child(6) {

        transform: scale(.4) translate(-13.16rem)
    }



    @keyframes swap-card-1 {
        0% {
            opacity: 1;
            transform: scale(1) translate(-1rem)
        }

        to {
            opacity: 0;
            transform: scale(1.1) translate(3.01rem)
        }
    }

    @keyframes swap-card-2 {
        0% {
            transform: scale(.75) translate(-5.4rem)
        }

        to {
            transform: scale(1) translate(-1rem)
        }
    }

    @keyframes swap-card-3 {
        0% {
            transform: scale(.5) translate(-12.6rem)
        }

        to {
            transform: scale(.75) translate(-5.4rem)
        }
    }

    @keyframes swap-card-4 {
        0% {
            opacity: 0;
            transform: scale(.4) translate(-13.16rem)
        }

        to {
            opacity: 1;
            transform: scale(.5) translate(-12.6rem)
        }
    }

    .about-p1 .lp-logo {
        order: 2;
        padding: 0 18px;
    }

    .about-p1 img {
        width: 100%;

    }

    .banner-card .banner-card-icon {
        width: 2.99rem;
        right: -0.72rem;
    }

    .about-p1 h1 {
        position: relative;
    }

    .the-btn {
        height: 60px;
        min-width: 270px;
        font-size: 17px;
    }

    .lvct-line {
        height: 50px;
        background-size: auto 16px;
    }

    .about-p2 {
        padding: 30px 0;
    }

    .about-p2 h2 {
        font-size: 24px;
        margin: 0 auto 20px;
        max-width: 80%;
    }



    .about-p2 .txt-img {

        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .about-p2 .txt-img .the-txt h3 {
        font-size: 24px;
    }



    .about-p2 .txt-img .the-img img {
        width: 100%;
        height: auto;
    }

    .about-p2 .lvct-border {
        max-width: 9.51rem;
        padding: 12px 15px;
        border-radius: 1.06rem;
    }

    .about-p2 .lvct-border .txt-img {
        max-width: 8.86rem;
        border-radius: 0.797rem;
        padding-bottom: 26px;
    }

    .about-p2 .the-img2 {
        width: 100%;
        height: auto;
    }

    .about-p3 .txt-img .the-txt {
        order: 1;
    }

    .about-p3 .txt-img .the-img {
        margin-right: 0;
    }

    .about-p3 .the-main {
        display: none;
    }

    .about-p3 .line-box {
        padding: 20px 0;
        width: 100%;
        overflow: hidden;
    }

    .about-p3 .line-box img {
        width: 160%;
    }


    .about-p4 .bot-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-p4 .bot-box .txt {
        text-align: center;
    }

    .about-p4 .bot-box .txt h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .about-p4 .bot-box .txt p {
        font-size: 16px;
    }

    .about-p5 {
        padding: 40px 0;
    }


    .about-p5 .the-list {
        max-width: 100%;
        min-width: 100%;
    }

    .about-p5 .the-list .l-con {
        flex-direction: column;
        padding: 0 9px;
    }

    .about-p5 .the-list .olist {
        width: 100%;
        overflow: hidden;
    }
}