body {
    padding: 0;
    margin: 0;
    /* min-width: 1182px; */
}

.header {
    width: 100%;
    height: 315px;
    padding: 45px calc((100% - 1400px)/2);
    box-sizing: border-box;
    background: url('./top-bg.png') no-repeat center;
    background-size: 100% 100%;
}

.header img {
    width: 536px;
    height: 75px;
}

.firstMenu {
    width: 100%;
    height: 62px;
    line-height: 62px;
    padding: 0 calc((100% - 1400px)/2);
    background: #5B7995;
}

.firstMenu .listTab {
    display: flex;
    justify-content: space-between;
}

.firstMenu .listTab .firstUl-li {
    flex: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
}

.firstMenu .listTab li a {
    font-family: Source Han Sans CN;
    font-weight: 500;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 62px;
}

.firstMenu .subListTab {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: absolute;
    top: 65px;
    left: 0;
    background: #5B7995;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(-10px);
    z-index: 100;
    list-style: none;
}

.local a, .local span {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #5B7995;
    line-height: 62px;
}

.listTab li:hover .normal {
    font-size: 30px;
    font-weight: bold;
}

.firstMenu .subListTab li {
    height: 63px;
    cursor: pointer;
    text-align: center;
    padding: 8px 0;
    margin: 0 8px;
    border-bottom: 1px solid #F4FAFF;
}

.firstMenu .subListTab li a {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 47px;
}

.firstMenu .subListTab li:last-child {
    border-bottom: none
}

.firstMenu .listTab .active {
    font-size: 30px;
    font-weight: bold;

}

/* 鼠标悬停时显示下拉菜单 */
.listTab .firstUl-li:hover .subListTab {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.content {
    width: 100%;
    padding: 1px calc((100% - 1400px)/2) 40px;
    box-sizing: border-box;
    background: #FFF;
}


.home-foot {
    width: 100%;
    height: 146px;
    background: #DBE2E8;
    box-sizing: border-box;
    padding: 18px calc((100% - 1400px)/2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-foot span, .home-foot a, .home-foot p {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    margin-right: 15px;
}

.orCode {
    width: 109px;
    height: 109px;
}

/* 分页 */

.pages {
    display: flex;
    justify-content: right;
    margin: 100px 0 20px;
}

.pages ul {
    display: flex;
    flex-wrap: wrap;
}

.pages ul .disabled {
    display: none;
}

.pages ul li {
    margin: 4px;
}

.pages ul li a {
    display: block;
    padding: 5px 15px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    color: #5B7995;
}

.pages1 a {
    margin: 0;
}

.pages ul li .active {
    background: #5B7995;
    color: #fff;

}



@media screen and (max-width: 768px) {
    .header img {
        width: 5.36rem;
        height: .75rem;
    }

    .firstMenu .listTab li a {
        font-size: .22rem;
    }

    .firstMenu .subListTab li a {
        font-size: .18rem;
    }

    .firstMenu .subListTab {
        width: 1.5rem;
        left: -.4rem;
    }

    .firstMenu .listTab .active {
        font-size: .26rem;
    }

    .listTab li:hover .normal {
        font-size: .24rem;
    }
}