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

a {
    color: inherit;
    text-decoration: none;
}

body,
html {
    height: 100%;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background: #100809;
    color: #fff;

}

#app {
    height: 100%;
    overflow-y: auto;
    width: 100%;
}

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

.hpage-header .hh-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #19171B;
    border-radius: 20px;
    padding: 20px 30px;
    gap: 50px;
}

.hpage-header .logo img {
    display: block;
    height: 42px;
    width: 126px;
}

.hpage-header .nav {
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex: 1;
    gap: 30px;
}

.hpage-header .nav a {
    color: #ffffff50;
    transition: color .2s;
}

.hpage-header .nav a:hover {
    color: #ffffff;
}

.hpage-header .nav a.current {
    color: #ffffff;
}

.hpage-header .btn-login {
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    color: #000;
    height: 32px;
    cursor: pointer;
}

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

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

.hpage-header .btn-login .tt {
    font-weight: bold;
    padding: 0 10px;
}

.pbox .sub-txt {
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.pbox .sub-txt p {
    opacity: 0.8;
    margin-bottom: 20px;
}


.pbox h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pbox h3 {
    font-size: 38px;
}

.pbox-one {
    width: 100%;
    height: 780px;
    /* background: url(/images/meet-new-people/s1-1.jpg) left center  no-repeat, url(/images/meet-new-people/s1-2.jpg) right center no-repeat;
    background-size:  50% auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.box-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-size: 0;
    z-index: -1;
}

.box-bg img {
    display: inline-block;
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.pbox-one h1 {
    font-size: 77px;
    line-height: 1.115;
    margin-bottom: 40px;
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 0.2);
}

.pbox-one .img-box {
    margin-top: 40px;
    margin-bottom: -150px;
    width: 100%;
}

.pbox-one .img-box img {
    width: 100%;
}

.pbox-one .sub-btn,
.pbox-three .sub-btn {
    margin: 60px 0;

}

.the-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 324px;
    height: 70px;
    border-radius: 100px;
    box-shadow: inset 0px 0px 17px 8px rgba(255, 0, 0, 0.81);
    position: relative;
    cursor: pointer;
}

.the-btn::before,
.the-btn::after {
    content: '';
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 2px solid #FE4260;
    border-radius: 100px;
    opacity: 0;
}

.the-btn::before {
    animation: btnAni 1.5s infinite;
    animation-delay: .3s;
}

.the-btn::after {
    animation: btnAni 1.5s 1s infinite;
}

@keyframes btnAni {
    0% {
        opacity: 1;
        transform: scale(1, 1);
    }

    100% {
        opacity: 0;
        transform: scale(1.1, 1.4);
    }
}

.inner {
    max-width: 960px;
    margin: 0 auto;
}

.c-red {
    color: #FF3D5E;
    font-size: 20px;
}

.pbox-two {
    background: url(/images/meet-new-people/s2-bg.png) no-repeat bottom center;
    background-size: cover;
    padding-bottom: 75px;
    overflow: hidden;
}

.pbox-two .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    max-width: 745px;
}

.pbox-two h1 {
    font-size: 48px;
    line-height: 1.115;
    margin-bottom: 40px;
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 0.2);
}

.pbox-two h1 small {
    font-size: 20px;
    line-height: 1.115;
    color: #FF3D5E;
    font-weight: normal;
}

.pbox-two .sub-btn {
    margin-top: 80px;
}

.pbox-two .bg-left {
    overflow: hidden;
    float: left;
    white-space: nowrap;
    animation: to-right 30s infinite linear;
}


@keyframes to-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}


.pbox-three {
    padding: 80px 0 1px;
    background: url(/images/meet-new-people/s6-bg.png) center bottom no-repeat;
    background-size: cover;
}

.pbox-three .inner {
    max-width: 745px;
}


.pbox-three .the-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
    margin: 40px auto 60px;
    font-size: 16px;
    width: 566px;

}

.pbox-three .the-list .olist {
    padding: 20px 163px 20px 32px;
    background: linear-gradient(270deg, rgba(255, 0, 0, 0) 0px, rgba(255, 0, 0, 0) 100px, #FF3E4D 100%);
    box-shadow: 0px 1px 44px 0px #000000;

}

.pbox-three .olist:nth-of-type(even) {
    padding: 20px 32px 20px 163px;
    text-align: right;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0px, rgba(255, 0, 0, 0) 100px, #FF3E4D 100%);
}


.pbox-three .the-list .olist h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pbox-four {
    text-align: center;
}

.pbox-four .inner {
    max-width: 853px;
}

.pbox-four .the-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 33px 23px;
    margin: 60px auto;
}

.pbox-four .olist:nth-of-type(2) {

    background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0%, #FF3E4D 100%);
}

.pbox-four .olist {
    width: 100%;
    height: 300px;
    box-sizing: border-box;
    background: linear-gradient(270deg, rgba(255, 0, 0, 0) 0%, #FF3E4D 100%);
    box-shadow: 0px 1px 44px 0px #000000;
    border-radius: 41px;
    display: flex;
    align-items: center;
}

.pbox-four .olist .txt {
    padding: 0 36px;
}


.pbox-four .olist h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.pbox-four .olist p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.35;
}


.pbox-five {
    background: url(/images/meet-new-people/s3-bg.png) bottom center no-repeat;
    background-size: cover;
    height: 1058px;
}

.pbox-five .inner {
    max-width: 745px;
    padding-top: 75px;
}

.pbox-six .inner {
    max-width: 1040px;
    padding: 60px 0 40px;
}

.pbox-six .img-txt {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.pbox-six .txt-list {}

.pbox-six .img-box {
    width: 538px;
    flex-shrink: 0;
}


.pbox-six .img-box img {
    width: 100%;
}

.pbox-six .txt-list .list-item {
    padding: 20px 63px 20px 32px;
    background: linear-gradient(270deg, rgba(255, 0, 0, 0) 0px, #FF3E4D 100%);
    box-shadow: 0px 1px 44px 0px #000000;
}



.pbox-six .txt-list h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pbox-six .txt-list p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.35;
}



.site-footer {
    text-align: center;
    padding: 30px 0 20px;
    background: #000;
    color: #fff;
}

.site-footer .foot-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.site-footer .foot-nav2 {
    margin-top: 20px;
}

.site-footer .foot-nav a {
    font-size: 16px;
}

.site-footer p {
    font-size: 12px;
    padding-top: 40px;
    opacity: .5;
}


@media only screen and (min-width:768px) {
    .hidden-sm-and-up {
        display: none !important
    }
}

@media screen and (max-width: 680px) {
    .hidden-xs-only {
        display: none !important
    }

    .hpage-header {
        padding: 0;
    }

    .hpage-header .hh-con {
        background: #000;
        border-radius: 0;
        padding: 10px 16px;
        gap: 0;
    }

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

    .hpage-header .logo img {
        height: 38px;
        width: 114px;
    }

    .hpage-header .btn-login {
        height: 30px;
    }

    .hpage-header .btn-login .tb {
        width: 24px;
        height: 24px;
    }

    .hpage-header .btn-login .tt {
        font-size: 12px;
    }

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

    .site-footer .foot-nav a {
        font-size: 14px;
    }

    .site-footer p {
        font-size: 10px;
        opacity: .5;
        padding: 40px 24px 0;
    }

    .the-btn {
        font-size: 16px;
        width: 6.6rem;
        height: 1.6rem;
        box-shadow: inset 0px 0px 8px 4px rgba(255, 0, 0, 0.81);
    }

    .inner {
        max-width: 100%;
        overflow: hidden;
    }



    .pbox h2 {
        font-size: 32px;
    }

    .pbox .sub-txt {
        font-size: 14px;
        padding: 0 20px;
    }

    .pbox-one {
        padding-bottom: 20px;
        height: 16.37rem;
        margin-top: 1.4rem;
    }



    .box-bg img {
        display: block;
        width: 100%;
        height: 50%;
    }

    .pbox-one .sub-txt {
        padding: 0 20px;
        height: 8.3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .pbox-one .sub-btn,
    .pbox-three .sub-btn {
        margin: 0.48rem 0;
    }

    .pbox-one h1 {
        font-size: 40px;
        margin-bottom: 0.48rem;
    }

    .pbox-one .img-box {
        margin-bottom: -0.72rem;
        margin-top: 1.93rem;
    }

    .pbox-one .img-box img {
        transform: scale(1.5);
    }


    .pbox-two {
        padding-bottom: 0;
    }

    .pbox-two h1 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .pbox-two .inner {
        padding: 40px 0 0;
    }


    .pbox-two .bg-left img {
        height: 196px;
    }


    .pbox-three {
        padding: 0.966rem 0;
        background-size: 1000px;
    }



    .pbox-three .the-list {
        margin-bottom: 40px;
        max-width: 100%;
    }

    .pbox-three .the-list .olist {
        border-radius: 0;
        padding: 10px 38px 10px 26px;
        background: linear-gradient(270deg, rgba(255, 0, 0, 0) 0px, rgba(255, 0, 0, 0) 50px, #FF3E4D 100%);
    }


    .pbox-three .olist:nth-of-type(even) {
        background: linear-gradient(90deg, rgba(255, 0, 0, 0) 0px, rgba(255, 0, 0, 0) 50px, #FF3E4D 100%);
    }



    .pbox-three .the-list .olist h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .pbox-three .the-list .olist p {
        font-size: 12px;
    }



    .pbox-four {}

    .pbox-four .inner {}


    .pbox-four .the-list {
        margin-top: 30px;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        padding: 0 21px;
    }

    .pbox-four .olist {
        height: 6.37rem;
        border-radius: 0.87rem;

    }

    .pbox-four .olist:nth-of-type(3) {
        order: 3;
    }

    .pbox-four .olist img {
        max-width: 100%;
        max-height: 100%;

    }



    .pbox-four .olist h2 {
        font-size: 21px;
    }

    .pbox-four .olist .img img {
        display: block;
        width: 100%;
        margin: 0 auto;
    }


    .pbox-five {
        background-size: auto 14.5rem;
        height: 17.7rem;
    }


    .pbox-six .inner {
        max-width: 100%;
    }

    .pbox-six .img-txt {
        flex-direction: column;

    }

    .pbox-six .img-box {
        width: 100%;
    }


    .pbox-six .txt-list {
        order: 2;
    }

}