@charset "utf-8";

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

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

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

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

body {
    padding-top: 90px;
}

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

@media (max-width: 767px) {
    .mobilePublic_top {
        background: rgb(255, 255, 255);
        height: 55px;
        line-height: 55px;
        position: fixed;
        z-index: 999999;
        left: 0px;
        top: 0px;
        padding-left: 4%;
    }

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

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

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


/* 富文本 */
.richText {
    overflow: hidden;
    padding-bottom: 80px;
    border-bottom: 1px solid #EDF0F4;
}

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

/* 移动端 */
@media (max-width: 1280px) {
    .richText {
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .richText {
        padding-bottom: 40px;
    }
}


/* 背景色 */
.pubbg {
    background: #FAFAFA;
}


/* ========== 限制文本行数 开始 ========== */
/* 文字一行，多余省略号 */
.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;
}

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



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

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

.logo img {
    width: auto;
    height: 60px;
}

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

.headerList {
    color: #333;
    line-height: 90px;
    position: relative;
}

.headerList::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 4px;
    background: #227764;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.headerList>a {
    color: #333;
    padding: 0px 18px;
}

.headerList:hover>a {
    color: #227764;
}

.headerList:hover::after {
    width: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.headerList.active::after {
    width: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.headerList.active>a {
    color: #227764;
}


/* 下拉菜单 */
.dropDown {
    position: absolute;
    top: 120px;
    left: -99999px;
    min-width: 220px;
    height: auto;
    padding-top: 16px;
    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: 0px 0px 20px rgba(16, 59, 138, 0.12);
}

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

.dropDown a {
    line-height: 50px;
    color: #333;
}

.dropDown li:hover {
    background: #f5f9f9;
}

.dropDown li:hover a {
    color: #227764;
}

.headerList:hover .dropDown {
    top: 90px;
    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: 1440px) {
    .logo img {
        height: 46px;
        width: auto;
    }

    .headerList>a {
        padding: 0px 16px;
        font-size: 16px;
    }

    .indexHeader .logo img {
        width: auto;
        height: 60px;
    }

    .indexHeader .headerList>a {
        padding: 0px 18px;
        font-size: 18px;
    }
}

@media (max-width: 1280px) {
    .logo img {
        width: 200px;
        height: auto;
    }

    .headerList>a {
        padding: 0px 10px;
        font-size: 14px;
    }

    .indexHeader .logo img {
        width: auto;
        height: 60px;
    }

    .indexHeader .headerList>a {
        padding: 0px 18px;
        font-size: 18px;
    }
}

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

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

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


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

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

.mobleHeader a {
    display: block;
}

.mobleHeader img {
    height: 34px;
    width: auto;
}

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

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

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #227764;
    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: 60px;
    z-index: 9997;
    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: 14px;
    line-height: 55px;
    color: #333;
    text-transform: uppercase;
    margin-right: 55px;
}

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

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

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

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

.mhMenuList {
    padding-left: 18px;
}

.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: 993px) {
    .mobleHeaderMenu {
        display: none !important;
    }

    .mobleHeader {
        display: none;
    }
}

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





/* ============================= 底部 开始 ============================= */
/* =========== pc端底部 开始 =========== */
/* 返回顶部 */
.backTop {
    position: fixed;
    right: 60px;
    bottom: 60px;
    display: none;
    width: 60px;
    height: 60px;
    background: url(../images/backTop.png)no-repeat center center;
    background-size: cover;
    cursor: pointer;
    z-index: 200;
}

@media (max-width: 1440px) {
    .backTop {
        right: 30px;
        bottom: 40px;
        width: 50px;
        height: 50px;
    }
}

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



footer {
    color: #fff;
    background: url(../images/footerMap.png)no-repeat top right, #227764;
    background-size: auto 100%;
}

.footer {
    padding-top: 55px;
    padding-bottom: 65px;
    display: flex;
    justify-content: space-between;
}

/* 左 */
.footer1 img {
    width: 150px;
    height: auto;
}

/* 地址 */
.footer2 h3,
.footer3 h3 {
    margin-bottom: 16px;
}

.footer2 li {
    display: flex;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer2 li p:first-of-type {
    flex-shrink: 0;
}

.footer2 li:hover,
.footer3 li:hover {
    opacity: 1;
}

/* 导航 */
.footer3 ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 380px;
}

.footer3 li {
    margin-right: 50px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer3 li:nth-child(4n) {
    margin-right: 0px;
}

.footer3 a {
    display: block;
    color: #fff;
}

/* 右侧 */
.footer4 {
    text-align: center;
}

.footer4 img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0px auto 12px auto;
}


/* 备案信息 */
.copyright {
    display: flex;
    justify-content: space-between;
    padding: 28px 0px 18px 0px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright1 a {
    display: block;
    color: #fff;
}

/* 集团链接 */
.link {
    padding: 0px 22px;
    cursor: pointer;
    position: relative;
}

.link::before,
.link::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.link::before {
    left: 0px;
    width: 16px;
    height: 16px;
    background: url(../images/link.png)no-repeat center center;
    background-size: 100% 100%;
}

.link::after {
    right: 0px;
    width: 14px;
    height: 14px;
    background: url(../images/jt2.png)no-repeat center center;
    background-size: 100% 100%;
}

.link>p {
    color: #fff;
}

.linkDropDown {
    width: 180px;
    position: absolute;
    bottom: 99%;
    right: 999999px;
    height: auto;
    color: #333;
    padding-bottom: 16px;
    text-align: center;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    padding-bottom: 20px;
}

.linkDropDown ul {
    position: relative;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(16, 59, 138, 0.12);
}

.linkDropDown li {
    border-bottom: 1px solid #EDF0F4;
}

.linkDropDown li:last-child {
    border-bottom: 0px;
}

.linkDropDown a {
    color: #666;
    padding: 16px 12px;
}

.linkDropDown li:hover {
    background: #f5f9f9;
}

.linkDropDown li:hover a {
    color: #227764;
}

.link:hover .linkDropDown {
    right: 0px;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

/* 适配 */

@media (max-width: 1440px) {
    .footer3 ul {
        max-width: 350px;
    }

    .footer3 li {
        margin-right: 40px;
    }
}

@media (max-width: 1280px) {
    .footer1 img {
        width: 120px;
    }

    .footer4 img {
        width: 80px;
        height: 80px;
    }

    .footer3 ul {
        max-width: 280px;
    }

    .footer3 li {
        margin-right: 28px;
    }

    .footer {
        padding-bottom: 45px;
    }

    .link::before {
        width: 14px;
        height: 14px;
    }
}

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


/* =========== 移动端底部 开始 =========== */
@media (max-width: 992px) {
    footer {
        background: #227764;
    }

    .footer {
        flex-direction: column;
        justify-content: unset;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .footer1,
    .footer2,
    .footer3 {
        padding-bottom: 16px;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .footer3 ul {
        max-width: unset;
    }

    .footer3 li,
    .footer3 li:nth-child(4n) {
        margin-right: 24px;
    }
}

@media (max-width: 767px) {
    .footer {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .copyright {
        padding: 20px 4%;
        align-items: flex-start;
    }

    .copyright1 {
        max-width: 60%;
    }
}

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





/* ============================= 公共样式 开始 ============================= */

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

.pageBox li {
    display: inline-block;
    line-height: 46px;
    width: 46px;
    background: #fff;
    margin-right: 8px;
    text-align: center;
}

.grayBg li {
    background: #F8F7F7;
}

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

.pageBox li.first,
.pageBox li.last {
    width: 60px;
}

.pageBox li.next,
.pageBox li.prev {
    width: 100px;
}

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

.pageBox li.active {
    background: #227764;
}

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

.pageBox li:hover {
    background: #227764;
}

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

@media (max-width: 1280px) {
    .pageBox a {
        font-size: 14px;
    }

    .pageBox li {
        width: 40px;
        line-height: 40px;
        margin-right: 4px;
    }

    .pageBox li.next,
    .pageBox li.prev {
        width: 80px;
    }
}

@media (max-width: 992px) {
    .pageBox li {
        width: 40px;
        line-height: 40px;
    }

    .pageBox li:first-child,
    .pageBox li:last-child {
        width: 80px;
    }
}

@media (max-width: 767px) {
    .pageBox a {
        font-size: 12px;
    }

    .pageBox li {
        width: 36px;
        line-height: 36px;
        margin-right: 4px;
    }

    .pageBox li:first-child,
    .pageBox li:last-child {
        width: auto;
        padding: 0px 12px;
    }
}

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

.mPageBox li {
    width: 48%;
    background: #fff;
    border-radius: 4px;
}

.mPageBox a {
    display: block;
    line-height: 40px;
    text-align: center;
    color: #666;
}

.grayBg .mPageBox li {
    background: #F8F7F7;
}

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





/* 显示隐藏 */
@media (max-width: 992px) {
    .hidden-xs {
        display: none !important;
    }

    .visible-xs {
        display: block !important;
    }
}




/* 首页公共标题 */
.pubIndexTitle {
    text-align: center;
}

.pubIndexTitle h2 {
    font-weight: bolder;
    color: #333;
    margin-bottom: 20px;
}

.pubIndexTitle p {
    color: #999;
}

@media (max-width: 1440px) {
    .pubIndexTitle h2 {
        font-size: 32px;
    }

    .pubIndexTitle p {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .pubIndexTitle h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .pubIndexTitle p {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .pubIndexTitle h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }
}




/* 内页 banner */
.pageBanner {
    position: relative;
}

.pageBanner img {
    width: 100%;
    height: auto;
}

.pageBanner>div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.pageBanner h2 {
    padding-bottom: 32px;
    margin-bottom: 28px;
    position: relative;
    font-weight: bolder;
}

.pageBanner h2::before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    display: block;
    width: 280px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.pageBanner h2::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    display: block;
    width: 75px;
    height: 3px;
    background: #fff;
}

.pageBanner p {
    text-transform: uppercase;
    font-weight: bold;
}

/* 黑色文字 */
.blackBanner h2 {
    color: #333;
}

.blackBanner h2::before {
    background: rgba(0, 0, 0, 0.15);
}

.blackBanner h2::after {
    background: #086B5A;
}

.blackBanner p {
    color: #000;
    opacity: 0.15;
}

/* 适配 */
@media (max-width: 1280px) {
    .pageBanner h2 {
        font-size: 40px;
        padding-bottom: 28px;
        margin-bottom: 20px;
    }

    .pageBanner p {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .pageBanner h2 {
        font-size: 36px;
        padding-bottom: 26px;
        margin-bottom: 20px;
    }

    .pageBanner p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .pageBanner h2 {
        font-size: 20px;
        padding-bottom: 18px;
        margin-bottom: 12px;
    }

    .pageBanner p {
        font-size: 14px;
    }

    .pageBanner h2::before {
        width: 140px;
    }

    .pageBanner h2::after {
        width: 35px;
    }
}




/* 关于我们 面包屑导航 */
.aboutCrumbs {
    width: 100%;
    background: #fff;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.06);
}

.aboutCrumbs ul {
    display: flex;
    justify-content: center;
}

.aboutCrumbs li {
    margin-right: 120px;
    position: relative;
}

.aboutCrumbs li::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0px;
    height: 1px;
    background: #227764;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutCrumbs li:hover::after {
    width: 60px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

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

.aboutCrumbs a {
    display: block;
    line-height: 76px;
    color: #666666;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutCrumbs li:hover a {
    color: #227764;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutCrumbs li.active::after {
    width: 60px;
}

.aboutCrumbs li.active a {
    color: #227764;
}

/* 适配 */
@media (max-width: 1280px) {
    .aboutCrumbs a {
        line-height: 58px;
    }
}

@media (max-width: 992px) {
    .aboutCrumbs li {
        margin-right: 0px;
        flex-grow: 1;
        text-align: center;
    }
}




/* 内页 标题 */
.pageTitle h3 {
    color: #333;
    padding-bottom: 16px;
    position: relative;
    text-align: center;
}

.pageTitle h3::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 40px;
    height: 2px;
    background: #227764;
}




/* 灰色背景 */
.pubBg {
    background: #F8F7F7;
}




/* 当前位置 */
.pubLocation ul {
    display: flex;
}

.pubLocation li {
    padding-right: 24px;
    margin-right: 14px;
    position: relative;
}

.pubLocation li::after {
    content: ">";
    position: absolute;
    right: 0px;
    top: 0px;
    color: #666;
    line-height: 76px;
}

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

.pubLocation li:last-child::after {
    display: none;
}

.pubLocation a {
    display: block;
    color: #666;
    line-height: 76px;
}

.pubLocation a:hover {
    color: #227764;
}

@media (max-width: 992px) {
    .pubLocation {
        display: none;
    }
}

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