html, body {
    margin: 0;
    padding: 0;
    font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif, SimSun;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 24px;
}

ul, li, p, img, b, ol, em, h1, h2, h3, h4, h5, h6, dl, dd, dt {
    list-style-type: none;
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    text-decoration: none;
}

a, a:visited, a:link {
    color: inherit;
    text-decoration: none;
}

#dituContent img {
    max-width: inherit;
}

img {
    max-width: 100%;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.container {
    width: 1200px;
    margin: auto;
}

.clear {
    display: block;
    position: relative;
}


.clear:after {
    display: block;
    clear: both;
    content: "";
}

/*header*/

.header_top {
    line-height: 40px;
    background: #7eb923;
    color: #fff;
}

.header_dh b {
    font-size: 20px;
    font-weight: initial;
    margin-left: 10px;
}

/*logo*/

.logo {
    text-align: center;
}

.logo a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo img {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    display: block;
}

/*nav*/

.navbox {
    width: 100%;
    background: #323031;
}

.nav li {
    float: left;
    width: 20%;
    position: relative;
    box-sizing: border-box;
    padding: 10px 0;
}

.navbox a {
    font-size: 16px;
    display: block;
    line-height: 40px;
    text-align: center;
    background: #7eb923;
    width: 80%;
    margin: auto;
    border-radius: 40px;
    color: #fff
}

.nav_ul {
    position: absolute;
    top: 60px;
    z-index: 11;
    display: none;
    width: 20%;
    box-sizing: border-box;
    background: #fff;
}

.nav_ul li {
    float: none;
    width: 100%;
}

.nav_ul li a {
    font-size: 14px;
    line-height: 50px;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

.nav li:hover .nav_ul {
    display: block;
}



/*banner*/

.banner img {
    width: 100%;
    display: block;
}


/**/

.title {
    text-align: center;
}

.title h2 {
    height: 40px;
    padding: 0 20px;
    font-size: 35px;
    line-height: 40px;
    display: inline-block;
    position: relative;
    color: #7eb923;
    font-weight: initial;
}

.title h2:before {
    content: '';
    width: 20px;
    height: 3px;
    background: #7eb923;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    left: -20px
}

.title h2:after {
    content: '';
    width: 20px;
    height: 3px;
    background: #7eb923;
    position: absolute;
    top: 50%;
    margin-top: -1.5px;
    right: -20px
}


.title h3 {
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    text-transform: uppercase;
}



/*index*/





/*about*/


.about {
    position: relative;
    height: 400px;
}

.about_title {
    position: relative;
    padding-bottom: 10px;
}

.about_title:before {
    content: '';
    width: 30px;
    height: 3px;
    background: #7eb923;
    position: absolute;
    bottom: 0px;
    left: 0
}

.about_title h2 {
    height: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 30px;
    color: #7eb923;
}



.about_title h3 {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    text-transform: uppercase;
    color: #fff
}

.about_bj {
    background: url(../../images/about.jpg) no-repeat top center;
    height: 100%;
    background-size: 100% 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: -1;
}



.about_container {
    padding: 70px 0 0;
}


.about_img {
    width: 50%;
    height: 260px;
    overflow: hidden;
    display: flex;
    align-items: center;
}



.about_img img {
    margin: auto;
    height: 100%;
    display: block;
    transition: all 0.3s;
}

.about_img:hover img {
    transform: scale(1.1);
}

.about_text {
    width: 50%;
    padding: 10px 0 0 2%;
    box-sizing: border-box;
}

.about_text .p {
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    font-size: 16px;
    height: 120px;
    color: #fff;
    margin-top: 15px;
}


.about_text .more {
    display: block;
    text-align: center;
    width: 120px;
    border-radius: 20px;
    line-height: 32px;
    border: 1px solid #7eb923;
    box-sizing: border-box;
    float: right;
    margin-top: 15px;
    color: #7eb923
}

.about_text .more:hover {
    background: #7eb923;
    color: #fff
}



/*product*/
.product {
    background: #2f2f2f;
    padding: 70px 0 40px;
}


.product .title h3 {
    color: #fff
}

.product ul {
    margin-top: 70px;
}

.product li {
    width: 380px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    background: #7eb923;
}

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



.product_img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product_img img {
    margin: auto;
    display: block;
    transition: 0.5s all ease-in-out;
    height: 100%;
}



.product li:hover img {
    transform: scale(1.2);
}

.product_text {
    padding: 0 20px 10px;
    box-sizing: border-box;
    color: #fff
}

.product_text h3 {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    width: 100%;
    font-weight: normal;
}

.product_text p {
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    width: 100%;
    font-weight: normal;
}


/*news*/
.news {
    background: url(../../images/news.png) no-repeat;
    padding-top: 50px;
    padding-bottom: 50px;
    background-size: 100% 100%;
}


.news_title {
    position: relative;
    padding-bottom: 10px;
}

.news_title:before {
    content: '';
    width: 30px;
    height: 3px;
    background: #7eb923;
    position: absolute;
    bottom: 0px;
    left: 0
}

.news_title h2 {
    height: 30px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 30px;
    color: #7eb923;
}



.news_title h3 {
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    text-transform: uppercase;
    color: #333
}

.news ul {
    margin-top: 50px;
    box-sizing: border-box;
}

.news li {
    float: left;
    box-sizing: border-box;
    width: 32%;
    padding: 10px 55px 5px 80px;
    margin-bottom: 20px;
    overflow: hidden;
    background: url(../../images/news_li.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 2%;
    position: relative;
    color: #fff;
}



.news li:nth-child(3n) {
    margin-right: 0;
}




.news li h3 {
    font-size: 16px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 30px;
}


.news li p {
    height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
}

.news li span {
    float: right;
    display: inline-block;
    padding-right: 15px;
    background: url(../../images/clock.png) no-repeat left;
    padding-left: 25px;
    line-height: 30px;
}




/*city*/


.city {
    background: #7eb923;
    padding: 20px 0;
    color: #fff;
}

.city_title {
    width: 150px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 16px;
    float: left;
    background: #323031;
    color: #fff;
    border-radius: 40px;
}

.city .bd {
    float: right;
    width: 1050px;
}


.city li {
    line-height: 40px;
    height: 40px;
    float: left;
    margin: 0px 12px;
    font-size: 14px;
    width: 150px;
    text-align: center;
    background: #323031;
    color: #fff;
    border-radius: 40px;
}

.city li a {
    width: 95%;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    margin: auto;
}

/*footer*/

.footer {
    background: #323031;
    color: #fff;
    padding-bottom: 30px;
}

.footer_nav {
    margin-bottom: 30px;
}

.footer_nav ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer_nav li {
    line-height: 70px;
    float: left;
    font-size: 18px;
    width: 20%;
}

.footer_fl, .footer_fr {
    width: 580px;
    box-sizing: border-box;
}

.footer_fl li {
    float: left;
    width: 48%;
    margin: 0px 1%;
    line-height: 40px;
    font-size: 16px;
    height: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer_fl li.location:last-child {
    width: 100%;
    overflow: initial;
    white-space: initial;
}

.footer_fl li.location:nth-child(2n) {
    width: 48%;
}

.footer_fl .location span {
    width: 80px;
    float: left
}

.footer_fr {
    padding-left: 30px;
}

.footer_fr h2 {
    font-size: 16px;
    line-height: 40px;
}

.footer_fr li {
    float: left;
    margin-right: 2%;
    line-height: 40px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 40px;
}

.area .footer_fr li {
    font-size: 16px;
    width: 100%;
}

.footer .container li:hover {
    color: #7eb923
}

/**/

.page .footer {
    margin-top: 20px;
}

.page {
    margin-bottom: 0px;
}

/*path*/

.path {
    line-height: 50px;
    background: #323031 url(../../images/tb.png) no-repeat left;
    padding-left: 50px;
    font-size: 15px;
    color: #fff;
    margin-top: 10px;
    background-position-x: 10px;
}


/*pading*/

.pading {
    text-align: center;
    margin-top: 30px;
    line-height: 30px;
}

.pading a {
    padding: 5px 10px;
    border: 1px solid #ccc;
    margin: 0px 3px;
}

.pading a:hover {
    background: #7eb923;
    color: #fff;
    border-color: #7eb923
}

/**/

.tjxw {
    margin-top: 50px;
}

.tjxw ul {
    margin-top: 30px;
}

.tjxw li {
    float: left;
    box-sizing: border-box;
    width: 32%;
    padding: 10px 55px 5px 80px;
    margin-top: 20px;
    overflow: hidden;
    background: url(../../images/news_li.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 2%;
    position: relative;
    color: #fff;
}


.tjxw li:nth-child(3n) {
    margin-right: 0;
}




.tjxw li h3 {
    font-size: 16px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 30px;
}


.tjxw li p {
    height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
}

.tjxw li span {
    float: right;
    display: inline-block;
    padding-right: 15px;
    background: url(../../images/clock.png) no-repeat left;
    padding-left: 25px;
    line-height: 30px;
}


/*xg*/


.xgxw {
    margin-top: 50px;
}

.xgxw ul {
    margin-top: 30px;
}

.xgxw li {
    float: left;
    box-sizing: border-box;
    width: 32%;
    padding: 10px 55px 5px 80px;
    margin-top: 20px;
    overflow: hidden;
    background: url(../../images/news_li.png) no-repeat;
    background-size: 100% 100%;
    margin-right: 2%;
    position: relative;
    color: #fff;
}



.xgxw li:nth-child(3n) {
    margin-right: 0;
}




.xgxw li h3 {
    font-size: 16px;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    line-height: 30px;
}


.xgxw li p {
    height: 24px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    overflow: hidden;
}

.xgxw li span {
    float: right;
    display: inline-block;
    padding-right: 15px;
    background: url(../../images/clock.png) no-repeat left;
    padding-left: 25px;
    line-height: 30px;
}

/*xgcp*/

.xgcp, .xgcp ul {
    margin-top: 50px;
}

.xgcp li {
    width: 380px;
    float: left;
    margin-right: 30px;
    position: relative;
    background: #7eb923;
}

.xgcp li:nth-child(3n) {
    margin-right: 0;
}

.xgcp_img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.xgcp_img img {
    margin: auto;
    display: block;
    transition: 0.5s all ease-in-out;
    height: 100%;
}

.xgcp li:hover img {
    transform: scale(1.2);
}

.xgcp_text {
    padding: 0 20px 10px;
    box-sizing: border-box;
    color: #fff
}

.xgcp_text h3 {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    width: 100%;
    font-weight: normal;
}

.xgcp_text p {
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    width: 100%;
    font-weight: normal;
}




/*tjcp*/
.tjcp, .tjcp ul {
    margin-top: 50px;
}

.tjcp li {
    float: left;
    width: 285px;
    margin-right: 20px;
    background: #7eb923;
}

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

.tjcp_img {
    width: 100%;
    height: 222px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tjcp_img img {
    margin: auto;
    display: block;
    transition: 0.5s all ease-in-out;
    height: 100%;
}

.tjcp li:hover img {
    transform: scale(1.1);
}


.tjcp_text {
    color: #fff;
    padding: 0 20px 10px;
    box-sizing: border-box;
}


.tjcp_text h3 {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    width: 100%;
    font-weight: normal;
}


.tjcp_text p {
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    width: 100%;
    font-weight: normal;
}




/**/

.page_button {
    overflow: hidden;
    width: 100%;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-top: 30px;
}

.page_button .prevrecord, .page_button .nextrecord {
    margin: 5px 0px;
    display: block;
    font-size: 16px;
}

.page_button b {
    background: #ccc;
    color: #fff;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    padding: 0px 5px;
    font-weight: initial;
}

.page .page_return {
    font-size: 16px;
    text-align: center;
    display: inline-block;
    padding: 6px 10px;
    background: #ccc;
    float: right;
    color: #fff
}

.page .page_return:hover {
    background: #7eb923
}

.page_button a:hover {
    color: #7eb923
}

.page_bs {
    line-height: 50px;
    text-align: right;
    font-weight: bold;
    font-size: 16px;
}

/*page_product*/

.products {
    margin-top: 50px;
}

.products li {
    width: 380px;
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
    background: #7eb923;
}

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



.product_imgs {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.product_imgs img {
    margin: auto;
    display: block;
    transition: 0.5s all ease-in-out;
    height: 100%;
}



.products li:hover img {
    transform: scale(1.2);
}

.products_text {
    padding: 0 20px 10px;
    box-sizing: border-box;
    color: #fff
}

.products_text h3 {
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    width: 100%;
    font-weight: normal;
}

.products_text p {
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    width: 100%;
    font-weight: normal;
}

/*product_item*/

.product_item {
    margin-top: 50px;
}

.product_item_text {
    background: #7eb923;
    padding: 2%;
    margin-bottom: 15px;
    overflow: hidden;
    box-sizing: border-box;
    color: #fff
}


.product_item_img {
    width: 49%;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    height: 300px;
}

.product_item_img img {
    margin: auto;
    height: 100%;
    display: block;
    transition: all 0.3s;
}

.product_item_img:hover img {
    transform: scale(1.1);
}

.product_item_content {
    width: 49%;
}

.product_item_content h2 {
    line-height: 50px;
    border-bottom: 1px dashed #fff;
    font-size: 20px;
    height: 50px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.product_item_content p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 30px;
}

.product_items {
    margin-top: 40px;
    line-height: 30px;
    font-size: 15px;
}



/*page article*/

.articles {
    margin-top: 50px;
}

.articles li {
    background: #323031;
    padding: 2%;
    box-sizing: border-box;
    overflow: hidden;
    margin-bottom: 20px;
    color: #fff
}






.article_img {
    width: 305px;
    height: 192px;
    overflow: hidden;
    background: #333;
    display: flex;
    align-items: center;
}

.article_img img {
    margin: auto;
    height: 100%;
    display: block;
    transition: all 0.3s;
}

.articles li:hover img {
    transform: scale(1.1);
}

.article_text {
    width: 820px;
}

.article_text h3 {
    line-height: 50px;
    font-size: 20px;
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.articles li:hover h2 {
    border-color: #fff;
}

.article_text p {
    margin-top: 10px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    font-size: 15px;
}

.article_text span {
    background: url(../../images/clock.png) no-repeat left center;
    line-height: 30px;
    padding-left: 22px;
}



.articles li:hover h3 {
    color: #7eb923
}

/**/

.article_content {
    margin-top: 30px;
}

.article_content_text {
    text-align: center;
}

.article_content_text h2 {
    line-height: 80px;
    font-size: 30px;
    font-weight: initial;
}

.article_content_text h3 {
    font-size: 16px;
    color: #999;
    font-weight: initial;
}

.article_contents {
    margin-top: 30px;
    line-height: 30px;
    font-size: 15px;
}



/*page*/

.page_content {
    margin-top: 50px;
    line-height: 30px;
    font-size: 15px;
}

.page_content .title {
    margin-bottom: 50px;
}



/*area*/

.area_ul {
    margin-top: 50px;
    position: relative;
}


.area_ul li {
    margin-right: 25px;
    line-height: 40px;
    width: 150px;
    background: #323031;
    float: left;
    margin-bottom: 25px;
    color: #fff;
    border-radius: 40px;
}


.area_ul li a {
    width: 95%;
    display: block;
    text-align: center;
    height: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: auto;
    font-size: 16px;
}

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

.area_ul li:hover {
    background: #7eb923;
}








.area_ul1 {
    margin-top: 50px;
    position: relative;
}


.area_ul1 li {
    margin-right: 25px;
    line-height: 40px;
    /*width: 150px;
*/    background: #323031;
    float: left;
    margin-bottom: 25px;
    color: #fff;
    border-radius: 40px;
}


.area_ul1 li a {
    /*width: 95%;*/
    display: block;
    text-align: center;
    height: 40px;
  /*  white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;*/
    margin: auto;
    font-size: 16px;
    margin-left: 10px;
    margin-right: 10px;
}

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

.area_ul1 li:hover {
    background: #7eb923;
}