/*分页*/
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination>li {
    display: inline;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd;
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

/*分页结束*/
.noData {
    text-align: center;
    font-size: 16px;
    line-height: 200px
}


/* 公共/重置 */
.page {
    width: 1100px;
    margin: 0 auto;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

li,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* 头部 */
.head_top {
    border-bottom: 1px #b0f3c8 dashed;
}

.head_top .page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    color: #9a9a9a;
}

.head_top .page a {
    color: #9a9a9a;
}

#header .page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

#header .page .left {
    width: 75%;
    display: flex;
    align-items: center;
}

#header .page .left .logo {
    position: relative;
    padding-right: 10px;
    margin-right: 10px;
}

#header .page .left .logo::after {
    content: '';
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    right: 0;
    top: 10%;
    background: #e9e9e9;
}

#header .page .left h2 {
    font-size: 27px;
    color: #00ac39;
    font-weight: bold;
    margin-bottom: 10px;
}

#header .page .left h3 {
    font-size: 17px;
}

#header .page .right {
    width: 22%;
    background: url(/public/image/tel.png) no-repeat left center;
    padding-left: 50px;
    background-size: 40px;
    font-size: 15px;
}

#header .page .right span {
    font-size: 25px;
    color: #00ad38;
}

.nav {
    background: #00ac39;
}

.nav .page ul {
    display: flex;
    justify-content: space-between;
}

.nav .page ul li {
    flex: 1;
    height: 55px;
    border-right: 1px solid rgb(72, 195, 114);
}

.nav .page ul li:last-child {
    border-right: none;
}

.nav .page ul li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* 搜索 */
.part1 {
    padding: 20px 0;
}

.part1 .page {
    display: flex;
    justify-content: space-between;
}

.part1 .page .key {
    color: #484848;
    font-weight: bold;
    display: flex;
}

.part1 .page .key a {
    color: #484848;
    font-weight: 100;
}

.part1 .page .search {
    display: flex;
    justify-content: space-between;
}

.part1 .page .search input {
    background: #f5f5f5;
    border: none;
    width: 285px;
    height: 40px;
}

.part1 .page .search button {
    background-color: #00ac39;
    border: none;
    width: 55px;
    height: 40px;
    background-image: url(/public/image/search.png);
    background-size: 35px;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

/*  */
.part2 {
    background: #f7f7f7;
    padding: 50px 0 10px 0;
}

.part2 .title {
    text-align: center;
}

.part2 .title h2 {
    font-size: 35px;
    color: #00ac39;
    font-weight: bold;
    margin-bottom: 35px;
}

.part2 .title span {
    color: #e00101;
    font-size: 45px;
}

.part2 .title h3 {
    font-size: 30px;
    position: relative;
    padding-bottom: 30px;
    width: max-content;
    margin: 0 auto;
}

.part2 .title h3::after {
    content: '';
    width: 0;
    height: 10px;
    border: 15px solid #00ac39;
    border-color: #00ac39 transparent transparent transparent;
    border-bottom-width: 0px;
    position: absolute;
    bottom: 0;
    left: 45%;
}

.part2_main {
    margin-top: 35px;
}

.part2_main ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.part2_main .part2_item {
    background: url(/public/image/back1.jpg) no-repeat;
    height: 412px;
    width: 17.8%;
    margin-right: 2.7%;
    transition: all .2s linear;
}

.part2_main .part2_item:hover {
    transform: translate3d(0, -10px, 0);
    transition: all .2s linear;
}

.part2_main .part2_item:nth-child(5) {
    margin-right: 0;
}

.part2_main .part2_item h3 {
    line-height: 24px;
    color: #fff;
    text-align: center;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part2_main .part2_item .desc {
    padding: 0 17px;
    line-height: 36px;
    margin-top: 15px;
    text-align: center;
}

.part2_main .part2_item a.more {
    border: 1px solid #00ac39;
    color: #00ac39;
    padding: 10px 15px;
    border-radius: 40px;
    margin: 25px auto 0 auto;
    display: block;
    width: max-content;
}

/*  */
.part3 {
    background: url(/public/image/back2.png);
    height: 860px;
    background-size: cover;
    padding-top: 40px;
}

.part3 .page .title {
    margin-bottom: 110px;
}

.part3 .page .title h2 {
    font-size: 50px;
    color: #fff;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

.part3 .page .title h2 span {
    font-size: 40px;
}

.part3 .page .title h3 {
    font-size: 25px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.part3 .page .title>span {
    font-size: 25px;
    color: #fff;
    border: 1px solid #fff;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
}

.part3_main ul {
    display: flex;
    justify-content: space-between;
}

.part3_main .part3_item {
    width: 32%;
}

.part3_main .part3_item:nth-child(3) {
    margin-right: 0;
}

.part3_main .part3_item .img {
    width: 100%;
    height: 265px;
    border: 4px solid #00ac39;
    border-bottom: none;
    overflow: hidden;
}

.part3_main .part3_item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
}

.part3_main .part3_item:hover .img img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.part3_main .part3_item:hover {
    box-shadow: 0 15px 30px rgb(0 0 0 / 10%);
}

.part3_main .part3_item .con {
    background: #f7f7f7;
    padding: 25px;
}

.part3_main .part3_item .con h3 {
    font-size: 25px;
    color: #00ac39;
    font-weight: bold;
    position: relative;
    width: max-content;
    padding-bottom: 18px;
    margin: 0 auto;
}

.part3_main .part3_item .con h3::after {
    content: '';
    position: absolute;
    width: 55%;
    height: 3px;
    background: #00ac39;
    bottom: 0;
    left: 22.5%;
    display: block;
}

.part3_main .part3_item .con span {
    line-height: 30px;
    text-align: center;
    display: block;
}

/*  */
.part4 {
    padding: 60px 0 60px 0;
    background: url(/public/image/back3.png) no-repeat;
    background-size: cover;
}

.part4 .page .title {
    text-align: center;
    margin-bottom: 57px;
}

.part4 .page .title h2 {
    background: linear-gradient(to top, rgb(0, 172, 57), rgb(0, 172, 57), rgb(0, 210, 70), rgb(0, 172, 57), rgb(0, 172, 57));
    color: transparent;
    -webkit-background-clip: text;
    font-weight: bold;
    font-size: 55px;
}

.part4 .page .title h2 span {
    color: rgb(224, 1, 1);
    margin: 0 5px;
}

.part4 .page .title h3 {
    margin-top: 20px;
}

.part4_main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.part4_main>div {
    flex: 1;
}

.part4_main .img {
    margin: 0 25px;
    border: 2px solid #00ac39;
    border-radius: 20px;
    overflow: hidden;
}

.part4_main .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part4_main h4 {
    font-size: 20px;
    color: #fff;
    background: #00ac39;
    width: max-content;
    border-radius: 30px;
    padding: 5px 15px;
    font-weight: bold;
    margin-bottom: 30px;
}

.part4_main div.desc {
    line-height: 35px;
}

.part4_main .top {
    margin-bottom: 30px;
}

.part4 .standard {
    background: url(/public/image/back5.png) no-repeat;
    height: 105px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.part4 .standard .text {
    width: 58%;
    line-height: 35px;
    color: #fff;
    padding-left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.part4 .standard .text span {
    width: 74%;
}

.part4 .standard .text h4 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
}

.part4 .standard .tel {
    width: 380px;
    padding-left: 60px;
    background: url(/public/image/tel2.png) no-repeat left center;
    background-size: 50px;
    color: #fff;
}

.part4 .standard .tel span {
    font-size: 30px;
}

/*  */
.part5 {
    padding: 30px 0 55px;
}

.part5 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.part5 .title h2 {
    font-size: 35px;
    font-weight: bold;
    color: #00ac39;
    margin-bottom: 25px;
}

.part5 .title h2 span {
    color: #e00101;
}

.part5 .title h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.part5 .title h4 {
    font-size: 20px;
    color: #666;
    border: 1px solid #d7d7d7;
    width: max-content;
    padding: 3px 10px;
    position: relative;
    margin-bottom: 50px;
}

.part5 .title h4::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 1px;
    background: #d7d7d7;
    top: 50%;
    left: -40px;
    display: block;
}

.part5 .title h4::before {
    content: '';
    position: absolute;
    width: 45px;
    height: 1px;
    background: #d7d7d7;
    top: 50%;
    right: -40px;
    display: block;
}

.part5_main {
    display: flex;
    justify-content: space-between;
}

.part5_main ul {
    display: flex;
    flex-wrap: wrap;
    width: 56%;
}

.part5_main .left {
    border: 2px solid #00ac39;
    margin-right: 10px;
    width: 43%;
    height: 453px;
    overflow: hidden;
}



.part5_main .left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
}

.part5_main .left:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);

}

.part5_main ul li {
    border: 2px solid #00ac39;
    margin-right: 10px;
    width: 49%;
    height: 221px;
    margin-bottom: 10px;
    overflow: hidden;
}

.part5_main ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all ease-in 0.5s;
    -moz-transition: all ease-in 0.5s;
    -ms-transition: all ease-in 0.5s;
    -o-transition: all ease-in 0.5s;
    -webkit-transition: all ease-in 0.5s;
}

.part5_main ul li:hover img {
    transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.part5_main ul li:nth-child(2n) {
    margin-right: 0;
}

.part5_main ul li:nth-child(3) {
    margin-bottom: 0;
}

.part5_main ul li:nth-child(4) {
    margin-bottom: 0;
}

/*  */
.part6 {
    background: url(/public/image/back4.png) no-repeat;
    padding: 70px 0 100px;
    background-size: cover;
}

.part6 .title {
    margin-bottom: 75px;
}

.part6 .title h2 {
    font-size: 35px;
    font-weight: bold;
    color: #00ac39;
    text-align: center;
    margin-bottom: 35px;
}

.part6 .title h2 span {
    color: #e00101;
}

.part6 .title h3 {
    font-size: 18px;
    text-align: center;
}

.part6_main {
    display: flex;
    justify-content: space-between;
}

.part6_main .image {
    display: flex;
    flex-wrap: wrap;
    width: 520px;
    justify-content: space-between;
}

.part6_main .image img {
    border: 2px solid #00ac39;
    width: 49.5%;
    object-fit: cover;
    height: 196px;
}

.part6_main .image img:nth-child(1) {
    width: 100%;
    margin-bottom: 7px;
    height: 290px;
    object-fit: cover;
}

.part6_main .con {
    width: 530px;
}

.part6_main .con h4 {
    font-size: 25px;
    font-weight: bold;
    position: relative;
    padding-bottom: 43px;
    margin-bottom: 35px;
}

.part6_main .con h4::after {
    content: '';
    width: 50px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background: #00ac39;
}

.part6_main .con .desc {
    line-height: 40px;
    margin-bottom: 15px;
}

.part6_main .con .desc p {
    text-indent: 2em;
}

.part6_main .con a.more {
    display: block;
    width: max-content;
    color: #fff;
    padding: 10px 10px;
    background: #00ac39;
    margin-left: auto;
}

/*  */
.part7 {
    padding: 30px 0;
}

.part7 .title {
    text-align: center;
}

.part7 .title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.part7 .title h2 span {
    color: #00ac39;
}

.part7 .title h3 {
    font-size: 18px;
}

.part7 .column {
    margin: 25px 0 50px;
}

.part7 .column ul {
    display: flex;
    justify-content: center;
}

.part7 .column ul li {
    width: 120px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: #ededed;
    margin: 0 20px;
    border-radius: 20px;
}

.part7 .column ul li a {
    color: #000;
}

.part7 .column ul li.cur {
    background: #00ac39;
}

.part7 .column ul li.cur a {
    color: #fff;
}

.part7_main ul {
    display: flex;
    justify-content: space-between;
}

.part7_main ul li {
    width: 24%;
    border: 2px solid #f8f8f9;
}

.part7_main ul li .img {
    height: 170px;
}

.part7_main ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.part7_main ul li .con {
    position: relative;
    padding: 25px 20px;
    background: #f8f8f9;
}

.part7_main ul li .con .time {
    position: absolute;
    bottom: 100%;
    display: block;
    background: #00ac39;
    color: #fff;
    padding: 5px 0;
    width: 40%;
    text-align: center;
    left: 30%;
}

.part7_main ul li .con h4 {
    border-bottom: 1px solid #d6d6d6;
    width: max-content;
    margin: 0 auto;
    padding-bottom: 10px;
}

.part7_main ul li .con span {
    line-height: 25px;
}

/*  */
.links {
    background: #00ac39;
    padding: 25px 0;
    font-size: 20px;
    color: #fff;
    border-bottom: 1px solid #11b948;
}

.links a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
}

footer {
    background: #00ac39;
    color: #fff;
    padding: 40px 0;
}

footer .page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 157px;
}

footer .page .ewm {
    display: flex;
    width: 15%;
    justify-content: space-between;

}

footer .page .ewm span {
    flex-direction: column;
    display: flex;
    text-align: center;
}

footer .page .ewm img {
    width: 135px;
    height: 135px;
}
footer .page .ewm p{
    text-align: center;
}
footer .page .copyRight {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-right: 1px solid #11b948;
}

footer .page .foot_tel {
    width: 20%;
    height: max-content;
    line-height: 30px;
}

.foot_tel {
    font-size: 16px;
    background: url(/public/image/tel2.png) no-repeat;
    background-size: 25px;
    padding-left: 28px;
}

.foot_tel span {
    font-size: 14px;
    height: 25px;
}

.foot_nav {
    background: #13b247;
}

.foot_nav ul {
    display: flex;
    justify-content: space-between;
}

.foot_nav ul li {
    flex: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot_nav ul li a {
    color: #fff;
}

.holder {
    width: 1400px;
    margin: 0 auto;
}

.met-show-body {
    background: #fff;
}

.met-show-body .holder .content {
    border: 1px solid #ddd;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.met-show-body img,
.met-show-body video {
    max-width: 100%;
}

.show_nav {
    width: 100%;
}

.show_nav>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.show_nav>ul>li {
    width: 200px;
    height: 40px;
    position: relative;
    margin: 30px 20px 0 20px;
    border: 1px solid #ededed;
}

.show_nav>ul>li>a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.show_nav>ul>li:hover>a,
.show_nav>ul>li.active>a {
    background: #00ac39;
    box-shadow: 4px 4px 5px #999;
    transition: 0.8s all ease-in-out;
    color: #fff;
}

.show_nav>ul>li>ul {
    position: absolute;
    top: 100%;
    width: 100%;
    height: 100%;
    display: none;
    box-shadow: 4px 4px 5px #999;
    z-index: 99;
}

.show_nav>ul>li>ul>li {
    height: 40px;
    border: 1px solid #ededed;
}

.show_nav>ul>li>ul>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #000;
}

.met-news {
    padding-top: 0;
}

.met-news .met-news-list ul li h4 span br {
    display: none;
}

.met-news {
    background: #fff;
}

.met-news .holder {
    display: flex;
    justify-content: space-between;
}

.met-news .met-news-body {
    border: 1px solid #ddd;
    margin-top: 30px;
}

.met-news .col-md-3 {
    width: 20%;
    border: 1px solid #ddd;
    height: max-content;
    margin-top: 30px;
}

.met-news .col-md-3 .met-bar {
    margin-left: 0;
}

.met-showimg {
    background: #fff;
    padding-top: 0;

}

.met-showimg-body {
    border: 1px solid #ddd;
    margin-top: 30px;
}

.met-showimg h1 br {
    display: none;
}

.page-item a span br {

    display: none;
}

.met-img {
    background: #fff;
    padding-top: 0;
}

.met-img .cover {
    height: 252px;
}

.blocks-xxl-4>li img {
    height: 100%;
}

.met-img .widget:hover .cover-title {
    background: #00ac39;
}

.met-img .met-img-list {
    margin-top: 30px;
}

.met-feedback {
    background: #fff;
}

.met-feedback .met-feedback-body {
    border: 1px solid #ddd;
}

#think_page_trace_open {
    bottom: -100px !important;
}

/* 搜索样式开始 */
.met-search {
    background: #fff;
}

.met-search ul {
    display: flex;
    flex-wrap: wrap;
}

.searchList {
    width: 32.5%;
    border-bottom: 1px solid #ccc;
    padding: 20px 10px;
    margin-right: 1.2%;
    -webkit-transition: all 0.3s ease-out;
    box-shadow: 0 0 1px #aaa;
    margin-bottom: 20px;
}

.searchList:hover {
    background: #fff;
    box-shadow: 0 26px 50px -6px rgba(97, 105, 113, 0.3);
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.searchList:nth-child(3n) {
    margin-right: 0;
}

.searchList h2 {
    font-size: 18px;
    overflow: hidden;
    height: 48px;
    margin-bottom: 10px;
}

.searchList h2 br {
    display: none;
}

.searchList:hover h2 {
    color: #ab050b;
}

.searchList span {
    font-size: 14px;
    opacity: .7;
    line-height: 1.8;
    color: #000;
}

.nothing {
    width: 100%;
    text-align: center;
    border: 0px;
    line-height: 100px;
    text-align: center;
    font-size: 18px;
    color: #999;
}

.met-search h1 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

/* 搜索样式结束 */