* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box
}

:root {
    --white: #fff;
    --darkWhite1: #d0cdca;
    --drakWhite2: #9f9fa9;
    --light: #1447e6;
    --lightLine: #172144;
    --bg: #0D0D10;
    --black: #000;
    --line: #252525;
}

a {
    text-decoration: none;
    color: var(--darkWhite1);
}

a:hover {
    color: var(--light);
}

[v-cloak] {
    display: none;
}

body {
    color: var(--darkWhite1);
    font-family: "Microsoft YaHei", 微软雅黑;
    background: var(--bg);
    font-size: 14px;

}

body.dj {
    position: fixed;
    left: 0;
    width: 100%;
}

header {
    padding: 10px 0;
    border-bottom: solid 1px var(--line);
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, .3);
    z-index: 9999;
    background-image: url("../img/bg-footer.gif");
    background-blend-mode: overlay; /* 可选：混合模式控制叠加效果 */
    box-shadow: inset 0 0 42px rgba(20, 71, 230, 0.6);
}

.wp {
    margin: 0 auto;
    width: 1000px;
}

header .wp {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

header .logo {
    display: flex;
    width: 18%;
    max-width: 100px;

}

header .logo i {
    width: 100%;
    padding-bottom: 67.746913580247%;
    height: 0;
    position: relative;
}

header .logo i img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

header .menu a {
    border-radius: 16px;
    padding: 2px 8px;
    border: solid 2px transparent;
    transition: all .3s;
}

header .menu a.logo {
    display: none;
}

header .menu a:hover {
    border-color: var(--line);
    filter: brightness(150%) hue-rotate(150deg);
}

header .menu a.active {
    /*background: var(--light);*/
    color: var(--white);
    border-color: var(--light);
}

header .menu a.active:hover {
    filter: brightness(150%) hue-rotate(150deg);
}


header .mb, header .mark {
    display: none;
    overflow: hidden;
}

.mark {
    background: rgba(0, 0, 0, .8);
    position: fixed;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

header .mb img {
    filter: drop-shadow(-100px 0 0px var(--darkWhite1));
    position: relative;
    left: 100px;
    width: 26px;
}

section {
    position: relative;
}

.fk {
    border-radius: 16px;
    background: #18181b;
    padding: 30px;
    border: solid 1px var(--line);
}

.fk .ti {
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.fk .ti i {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #451c21;
    color: #e14f62;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fk .ti i img {
    width: 20px;
    filter: drop-shadow(-100px 0 0px #e14f62);
    position: relative;
    left: 100px;
}

.fk .list {
    font-size: 16px;
    line-height: 40px;
    padding-top: 40px;
    color: var(--drakWhite2);
}

.fk .list li {
    display: flex;
    align-items: center;
}

.fk .list li:before {
    content: '';
    width: 5px;
    height: 5px;
    background: #e14f62;
    border-radius: 100%;
    margin-right: 15px;
}

.fk .ms {
    color: var(--drakWhite2);
}

.bigTitle {
    text-align: center;
}

.bigTitle .t1 {
    font-size: 34px;
    line-height: 1em;
}

.bigTitle .t2 {
    font-size: 17px;
    color: var(--drakWhite2);
    line-height: 1em;
    padding-top: 25px;
}


#index:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to top, rgba(36, 50, 230, 0.12), transparent);
    z-index: -1;
}

#index .wp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 60px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

#index .text, #index .img {
    width: 48%;
}

#index .text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#index .text .t1 {
    font-size: clamp(36px, 2.5vw, 42px);
    font-weight: bold;
    line-height: 1em;
}

#index .text .t2 {
    font-size: clamp(36px, 2.5vw, 42px);
    color: var(--light);
    line-height: 1.2em;
}

#index .text .t3 {
    font-size: clamp(16px, 1vw, 18px);
    color: var(--drakWhite2);
    line-height: 1.5em;
}

#index .text .vplay{
    display: flex;
    justify-content: center;
}


#index .text .vplay img{
    width: 100%;
    max-width: 150px;
}

#index .text .btns {
    display: flex;
    gap: 15px;
    /*padding-top: 35px;*/
    align-items: center;
}

#index .text .btns a {
    padding: 15px 25px;
    line-height: 1em;
    transition: all .4s;
}

#index .text .btns a:hover {
    filter: brightness(150%) hue-rotate(150deg);
}

#index .text .btns a:nth-child(1) {
    background: var(--light);
    color: var(--white);
    border-radius: 10px;
}

#index .text .btns a:nth-child(2) {
    color: var(--light);
    border-radius: 10px;
    border: solid 2px var(--line);
}

#index .text .tj {
    display: flex;
    gap: 35px;
    padding-top: 35px;
}

#index .text .tj .num {
    font-size: 26px;
    color: var(--light);
    font-weight: bold;
}


#index .img {
    display: flex;
    border-radius: 16px;
    border: solid 1px var(--lightLine);
    overflow: hidden;
}

#index .img img {
    width: 100%;
}

#function:after, #faq:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .02);
    z-index: -1;
}

#setting .wp, #function .wp, #choose .wp, #faq .wp {
    padding-top: 60px;
    padding-bottom: 60px;
}

#setting .flavar{
    margin-top: 60px;
    position: relative;
}
#setting .flavar .swiper-pagination{
    bottom: 0px;
    left: 50%;
    transform: translate(-50% ,200%);
    display: flex;
    align-items: center;gap: 6px;
}
#setting .flavar .swiper-pagination-bullet{
    width: 18px;
    height: 18px;background: var(--darkWhite1);
}
#setting .flavar .swiper-pagination-bullet-active{
    background: var(--light);
}


#setting .flavar .swiper{
    overflow: hidden;
    border: solid 1px var(--lightLine);
}
#setting .flavar .swiper-slide {
    padding-bottom: 50%;
    height: 0;
    position: relative;
}

#setting .flavar .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}


#function .four {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 60px;
}

#function .four .fk {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-color: var(--lightLine);
}


#choose .compare {
    display: flex;
    gap: 30px;
    padding: 70px 0;
}


#choose .compare .fk {
    width: 100%;
}

#choose .compare .fk.ok {
    border-color: var(--light);
}

#function .four .fk .ti i, #choose .compare .fk.ok .ti i {
    background: #172144;
    color: var(--light);
}

#function .four .fk .ti i img, #choose .compare .fk.ok .ti i img {
    filter: drop-shadow(-100px 0 0px var(--light));
}

#choose .compare .fk.ok .list li:before {
    background: var(--light);
}

#choose .three .fk {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-color: var(--lightLine);
}

#choose .three .fkk {
    width: 100%;
    display: flex;
    align-items: flex-start;

}

#choose .three .fkk .gou {
    padding-right: 15px;
    overflow: hidden;
}

#choose .three .fkk .gou img {
    width: 16px;
    filter: drop-shadow(-100px 0 0px var(--light));
    position: relative;
    left: 100px;
}

#choose .three .fkk .txt .num {
    font-size: 16px;
    line-height: 1em;
    padding-bottom: 15px;
}

#choose .three .fkk .txt .tit {
    font-size: 14px;
    line-height: 1em;
    color: var(--drakWhite2);
}


#faq .faqList {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#faq .faqList .fk {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#faq .faqList .fk .ms a {
    background: var(--light);
    color: var(--white);
    border-radius: 10px;
    padding: 8px 15px;
    line-height: 1em;
    display: flex;
    width: fit-content;
    margin-top: 15px;
    transition: all .4s;

}

#faq .faqList .fk .ms a:hover {
    filter: brightness(150%) hue-rotate(150deg);
}


#join .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 10vw 0;
}

#join .text .t1 {
    font-size: clamp(36px, 2.5vw, 42px);
    font-weight: bold;
    line-height: 1em;
}

#join .text .t2 {
    font-size: 42px;
    color: var(--light);
    line-height: 1.2em;
}

#join .text .t3 {
    font-size: 18px;
    color: var(--drakWhite2);
    line-height: 1.5em;
}

#join .text .btns {
    display: flex;
    gap: 15px;
    padding-top: 35px;
    padding-bottom: 35px;
    align-items: center;
}

#join .text .btns a {
    padding: 15px 25px;
    line-height: 1em;
    transition: all .4s;
}

#join .text .btns a:hover {
    filter: brightness(150%) hue-rotate(150deg);
}

#join .text .btns a:nth-child(1) {
    background: var(--light);
    color: var(--white);
    border-radius: 10px;
}

#join .text .btns a:nth-child(2) {
    color: var(--light);
    border-radius: 10px;
    border: solid 2px var(--line);
}

#join .text .ewm {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 60%;
    max-width: 359px;
}

#join .text .ewm li {
    border-radius: 16px;
    background: #18181b;
    padding: 15px;
    border: solid 1px var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    gap: 10px
}

#join .text .ewm li .img {
    display: flex;
}

#join .text .ewm li .img img {
    width: 100%;
}

#join .text .ewm li .ti {
    font-size: clamp(12px, 1vw, 14px);
}






.videoplay {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, .8);
}

.videoplay .kuang {
    width: 1000px;
    position: relative;
    border: solid 2px #ffe0ae;
    background: #000;
}

.videoplay .closewin {
    width: 60px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    right: -68px;
    top: -12px;
    transform: rotate(45deg);
    transition: all .4s;
    z-index: 2;
}

.videoplay .closewin span {
    display: block;
    background: #fff;
    position: absolute;
}

.videoplay .closewin span:nth-child(1) {
    height: 2px;
    width: 100%;
    top: 50%;
    margin-left: -50%;
    left: 50%;
    margin-top: -1px;
}

.videoplay .closewin span:nth-child(2) {
    height: 100%;
    width: 2px;
    left: 50%;
    margin-left: -1px;
    margin-top: -50%;
    top: 50%;
}

.videoplay .closewin:hover {
    transform: rotate(135deg);
}

.videoplay .kuang .video {
    padding-bottom: 56.25%;
    width: 100%;
    position: relative;
}

.videoplay .kuang .video video {
    width: 100%;
    height: 100%;
    position: absolute;
}
.videoplay .kuang .video iframe{
    width: 100%;
    height: 100%;
    position: absolute;
}
