@charset "utf-8";

body {
    font-family: "Microsoft YaHei", "Segoe UI", "Lucida Grande", Helvetica, Arial, sans-serif, FreeSans, Arimo;
    --bgUrl: url(../img/bgPC.jpg) no-repeat center / cover;
    --bgLinear: linear-gradient(135deg, #b7a4fa 0, #b7ddfc 50%, #a5edfb 100%);
    background: var(--bgUrl), var(--bgLinear);
    min-width: 100%;
    min-height: 100vh;
    background-size: 100% 100%;
}

.pageMask {
    width: 100%;
    height: 100%;
    background: var(--bgLinear) no-repeat center / 100% 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    animation: pageMask 1s linear 1s 1 forwards;
}

@keyframes pageMask {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

#app[data-device='page_mobile'] {
    --cursor: none;
    user-select: none;
    /* 禁止文本选择 */
    -webkit-user-select: none;
    /* 适用于 Safari */
    -moz-user-select: none;
    /* 适用于 Firefox */
    -ms-user-select: none;
    /* 适用于 Internet Explorer/Edge */
}

#app[data-device='page_pc'] {
    --cursor: pointer;
}

#app[data-direction='ltr'] {
    direction: ltr;
}

/* #app[data-direction='rtl'] {direction: rtl;} */
.flex_c {
    display: flex;
    align-items: center;
}

.relative {
    position: relative;
}

.contentArea {
    max-width: 1440px;
    width: 90%;
    margin: 0 auto;
}

.header {
    padding: 25px 0 30px 0;
    --max_h: 60px;
    max-height: var(--max_h);
    box-sizing: content-box;
    z-index: 99;
    direction: ltr;
}

.header h1 {
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header h1 img {}

.header h1 span {
    font-size: 22px;
    transform: scale(1.2,1);
    transform-origin: center left;
}

header .contentArea {
    justify-content: space-between;
    align-items: center;
}

header .contentArea h1 img {
    display: block;
    height: 100%;
    max-height: var(--max_h);
    border-radius: 10px;
    box-shadow: 1px 2px 2px 2px #cccccc4a;
}

/* languageSele s */
.languageSeleBox {
    --head_h: 26px;
    height: var(--head_h);
    position: relative;
    z-index: 99;
}

.languageSele {
    height: var(--head_h);
    position: relative;
    z-index: 99;
    --head_h: 26px;
    --gap: 4px;
    --arrow_w: 1em;
    --color: #fff;
    --durling: .3s;
    --duration: .2;
    --duration_scale: .1s;
    display: grid;
}

.languageSele .seleted {
    cursor: var(--cursor);
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 0;
    color: var(--color);
    font-size: 16px;
    height: var(--head_h);
    z-index: 100;
}

.languageSele .seleted .text {
    padding: var(--gap);
}

.languageSele .seleted .iconArrow {
    display: block;
    width: var(--arrow_w);
    height: var(--arrow_w);
    background-color: var(--color);
    --diff_h: 25%;
    transition: var(--durling);
    clip-path: polygon(0% calc(var(--diff_h)), 100% calc(var(--diff_h)), 50% calc(100% - var(--diff_h)));
}

.languageSele.active .seleted .iconArrow {
    clip-path: polygon(0% calc(100% - var(--diff_h)), 100% calc(100% - var(--diff_h)), 50% calc(var(--diff_h)));
}

.languageSele .options {
    --init_delay: calc(var(--duration) * calc(var(--option_len) + 1) * var(--duration_scale));
    --option_len: 2;
    --li_margin_bottom: 2px;
    width: 100%;
    text-align: right;
    overflow: hidden;
    height: 0;
    transition-delay: var(--init_delay);
}

.languageSele.active .options {
    height: calc(var(--option_len) * (var(--head_h) + var(--li_margin_bottom)));
    transition-delay: 0s;
}

.languageSele.active .options[data-visiblity='hidden'] {
    height: 0;
    transition-delay: 0s;
}

.languageSele .options ul {
    display: grid;
}

.languageSele .options li {
    --order: 1;
    order: var(--order);
    cursor: var(--cursor);
    margin-bottom: var(--li_margin_bottom);
    margin: 0;
    height: var(--head_h);
    line-height: var(--head_h);
    transition: var(--durling);
    position: relative;
    overflow: hidden;
    border-radius: var(--head_h);
    z-index: 99;
}

.languageSele .options li p {
    transition-duration: calc(var(--duration) * 1s);
    transform: translateY(-100%);
    transition-delay: calc(var(--duration) * calc(var(--option_len) - var(--order)) * var(--duration_scale));
    opacity: 0;
    border: 1px solid #ccc;
}

.languageSele.active .options li p {
    transform: translateY(0%);
    opacity: 1;
    transition-delay: calc(var(--duration) * var(--order) * var(--duration_scale));
}

.languageSele .options li span {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 calc(var(--arrow_w) + var(--gap)) 0 calc(var(--arrow_w) + var(--gap) * 4);
    box-sizing: border-box;
    transition: .3s;
    background: var(--color);
    user-select: none;
}

.languageSele .options li:hover span {
    padding: 0 calc(var(--arrow_w) + var(--gap) * 4) 0 calc(var(--arrow_w) + var(--gap));
}

/* languageSele e */
.main {
    position: relative;
    margin-top: 0.4rem;
    color: #fff;
}

.main a {
    color: #fff;
    color: #333;
}

.main .contentArea {
    display: flex;
    align-items: center;
}

/* swiper s */
.swiperBox {
    --border_radius: 25px;
    width: 40%;
    max-width: 300px;
    position: relative;
    margin: 0 0.5rem;
    padding-bottom: 40px;
    direction: ltr;
}

.swiperBox::after {
    content: '';
    display: none;
    width: 100%;
    height: 100%;
    background: url(../img/phone_frame.png) no-repeat center /100% 100%;
}

.swiperBox.show::after {
    display: block;
}

.swiperCont {
    display: flex;
    width: 100%;
    max-height: 100%;
    position: relative;
}

.swiperBox .swiper {
    z-index: 2;
    border-radius: var(--border_radius);
}

.swiperBox .swiper-slide {
    border-radius: var(--border_radius);
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border_radius);
    display: block;
}

.swiperBox .swiper-pagination {
    top: calc(100% + 5px);
    width: 100%;
    opacity: 0;
    transform: scale(0) translate(0, -10px);
}

.swiper-pagination.swiper-pagination-clickable {
    opacity: 1;
    transition: .5s;
    transition-delay: 1s;
    transform: scale(1) translate(0);
}

.swiper-pagination-bullet {
    cursor: pointer;
    opacity: 1;
    background: rgba(255, 255, 255, 0.5);
    transition: .3s;
    width: 14px;
    height: 5px;
    border-radius: 5px !important;
}

.swiper-pagination-bullet:hover {
    transform: scale(1.3);
}

.swiper-pagination-bullet-active {
    background-color: #fff;
}

/* swiper e */
.topSlogan {
    display: none;
}

.textBox {
    flex: 1;
    z-index: 2;
    font-family: PingFang SC-Heavy;
    --sca: 1;
}

.slogan {
    font-size: 50px;
    text-align: center;
    text-wrap: balance;
    margin: 0.44rem 0 0.3rem;
}

.slogan p {}

.slogan p span {
    display: inline-block;
    padding: 0 3px;
}

.slogan_sub {
    margin: 0.2rem 0 1.2rem;
    text-align: center;
    line-height: 1.5;
    text-wrap: balance;
}

.starVideo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.56rem;
}

.starVideo .box {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9833FD;
    background: #fff;
    border-radius: 40px;
    height: 0.21rem;
    padding: calc(.15rem * var(--sca)) calc(.2rem * var(--sca));
    height: calc(.21rem * var(--sca));
    gap: calc(.12rem * var(--sca));
    font-size: calc(.15rem * var(--sca));
    transition: .3s;
}

.starVideo .box:hover {
    box-shadow: inset 0px -1px 11px 2px #b133ee;
}

.starVideo .box img {
    height: 100%;
}

.dowlowBtns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .2rem;
}

.dowlowBtns li .btn {
    width: calc(1.6rem * var(--sca));
    height: calc(.5rem * var(--sca));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(.1rem * var(--sca));
    border-radius: 8px;
    box-sizing: border-box;
    user-select: none;
    transition: .3s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* background-image: linear-gradient(360deg, rgba(6, 0, 11, 1) 0, rgba(57, 0, 113, 1) 100%); */
    /* background: linear-gradient(180deg, #FFD400 0%, #FF9900 100%); */
    background: linear-gradient(0deg, #CC9AFF 0%, #FFFFFF 100%);
    cursor: initial;
}

.dowlowBtns a {
    color: #000000 !important;
}

.dowlowBtns li.hasLink .btn {
    cursor: pointer
}

.dowlowBtns li.hasLink .btn:hover {
    background-color: #b133ee;
    box-shadow: inset 0px -1px 11px 2px #fff;
}

.dowlowBtns li .btn .icon {
    padding: 5px 0;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dowlowBtns li .btn img {
    display: block;
    max-height: 100%;
}

.dowlowBtns li .txt .name {
    font-size: 0.12rem;
    font-weight: 900;
}

.dowlowBtns li .txt .lable {
    font-size: calc(.08rem * var(--sca));
    /* margin-top: calc(.02rem * var(--sca)); */
}

.fotter {
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding-bottom: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    left: 0;
    flex-direction: column;
    justify-content: center;
}

.copyright {
    margin-bottom: 1px;
}

.ftLinks {
    display: flex;
    justify-content: center;
}

.ftLinks a {
    display: inline-block;
    padding: 5px 8px;
    width: 180px;
    text-align: right;
    /* text-shadow: 1px 1px 0 #000000; */
}

.ftLinks a:nth-child(2n) {
    text-align: left;
}

.ftLinks a:hover {
    text-decoration: underline;
}

/* ------------------------------------------------ */
/* media  s*/
@media (max-width: 1440px) {
    .header {
        padding: 20px 0 .2rem;
        /* background: rgba(18, 41, 35, 0.6); */
    }

    header .contentArea h1 img {
        height: 1.4rem;
        max-height: 52px;
        border-radius: 12px;
    }

    .main {
        margin-top: .2rem;
    }

    .swiperBox {
        width: 25%;
    }

    .slogan {
        font-size: .5rem;
    }

    .slogan_sub {
        font-size: .25rem;
    }

    .dowlowBtns li .btn {
        --h: .7rem;
        --sca: 2;
        width: 2.5rem;
        height: calc(var(--h) * 1);
        font-size: .22rem;
    }

    .dowlowBtns li .btn img {
        height: calc(var(--h) * .65);
    }

    .dowlowBtns.len_1 li .btn {
        min-width: 2.7rem;
    }

    .starVideo .box {
        --sca: 1.2;
    }
}

@media screen and (max-width: 750px) {
    body {
        --bgUrl: url(../img/bgPC.jpg) no-repeat center / cover;
    }

    .slogan_sub {
        display: none;
    }

    .header {
        padding: 20px 0;
    }

    .main {
        margin: 0;
        overflow: hidden;
    }

    .main .contentArea {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: calc(100vh - 40px - 1.4rem);
        --textBoxH: 45vh;
    }

    .swiperBox {
        --border_radius: 0.6rem;
        flex: 1;
        width: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: calc(100% - var(--textBoxH));
        max-width: initial;
        padding-bottom: 0;
    }

    .swiper-slide img {
        display: block;
        max-height: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .textBox {
        flex: initial;
        padding: 40px 0 0.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: var(--textBoxH);
        box-sizing: border-box;
    }

    .textBox .content {
        padding: 0.1rem 0;
    }

    .slogan {
        font-size: 24px;
        --lin_h: 1.4;
        line-height: var(--lin_h);
        margin: 0 0 0.3rem;
        height: calc(var(--lin_h) * 3em);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dowlowBtns li .btn {
        width: 130px;
        --h: 32px;
        font-size: 14px;
    }

    .dowlowBtns li .txt .name {
        font-size: 10px;
    }

    .dowlowBtns.len_1 li .btn {
        min-width: 5.7rem;
    }

    .languageSele .seleted {
        font-size: 14px;
    }

    .languageSele .options {
        font-size: 12px;
    }

    .fotter {
        display: flex;
        justify-content: end;
        flex-direction: column;
        position: relative;
        bottom: initial;
        left: initial;
        padding-bottom: 0.3rem;
        height: calc(12px * 1.5 * 2.5);
    }

    .ftLinks a {
        font-size: 10px;
        padding: 3px 8px;
    }

    .starVideo .box {
        --sca: 1.6;
    }

    .topSlogan {
        display: block;
        width: 97%;
        padding: 0 0 .1rem;
    }

    .textBox .slogan {
        display: none;
    }

    .textBox {
        --lin_h: .1rem;
        height: calc(var(--textBoxH) - calc(var(--lin_h) * 2em));
    }

    .starVideo {
        margin-bottom: .5rem;
    }
}

@media screen and (max-width: 600px) {
    header .contentArea h1 img {
        border-radius: 0.24rem;
    }

    .slogan {
        font-size: 0.8rem;
    }

    .starVideo .box {
        --sca: 2.8;
    }

    .dowlowBtns li .btn {
        --sca: 3;
    }
}

/* media  e*/