@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 {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
}

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

body {
    padding-top: 100px;
}

@media (max-width: 1280px) {
    .width1200 {
        width: 92%;
    }
}

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


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

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

@media (max-width: 767px) {
    .richText img {
        height: auto !important;
    }
}


/* 背景色 */
.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: 9990;
    background: #fff;
    box-shadow: 0px 12px 30px rgba(9, 84, 98, 0.06);
}

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

/* 左侧 logo */
.headerL {
    display: flex;
    align-items: center;
    color: #555555;
}

.headerL h1 {
    margin-right: 16px;
}

.headerL img {
    display: block;
    height: 100px;
    width: auto;
}

.headerLogoTxt p:first-child {
    margin-bottom: 4px;
    font-weight: bold;
}

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

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

.headerList::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0px;
    height: 4px;
    border-radius: 100px;
    background: #32A3C6;
    -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 30px;
}

.headerList:hover>a {
    color: #32A3C6;
}

.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: #32A3C6;
}

.headerLogoTxt{
    max-width:210px;
}

/* 下拉菜单 */
.dropDown {
    position: absolute;
    top: 130px;
    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/triangle1.png)no-repeat center center;
    background-size: 14px 100%;
}

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

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

.dropDown li:hover a {
    color: #32A3C6;
}

.headerList:hover .dropDown {
    top: 99px;
    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;
}

.language {
    color: #32A3C6;
}

.language::after {
    display: none !important;
}

.language::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0px;
    height: 19px;
    border: 1px solid #C4C4C4;
    opacity: 0.31;
}

/* 适配 */
@media (max-width: 1440px) {
    body {
        padding-top: 90px;
    }

    .headerL img {
        height: 90px;
    }

    .headerList {
        line-height: 90px;
    }

    .headerList:hover .dropDown {
        top: 89px;
    }

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

@media (max-width: 1280px) {
    body {
        padding-top: 80px;
    }

    .headerL img {
        height: 60px;
    }

    .headerList {
        line-height: 80px;
    }

    .headerList:hover .dropDown {
        top: 79px;
    }

    .headerLogoTxt {
        max-width: 200px;
    }

    .headerList::after {
        height: 3px;
    }

    .headerList:hover::after {
        width: 20px;
    }

    .headerList.active::after {
        width: 20px;
    }

    .dropDown a {
        line-height: 38px;
    }
}

@media (max-width: 1100px) {
    .headerList>a {
        font-size: 14px;
        padding: 0px 14px;
    }
}

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

    body {
        padding-top: 55px;
    }
}

/* =========== 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: 9991;
}

.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: 55px;
    width: auto;
}

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

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

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #32A3C6;
    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: 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: 14px;
    line-height: 55px;
    color: #333;
    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: #FAFBFC;
}

.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: 30px;
    bottom: 30px;
    display: none;
    width: 50px;
    height: 50px;
    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 {
    background: #333;
    color: #fff;
}

.footer1 {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #4C4C4C;
    padding-top: 30px;
}

.footer1 li {
    margin-right: 110px;
    margin-bottom: 20px;
}

.footer1 li:last-of-type {
    margin-right: 0px;
}

.footer1 li:hover a {
    color: #82CBD9;
}

.footer2 {
    padding: 25px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footerL>div {
    display: flex;
}

.footerL>div:first-of-type {
    margin-bottom: 20px;
}

.footerL>div p:first-child {
    width: 300px;
    flex-shrink: 0;
}

.footerR {
    text-align: center;
}

.footerR img {
    display: block;
    width: 86px;
    height: auto;
    margin: 0px auto 8px auto;
}

/* 版权信息 */
.copyright {
    background: #2F2F2F;
    padding: 18px 0px;
}

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


/* =========== 移动端底部 开始 =========== */
@media (max-width: 992px) {
    .footer1 li {
        margin-right: 0px;
        width: 20%;
    }

    .footer2 {
        flex-wrap: wrap;
    }

    .footerL,
    .footerR {
        width: 100%;
    }

    .footerR {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .footer1 li {
        width: 33.3%;
    }

    .footerL>div p:first-child {
        width: auto;
    }

    .footerL>div {
        flex-wrap: wrap;
    }

    .footerL p {
        width: 100% !important;
        margin-bottom: 12px;
    }

    .footerL>div:first-of-type {
        margin-bottom: 0px;
    }

    .footerR {
        margin-top: 26px;
    }
}

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





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

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

.pubPageBox li {
    display: inline-block;
    line-height: 46px;
    width: 46px;
    background: #fff;
    border: 1px solid #EDF0F4;
    border-radius: 4px;
    margin-right: 8px;
    text-align: center;
    position: relative;
}

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

.pubPageBox li.next a,
.pubPageBox li.prev a {
    color: rgba(255, 255, 255, 0);
}

.pubPageBox li.prev {
    background: url(../images/prev1.png)no-repeat center center, #fff;
    background-size: 14px 14px;
}

.pubPageBox li.next {
    background: url(../images/next1.png)no-repeat center center, #fff;
    background-size: 14px 14px;
}

.pubPageBox li.prev:hover {
    background: url(../images/prev2.png)no-repeat center center, #82CBD9;
    background-size: 14px 14px;
}

.pubPageBox li.next:hover {
    background: url(../images/next2.png)no-repeat center center, #82CBD9;
    background-size: 14px 14px;
}

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

.pubPageBox li.active {
    background: #82CBD9;
}

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

.pubPageBox li:hover {
    background: #82CBD9;
}

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

.pubPageBox li.next:hover a,
.pubPageBox li.prev:hover a {
    color: rgba(255, 255, 255, 0);
}

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

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

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

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

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

    .pubPageBox li:first-child,
    .pubPageBox 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;
    border: 1px solid #EDF0F4;
}

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

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




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

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




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

.pubIndexTitle::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 60px;
    height: 1px;
    background: #32A3C6;
}

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

.pubIndexTitle p {
    padding-bottom: 30px;
    color: #666;
    font-weight: normal;
    text-transform: uppercase;
}

@media (max-width: 1440px) {
    .pubIndexTitle p {
        padding-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .pubIndexTitle p {
        padding-bottom: 16px;
    }

    .pubIndexTitle::after {
        width: 40px;
    }
}




/* 内页 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 span {
    display: block;
    font-family: "Rany-Bold";
    margin-bottom: 10px;
    text-transform: uppercase;
}

@media (max-width: 1440px) {
    .pageBanner img {
        width: auto;
        height: 430px;
        object-fit: cover;
    }
}

@media (max-width: 1280px) {
    .pageBanner img {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .pageBanner img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 767px) {
    .pageBanner span {
        font-size: 18px;
        margin-bottom: 2px;
    }

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




/* 关于和创 上方tab */
.pubAboutTab {
    position: relative;
    z-index: 5;
}

.pubAboutTab ul {
    display: flex;
    background: #fff;
    box-shadow: 0px 12px 30px rgba(9, 84, 98, 0.06);
    margin-top: -32px;
    line-height: 70px;
    color: #666666;
    text-align: center;
}

.pubAboutTab li {
    width: 33.3%;
}

.pubAboutTab li.active {
    color: #82CBD9;
}

.pubAboutTab a {
    display: block;
}

.pubAboutTab li:hover {
    color: #82CBD9;
}

@media (max-width: 767px) {
    .pubAboutTab ul {
        margin-top: -20px;
        line-height: 54px;
    }
}




/* 面包屑 */
.crumbs {
    border-bottom: 1px solid #EDF0F4;
}

.crumbsUl {
    padding-left: 30px;
    background: url(../images/crumbs.png)no-repeat center left;
    background-size: 16px 16px;
    display: flex;
    color: #666;
     line-height: 70px;
}

.crumbsUl a {
   
    padding:0 6px;
    position: relative;
}

/*.crumbsUl a::after {
    content: "/";
    position: absolute;
    right: 0px;
    top: 0px;
    color: #666;
    line-height: 70px;
}
*/
.crumbsUl a:last-child {
    padding-right: 0px;
    margin-right: 0px;
}

.crumbsUl a:last-child::after {
    display: none;
}

.crumbsUl a:hover {
    color: #32A3C6;
}

@media (max-width: 1280px) {

    .crumbsUl li,
    .crumbsUl li::after {
        line-height: 58px;
    }
}

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




/* 鼠标移入 图片放大 */
.pubImgBox {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pubImgBox img {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: 101%;
    height: 101%;
    object-fit: cover;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubImgBox:hover img {
    transform: scale(1.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}




/* 公共 首页a标签样式 */
.pubA {
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.pubA p {
    line-height: 55px;
    margin-right: 16px;
}

.pubA i {
    display: block;
    width: 22px;
    height: 6px;
}

.pubA:hover {
    transform: translateY(-6px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1440px) {
    .pubA {
        width: 160px;
    }

    .pubA p {
        line-height: 48px;
    }

    .pubA i {
        width: 18px;
        height: 5px;
    }
}

@media (max-width: 767px) {
    .pubA {
        width: 130px;
    }

    .pubA p {
        line-height: 42px;
    }
}

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