@charset "utf-8";

* {
    margin: 0px;
    padding: 0px;
    font-family: "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;
}

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

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

body {
    padding-top: 90px;
}

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


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

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

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


/* 背景色 */
.pubbg {
    background: rgba(249, 250, 251, 1);
}


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

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

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

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

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

.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;
    border-radius: 100px;
    background: #208B3B;
    -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: rgba(0, 0, 0, 1);
}

.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: #208B3B;
    font-weight: bold;
}

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

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

.dropDown li:hover {
    background: rgba(0, 75, 150, 0.04);
}

.dropDown li:hover a {
    color: rgba(32, 139, 59, 1);
}

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

.searchIndex {
    line-height: 34px;
    margin-left: 15px;
}

.language a {
    color: #333;
}

.indexIcon a {
    display: flex;
    align-items: center;
}

.indexIcon img {
    width: 22px;
    height: 22px;
    display: block;
    margin-right: 10px;
}

.indexIcon::after,
.indexIcon:after {
    display: none !important;
}

.shopIcon {
    position: relative;
    margin-left: 50px;
}

.shopIcon a:hover .shopErm {
    display: block;
    cursor: pointer;
}

.shopIcon .shopErm {
    display: none;
    position: absolute;
    width: 120px;
    bottom: -110px;
    left: 50%;
    transform: translate(-50%, -0%);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.shopIcon .shopErm:before {
    position: absolute;
    bottom: 0px;
    right: 40%;
    display: block;
    width: 0px;
    height: 0px;
    border-color: transparent transparent rgba(235, 58, 58, 0.98) transparent;
    border-style: solid;
    border-width: 10px;
    content: "";
    transform: rotate(180deg);
}


/* 适配 */
@media (max-width: 1440px) {
    .width1200 {
        padding: 0 20px;
    }

    .header .headerUl {
        font-size: 16px;
    }

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




}

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

    .headerL img {
        height: 55px;
        width: auto;
    }

    .headerList {
        line-height: 80px;
    }



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

    .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;
    }

    .mobleHeaderMenu ul>li.indexIcon {
        border-bottom: none;
    }

    .mobleHeaderMenu ul>li.indexIcon a {
        display: flex;
        padding-left: 0px;
    }

    .mobShopErm {
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .mobShopErm img {
        width: 100px;
        height: 100px;
        margin-right: 0px;
    }
}

/* =========== 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: 40px;
    width: auto;
}

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

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

.mobleMenu_button span::after,
.mobleMenu_button span::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #208B3B;
    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: #2D3036;
    color: #fff;
}

.footer {
    padding-top: 80px;
    padding-bottom: 50px;
    display: flex;
    justify-content: space-between;
    padding-right: 50px;
}

/* 左侧 */
.footerL img {
    display: block;
    height: 90px;
    width: auto;
    margin-bottom: 60px;
}

.footerL p {
    margin-bottom: 14px;
}

/* 右侧 */
.footerR {
    width: 80%;
}

@media (max-width: 1280px) {
    .footerR {
        width: 75%;
    }
}

.footerR-top {
    display: flex;
    align-items: flex-start;
}

.footerR-bot {
    display: flex;
    align-items: flex-start;
}

.footerRDiv {
    width: 64%;
}

.footerRDiv:last-child {
    width: auto;
    flex-shrink: 0;
}

.footerRDiv>a {
    margin-bottom: 18px;
}

.footerRUl {
    border-top: 1px solid #FF8D1A;
    padding-top: 30px;
    margin-top: 40px;
}

.footerRUl li {
    margin-bottom: 16px;
    opacity: 0.75;
}

.footerRUl li:hover {
    opacity: 1;
}

.footerR-bot {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
}

.footerR-left {
    display: flex;
}

.footerR-left a {
    display: block;
    margin-right: 40px;
}

.footerR-right {
    position: relative;
}

.footerR-right .shopErm {
    display: none;
    position: absolute;
    width: 120px;
    bottom: -25px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footerR-right .shopErm:before {
    position: absolute;
    bottom: -15px;
    right: 40%;
    display: block;
    width: 0px;
    height: 0px;
    border-color: transparent transparent rgba(255, 255, 255, 0.98) transparent;
    border-style: solid;
    border-width: 10px;
    content: "";
    transform: rotate(180deg);
}

.shopErm img {
    width: 120px;
    height: 120px;
    display: block;
}

.footerR-right a:hover .shopErm {
    display: block;
    cursor: pointer;
}



/* 版权信息 */
.copyright {
    /* border-top: 1px solid rgba(237, 237, 237, 0.2); */
    padding: 18px 0px;
    text-align: right;
    padding-right: 50px;
}

.copyright p {
    opacity: 0.7;
}

/* 适配 */
@media (max-width: 1440px) {
    .footer {
        padding-top: 30px;
    }
}

@media (max-width: 1280px) {}

@media (max-width: 1100px) {}

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


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

    .footerR-top {
        display: none !important;
    }

    .footerR-bot {
        margin-top: 0px;
        padding-top: 0px;
        border-top: 0px;
    }

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

    .footerRDiv {
        width: 100%;
    }

    .footerRDiv:last-child {
        width: 100%;
    }

    .footer {
        padding-top: 30px;
        padding-bottom: 0px;
        display: block;
        padding-right: 0px;
    }

    .footerL img {
        height: 80px;
        margin-bottom: 10px;
    }

    .footerL {
        margin-bottom: 10px;
    }

    .footerR {
        padding-top: 20px;
        border-top: 1px solid rgba(237, 237, 237, 0.2);
        display: block;
    }

    .footerR .footerRUl {
        display: none;
    }

    .footerRDiv {
        margin: 0px;
    }

    .footerR-left a {
        margin-right: 20px;
    }

    .copyright {
        text-align: left;
        padding: 10px 0px;
    }
}

@media (max-width: 767px) {
    .footerR {
        flex-wrap: wrap;
    }

    .footerL p {
        margin-bottom: 10px;
    }
}

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


/* =========== 侧边悬浮 开始 =========== */
.sidebarBox {
    display: none;
}

.sidebar {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 200;
}

.sidebar ul {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    padding: 15px 10px;
}

.sidebar li {
    padding: 10px 0;
    border-bottom: 1px solid #F5F5F5;
    cursor: pointer;
    position: relative;
}

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

.sideImg {
    width: 30px;
    height: 30px;
    position: relative;
}

.sideImg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.sideImgB {
    display: none;
}

.sidebar li:hover .sideImgA {
    display: none;
}

.sidebar li:hover .sideImgB {
    display: block;
}

/*  */
.sideDown {
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: -9999px;
    top: 40px;
    opacity: 0;
    transition: top .5s, opacity .7s;
    width: 140px;
    height: 140px;
    padding: 6px;
}

.sideDown::after {
    content: '';
    display: block;
    width: 12px;
    height: 20px;
    background: url(../images/sanjiao2.png)no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.sidebar li:hover .sideDown {
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.sideDown img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

/* =========== 侧边悬浮 结束 =========== */
/* ============================= 底部 结束 ============================= */



/* 首页公告标题 */
.pubTitle h1,
.pubTitle_shu h1,
.pubTitle_h h1 {
    line-height: 1.4;
    margin-bottom: 12px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
}

.pubTitle h1,
.pubTitle_h h1 {
    padding-bottom: 30px;
}

.pubTitle_h h1:after {
    content: '';
    width: 51px;
    height: 5px;
    background: #208B3B;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.pubTitle_shu h1 {
    padding-left: 30px;
}

.pubTitle_shu h1:after {
    content: '';
    width: 5px;
    height: 51px;
    background: #208B3B;
    position: absolute;
    left: 0px;
    top: 0px;
}



.pubTitle h2 {
    margin-bottom: 30px;
}


.pubTitleCenter {
    text-align: center;
}

/* .pubTitleCenter h1:after {
    content: '';
    width: 51px;
    height: 5px;
    background: #208B3B;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform:translate(-50%,-50%);
} */


.wd-100 {
    width: 100%;
}

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

.pubPageBanner>img {
    display: block;
    width: 100%;
    object-fit: cover;
}

/* 标题 */
.pubPageBannerTxt {
    position: absolute;
    top: 31%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.pubPageBannerTxt img {
    display: block;
    height: 55px;
    width: auto;
    margin-bottom: 16px;
}

.pubPageBannerTxt h2 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: bolder;
}

.pubPageBannerTxt p {
    color: #000;
}

.botZhuang {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.botZhuang b {
    color: #fff;
    display: block;
    margin-bottom: 50px;
}

.botZhuang .tangle {
    width: 42px;
    height: 53px;
    display: block;
    background: #208B3B;
}



.linkTab ul {
    justify-content: flex-end;
}




/* 首页公共按钮 */
.pubBtnRight a {
    display: flex;
    align-items: center;
    border: 2px solid #208B3B;
    color: #208B3B;
    border-radius: 100px;
    height: 60px;
    line-height: 60px;
    min-width: 160px;
    text-align: center;
    margin-top: 60px;
    justify-content: center;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;

}

.pubBtnRight a span {
    font-weight: bold;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.pubBtnRight a i {
    display: block;
    background: url(../images/rightGreen.png)center center no-repeat;
    width: 32px;
    height: 32px;
    margin-left: 20px;
    background-size: contain;
}

.pubBtnRight a:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}

.pubBtnRight a:hover span {
    transform: scale(1.2);
}





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



/* ========== 公共分页 开始 ========== */

.pubPage .el-pagination {
    text-align: center;
}

.pubPage .el-pager li {
    font-size: 18px;
    padding: 0px 8px;
    font-weight: normal;
    color: #939393;
}

.pubPage .el-pager li.active,
.pubPage .el-pagination button:hover {
    color: #0D36A2;
}

.pubPage .el-pagination button,
.pubPage .el-pager li {
    background-color: none;
    background: none;
}

@media (max-width: 992px) {
    .pubPage .el-pager li {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .pubPage .el-pager li {
        padding: 0px 4px;
    }

    .pubPage .el-pagination {
        padding: 0px;
    }

    .pubPage .el-pagination .btn-prev,
    .pubPage .el-pagination .btn-next {
        padding: 0px;
    }

    .pubPage .el-pager li,
    .pubPage .el-pagination button,
    .pubPage .el-pagination span:not([class*=suffix]) {
        min-width: 28px;
    }
}

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






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

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



/* 查看大图 弹窗 */
.bigImg {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    z-index: 99999;
    display: none;
}

.bigImgBg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigImgCon {
    width: 90%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bigImgCon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}




/* 首页标题 */
.pubIndexTitle {
    text-decoration-line: underline;
    font-family: "poppinsBold";
    text-transform: uppercase;
}





/* 鼠标移入 图片放大 */
.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;
}



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

/* ==========轮播按钮-样式重写========== */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
}


.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 10px;
}

.swiper-pagination-bullet {
    background: #E5E5E5;
    opacity: 1;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: #71BA2D;
    width: 60px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .swiper-pagination-clickable .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        margin: 0 10px;
    }

    .swiper-pagination-clickable .swiper-pagination-bullet-active {
        background: #71BA2D;
        width: 48px;
        border-radius: 10px;
    }
}



/* ==========轮播按钮-样式重写结束========== */


/* ======面包屑导航====== */
.linkBg {
    background: #fff;
}

.linkTab ul {
    display: flex;
    align-items: center;
}

.linkTab ul li {
    cursor: pointer;
    /* width: 14%; */
    text-align: right;
    height: 70px;
    line-height: 70px;
    margin-left: 60px;
}

.linkTab ul li:first-child {
    margin-left: 0px;
}

.linkTab ul li.active {
    color: #208B3B;
}

/* ======面包屑导航 结束====== */


/* 主要医疗机构 */
.mainInstPart {
    background: linear-gradient(to left, #ECFEFF, #DCE4FA);
    padding: 90px 0px;
}

.mainInstSwiper {
    padding-bottom: 60px;
}
.mainInstSwiper .imgCover{
    width: 100%;
    position: relative;
    padding-top: 58%;
    border-radius: 8px 8px 0px 0px;
    overflow:hidden;
}

.mainInstSwiper 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;
}


.pubIntroBg {
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.15);
}

.pubIntroBg .intro {
    background: #fff;
    padding: 20px;
    /* border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; */
}

.pubIntroBg .intro .smallIntro {
    margin-top: 20px;
}


/* 服务和产品左边固定结构 */

.pubTreatPart {
    position: relative;
    margin-top: 145px;
}

.publicWent .slognBox {
    background: #208B3B;
    min-width: 298px;
    padding: 35px 40px;
    color: #fff;
    position: absolute;
    top: -30px;
    z-index: 2;
}

.publicWent .slognBox h2 {
    margin-top: 10px;
}

.pubServePart {
    margin-top: -400px;
    min-height: 520px;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -100px;
}


.pubServePart .serveLeft {
    width: 55%;
    background: #2D3036;
    height: 800px;
}

.publicWent {
    color: #fff;
}

.publicWent .richText {
    position: absolute;
    z-index: 2;
    top: 180px;
    color: #fff;
    max-width: 600px;
}

.publicWent .richText p {
    line-height: 1.8;
    text-align: justify;
}

.publicWent .richText .moreTxt {
    margin-top: 30px;
}

.publicWent .richText .moreTxt a {
    display: inline-block;
    color: #71BA2D;
}

.pubServePart .serveRight {
    width: 45%;
    position: absolute;
    right: 0px;
    height: 100%;
    overflow: hidden;
}

.pubServePart .serveRight img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
}

@media (max-width: 767px) {

    .pubTitle h1,
    .pubTitle_h h1 {
        padding-bottom: 10px;
    }

    .pubServePart {
        display: block;
    }

    .pubServePart .serveLeft {
        width: 100%;
        height: 550px;
    }

    .pubServePart .serveRight {
        width: 100%;
        position: relative;
    }

    .publicWent .richText {
        position: absolute;
        z-index: 2;
        top: 100px;
        left: 0;
        padding: 0px 20px;
    }

    .pubIntroBg .intro {
        padding: 20px;
    }


}


.bookPart {
    position: relative;
    z-index: 5;
}

@media (max-width: 1440px) {

    .bookPart .picSingle .leftImg,
    .guidePart .picSingle .leftImg {
        width: 250px;
    }
}

@media (max-width: 1280px) {
    .bookPart .picSingle .rightImg {
        width: 130px;
    }
}

@media (max-width: 992px) {
    .bookPart .picSingle .rightImg {
        bottom: 30px;
        width: 80px;
        right: 3%;
    }
}

@media (max-width: 767px) {

    .bookPart .picSingle .leftImg,
    .guidePart .picSingle .leftImg {
        width: 120px;
    }

    .bookPart .picSingle .rightImg {
        position: absolute;
        right: 5%;
        bottom: 0px;
        z-index: -1;
        width: 55px;
    }
}





/* 图文结构-左图右边文字 */
.pubPart {
    padding: 80px 0px;
    position: relative;
}

.pubContBox {
    display: flex;
    justify-content: space-between;
}

.pubIntroTxt p {
    line-height: 1.8;
}

.pubContBox .left {
    width: 48%;
}

.pubContBox .left img {
    width: 100%;
}

.pubContBox .left p {
    margin-top: 30px;
}

.pubContBox .right {
    width: 48%;
}




/* 装饰 */

.picSingle .leftImg {
    position: absolute;
    left: 0px;
    top: -150px;
    z-index: -1;
    width: 300px;
}

.picSingle .rightImg {
    position: absolute;
    right: 5%;
    bottom: 80px;
    z-index: -1;
}


/* 听听心声 */

.listenSwiper {
    margin-top: 100px;
    padding-bottom: 100px;
}

.listenSwiper .introItem .introBg {
    background: #F5F5F5;
    padding: 30px;
    border-radius: 12px;
}

.listenSwiper .introItem:after {
    content: '';
    position: absolute;
    left: 10px;
    top: 50px;
    width: 10px;
    height: 64px;
    background: #71BA2D;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.listenSwiper .introItem .name {
    color: #000;
    font-weight: 500;
}

.listenSwiper .introItem .nameIntro {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.listenSwiper .introItem .nameIntro .kind {
    margin-right: 30px;
    color: #2E3F2D;
    font-weight: normal;
}

.listenSwiper .introItem .contIntroTxt {
    color: #333;
    margin-top: 20px;
    line-height: 2;
}


.listenSwiper .swiper-pagination {
    text-align: left;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0px;
}


.listenSwiper .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin: 0 10px;
}

.swiper-pagination-bullet {
    background: #E5E5E5;
    opacity: 1;
}

.listenSwiper .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: #71BA2D;
    width: 60px;
    border-radius: 10px;
}

@media (max-width: 992px) {

    .pubContBox {
        display: block;
    }

    .pubContBox .right {
        width: 100%;
        margin-top: 20px;
    }

    .pubBtnRight a {
        margin-top: 30px;
        height: 42px;
        line-height: 42px;
    }

    .pubContBox .left {
        width: 100%;
        margin-top: 20px;
    }

    /* 主要医疗机构 */
    .mainInstPart {
        padding: 20px 0px;
    }

    .mainInstSwiper {
        padding-bottom: 40px;
    }

}

@media (max-width: 767px) {
    .botZhuang {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }

    .botZhuang b {
        margin-bottom: 10px;
        font-weight: normal;
    }

    .botZhuang .tangle {
        width: 15px;
        height: 24px;
        display: block;
        background: #208B3B;
    }

    .publicWent .slognBox {
        padding: 30px;
    }

    .picSingle .leftImg {
        position: absolute;
        left: 0px;
        top: -100px;
        z-index: 2;
        width: 120px;
    }

    .picSingle .rightImg {
        position: absolute;
        right: 5%;
        bottom: 0px;
        z-index: -1;
        width: 55px;
    }

    .pubBtnRight a i {
        width: 24px;
        height: 24px;
    }

    .pubPart {
        padding: 30px 0px;
    }

    .listenSwiper {
        margin-top: 100px;
        padding-bottom: 50px;
    }

}

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