:root {
    --themeColor: #FABB28;
}
html, body, header, section, aside, footer, div, p, h1, h2, h3, h4, h5, h6, ul, ol, li, blockquote {
    margin: 0px;
    padding: 0px;
}
html, body {
    font-family: "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica,  "PingFang SC", "Hiragino Sans GB", "Heiti SC",  "WenQuanYi Micro Hei", "Source Han Sans CN", "Source Han Sans CN-Bold", sans-serif;
    color: #252525;
}
body.over {
    overflow: hidden;
}
::-webkit-scrollbar {
    width: 10px;
}
 ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 ::-webkit-scrollbar-thumb {
    background: #bbbbbb;
}
a {
    display: block;
    text-decoration: none;
}
img {
    display: block;
    border: none;
}
ul, ol, li {
    list-style: none;
}
input, button, textarea, select {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    outline: 0px;
    border: 0px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-family: "Microsoft YaHei", Arial, "Helvetica Neue", Helvetica,  "PingFang SC", "Hiragino Sans GB", "Heiti SC",  "WenQuanYi Micro Hei", sans-serif;
}
.pcHide {
    display: none;
}
.lt {
    float: left;
}
.rt {
    float: right;
}
.clear::after {
    content: "";
    display: block;
    clear: both;
}
.flexBox {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}
.webkitBox {
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.oneLineEllipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
}
.container {
    width: 1200px;
    margin: 0 auto;
}
.dialog {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}
.dialogBg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.dialogBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
}
.closeDialog {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0px;
    right: 0px;
    background: url(img/close.svg) center center no-repeat;
    cursor: pointer;
}

/* 视频 */
.videoDialogBox {
    width: 960px;
    height: 540px;
    background-color: #000;
}
.closeVideoWin{
    top: -40px;
    right: -40px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
}
.winVideo {
    width: 100%;
    height: 100%;
}

/* **** 公共导航 **** */
.nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    background-color: rgba(32, 0, 255, .3);
    z-index: 1000;
}
.nav > .container {
    justify-content: space-between;
    width: 90%;
}
.navLogoImg {
    width: auto;
}
.menus {
    font-size: 20px;
}
.menu {
    padding: 0 30px;
    box-sizing: border-box;
    line-height: 44px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border: 2px solid #ffffff;
    border-radius: 8px;
}
.menu.active{
    color: #0E00FF;
    font-weight: bold;
    background: #ffffff;
}
.menu:not(:last-child) {
    margin-right: 20px;
}

/* 模块 */
.module{
    width: 100%;
    height: 1000px;
    padding: 68px 0;
    box-sizing: border-box;
}
.contentBox{
    width: 1200px;
    margin:0 auto;
}

.moduleTitleCn{
    justify-content: flex-start;
    position: relative;
    margin-bottom: 20px;
    font-size: 58px;
    color: #0E00FF;
    font-weight: 700;
    letter-spacing: 2.9px;
    z-index: 1;
}
.moduleTitleCn::after{
    content: "";
    position: absolute;
    top: -48px;
    left: -84px;
    width: 144px;
    height: 137px;
    background: url(img/titleIcon_2.png) center center no-repeat;
    background-size: 100%;
    z-index: -1;
}
.pointIcon{
    width: 12px;
    height: 12px;
    margin: 0 24px;
    background: linear-gradient(315deg,#00009d, #0e00ff);
}
.moduleTitleEn{
    font-size: 32px;
    line-height: 36px;
    color: #000000;
    font-weight: 700;
    letter-spacing: 1.6px;
}
.moduleTitleLineBox{
    justify-content: flex-start;
    margin-top: 30px;
}
.moduleTitleLine{
    display: block;
    width: 48px;
    height: 8px;
    background: linear-gradient(270deg,#00009d, #0e00ff);
}
.moduleTitleDesc{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: center;
}
.closeIcon {
    position: fixed;
    right: 50%;
    top: 160px;
    width: 48px;
    height: 48px;
    background: url(img/closeIcon_1.png) center center no-repeat;
    transform: translate(-50%, 0);
    margin-right: -624px;
    z-index: 10;
}

/* 查看更多 */
.arrow_icon{
    padding-right: 20px;
    box-sizing: border-box;
    background: url(img/arrow_icon.png) right center no-repeat;
    background-size: 14px;
}
.seeLinkBtn{
    font-size: 14px;
    color: #fff;
    text-align: center;
}
.pointer{
    cursor: pointer;
}
.ellipsis{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 750px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    html, body {
        height: 100%;
    }
    .mHide {
        display: none !important;
    }
    .pcHide {
        display: block;
    }
    .container {
        width: 90%;
        margin: 0px auto;
    }
    /* **** 公共导航 **** */
    .nav {
        height: auto;
        background-color: rgba(67, 38, 255, .9);
    }
    .nav > .container {
        width: 100%;
        height: 1rem;
        padding: 0 .24rem;
        box-sizing: border-box;
    }
    .navLogoImg {
        width: 1.6rem;
        margin: 0 auto;
    }
    .menu {
        position: relative;
        padding: 0 0;
        line-height: initial;
        font-size: .32rem;
        border: none;
        border-radius: 0;
    }
    .menu:not(:last-child) {
        margin-right: .48rem;
    }
    .menu.active {
        color: #ffffff;
        font-weight: bold;
        background: transparent;
    }
    .menu.active::after{
        content: "";
        position: absolute;
        bottom: -.22rem;
        left: 50%;
        transform: translate(-50%, 0);
        width: .68rem;
        height: .06rem;
        background: #ffffff;
    }
    /* .menu.menuBg_1{
        background: transparent;
    } */
    .menu.menuBg_1.active {
        color: #fff;
        font-weight: bold;
        background: transparent;
    }
    .menu.menuBg_1.active::after{
        content: "";
        display: block;
        width: .68rem;
        height: .06rem;
        margin: 0.16rem auto;
        background-color: #fff;
    }
    .module {
        height: auto;
        padding: 0.8rem 0;
    }
    .contentBox {
        width: 100%;
        padding: 0 0.3rem;
        box-sizing: border-box;
    }
    .seeLinkBtn {
        font-size: .24rem;
    }
    .moduleTitleBox{
        padding-bottom: .48rem;
        box-sizing: border-box;
        text-align: center;
    }
    .moduleTitle{
        display: inline-block;
        text-align: center;
    }
    .moduleTitleCn {
        justify-content: center;
        margin-bottom: .28rem;
        font-size: .58rem;
    }
    .moduleTitleCn::after {
        top: -.48rem;
        left: -.54rem;
        width: 1.44rem;
        height: 1.37rem;
    }
    .moduleTitleEn {
        padding-left: 0;
        font-size: .32rem;
        line-height: initial;
        letter-spacing: .03rem;
    }
    .moduleTitleDesc {
        margin-top: .28rem;
        font-size: .28rem;
        line-height: .56rem;
    }
    .moduleTitleLineBox {
        justify-content: center;
        margin-top: .28rem;
    }
    .moduleTitleLine {
        display: block;
        width: .88rem;
        height: .08rem;
    }
    .pointIcon {
        width: .12rem;
        height: .12rem;
        margin: 0 .28rem;
    }
    .arrow_icon {
        padding-right: 0.38rem;
        background: url(img/arrow_icon.png) right center no-repeat;
        background-size: 0.24rem;
    }
    .closeIcon {
        top: .4rem;
        right: .4rem;
        width: 0.48rem;
        height: 0.48rem;
        background-size: cover;
        margin-right: 0;
        transform: none;
    }
    .closeDialog{
        width: .6rem;
        height: .6rem;
    }
    /* 视频 */
    .videoDialogBox {
        width: 6.75rem;
        height: 3.8rem;
    }
    .closeVideoWin {
        top: -.8rem;
        right: -0.24rem;
    }
}