body {
    font-family: PingFang, sans-serif, Microsoft YaHei;
    overflow-x: hidden;
    background-color: black;
    color: white;
}


@font-face {
    font-family: 'Gotham';
    src: url(../font/Gotham-BlackItalic.otf) format('opentype');
    font-weight: Black;
    font-style: italic;

}

#header {
    position: sticky;
    top: 0;
    z-index: 99;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px 0;

    --bs-link-color: #fff;
    --bs-link-color-rgb: #fff;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #971FFF;
    --bs-link-hover-color-rgb: #971FFF;
}



header .logo {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: Black;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    text-decoration: none;
}

header .nav .nav-link {
    margin: 0 15px;
}

header .nav .nav-link.active {
    color: #971FFF;
}

header .nav .btn {
    padding: 10px 30px;
    border-radius: 25px;
    background: #FFFFFF;
    border-radius: 37px;
    font-size: 16px;
    color: #000000;
}

header .nav a.btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_join.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}

header .menu {
    display: none;
}

@media (max-width: 576px) {


    #header {
        background-color: #fff;
        position: sticky;
        top: 0;
        z-index: 99;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;

        --bs-link-color: #000;
        --bs-link-color-rgb: #000;
        --bs-link-decoration: underline;
        --bs-link-hover-color: #971FFF;
        --bs-link-hover-color-rgb: #971FFF;
    }

    header .logo {
        font-family: 'Gotham';
        font-style: italic;
        font-weight: Black;
        font-size: 16px;
        line-height: 20px;
        color: #000;
        text-decoration: none;
    }

    header .nav {
        display: none;
    }

    header .nav.show {
        display: flex;
        flex-direction: column;
        align-content: center;
        align-items: center;
        position: absolute;
        top: 40px;
        left: 0;
        width: 100%;
        height: calc(100vh - 40px);
        background-color: #fff;
        z-index: 999;
        padding-top: 80px;
    }

    header .nav .nav-link {
        margin: 15px 0;
    }

    header .nav .nav-link.active {
        color: #971FFF;
    }

    header .nav .btn {
        display: none;
    }

    header .nav a.btn::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        background: url(../images/icon_join.svg) center center no-repeat;
        position: relative;
        right: -5px;
        top: 2px;
    }

    header .menu {
        display: inline-block;
    }

}

.join_noo {
    background: url(../images/join_bg.jpg) center no-repeat;
    background-size: cover;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.join_noo h3 {
    font-size: 58px;
}

.join_noo .btn-dark {
    background-color: #00000000;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    font-size: 18px;
    color: #FFFFFF;
    padding: 10px 20px;
    margin: 0 15px;
}

.join_noo .btn-dark::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 18px;
    background: url(../images/icon_join_w.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}

@media(max-width: 576px) {

    .join_noo {
        height: 500px;
    }

    .join_noo h3 {
        font-size: 32px;
    }

    .join_noo .btn-dark {
        background-color: #00000000;
        border: 1px solid #FFFFFF;
        border-radius: 100px;
        font-size: 18px;
        color: #FFFFFF;
        padding: 10px 20px;
        margin: 0 15px;
    }

    .join_noo .btn-dark::after {
        content: "";
        display: inline-block;
        width: 26px;
        height: 18px;
        background: url(../images/icon_join_w.svg) center center no-repeat;
        position: relative;
        right: -5px;
        top: 2px;
    }


}

.app_down {
    display: none;
}

@media(max-width: 576px) {
    .app_down {
        display: block;
        background-color: #111;
        padding: 60px 0;
        text-align: center;
    }

    .app_down h4 {
        font-size: 32px;
    }

    .app_down p {
        font-size: 12px;
        opacity: .5;

    }

    .app_down .app_qrcode {
        padding: 20px 0;
    }

    .app_down .app_qrcode p {
        margin-top: 20px;
        opacity: 1;
    }

    .app_down a.app_down_btn {
        padding: 10px 40px;
        background: linear-gradient(90deg, #971FFF 0%, #4D34E6 100%);
        border-radius: 53px;
        font-size: 14px;
        line-height: 19px;
        text-align: center;
        color: #FFFFFF;
        text-decoration: none;
    }
}

footer {
    font-size: 14px;
    --bs-link-color: #FFFFFF;
    --bs-link-color-rgb: #FFFFFF;
    --bs-nav-link-hover-color: #971FFF;
    --bs-link-hover-color-rgb: #971FFF;
    --bs-link-hover-color: #971FFF;
    padding-top: 60px;
}

footer .footer_logo {
    padding-bottom: 40px;
}

footer .join p {
    opacity: .5;
    padding-bottom: 30px;
}

footer .join a.btn {
    padding: 10px 30px;
    border-radius: 25px;
    background: #FFFFFF;
    border-radius: 37px;
    font-size: 16px;
    color: #000000;
}

footer .join a.btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_join.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}

footer .join a.btn:hover {
    background: #FFFFFF;
    color: #000000;
}

footer h5 {
    font-size: 16px;
    font-weight: 600;
}

footer .footer_nav {
    padding-top: 80px;
}

footer .nav .nav-link {
    padding: 0;
    opacity: .5;
    padding-top: 20px;

}

footer .down h4 {
    font-size: 24px;
}

footer .down p {
    opacity: .5;
    padding-top: 10px;
}

footer .down a {
    display: inline-block;
    padding-top: 20px;
    text-decoration: none;
}

footer a:hover {
    color: #971FFF;
}

footer .copyright {
    border-top: 1px solid #ffffff2a;
    color: #ffffff8a;
    margin-top: 40px;
}

footer .copyright p {
    line-height: 80px;
}

@media (max-width: 576px) {

    footer {
        padding-top: 10px;
    }

    footer .join {
        text-align: center;
    }

    footer .footer_logo {
        height: 200px;
    }

    footer .join p {
        display: none;
    }

    footer .join a.btn {
        display: none;
    }

    footer h5 {
        font-size: 14px;
        font-weight: 600;
    }

    footer .footer_nav {
        padding-top: 10px;
    }

    footer .nav .nav-link {
        padding: 0;
        opacity: .5;
        padding-top: 20px;
        font-size: 12px;

    }

    footer .down {
        display: none;
    }

    footer a:hover {
        color: #971FFF;
    }

    footer .copyright {
        font-size: 12px;
    }

    footer .copyright p {
        line-height: 40px;
    }

}


.heroe {
    margin-top: -122px;
    background: url(../images/home_bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100vh;
}




.heroe .logo {
    height: calc(100vh * 0.4);
    border-bottom: 1px solid #ffffff46;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.heroe .info {
    height: calc(100vh * 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.heroe .info h2 {
    font-weight: 500;
    font-size: 64px;
    text-transform: capitalize;
    color: #FFFFFF;
}

.heroe .info p {
    font-size: 14px;
    line-height: 2;
    color: #FFFFFF;
    opacity: .5;
    max-width: 920px;
    margin: 30px 0;
}

.heroe .info a.btn {
    padding: 10px 30px;
    border-radius: 25px;
    border-radius: 37px;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(90deg, #971FFF 0%, #4D34E6 100%);
}

.heroe .info a.btn::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/btn_icon.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}


/* 鼠标悬浮发光背景 */
.heroe .info a.btn:hover {
    box-shadow: 0px 0px 20px #971FFF;
}


@media (max-width: 576px) {
    .heroe .logo .container {
        text-align: center;
    }

    .heroe .logo img {
        width: 80%;
        margin-bottom: 20px;
    }

    .heroe .info {
        text-align: center;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
    }

    .heroe .info h2 {
        font-size: 38px;
    }

    .heroe .info p {
        font-size: 14px;
        line-height: 2;
    }

}

.main .row {
    margin: 60px 0;
}

.main .text h3 {
    font-weight: 700;
    font-size: 48px;
}

.main .text strong {
    font-weight: 700;
    font-size: 32px;
}

.main .text p {
    padding-top: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.5;
    margin-bottom: 30px;
}

.main .text a.btn-link {
    padding: 10px 30px;
    border-radius: 25px;
    background: #FFFFFF;
    border-radius: 37px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    margin-right: 30px;
}

.main .text a.btn-link::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_join.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}

/* 鼠标悬浮发光背景 */
.main .text a.btn-link:hover {
    box-shadow: 0px 0px 20px #971FFF;
}

.home .merchant {
    padding: 100px 0;
    background-color: #111111;
}

.home .merchant .title h3 {
    font-weight: 700;
    font-size: 48px;
}

.home .merchant .title strong {
    font-weight: 700;
    font-size: 32px;
}

.home .merchant .title p {
    margin-top: 40px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.5;
}

.home .merchant .items {
    background: url(../images/home_merchant_bg.png) center bottom no-repeat;
    background-size: 105%;
    padding-bottom: 80px;
    margin-bottom: 80px;
}



.home .merchant .items .item {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.home .merchant .data {
    max-width: 400px;
    margin: 0 auto;
}

.home .merchant .data .col {
    font-size: 16px;
    color: #ffffff83;
    padding-left: 80px;
}

.home .merchant .data .col strong {
    font-size: 48px;
    color: #ffffff;
}


.home .merchant .title a.btn-link {
    padding: 10px 30px;
    border-radius: 25px;
    background: #FFFFFF;
    border-radius: 37px;
    font-size: 16px;
    color: #000000;
    text-decoration: none;
    margin-right: 30px;
    float: right;
    margin-top: -70px;
}

.home .merchant .title a.btn-link::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_join.svg) center center no-repeat;
    position: relative;
    right: -5px;
    top: 2px;
}

/* 鼠标悬浮发光背景 */
.home .merchant .title a.btn-link:hover {
    box-shadow: 0px 0px 20px #971FFF;
}


@media (max-width: 576px) {
    .main .text {
        text-align: center;
    }


    .main .text h3 {
        font-size: 32px;
    }

    .main .text strong {
        font-size: 24px;

    }

    .main .text p {
        font-size: 16px;
    }

    .main .text a.btn-link {
        padding: 10px 20px;
        border-radius: 25px;
        background: #FFFFFF;
        border-radius: 37px;
        font-size: 16px;
        margin: 15px 10px;
    }

    .main .row {
        margin-bottom: 60px;
    }

    .home .main .row:nth-child(2) {
        display: flex;
        flex-direction: column-reverse;
    }



    .home .merchant {
        padding: 100px 0;
        background-color: #111111;
    }

    .home .merchant .title {
        text-align: center;
    }

    .home .merchant .title h3 {
        display: none;
    }

    .home .merchant .title strong {
        font-weight: 700;
        font-size: 24px;
    }

    .home .merchant .title p {
        font-size: 16px;
    }

    .home .merchant .title a.btn-link {
        float: none;
        margin: auto;
    }

    .home .merchant .items {
        background: url(../images/home_merchant_bg.png) center bottom no-repeat;
        background-size: 205%;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }



    .home .merchant .items .item {
        display: none;
        align-items: flex-end;
        justify-content: center;
    }

    .home .merchant .items .item:nth-child(2) {
        display: flex;
    }

    .home .merchant .data {
        max-width: 400px;
        margin: 0 auto;
    }

    .home .merchant .data .col {
        font-size: 16px;
        color: #ffffff83;
        padding-left: 60px;
    }

    .home .merchant .data .col strong {
        font-size: 48px;
        color: #ffffff;
    }




}

.quickly .heroe {
    background-image: url(../images/quickly_match_bg.jpg);
}

.interaction .heroe {
    background-image: url(../images/interaction_bg.jpg);
}

.coop .heroe {
    background-image: url(../images/coop_bg.jpg);
}



@media (max-width: 576px) {

    .main .row:nth-child(2n) {
        display: flex;
        flex-direction: column-reverse;
    }

}

.talent .heroe {
    margin-top: -122px;
    background: url(../images/talent_bg.jpg) center center no-repeat;
    background-size: cover;
    height: 100vh;
}

.talent .main {
    background: url(../images/talent_noonoo.png) left top no-repeat;
}

.talent .info h3,
.talent .process h3 {
    font-weight: 700;
    font-size: 48px;
}

.talent .info strong,
.talent .process strong {
    font-weight: 700;
    font-size: 32px;
}

.talent .info .text_box {
    margin-top: 60px;
    font-size: 18px;
    line-height: 2;
    color: #FFFFFF;
    opacity: 0.5;
    background-color: #1F1F1F;
    padding: 30px;
    border: 1px solid #383838;
    border-radius: 8px;
}

.talent .process {
    padding-top: 120px;
}

.talent .process .row {
    background-color: #37363d70;
    border: 1px solid #383838;
    border-radius: 8px;
    height: 520px;
    margin-bottom: 150px;
}

.talent .process .row .img-fluid {
    transform: scale(1.2);
    margin-top: -30px;

}

.talent .process .text {
    padding-left: 80px;
}

.talent .process .p1 {
    background: url(../images/talent_p_01.png) 40px 80px no-repeat;
}

.talent .process .p2 {
    background: url(../images/talent_p_02.png) 80px 80px no-repeat;
}

.talent .process .p3 {
    background: url(../images/talent_p_03.png) 80px 80px no-repeat;
}

.talent .process .p4 {
    background: url(../images/talent_p_04.png) 80px 80px no-repeat;
}



@media (max-width: 576px) {


    .talent .main {
        background: url(../images/talent_noonoo.png) center top no-repeat;
        background-size: 160%;
    }

    .talent .info h3,
    .talent .process h3 {
        font-weight: 700;
        font-size: 32px;
        text-align: center;
    }

    .talent .info strong,
    .talent .process strong {
        font-weight: 700;
        font-size: 24px;
        display: block;
        text-align: center;
    }

    .talent .info .text_box {
        margin-top: 60px;
        font-size: 18px;
        line-height: 2;
        color: #FFFFFF;
        opacity: 0.5;
        background-color: #1F1F1F;
        padding: 30px;
        border: 1px solid #383838;
        border-radius: 8px;
    }

    .talent .process {
        padding-top: 120px;
    }

    .talent .process .row {
        background-color: #37363d70;
        border: 1px solid #383838;
        border-radius: 8px;
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        margin-bottom: 40px;
    }

    .talent .process .row .img-fluid {
        transform: scale(1);
        margin-top: 0;

    }

    .talent .process .text {
        padding: 80px 30px 10px;
        text-align: left;
    }

    .talent .process .text h3,
    .talent .process .text strong {
        text-align: left;
    }

    .talent .process .p1 {
        background: url(../images/talent_p_01.png) 20px top no-repeat;
        background-size: 50%;
    }

    .talent .process .p2 {
        background: url(../images/talent_p_02.png) 30px top no-repeat;
        background-size: 50%;
    }

    .talent .process .p3 {
        background: url(../images/talent_p_03.png) 30px top no-repeat;
        background-size: 50%;
    }

    .talent .process .p4 {
        background: url(../images/talent_p_04.png) 30px top no-repeat;
        background-size: 50%;
    }

}

.reg_talent {
    height: calc(100vh);
    margin-top: -122px;
    background: url(../images/reg_talent_bg.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.reg_talent .reg_box {
    max-width: 1238px;
    height: 656px;
    background: rgba(69, 67, 76, 0.5);
    backdrop-filter: blur(13.55px);
    border-radius: 8px;
    margin: 0 auto;
    display: flex;
    padding: 50px;
}

.reg_talent .reg_box .reg_info {
    width: 50%;
    padding-left: 20px;
    padding-right: 80px;
}


.reg_talent .reg_box h3 {
    font-size: 16px;
    background: url(../images/icon_reg_tt.svg) left center no-repeat;
    padding-left: 30px;
    height: 30px;
    line-height: 30px;
}

.reg_talent .reg_box h4 {
    font-size: 14px;
    color: #888A9D;
    line-height: 30px;
}

.reg_talent .reg_box .reg_info p {
    font-size: 14px;
    color: #888A9D;
    line-height: 2;
    padding-bottom: 30px;
}

.reg_talent .reg_box .reg_info .tq {
    padding-top: 40px;
}

.reg_talent .reg_box .reg_info .tq>div {
    padding-bottom: 30px;
}

.reg_talent .reg_box .reg_form {
    border-left: 1px solid #ffffff2d;
    width: 50%;
}

.reg_talent .reg_box .reg_form .form {
    padding: 0 100px;

}

.reg_talent .m_tt {
    display: none;
}

.reg_talent .reg_box .reg_form .form p {
    font-size: 12px;
}

@media (max-width: 576px) {


    .reg_talent {
        height: auto;
        margin-top: 0;
        display: flex;
        align-items: center;
    }

    .reg_talent .m_tt {
        display: block;
        font-size: 28px;
        text-align: center;
        padding: 40px 0;
    }

    .reg_talent .reg_box {
        width: 100%;
        max-width: 1238px;
        height: auto;
        background: none;
        backdrop-filter: none;
        border-radius: 0;
        margin: 0 auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }

    .reg_talent .reg_box .reg_info {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }


    .reg_talent .reg_box h3 {
        font-size: 16px;
        background: url(../images/icon_reg_tt.svg) left center no-repeat;
        padding-left: 30px;
        height: 30px;
        line-height: 30px;
    }

    .reg_talent .reg_box h4 {
        font-size: 14px;
        color: #888A9D;
        line-height: 30px;
    }

    .reg_talent .reg_box .reg_info p {
        font-size: 14px;
        color: #888A9D;
        line-height: 2;
        padding-bottom: 30px;
    }

    .reg_talent .reg_box .reg_info .tq {
        padding-top: 40px;
    }

    .reg_talent .reg_box .reg_info .tq>div {
        padding-bottom: 30px;
    }

    .reg_talent .reg_box .reg_form {
        border-left: none;
        width: 100%;
    }

    .reg_talent .reg_box .reg_form h3 {
        display: none;
    }

    .reg_talent .reg_box .reg_form .form {
        padding: 30px 15px;
        background: rgba(69, 67, 76, 0.5);
        backdrop-filter: blur(13.55px);
        border-radius: 8px;
    }

    .reg_talent .reg_box .reg_form .form p {
        font-size: 12px;
    }

}

.btn.btn-reg {
    background-color: #971FFF;
    color: #fff;
    font-size: 16px;
    width: 100%;
}



.btn.btn-reg::after {
    content: '';
    display: inline-block;
    background: url(../images/btn_icon.svg) center center no-repeat;
    width: 18px;
    height: 11px;
    position: relative;
    left: 5px;
}



.reg_form .form h3 {
    margin-bottom: 60px;
}



.noo_form .form-label {
    font-size: 16px;
}

.noo_form input.noo_input {
    background-color: unset;
    font-size: 16px;
    color: #ffffff7a;
    border-color: #ffffff7a;

    /* placeholder 文字颜色 */

}

.noo_form input.noo_input::placeholder {
    color: #ffffff7a;
}


.reg_merchant {

    height: calc(100vh);
    margin-top: -122px;
    background: url(../images/reg_merchant_bg.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;

}

.reg_merchant .merchant_form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(69, 67, 76, 0.5);
    backdrop-filter: blur(13.55px);
    border-radius: 8px;
    padding: 40px;
}

.reg_merchant .merchant_form h3 {
    font-size: 28px;
}

.reg_merchant .merchant_form p {
    font-size: 12px;
}

.reg_merchant .m_tt {
    display: none;
}

@media (max-width: 576px) {


    .reg_merchant {
        height: auto;
        margin-top: 0;
        flex-direction: column;
        padding: 0 30px;
    }

    .reg_merchant .m_tt {
        display: block;
        text-align: center;
        font-size: 28px;
        padding-top: 40px;
    }

    .reg_merchant .merchant_form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        background: rgba(69, 67, 76, 0.5);
        backdrop-filter: blur(13.55px);
        border-radius: 8px;
        padding: 40px;
        margin: 30px 15px;
    }

    .reg_merchant .merchant_form h3 {
        display: none;
    }

    .reg_merchant .merchant_form p {
        font-size: 12px;
        text-align: center;
    }

}


.reg_seller {
    height: calc(100vh);
    margin-top: -122px;
    background: url(../images/reg_seller_bg.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}


.reg_seller .reg_info {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.reg_seller .reg_info h3 {
    font-size: 32px;
}

.reg_seller .reg_info p {
    margin-top: 30px;
    font-size: 14px;
    color: #888A9D;
    line-height: 2;
    padding-bottom: 30px;
}

.reg_seller .seller_form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(69, 67, 76, 0.5);
    backdrop-filter: blur(13.55px);
    border-radius: 8px;
    padding: 40px;
}

.reg_seller .seller_form p {
    font-size: 12px;
}


@media (max-width: 576px) {

    .reg_seller {
        height: auto;
        margin-top: 0;
        background: url(../images/reg_seller_bg.jpg) center center no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
    }


    .reg_seller .reg_info {
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: center;
        padding-top: 40px;
        text-align: center;
    }

    .reg_seller .reg_info h3 {
        font-size: 32px;
    }

    .reg_seller .reg_info p {
        margin-top: 30px;
        font-size: 14px;
        color: #888A9D;
        line-height: 2;
        padding-bottom: 30px;
        text-align: justify;
    }

    .reg_seller .seller_form {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        background: rgba(69, 67, 76, 0.5);
        backdrop-filter: blur(13.55px);
        border-radius: 8px;
        padding: 30px;
    }

    .reg_seller .seller_form p {
        font-size: 12px;
        text-align: center;
    }
}

.download {

    height: calc(100vh);
    margin-top: -122px;
    background: url(../images/down_bg.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;

}

.download .app_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.download .app_info h2 {
    font-size: 32px;
    line-height: 3;
}

.download .app_info .down_qrcode {
    padding-top: 40px;
}

.download .app_info .down_qrcode .row {
    --bs-gutter-x: 5rem;
}

.download .app_info .down_qrcode p {
    font-size: 18px;
    line-height: 3;
}


@media (max-width: 576px) {


    .download {
        height: auto;
        margin-top: 0;
    }

    .download .app_info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 80px;
    }

    .download .app_info h2 {
        font-size: 24px;
        line-height: 3;
    }

    .download .app_info .down_qrcode {
        padding-top: 40px;
    }

    .download .app_info .down_qrcode .row {
        --bs-gutter-x: 1.5rem;
    }

    .download .app_info .down_qrcode p {
        font-size: 18px;
        line-height: 3;
    }


}