@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
    font-family: Arial, "Microsoft Yahei", "PingFang SC", "Source Han Sans";
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* ============================= 网页宽度 开始 ============================= */
.header_width {
    width: 92%;
    max-width: 16.80rem;
    margin: 0px auto;
}

.width1660 {
    max-width: 100%;
    margin: 0px auto;
}

.publicWidth {
    width: 92%;
    max-width: 13.80rem;
    margin: 0px auto;
}

body {
    padding-top: 0.85rem;
}

@media (max-width: 800px) {
    body {
        padding-top: 55px;
    }

    .width1660 {
        max-width: 100%;
        min-width: 100%;
    }

    .publicWidth {
        width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }
}

/* ============================= 网页宽度 结束 ============================= */

/* 富文本 */
.richText {
    overflow: hidden;
}

.richText img {
    max-width: 100%;
}

/* ========== 限制文本行数 开始 ========== */
/* 文字一行，多余省略号 */
.clamp1 {
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

/* 文字多行，多余省略号 */
.clamp2,
.clamp3,
.clamp4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.clamp2 {
    -webkit-line-clamp: 2;
}

.clamp3 {
    -webkit-line-clamp: 3;
}

.clamp4 {
    -webkit-line-clamp: 4;
}

/* ========== 限制文本行数 结束 ========== */


a {
    color: inherit;
}



/* ============================= 头部 开始 ============================= */
/* =========== pc端头部 开始 =========== */
header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 9990;
    background: #fff;
    box-shadow: 0rem 0.06rem 0.2rem rgba(16, 59, 138, 0.07);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 左侧 logo */
.header .logo a {
    display: flex;
    align-items: center;
    color: #2A466B;
    font-weight: bold;
}

.header .logo img {
    display: block;
    height: 0.8rem;
    width: auto;
    margin-right: 0.16rem;
}

/* 右侧一级菜单 */
.headerUl {
    display: flex;
    color: #333333;
    align-items: center;
    text-transform: uppercase;
}

.headerList {
    color: #333;
    line-height: 0.85rem;
    position: relative;
}

.headerList::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 0.04rem;
    border-radius: 1rem;
    background: #2A466B;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.headerList>a {
    color: #333;
    padding: 0rem 0.20rem;
}

.headerList:hover>a {
    color: #2A466B;
}

.headerList:hover::after,
.headerList.active::after {
    width: 0.3rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.headerList.active>a {
    color: #2A466B;
}

/* 下拉菜单 */
.dropDown {
    position: absolute;
    top: 1.30rem;
    left: -99999rem;
    min-width: 2.20rem;
    height: auto;
    padding-top: 0.16rem;
    text-align: center;
    opacity: 0;
    -webkit-transition: top 0.5s, opacity 0.5s;
    -moz-transition: top 0.5s, opacity 0.5s;
    -o-transition: top 0.5s, opacity 0.5s;
    transition: top 0.5s, opacity 0.5s;
}

.dropDown ol {
    position: relative;
    background: #fff;
    box-shadow: 0rem 0rem 0.20rem rgba(16, 59, 138, 0.12);
}

.dropDown ol::before {
    content: "";
    display: block;
    position: absolute;
    top: -0.08rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.08rem;
    background: url(../images/headerTriangle.png)no-repeat center center;
    background-size: 0.14rem 100%;
}

.dropDown a {
    line-height: 0.50rem;
    color: #333;
}

.dropDown li:hover {
    background: rgb(249, 252, 252);
}

.dropDown li:hover a {
    color: #2A466B;
}

.headerList:hover .dropDown {
    top: 0.85rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    -webkit-transition: top 0.5s, opacity 0.5s;
    -moz-transition: top 0.5s, opacity 0.5s;
    -o-transition: top 0.5s, opacity 0.5s;
    transition: top 0.5s, opacity 0.5s;
}

@media (max-width: 800px) {
    .header {
        display: none;
    }
}

/* =========== pc端头部 结束 =========== */


/* =========== 移动端头部 开始 =========== */
.mobleHeader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
    background: #fff;
    box-shadow: 0rem 0.08rem 0.40rem rgba(0, 0, 0, 0.04);
    z-index: 9991;
}

.mobleHeader>div {
    width: 100%;
    height: 55px;
    line-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobleHeader a {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #2A466B;
}

.mobleHeader img {
    height: 55px;
    width: auto;
    margin-right: 10px;
}

/* 按钮 */
.mobleMenu_button {
    width: 55px;
    line-height: 55px;
    text-align: right;
}

.mobleMenu_button span {
    display: inline-block;
    width: 14px;
    height: 2px;
    background: #2A466B;
    margin-bottom: 4px;
    position: relative;
}

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #2A466B;
    position: absolute;
    right: 0px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button span:before {
    top: 9px;
}

.mobleMenu_button span:after {
    top: -9px;
}

.mobleMenu_button.on span {
    background: rgba(51, 51, 51, 0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.mobleMenu_button.on span::before,
.mobleMenu_button.on span::after {
    top: 0px;
    width: 22px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

.mobleMenu_button.on span::before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.mobleMenu_button.on span::after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

/* 下拉菜单 */
.mobleHeaderMenu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: 55px;
    z-index: 9990;
    background: #fff;
}

.mobleHeaderMenu ul {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.mobleHeaderMenu ul>li {
    margin-left: 4%;
    margin-right: 4%;
    position: relative;
    border-bottom: 1px solid #EDF0F4;
}

.mobleHeaderMenu a {
    display: block;
    font-size: 0.26rem;
    line-height: 55px;
    color: #333;
    margin-right: 55px;
    text-transform: uppercase;
}

.mobleHeaderMenu span {
    position: absolute;
    top: 0px;
    right: 0px;
    display: block;
    width: 55px;
    height: 55px;
    background: url(../images/headerTriangle2.png)no-repeat center right;
    background-size: 24px 24px;
}

/* 二级栏目 */
.mobleDropdown {
    display: none;
    background: #FAFBFC;
}

.mobleDropdown li {
    padding-left: 4%;
}

.mobleDropdown li>a {
    color: #333;
}

.mhMenuList {
    padding-left: 16px;
}

.mhMenuList a {
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 40px;
    color: #666;
}

.mhMenuList img {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

@media (min-width: 801px) {
    .mobleHeaderMenu {
        display: none !important;
    }

    .mobleHeader {
        display: none !important;
    }
}

/* =========== 移动端头部 结束 =========== */
/* ============================= 头部 结束 ============================= */





/* ============================= 底部 开始 ============================= */
/* 返回顶部 */
.backTop {
    position: fixed;
    right: 0.3rem;
    bottom: 0.6rem;
    display: none;
    width: 0.6rem;
    height: 0.6rem;
    background: url(../images/backTop.png)no-repeat center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 50%;
    border: 1px solid #fff;
    z-index: 200;
}

/* 底部 */
footer {
    width: 100%;
    background: #28456F;
}

.footer {
    padding-top: 0.55rem;
    padding-bottom: 0.35rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer1 {
    width: 0.86rem;
    height: auto;
}

.footer1 img {
    display: block;
    width: 100%;
    height: auto;
}

.footer2 {
    max-width: 4rem;
}

.footer2>p,
.footer3>p {
    font-weight: bold;
    margin-bottom: 0.2rem;
}

.footer2 ul,
.footer3 ul {
    display: flex;
    flex-wrap: wrap;
}

.footer2 li {
    width: 45%;
    margin-bottom: 6px;
}

.footer2 li:nth-child(even) {
    width: 55%;
}

.footer3 a {
    color: #fff;
}

.footer3 ul {
    max-width: 3rem;
    justify-content: space-between;
}

.footer3 li {
    width: 30%;
    margin-bottom: 6px;
}

.footer4 {
    text-align: center;
    width: 1.3rem;
    height: auto;
}

.footer4 img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.copyright {
    border-top: 1px solid #FFFFFF;
    padding: 0.18rem 0rem 0.14rem 0rem;
    text-align: center;
    color: #fff;
}

.copyright a {
    display: inline-block;
    color: #fff;
}

@media (max-width: 800px) {
    .backTop {
        display: none !important;
        opacity: 0 !important;
    }

    .footer {
        flex-wrap: wrap;
    }

    .footer>div {
        width: 100%;
        margin: 0px auto;
    }

    .footer1 img {
        width: 20%;
        margin-bottom: 10px;
    }

    .footer2 {
        max-width: unset;
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 1px solid #ffffff25;
    }

    .footer2 li,
    .footer2 li:nth-child(even) {
        width: 100%;
    }

    .footer3 {
        padding-top: 20px;
        padding-bottom: 5px;
        margin-bottom: 25px;
        border-bottom: 1px solid #ffffff25;
    }

    .footer3 p {
        display: none;
    }

    .footer3 ul {
        max-width: unset;
        justify-content: space-between;
    }

    .footer3 li {
        width: 33.3%;
        text-align: center;
        margin-bottom: 15px;
    }

    .footer4 {
        max-width: 2.5rem;
        margin: 0px auto;
        padding-top: 20px;
    }
}

/* ============================= 底部 结束 ============================= */





/* ============================= 公共样式 开始 ============================= */
/* ========== 公共分页 开始 ========== */
.pubPageBox {
    text-align: center;
}

.pubPageBox li {
    display: inline-block;
    line-height: 0.38rem;
    width: 0.38rem;
    background: #b1b1b124;
    border-radius: 0.04rem;
    margin-right: 0.04rem;
    text-align: center;
    position: relative;
}

.pubPage2 .pubPageBox li {
    background: #fff;
}

.pubPageBox a {
    display: block;
    color: #333;
}

.pubPageBox li.next,
.pubPageBox li.prev {
    width: 0.9rem;
}

.pubPageBox li.next a,
.pubPageBox li.prev a {
    color: #666;
}

.pubPageBox li.prev:hover {
    background: #264470;
    color: #fff;
}

.pubPageBox li:last-child {
    margin-right: 0px;
}

.pubPageBox li.active {
    background: #264470;
}

.pubPageBox li.active a {
    color: #fff;
}

.pubPageBox li:hover {
    background: #264470;
}

.pubPageBox li:hover a {
    color: #fff;
}


/* 移动端分页 */
.mPageBox ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mPageBox li {
    width: 48%;
    border-radius: 0.04rem;
    background: #b1b1b124;
    color: #666;
}

.pubPage2 .mPageBox li {
    background: #fff;
}

.mPageBox a {
    display: block;
    line-height: 0.8rem;
    text-align: center;
}

.mPageBox {
    display: none;
}

@media (max-width: 800px) {
    .pubPageBox {
        display: none;
    }

    .mPageBox {
        display: block;
    }
}

/* ========== 公共分页 结束 ========== */



/* 首页 公共标题 */
.pubIndexTitle {
    text-align: center;
    color: #000;
    margin-bottom: 0.5rem;
}

.pubIndexTitle h2 {
    font-weight: bolder;
    position: relative;
    padding-bottom: 0.2rem;
    margin-bottom: 0.14rem;
}

.pubIndexTitle h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 2px;
    background: #2A466B;
}


/* 内页 公共banner */
.pubPageBanner {
    position: relative;
}

.pubPageBanner .txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #2A466B;
}

.pubPageBanner2 .txt {
    color: #fff;
}

.pubPageBanner h2 {
    position: relative;
    padding-bottom: 0.3rem;
    margin-bottom: 0.25rem;
    font-weight: bolder;
}

.pubPageBanner h2::before {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 2.7rem;
    height: 1px;
    background: #28456F;
}

.pubPageBanner h2::after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 0rem;
    width: 1.1rem;
    height: 0.05rem;
    background: #28456F;
}

.pubPageBanner2 h2::before,
.pubPageBanner2 h2::after {
    background: #fff;
}

.pubPageBanner p {
    font-weight: bolder;
}

.pubPageBanner .mbanner {
    display: none;
}

.pubPageBanner .banner {
    display: block;
    width: 100%;
    height: 5rem;
}

@media (max-width: 800px) {
    .pubPageBanner .banner {
        display: none;
    }

    .pubPageBanner .mbanner {
        display: block;
        width: 100%;
        height: auto;
    }
}



/* 面包屑导航 */
.crumbs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    position: relative;
    z-index: 3;
}

.crumbsL {
    display: flex;
    align-items: center;
    padding-left: 0.3rem;
    background: url(../images/crumbs.png)no-repeat left top 0.15rem;
    background-size: 0.18rem 0.18rem;
}

.crumbsL li {
    line-height: 0.5rem;
    padding-right: 0.2rem;
    margin-right: 0.08rem;
    background: url(../images/crumbsTriangle.png)no-repeat center right;
    background-size: 0.1rem 0.08rem;
}

.crumbsL li:last-child {
    color: #333;
    background: none;
}

.crumbsR {
    display: flex;
    align-items: center;
}

.crumbsR li {
    line-height: 0.5rem;
    margin-left: 0.35rem;
    position: relative;
}

.crumbsR li::after {
    content: "";
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0rem;
    height: 0.03rem;
    background: #28456F;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.crumbsR li.on::after,
.crumbsR li:hover::after {
    width: 0.2rem;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.crumbsR li.on {
    color: #28456F;
    font-weight: bolder;
}

@media (max-width: 800px) {
    .crumbs .crumbsL {
        display: none;
    }

    .crumbsR li {
        line-height: 1rem;
        margin: 0rem 0.4rem 0rem 0rem;
    }

    .crumbsR li.on::after,
    .crumbsR li:hover::after {
        width: 0.3rem;
        height: 0.05rem;
    }
}

/* ============================= 公共样式 结束 ============================= */