: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 {
    /* height: 100%; */
    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;
}
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;
}

/* **** 公共导航 **** */
.nav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.nav > .container {
    width: 90%;
}
.navLogo {
    margin-top: 20px;
    font-size: 0px;
}
.navLogoLink, .navLogoInfo {
    display: inline-block;
    vertical-align: middle;
}
.navLogoImg {
    width: 90px;
    height: auto;    
}
.navLogoInfo {
    margin-left: 15px;
}
.navLogoCaption {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: normal;
    line-height: 20px;
}
.navLogoCaptionLink {
    color: #ffffff;
}
.navLogoDesc {
    font-size: 12px;
    line-height: 12px;
    color: #ffffff;
}
.menus {
    margin-top: 20px;
    font-size: 16px;
}
.menu {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #ffffff;
    color: #000038;
    cursor: pointer;
}
.menu:not(:last-child) {
    margin-right: 15px;
}
.menu.active {
    background-color: var(--themeColor);
}

/* **** 公共指示器 **** */
.indicator {
    position: fixed;
    bottom: 80px;
    right: 80px;
    z-index: 900;
}
.indicatorBar {
    width: 4px;
    margin-bottom: 50px;
}
.indicatorItem {
    width: 4px;
    height: 60px;
    margin-bottom: 28px;
    background-color: #ffffff;
}
.indicatorItem:last-child {
    margin-bottom: 0px;
}
.indicatorItem.active {
    background-color: var(--themeColor);
}
.indicatorIndexBox {
    /* position: absolute;
    bottom: 80px;
    right: 80px; */
    font-size: 28px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.2);
}

/* **** 公共section样式 **** */
.section {
    position: relative;
    /* height: 1000px; */
    padding: 160px 0px 65px;
}
.downArrow {
    position: absolute;
    left: 50%;
    bottom: 65px;
    transform: translateX(-50%);
}

/* **** 公共卡片样式 **** */
.card {
    position: relative;
    margin-bottom: 28px;
    padding: 30px 25px 25px 10px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    background-image: url(img/blueDot.png);
    background-position: left 10px top;
    background-repeat: repeat-y;
    overflow: hidden;
}
/* .card::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    filter: blur(2px);
    z-index: -1;
} */
.cardBox {
    padding-left: 35px;
    /* background: url(img/blueDot.png) transparent top left 10px repeat-y; */
}
.gridTitleBox {
    margin-bottom: 24px;
}
.gridTitleText {
    width: 48px;
    height: 48px;
    margin-right: 12px;
    font-size: 38px;
    font-weight: bold;
    line-height: 48px;
    text-align: center;
    background: url(img/girdBg.png)  center center no-repeat;
    color: #ffffff;
}
.gridTitleText:last-child {
    margin-right: 0px;
}
.cardCaption {
    height: 20px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    text-indent: -4px;
    border-left: 8px solid var(--themeColor);
}
.cardDesc {
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    color: #ffffff;
}
.cardDivideLine {
    height: 1px;
    margin: 25px 0px;
    background-color: #ffffff;
    opacity: 0.2;
}
.relatedArticleLink {
    position: relative;
    margin-bottom: 16px;
    padding-left: 25px;
    font-size: 14px;
    color: #ffffff;
}
.relatedArticleLink:last-child {
    margin-bottom: 0px;
}
.relatedArticleLink::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 12px;
    height: 12px;
    left: 0px;
    top: 3px;
    border: 2px solid var(--themeColor);
    border-radius: 100%;
}
.relatedArticleLink:hover {
    color: var(--themeColor);
}

@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: 1rem;
    }
    .nav > .container {
        width: 100%;
    }
    .navLogo {
        display: flex;
        width: 1.78rem;
        height: 1rem;
        justify-content: center;
        align-items: center;
        margin: 0px;
        background-color: #1044B9;
    }
    .navLogoImg {
        width: 1.3rem;
    }
    .menus {
        display: flex;
        width: calc(100% - 1.78rem);
        margin: 0px;
        font-size: 0.28rem;
    }
    .menu {
        height: 1rem;
        margin-right: 0px !important;
        line-height: 1rem;
        border-right: 1px solid rgba(0, 0, 0, 0.2);
        background-color: transparent;
        color: #ffffff;
    }
    .menu:last-child {
        border-right: 0px;
    }

    /* **** 公共section样式 **** */
    .section {
        padding: 1rem 0px 1.3rem;
    }
    .downArrow {
        bottom: 0.6rem;
    }

    /* **** 公共卡片样式 **** */
    .card {
        margin-bottom: 0.3rem;
        padding: 0.3rem 0.25rem 0.3rem 0.2rem;
        background-position: left 0.2rem top;
    }
    .cardBox {
        padding-left: 0.4rem;
    }
    .gridTitleBox {
        margin-bottom: 0.36rem;
    }
    .gridTitleText {
        width: 0.7rem;
        height: 0.7rem;
        margin-right: 0.2rem;
        font-size: 0.52rem;
        font-weight: normal;
        line-height: 0.7rem;
        background-size: cover;
    }
    .gridTitleText:last-child {
        margin-right: 0px;
    }
    .cardCaption {
        height: 0.4rem;
        margin-bottom: 0.3rem;
        font-size: 0.28rem;
        font-weight: bold;
        line-height: 0.4rem;
    }
    .cardDesc {
        font-size: 0.28rem;
        line-height: 0.56rem;
    }
    .cardDivideLine {
        margin: 0.3rem 0px;
    }
    .relatedArticleLink {
        margin-bottom: 0.3rem;
        padding-left: 0.4rem;
        font-size: 0.28rem;
    }
    .relatedArticleLink::before {
        width: 0.2rem;
        height: 0.2rem;
        top: 0.08rem;
    }
}