: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", 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;
    -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;
}
.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: 980px;
    height: auto;
    background-color: transparent;
}
.closeVideoWin{
    top: -40px;
    right: -40px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
}
.winVideo {
    width: 100%;
    height: auto;
}

/* **** 公共导航 **** */
.nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    background-color: rgba(67, 38, 255, .3);
    z-index: 1000;
}
.nav > .container {
    width: 92%;
    padding: 26px 0;
    box-sizing: border-box;
}
.navLogoImg {
    width: 322px; 
}

.menus {
    font-size: 20px;
}
.menu {
    position: relative;
    width: 160px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.menu.menuBg_1.active{
    color: #221380;
    background: url(img/menuBg_1_active.png) center center no-repeat;
}
.menu.menuBg_1{
    background: url(img/menuBg_1.png) center center no-repeat;
}

.menu:not(:last-child) {
    margin-right: 16px;
}
.menu.active {
    background-color: var(--themeColor);
}

/* 模块 */

.module{
    width: 100%;
    height: 1000px;
    padding: 68px 0;
    box-sizing: border-box;
}
.contentBox{
    width: 1200px;
    margin:0 auto;
}
.moduleTitleBox{
    font-size: 0px;
    text-align: center;
}
.moduleTitle,.moduleTitleEn{
    color: #fff;
    font-weight: bold;
}
.moduleTitle{
    position: relative;
    display: inline-block;
    font-size: 58px;
    line-height: 100px;
}
.moduleTitleCn,.moduleTitleEn{
    position: relative;
    z-index: 10;
}
.moduleTitleEn{
    font-size: 32px;
    letter-spacing: 2px;
}
.arrow_icon{
    padding-right: 20px;
    box-sizing: border-box;
    background: url(img/arrow_icon.png) right center no-repeat;
    background-size: 16px;
}
.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%;
        padding: 0.22rem .24rem;
        box-sizing: border-box;
    }
    .navLogoLink{
        margin: 0 auto;
    }
    .navLogoImg {
        width: 2.14rem;
        margin: 0 auto;
    }
    .menus {
        display: flex;
        display: -webkit-flex;
        justify-content: space-between;
        width: calc(100% - 2.8rem);
        margin-top: .16rem;
        font-size: .32rem;
    }
    .menus.clear::after{
        display: none;
    }
    .menu {
        float: none;
        width: auto;
        height: 0.32rem;
        line-height: .32rem;
    }
    .menu:not(:last-child) {
        margin-right: 0;
    }
    .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;
    }
    .moduleTitle {
        font-size: .58rem;
        line-height: 1rem;
    }
    .moduleTitleEn {
        font-size: .32rem;
        letter-spacing: .03rem;
    }
    .arrow_icon {
        padding-right: 0.38rem;
        background: url(img/arrow_icon.png) right center no-repeat;
        background-size: 0.28rem;
    }
    .contentInFo,.articleBox{
        font-size: 0;
    }

    /* 视频 */
    .videoDialogBox {
        width: 90%;
    }
    .closeVideoWin {
        top: -1rem;
        right: -0.24rem;
    }
}