* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px
}

body {
    font: 12px/1.5 tahoma, arial, Microsoft YaHei, sans-serif
}

html {
    scroll-behavior: smooth
}

.w {
    width: 100%;
    min-width: 1200px;
    overflow: hidden
}

.sw {
    width: 1200px;
    margin: 0 auto
}

.full-height {
    height: 100%
}

.flex-row-sb {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.flex-row-sa {
    display: flex;
    justify-content: space-around;
    align-items: center
}

.flex-row-center {
    display: flex;
    justify-content: center;
    align-items: center
}

.flex-row-left {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.flex-row-right {
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.flex-column-sb {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center
}

.flex-column-sa {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center
}

.flex-column-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

.flex-column-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center
}

.flex-column-bottom {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center
}

.flex-block {
    flex-shrink: 0;
    flex-grow: 0
}

.flex-auto {
    flex-shrink: 1;
    flex-grow: 1
}

.flex-wrap {
    flex-wrap: wrap
}

.flex-align-start {
    align-items: flex-start
}

.flex-align-end {
    align-items: flex-end
}

.fimg {
    overflow: hidden
}

.fimg>img {
    width: 100%
}

.fimg_d {
    overflow: hidden
}

.fimg_d>img {
    height: 100%
}

.back-row-c {
    background-position: center;
    background-size: 100% auto;
    background-repeat: no-repeat
}

.back-column-c {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.text-of-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.text-of-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.text-of-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.text-of-4 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.text-of-5 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.scroll-theme::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

.scroll-theme::-webkit-scrollbar-track {
    border-radius: 2px
}

.scroll-theme::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 10px
}

.scroll-theme::-webkit-scrollbar-thumb:hover {
    background: #777
}

.scroll-theme::-webkit-scrollbar-corner {
    background: #000
}

.link {
    transition: all .3s ease;
    cursor: pointer
}

.link:hover {
    color: #008e91
}

.link-primary {
    cursor: pointer;
    transition: all .3s ease;
    color: #008e91
}

.link-primary:hover {
    color: #00f2f7
}

.pointer {
    cursor: pointer
}

.hide {
    display: none
}

.abs-full {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px
}

.text-center {
    text-align: center
}

.opacity-limit {
    opacity: 0
}

.relative {
    position: relative
}

.absolute {
    position: relative
}

.z-index-999 {
    z-index: 999
}

.of-hidden {
    overflow: hidden
}

.disabled {
    pointer-events: none;
    cursor: default;
    opacity: .3
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(200deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.rotate {
    transition: .5s;
    transform-origin: 50% 50%;
    animation: rotate 1s linear infinite
}

a {
    display: block
}

a:hover {
    text-decoration: none
}

.header_pc {
    overflow: initial;
    z-index: 99;
    position: fixed;
    top: 0px
}

.header_pc .header_top {
    width: 100%;
    height: 36px;
    background-color: #000;
    transition: all .5s ease;
    overflow: hidden;
    opacity: 41
}

.header_pc .header_top .topContent {
    height: 100%;
    font-size: 14px
}

.header_pc .header_top .topContent>span {
    color: #fff
}

.header_pc .header_top .topContent>a {
    color: #fff
}

.header_pc .header_min {
    height: 122px;
    width: 100%;
    background-color: #fff;
    transition: all .5s ease;
    transition: all .5s ease;
    overflow: hidden;
    opacity: 41
}

.header_pc .header_min .min_content {
    height: 100%
}

.header_pc .header_min .min_content .logo {
    height: 80px
}

.header_pc .header_min .min_content .logo>img {
    height: 100%;
    width: auto
}

.header_pc .header_min .min_contact {
    align-items: flex-end
}

.header_pc .header_min .min_contact>span:nth-child(1) {
    font-size: 14px;
    color: #555
}

.header_pc .header_min .min_contact>span:nth-child(2) {
    font-size: 35px;
    color: #008e91;
    line-height: 35px;
    font-style: oblique;
    font-weight: bold;
    letter-spacing: -2px
}

.header_pc .header_bottom {
    height: 60px;
    width: 100%;
    background-color: #008e91
}

.header_pc .header_bottom .navContent {
    height: 100%
}

.header_pc .header_bottom .navContent .navBox {
    width: 14%;
    height: 100%;
    position: relative;
    transition: all .5s ease
}

.header_pc .header_bottom .navContent .navBox:hover {
    background-color: #00aaae
}

.header_pc .header_bottom .navContent .navBox:hover .navBox_le {
    max-height: 500px;
    opacity: 1
}

.header_pc .header_bottom .navContent .navBox .Level1 {
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    transition: all .5s ease
}

.header_pc .header_bottom .navContent .navBox .dangqian {
    background-color: #00aaae;
}

.header_pc .header_bottom .navContent .navBox .navBox_le {
    width: 100%;
    max-height: 0;
    position: absolute;
    top: 60px;
    background-color: #00aaae;
    overflow: hidden;
    transition: all .5s ease;
    opacity: 0
}

.header_pc .header_bottom .navContent .navBox .navBox_le .level2 {
    width: 100%;
    height: 50px;
    font-size: 14px;
    color: #fff;
    transition: all .5s ease
}

.header_pc .header_bottom .navContent .navBox .navBox_le .level2:hover {
    background-color: #008e91
}

.header_pc.change .header_top {
    opacity: 0;
    height: 0
}

.header_pc.change .header_min {
    opacity: 0;
    height: 0
}

.header_pc.change .header_bottom {
    background-color: rgba(0, 142, 145, .7)
}

.footer_pc .foote_top {
    width: 100%;
    height: 290px;
    background-image: url(../images/bottom_background.jpg)
}

.footer_pc .foote_top .topContent {
    color: #fff;
    height: 100%
}

.footer_pc .foote_top .topContent .contactText .contactTitle {
    font-size: 24px;
    margin-bottom: 10px
}

.footer_pc .foote_top .topContent .contactText>span {
    display: block;
    font-size: 16px;
    letter-spacing: 1px
}

.footer_pc .foote_top .topContent .contactText>a {
    width: 130px;
    height: 38px;
    background-color: #008e91;
    transition: all .5s ease;
    text-align: center;
    line-height: 38px;
    font-size: 16px;
    color: #fff;
    margin-top: 15px
}

.footer_pc .foote_top .topContent .contactText>a:hover {
    background-color: #00aaae
}

.footer_pc .foote_top .topContent .contact_map {
    width: 650px
}

.footer_pc .foote_top .topContent .contact_map>img {
    width: 100%;
    height: auto
}

.footer_pc .foote_min {
    height: 140px;
    background-color: #282e31;
    border-bottom: 1px solid #666
}

.footer_pc .foote_min .minContent {
    height: 100%
}

.footer_pc .foote_min .minContent .min_left {
    flex-wrap: wrap;
    width: 494px
}

.footer_pc .foote_min .minContent .min_left .bottomNav_box {
    padding: 0 22px;
    border-right: 1px solid #444;
    font-size: 14px;
    color: #999;
    line-height: 14px;
    margin: 10px 0px;
    transition: all .5s ease
}

.footer_pc .foote_min .minContent .min_left .bottomNav_box:hover {
    color: #00aaae
}

.footer_pc .foote_min .minContent .min_left .bottomNav_box:nth-child(5n+1) {
    padding-left: 0px
}

.footer_pc .foote_min .minContent .min_left .bottomNav_box:nth-child(5n) {
    border-right: none
}

.footer_pc .foote_min .minContent .min_right {
    width: 190px
}

.footer_pc .foote_min .minContent .min_right .wx_mask {
    width: 84px;
    height: 84px;
    background-color: #fff;
    box-sizing: border-box;
    padding: 5px
}

.footer_pc .foote_min .minContent .min_right .wx_mask>img {
    width: 100%;
    height: 100%
}

.footer_pc .foote_bottom {
    width: 100%;
    height: 70px;
    color: #999;
    font-size: 14px;
    background-color: #282e31;
    letter-spacing: 1px
}

.footer_pc .foote_bottom a {
    color: #999
}

.shuffling {
    width: 100%
}

.shuffling .swiper-slide>img {
    width: 100%;
    height: auto
}

.shuffling .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    color: #000;
    box-sizing: border-box;
    border: 1px solid #008e91;
    opacity: 1;
    background-color: #fff
}

.shuffling .swiper-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 7px;
    background-color: #008e91
}

.section_o {
    padding: 50px 0px
}

.section_o .section_o_c {
    flex-wrap: wrap;
    align-items: flex-start
}

.section_o .section_o_c .indexAbout {
    width: 570px
}

.section_o .section_o_c .indexAbout .aboutText {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-bottom: 20px
}

.section_o .section_o_c .indexAbout .aboutText>p {
    font-size: 14px;
    text-indent: 2em;
    color: #464c5c
}

.section_o .section_o_c .indexAbout .aboutNav {
    width: 100%;
    height: auto;
    flex-wrap: wrap
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box {
    width: 190px;
    height: 148px;
    transition: all .5s ease;
    background-color: #e9edee
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box:nth-child(2n) {
    background-color: #dee6e9
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box:hover {
    background-color: #008e91
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box:hover .aboutNav_icon .icon1 {
    z-index: 1;
    opacity: 0
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box:hover .aboutNav_icon .icon2 {
    z-index: 2;
    opacity: 1
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box:hover>span {
    color: #fff
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box .aboutNav_icon {
    width: 64px;
    height: 64px;
    position: relative;
    margin-bottom: 10px
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box .aboutNav_icon .icon1 {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    z-index: 2;
    opacity: 1;
    top: 0px;
    left: 0px
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box .aboutNav_icon .icon1>img {
    height: 100%;
    width: auto
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box .aboutNav_icon .icon2 {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    z-index: 1;
    opacity: 0;
    top: 0px;
    left: 0px
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box .aboutNav_icon .icon2>img {
    height: 100%;
    width: auto
}

.section_o .section_o_c .indexAbout .aboutNav .aboutNav_box>span {
    font-size: 16px;
    color: #464c5c;
    transition: all .5s ease
}

.section_o .section_o_c .information {
    width: 570px
}

.section_o .section_o_c .information .information_list {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-bottom: 20px
}

.section_o .section_o_c .information .information_list .listBox {
    width: 100%;
    margin-bottom: 8px;
    color: #464c5c;
    transition: all .5s ease
}

.section_o .section_o_c .information .information_list .listBox:hover {
    color: #008e91
}

.section_o .section_o_c .information .information_list .listBox .list_l {
    width: 80%;
    font-size: 14px;
    letter-spacing: .4px
}

.section_o .section_o_c .information .information_list .listBox>span {
    font-size: 14px
}

.section_o .section_o_c .information .information_mask {
    width: 100%;
    height: 296px;
    overflow: hidden
}

.section_o .section_o_c .information .information_mask>img {
    height: 100%;
    width: auto
}

.public_title {
    width: 100%;
    padding-bottom: 15px
}

.public_title .title_l {
    border-bottom: 5px solid #008e91
}

.public_title .title_l>span {
    font-size: 24px;
    color: #000;
    line-height: 24px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px
}

.public_title .title_r {
    font-size: 14px;
    color: #008e91;
    transition: all .5s ease
}

.public_title .title_r:hover {
    color: #00aaae;
    transform: scale(1.1, 1.1)
}

.public_title .title_r>span {
    margin-right: 10px
}

.public_title .title_r>i {
    font-size: 20px
}

.advertising1>img {
    width: 100%;
    height: auto;
    margin-bottom: 50px
}

.section_t {
    padding-bottom: 50px
}

.section_t .section_t_c {
    align-items: flex-start
}

.section_t .section_t_c .industry_news {
    width: 370px
}

.section_t .section_t_c .industry_news .industry_mask {
    width: 100%;
    height: 88px;
    overflow: hidden;
    margin-bottom: 20px
}

.section_t .section_t_c .industry_news .industry_mask>img {
    width: 100%;
    height: auto
}

.section_t .section_t_c .industry_news .industry_cont {
    width: 100%;
    height: 142px;
    overflow: hidden
}

.section_t .section_t_c .industry_news .industry_cont .industry_box {
    width: 100%;
    font-size: 14px;
    color: #666;
    letter-spacing: .4px;
    line-height: 14px;
    margin-bottom: 18px;
    transition: all .5s ease
}

.section_t .section_t_c .industry_news .industry_cont .industry_box:hover {
    color: #008e91
}

.section_t .section_t_c .honorary {
    width: 370px
}

.section_t .section_t_c .honorary .honorary_lb {
    width: 100%;
    height: 250px
}

.section_t .section_t_c .honorary .honorary_lb .honorary_box {
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    border: 2px solid #008e91;
    background-color: #fff
}

.section_t .section_t_c .honorary .honorary_lb .honorary_box>img {
    width: 100%;
    height: auto
}

.section_t .section_t_c .honorary .honorary_lb .swiper-button-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 100%
}

.section_t .section_t_c .honorary .honorary_lb .swiper-button-next::after {
    font-size: 24px;
    color: #fff
}

.section_t .section_t_c .honorary .honorary_lb .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 100%
}

.section_t .section_t_c .honorary .honorary_lb .swiper-button-prev::after {
    font-size: 24px;
    color: #fff
}

.factory {
    padding-bottom: 50px
}

.factory .factory_c {
    width: 100%
}

.factory .factory_c .factory_box {
    width: 290px;
    margin-right: 13px;
    height: 196px;
    overflow: hidden;
    position: relative
}

.factory .factory_c .factory_box .factory_mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden
}

.factory .factory_c .factory_box .factory_mask>img {
    height: 100%;
    width: 100%
}

.factory .factory_c .factory_box .factory_title {
    z-index: 2px;
    width: 100%;
    position: absolute;
    height: 38px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    padding: 0px 12px;
    line-height: 38px;
    font-size: 18px;
    color: #fff;
    transition: all .5s ease;
    opacity: 1
}

.factory .factory_c .factory_box .factory_text {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 142, 145, .9);
    z-index: 3;
    box-sizing: border-box;
    padding: 20px;
    align-items: flex-start;
    transition: all .5s ease;
    top: 100%;
    opacity: 0
}

.factory .factory_c .factory_box .factory_text>span {
    color: #fff;
    font-size: 18px
}

.factory .factory_c .factory_box .factory_text .factory_ces {
    color: #fff;
    font-size: 14px
}

.factory .factory_c .factory_box:hover .factory_title {
    opacity: 0
}

.factory .factory_c .factory_box:hover .factory_text {
    top: 0px;
    opacity: 1
}

.factory .factory_c .factory_box:last-child {
    margin-right: 0px
}

.parallel {
    padding-bottom: 63px
}

.parallel .parallel_cont {
    width: 100%
}

.parallel .parallel_cont .parallel_box {
    width: 290px;
    height: 80px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    overflow: hidden;
}

.bread_nav {
    color: #000;
    font-size: 14px
}

.bread_nav>a {
    color: #008e91;
    margin-right: 5px
}

.withinAbout .withinAbout_c {
    padding: 30px 0px
}

.withinAbout .withinAbout_c .withinAbout_nav {
    width: 100%
}

.withinAbout .withinAbout_c .withinAbout_nav .nav_l .nav_box {
    width: 96px;
    height: 34px;
    color: #000;
    font-size: 14px;
    transition: all .5s ease
}

.withinAbout .withinAbout_c .withinAbout_nav .nav_l .nav_box:hover {
    background-color: #008e91;
    color: #fff
}
.withinAbout .withinAbout_c .withinAbout_nav .nav_l .nav_box.activess {
    background-color: #008e91;
    color: #fff
}

.withinAbout .withinAbout_c .lane {
    width: 100%
}

.withinAbout .withinAbout_c .lane .lane_title {
    height: 110px;
    width: 100%
}

.withinAbout .withinAbout_c .lane .lane_title>span {
    font-size: 30px;
    color: #000;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 20px
}

.withinAbout .withinAbout_c .lane .lane_title .title_border {
    width: 40px;
    border-bottom: 3px solid #008e91
}

.public_within_mask {
    width: 100%;
    height: 400px;
    background-size: auto 100%;
    background-image: url(../images/within_background.jpg);
}

.public_within_mask .public_within_cont {
    height: 100%;
    align-items: flex-start
}

.public_within_mask .public_within_cont>span {
    color: #fff
}

.public_within_mask .public_within_cont>span:nth-child(1) {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 15px
}

.public_within_mask .public_within_cont>span:nth-child(2) {
    font-size: 30px;
    line-height: 30px
}

.productCont {
    padding: 30px 0px
}

.productCont .lanedse {
    width: 100%;
    margin-bottom: 40px
}

.productCont .lanedse .productNav>a {
    padding: 0px 24px;
    line-height: 34px;
    color: #000;
    font-size: 14px;
    transition: all .5s ease
}

.productCont .lanedse .productNav>a:hover {
    background-color: #008e91;
    color: #fff
}

.productCont .productList_content {
    width: 100%;
    flex-wrap: wrap
}

.productCont .productList_content .productListBox {
    width: 390px;
    margin-right: 15px;
    margin-bottom: 30px
}

.productCont .productList_content .productListBox .listMask {
    width: 100%;
    height: 268px;
    overflow: hidden;
    box-sizing: border-box;
    border: 2px solid #008e91
}

.productCont .productList_content .productListBox .listMask>img {
    width: 100%;
    height: auto
}

.productCont .productList_content .productListBox .listText {
    width: 100%;
    height: 70px;
    color: #282e31;
    font-size: 16px;
    transition: all .5s ease;
    box-sizing: border-box;
    padding: 0 15px;
    text-align: center
}

.productCont .productList_content .productListBox:hover .listText {
    background-color: #008e91;
    color: #fff
}

.productCont .productList_content .productListBox:nth-child(3n) {
    margin-right: 0px
}
.page{
    padding-top: 0px !important;
}
.content_page{
    font-size: 16px;
}

.productCont .lanedse .productNav .active {
    background-color: #008e91;
    color: #fff;
}
.breadcrumb-item {
    font-size:14px;
}
.text-muted {
    font-size: 14px;
}
