* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    overflow: hidden;
    clear: both;
}


/* 手机导航 */

.mobile-inner-header {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #333;
    font-weight: bold;
    font-size: 22px;
}

.mobile-inner-header-icon {
    color: #333;
    height: 60px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 60px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: rgba(0, 0, 0, 1);
}

.mobile-inner-header img {
    height: 100%;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }
    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }
    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }
    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0px;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    z-index: 999;
}

.mobile-inner-nav a {
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    width: 80%;
    margin-left: 10%;
    color: #000;
    border-bottom: solid 1px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(0, 0, 0, 0.4);
    border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}


/* 网页头部 */

.header {
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
}

.header_main {
    max-width: 1700px;
    /* overflow: hidden; */
    margin: auto;
}

.logo {
    width: 16.88%;
    float: left;
    height: 100px;
    line-height: 100px;
}

.logo img {
    width: 100%;
}


/* 导航 */

.nav {
    width: 76.5%;
    height: 100px;
    line-height: 100px;
    float: right;
}

.nav ul {
    width: 100%;
    /* overflow: hidden; */
    margin-bottom: 0;
}

.nav ul li {
    float: left;
    width: calc(100%/9);
    text-align: center;
    font-size: 18px;
    position: relative;
}

.nav ul li a {
    color: #000000;
    display: inline-block;
}

.xiala {
    width: 180%;
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 999;
    display: none;
    transition: all 0.6s;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
	margin-left:-40%;
}

.nav ul li:hover .xiala {
    display: block;
}

.nav .xiala a {
    display: block;
    color: #333 !important;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    border-bottom: 1px dashed #666666;
    width: 100%;
    position: relative;
}

.nav .xiala a:last-child {
    border-bottom: none;
}

.nav .xiala a:hover {
    color: #fff!important;
    background: #006433 !important;
}


/* banner */

.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner_01 .swiper-pagination-bullet {
    background: #fff;
    width: 35px;
    height: 15px;
    opacity: 1;
    border-radius: 20px;
}

.banner_01 .swiper-pagination-bullet-active {
    background-color: #006433;
}


/* 关于我们 */

.about {
    width: 100%;
    height: 994px;
    background: url(../images/about_bg.jpg) center no-repeat;
    padding-top: 40px;
}

.about_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
}

.about_left {
    width: 47.35%;
    overflow: hidden;
    float: left;
}

.about_title {
    font-size: 36px;
    color: #c2d62b;
    font-weight: 700;
}

.about_title span {
    color: #006433;
}

.about_content {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    line-height: 1.8;
    font-size: 18px;
    color: #000;
    text-indent: 2em;
}

.about_right {
    width: 50%;
    overflow: hidden;
    float: right;
}

.about_right video {
    width: 100%;
}

.about_data {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
}

.about_data_01 {
    width: calc(100% / 4);
    float: left;
    text-align: center;
}

.about_data_01 p {
    font-size: 29px;
    color: #2f2f2f;
}

.about_data_01 p span {
    font-size: 48px;
    color: #2f2f2f;
    font-weight: 700;
}


/* 主营业务 */

.pro,
.inpro {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inpro {
    padding-bottom: 30px;
}

.title {
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 36px;
    color: #000000;
}

.pro_01 {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.inpro_01 {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.pro_top {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 1px solid #d2d2d2;
}

.pro_top_title {
    float: left;
    font-size: 24px;
    color: #000000;
    font-weight: 700;
}

.pro_top_more {
    float: right;
    margin-top: 10px;
}

.pro_top_more a {
    font-size: 16px;
    color: #006433;
    text-transform: uppercase;
    padding-top: 10px;
}

.pro_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.pro_main_01,
.pro_main_01 .swiper-slide,
.pro_main_01 .swiper-slide a,
.pro_main_01 .swiper-slide img,
.inpro_main_01,
.inpro_main_01 .swiper-slide,
.inpro_main_01 .swiper-slide a,
.inpro_main_01 .swiper-slide img {
    width: 100%;
    overflow: hidden;
}

.pro_top_class,
.inpro_top_class {
    float: left;
    margin-left: 30px;
}

.pro_02,
.inpro_02 {
    margin-top: 40px;
}

.pro_top_class a,
.inpro_top_class a {
    display: inline-block;
    width: 180px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 30px;
    background: #006433;
    margin-right: 30px;
    color: #fff;
    font-size: 16px;
}

.pro_top_class a.active,
.inpro_top_class a.active {
    background: #c2d62b;
}

.pro_sm {
    width: 100%;
    overflow: hidden;
}

.pro_sm_01,
.pro_school,
.pro_main_02 .swiper-slide,
.pro_main_02 .swiper-slide img,
.inpro_main_02 .swiper-slide,
.inpro_main_02 .swiper-slide img {
    width: 100%;
    overflow: hidden;
}

.pro_sm_01 {
    display: none;
}

.pro_school_01,
.inpro_school_01 {
    width: 100%;
    margin-top: 30px;
}

.pro_school_01 .swiper-slide,
.inpro_school_01 .swiper-slide {
    width: 100%;
    /* overflow: hidden; */
    text-align: center;
    font-size: 20px;
    position: relative;
}

.pro_school_01 .swiper-slide a,
.inpro_school_01 .swiper-slide a {
    color: #424242;
}

.pro_school_01 .swiper-slide a.activ,
.inpro_school_01 .swiper-slide a.activ {
    color: #006433;
    font-weight: 700;
}

.pro_school_01 .swiper-slide::after,
.inpro_school_01 .swiper-slide::after {
    content: "";
    width: 204px;
    height: 26px;
    background: url(../images/pro_sm_01.png) center no-repeat;
    position: absolute;
    right: -120px;
    top: 3px;
}

.pro_school_01 .swiper-slide:last-child:after,
.inpro_school_01 .swiper-slide:last-child:after {
    display: none;
}

.pro_smain {
    width: 100%;
    overflow: hidden;
}

.pro_main_02,
.inpro_main_02 {
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
    display: none;
}

.pro_main_03 {
    width: 100%;
    overflow: hidden;
}

.pro_main_03 img {
    width: 100%;
}


/* 生产设备 */

.equ {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.equ_top {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #006433;
    text-align: center;
}

.equ_title {
    width: 100%;
    color: #fff;
    font-size: 36px;
}

.equ_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    font-size: 0;
}

.equ_nav a {
    display: inline-block;
    border: 1px solid #fff;
    width: 220px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    border-radius: 30px;
    margin-right: 30px;
}

.equ_nav a.active {
    background: #c2d62b;
    border: 1px solid #c2d62b;
}

.equ_main {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.equ_mains {
    width: 100%;
    overflow: hidden;
    display: none;
}

.equ_bigPic {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    text-align: center;
}

.equ_bigPic img {
    width: 90%;
}

.equ_main_01,
.equ_main_01 .swiper-slide,
.equ_main_01 .swiper-slide img {
    width: 100%;
    overflow: hidden;
}

.equ_main_01 {
    margin-top: 20px;
}


/* 公司资质 */

.honor {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    margin-top: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.title {
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 36px;
}

.honor_nav,
.inhonor_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    font-size: 0;
    text-align: center;
}

.honor_nav a,
.inhonor_nav a {
    display: inline-block;
    background: #006433;
    width: 180px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    border-radius: 30px;
    margin-right: 30px;
}

.honor_nav a.active,
.inhonor_nav a.active {
    background: #c2d62b;
}

.honor_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.honor_mains,
.honor_main_01,
.honor_main_01 .swiper-slide,
.honor_main_01 .swiper-slide img {
    width: 100%;
    overflow: hidden;
}

.honor_mains {
    display: none;
}


/* 厂房车间 */

.workshop {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.workshop_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.workshop_left {
    float: left;
    width: 65%;
    overflow: hidden;
}

.workshop_left img {
    width: 100%;
}

.workshop_right {
    float: right;
    width: 34.6%;
    overflow: hidden;
}

.workshop_right_01 {
    width: 100%;
    overflow: hidden;
    margin-bottom: 10px;
}

.workshop_right_01 img {
    width: 100%;
}


/* 新闻资讯 */

.news {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.news_nav {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    font-size: 0;
    text-align: center;
}

.news_nav a {
    display: inline-block;
    background: #006433;
    width: 180px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    line-height: 40px;
    border-radius: 30px;
    margin-right: 30px;
}

.news_nav a.active {
    background: #c2d62b;
}

.news_main {
    width: 100%;
    /* overflow: hidden; */
    margin-top: 30px;
    padding-bottom: 20px;
}

.news_main_01 {
    width: 100%;
    /* overflow: hidden; */
    display: none;
}

.news_main_01,
.news_main_01 .swiper-slide {
    width: 100%;
    /* overflow: hidden; */
}

.news_pic {
    width: 100%;
    overflow: hidden;
}

.news_pic img {
    width: 100%;
}

.news_content {
    width: 100%;
    overflow: hidden;
    padding: 20px 30px;
    background: #f6f6f6;
    transition: all 0.6s;
}

.news_ctitle {
    font-size: 19px;
    color: #000;
}

.news_word {
    margin-top: 20px;
    line-height: 2.6;
    font-size: 14px;
    color: #979797;
    padding-bottom: 20px;
    border-bottom: 1px solid #979797;
}

.news_more {
    width: 120px;
    height: 35px;
    line-height: 35px;
    color: #000;
    background: #fff;
    text-align: center;
    border-radius: 30px;
    margin-top: 20px;
}

.news_main_01 .swiper-slide:hover .news_content {
    background: #fff;
    box-shadow: 0 0 10px #ccc;
    width: 95%;
    margin: auto;
    z-index: 9;
    position: relative;
    margin-top: -30px;
    padding: 20px 5px;
    padding-top: 50px;
}

.news_main_01 .swiper-slide:hover .news_more {
    background: #f8692f;
    color: #fff;
}


/* 联系我们 */

.contact {
    width: 100%;
    height: 282px;
    background: url(../images/contact_bg.jpg) center no-repeat;
    color: #fff;
    text-align: center;
    padding-top: 60px;
}

.contact_title {
    font-size: 36px;
    font-weight: 700;
}

.contact_word {
    display: inline-block;
    font-size: 36px;
    border: 1px solid #fff;
    box-shadow: 0 0 10px #fff;
    padding: 10px 20px;
    margin-top: 30px;
}

.contact_word p {
    display: inline;
    margin-right: 40px;
}

.contact_word p:last-child {
    margin-right: 0px;
}


/* 页脚 */

.foot {
    width: 100%;
    overflow: hidden;
    background: #f7f7f7;
    padding: 40px 0;
}

.foot_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
}

.foot_left {
    width: 16.88%;
    overflow: hidden;
    float: left;
}

.foot_logo {
    width: 100%;
}

.foot_logo img {
    width: 100%;
}

.foot_ma {
    max-width: 213px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.foot_ma img {
    width: 100%;
}

.foot_main_01 {
    float: left;
    margin-left: 3%;
}

.foot_title a {
    font-size: 18px;
    color: #000;
}

.foot_content {
    margin-top: 10px;
}

.foot_content a {
    display: block;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 3;
}

.copy {
    width: 100%;
    padding: 30px 0;
    background: #f7f7f7;
    text-align: center;
    border-top: 1px solid #c7c7c7;
    font-size: 16px;
}

.copy a {
    display: inline-block;
    margin-left: 10px;
}


/* 产品中心内页 */

.inbanner {
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.inbanner img {
    width: 100%;
}


/* 关于我们内页 */

.culture {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.culture_main {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.culture_main_01 {
    width: 13.96%;
    height: 719px;
    float: left;
    transition: all 0.6s;
    position: relative;
}

.culture_main_01.activer {
    width: 30.2%;
}

.culture_pic {
    width: 100%;
    height: 100%;
}

.culture_bg{
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.6);
	position:absolute;
	top:0;
	left:0;
	opacity: 0;
}

.culture_content {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 30%;
    left: 30px;
    opacity: 0;
    transition: all 0.6s;
}

.culture_title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

.culture_word {
	width:80%;
    font-size: 19px;
    color: #000;
    margin-top: 20px;
}

.culture_main_01.activer .culture_content {
    opacity: 1;
}
.culture_main_01.activer .culture_bg{
	opacity: 1;
}


/* 发展历程 */

.history {
    width: 100%;
    height: 975px;
    background: url(../images/his_bg.jpg) center no-repeat;
    padding-top: 40px;
}

.history_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.history_main_01 {
    width: 100%;
    overflow: hidden;
    display: none;
}

.histor_left {
    width: 42%;
    overflow: hidden;
    margin-left: 6%;
    float: left;
    margin-top: 120px;
    color: #000000;
    font-size: 22px;
    line-height: 2.2;
}

.history_right {
    float: right;
    width: 50.5%;
    overflow: hidden;
}

.history_right img {
    width: 100%;
}

.history_switch {
    max-width: 1700px;
    margin: auto;
    position: relative;
    margin-top: 60px;
}

.dev_01 {
    width: 100%;
    overflow: hidden;
    background: url(../images/dev_line.png) bottom 30px center no-repeat;
}

.dev_content {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 10px;
    text-align: center;
    padding-top: 30px;
    height: 120px;
}

.dev_day {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    background: #006433;
    font-size: 19px;
    position: relative;
}

.dev_day::after {
    content: "";
    width: 19px;
    height: 16px;
    background: url(../images/his_01.png) center no-repeat;
    position: absolute;
    left: 43%;
    bottom: -16px;
}

.dev_01 .swiper-slide {
    width: 100%;
    padding-bottom: 80px;
}

.dev_01 .swiper-slide::after {
    content: "";
    width: 48px;
    height: 48px;
    background: url(../images/dev_y.png) center no-repeat;
    position: absolute;
    bottom: 10px;
    left: 36.5%;
}

.dev_01 .swiper-slide.active::after {
    background: url(../images/dev_y1.png) center no-repeat;
}

.dev_button_left {
    position: absolute;
    left: -50px;
    top: 87%;
    width: 38px;
    height: 38px;
    background: url(../images/dev_left.png);
    background-size: cover;
}

.dev_button_right {
    position: absolute;
    right: -50px;
    top: 87%;
    width: 38px;
    height: 38px;
    background: url(../images/dev_right.png);
    background-size: cover;
}


/* 产品详情 */

.proshow {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
    padding-bottom: 20px;
}

.proshow_top {
    width: 100%;
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 1px solid #d2d2d2;
    font-size: 24px;
    color: #000;
    font-weight: 700;
    margin-top: 15px;
}

.proshow_main {
    width: 100%;
}

.proshow_main_01 {
	float:left;
    width: 23.5%;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    box-shadow: 0 0 10px #e3e3e3;
    border-radius: 10px;
    margin-top: 30px;
	margin-right:2%;
}
.proshow_main_01:nth-child(4n){
	margin-right:0;
}
.proshow_pic {
    width: 100%;
    overflow: hidden;
}

.proshow_pic img {
    width: 100%;
}

.proshow_content {
    width: 100%;
	text-align:center;
    /*padding-top: 220px;
    padding-left: 30px;
    padding-right: 80px;*/
    font-size: 20px;
    line-height: 3;
}
/*
.proshow_main_01:nth-child(2n+1) .proshow_pic {
    float: left;
}

.proshow_main_01:nth-child(2n+1) .proshow_content {
    float: right;
}

.proshow_main_01:nth-child(2n) .proshow_pic {
    float: right;
}

.proshow_main_01:nth-child(2n) .proshow_content {
    float: left;
}
*/

/* 新闻内页 */

.info {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0 10px;
}

.info_nav {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.info_nav a {
    display: inline-block;
    padding: 10px 20px;
    color: #333;
    font-size: 18px;
    margin-right: 40px;
    transition: all 0.6s;
    position: relative
}

.info_nav a::after {
    content: "";
    width: 0;
    height: 1px;
    background: #006433;
    position: absolute;
    left: 50%;
    bottom: 0;
    transition: all 0.6s;
}

.info_nav a:hover {
    color: #006433;
}

.info_nav a:hover::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #006433;
    position: absolute;
    left: 0;
    bottom: 0;
}

.info_main {
    width: 100%;
    /* overflow: hidden; */
    margin-top: 40px;
}

.info_main_01 {
    width: 32%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    border: 1px solid #eee;
    padding: 20px 10px 20px;
    margin-bottom: 30px;
}

.info_main_01:nth-child(3n) {
    margin-right: 0;
}

.info_pic {
    width: 100%;
    overflow: hidden;
}

.info_pic img {
    width: 100%;
}

.info_content {
    width: 100%;
    overflow: hidden;
    padding: 15px;
}

.info_title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.info_date {
    width: 100%;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.info_word {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    line-height: 1.8;
}

.info_main_01:hover {
    box-shadow: 0 0 10px #006433;
}


/* 新闻详情 */

.news_d_title {
    margin: 5px 0;
    padding: 0;
    text-align: center;
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

.news_d_info {
    text-align: center;
    color: #999;
    border: 1px solid #e1e1e1;
    border-left: 0;
    border-right: 0;
    margin: 10px 0;
    padding: 5px 0;
    margin-top: 40px;
}

#art_content {
    word-break: break-all;
    font-size: 16px;
    padding: 0 0 10px 0;
    line-height: 2.2;
}

#art_content img {
    display: block;
    width: 100%;
    margin: 20px auto;
	text-align:center;
}

.newshow {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.newshows {
    max-width: 1700px;
    margin: 20px auto 40px;
}


/* 生产设备 */

.inequ {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 80px 0;
}

.inequ_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 40px;
}

.inequ_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
}

.inequ_main_01:nth-child(4n) {
    margin-right: 0;
}

.inequ_main_01 img {
    width: 100%;
    transition: all 0.6s;
}

.inworkshop {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
}

.inworkshop_main {
    width: 100%;
    overflow: hidden;
    margin: auto;
    margin-top: 20px;
}

.inworkshop_main_01 {
    width: 32%;
	max-height:323.9px;
    overflow: hidden;
    margin-right: 2%;
    margin-bottom: 30px;
    float: left;
}

.inworkshop_main_01:nth-child(3n) {
    margin-right: 0;
}

.inworkshop_main_01 img {
    width: 100%;
    transition: all 0.6s;
}


/* 荣誉资质 */

.inhonor {
    width: 100%;
    overflow: hidden;
    padding: 40px 0 80px 0;
}

.inhonor_main {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
}

.inhonor_main_01 {
    width: 19%;
    overflow: hidden;
    float: left;
    margin-right: 1.25%;
    margin-bottom: 30px;
}

.inhonor_main_01:nth-child(5n) {
    margin-right: 0;
}

.inhonor_main_01 img {
    width: 100%;
}

.inequ_main_01 {
    width: 23.5%;
    overflow: hidden;
    float: left;
    margin-right: 2%;
    margin-bottom: 30px;
}

.inequ_main_01:nth-child(4n) {
    margin-right: 0;
}

.inequ_main_01 img {
    width: 100%;
}


/* 联系我们 */

.incontact {
    max-width: 1700px;
    overflow: hidden;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.incontact_left {
    float: left;
    width: 35%;
    overflow: hidden;
}

.incontact_title {
    font-size: 30px;
    color: #000;
}

.incontact_form {
    width: 100%;
    overflow: hidden;
}

.incontact_form form {
    width: 100%;
    overflow: hidden;
}

.incontact_form input[type=text] {
    width: 98%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    border: 1px solid #d2d2d2;
    font-size: 18px;
    background: none;
    outline: none;
    margin: auto;
    margin-top: 20px;
}

.incontact_form textarea {
    width: 98%;
    height: 80px;
    padding-top: 10px;
    padding-left: 30px;
    border: 1px solid #d2d2d2;
    font-size: 18px;
    background: none;
    outline: none;
    margin: auto;
    margin-top: 20px;
}

.incontact_form input[type=submit] {
    width: 98%;
    height: 60px;
    line-height: 60px;
    padding-left: 30px;
    background: #006433;
    color: #fff;
    border: 1px solid #d2d2d2;
    font-size: 24px;
    outline: none;
    margin: auto;
    margin-top: 20px;
}

.incontact_map {
    width: 65%;
    overflow: hidden;
    float: right;
}