/* 全局样式 */

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
button,
input,
textarea,
label,
th,
td,
a,
img {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

ul,
li ,ul li{
    list-style: none;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
}

body {
    font-size: 15px;
}


/* 头部样式 */

.header {
    width: 1200px;
    margin: auto;
}

.header h1 {
    float: left;
}

.header h1 img {
    width: auto;
    height: 85px;
    margin-top: 6px;
}

.telbox {
    float: right;
    padding-left: 60px;
    margin-top: 20px;
    color: #157214;
    background: url(../images/coin-tel.jpg) left center no-repeat;
}

.telbox .tel {
    font-weight: bold;
    font-size: 22px;
}


/* 导航 */

.nav {
    clear: both;
    width: 100%;
    height: 50px;
    background: #157214;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    line-height: 50px;
    display: block;
    text-align: center;
}

.navbar_nav {
    width: 1200px;
    margin: auto;
}

.navbar_nav li {
    float: left;
    position: relative;
    display: block;
    width: 12.5%;
}

.navbar_nav li:after {
    content: "";
    width: 0;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.5s ease 0s;
}

.navbar_nav li:hover:after {
    width: 100%;
}

.navbar_nav li a {
    text-decoration: none;
    height: 100%;
    padding: 0 25px;
    display: block;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    color: #fff;
    font-size: 16px;
}

.navbar_nav li:hover a {
    color: #fff;
}

.navbar_nav li.dropdown {
    display: inherit;
    position: relative;
}

.navbar_nav li.dropdown .jt {
    width: 20px;
    height: 20px;
    background: url(../images/top.png) no-repeat;
    background-size: 100% 100%;
    display: block;
}

.navbar_nav li.dropdown .dropdown_menu {
    display: none;
    position: absolute;
    top: 50px;
    width: 100%;
    background: #fff;
    box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
    width: 120%;
    left: -10%;
}

.navbar_nav li.dropdown .dropdown_menu a {
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    margin-bottom: 2px;
}

.navbar_nav li.dropdown:hover .dropdown_menu {
    display: block;
    background: #f3f3f3;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.navbar_nav li.dropdown:hover .dropdown_menu a {
    color: #666;
}

.navbar_nav li.dropdown:hover .dropdown_menu a:hover {
    color: #fff;
    background: orange;
}

#navToggle {
    display: none;
}


/* 手机端导航 */

.m_nav {
    position: fixed;
    top: 0px;
    box-shadow: 0 15px 27px 0 rgba(167, 165, 165, 0.38);
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}

.m_nav.open {
    transform: translateX(0);
}

.m_nav .top {
    height: 60px;
    padding: 20px;
    box-sizing: border-box;
}

.m_nav .top .closed {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    float: right;
    cursor: pointer;
}

.m_nav .logo {
    width: 100%;
    margin: 0 auto;
}

.m_nav .logo img {
    height: 50px;
    display: block;
    margin: 30px auto;
}

.m_nav .ul {
    margin-top: 30px;
}

.m_nav .ul li {
    padding: 0 20px;
    border-bottom: 1px solid #f5f5f5;
    transform: translateY(0);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}

.m_nav.open .ul li {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}

.m_nav .ul li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
    width: 100%;
}

.m_nav .ul li .dropdown_menu {
    display: none;
}

.m_nav .ul li.dropdown.active .dropdown_menu {
    display: block;
}

.m_nav .ul li .dropdown_menu a {
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #f5f5f5;
}

.m_nav .ul li .dropdown_menu a:last-child {
    border: none;
}

.banner {
    width: 100%;
}

.banner img {
    width: 100%;
}

.content {
    width: 1200px;
    margin: auto;
}


/* 轮播 */

.edslider {
    position: relative;
    margin: auto;
}

.edslider ul {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.edslider>ul {
    background: #fff;
    display: block;
    overflow: hidden;
}

.edslider>ul li {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.edslider a {
    display: block;
}

.edslider a img {
    border: 0;
}

.edslider .current {
    z-index: 1 !important;
}


/*---controls---*/

.edslider .controls {
    top: 0;
    height: 0;
    position: absolute;
    width: 100%;
    z-index: 2;
}

.edslider .controls .navigator {
    background: rgba(0, 0, 0, .3);
    background-image: url(../images/sprite-navigator.png);
    cursor: pointer;
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    overflow: hidden;
    top: 225px;
    transition: background .2s;
}

.edslider .controls .next {
    background-position: 0 0;
    right: 0;
}

.edslider .controls .prev {
    background-position: 0 -50px;
    left: 0;
}

.edslider .controls .next:hover,
.edslider .controls .prev:hover {
    background-color: rgba(0, 0, 0, .6);
}

.edslider .controls .paginator {
    position: relative;
    text-align: center;
    top: 470px;
}

.edslider .controls .paginator li {
    background: rgba(0, 0, 0, .7);
    border-radius: 8px;
    box-sizing: border-box;
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 0 3px;
    cursor: pointer;
    transition: background .2s;
}

.edslider .controls .paginator li.current,
.edslider .controls .paginator li:hover,
.edslider .progress {
    background: rgba(255, 255, 255, 0.5);
}

.edslider .progress {
    position: absolute;
    top: 0;
    height: 3px;
    z-index: -1;
}


/* 公司简介 */

.aboutimg {
    float: right;
    width: 560px;
    height: 400px;
}

.aboutbox {
    margin-top: 30px;
    overflow: hidden;
}

.about_title {
    float: left;
    width: 160px;
    height: 400px;
    background: url(../images/about02.jpg) left top no-repeat;
}

.about_title p {
    margin: 50px 0 0 60px;
    width: 20px;
    font-size: 20px;
}

.about_con {
    float: left;
    width: 430px;
    line-height: 30px;
    text-align: justify;
    margin: 10px 0 0 20px;
}


/* 列表 */

.listbox01 {
    clear: both;
    width: 100%;
    overflow: hidden;
    margin: 30px 0;
}
.listbox01 div{ float: right; width: calc(100% - 100px);}
.listbox01 li {
    float: left;
    width: 23.5%;
    margin: 0 1%;
    color: #fff;
    padding: 30px 4%;
}

.listbox01 li img {
    float: left;
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.listbox01 li a {
    color: #fff;
}

.listbox01 li:nth-child(1) {
    background: #10892d;
}

.listbox01 li:nth-child(2) {
    background: #32b16c;
}

.listbox01 li:nth-child(3) {
    background: #638c0b;
    margin-right: 0px;
}

.listbox01 li p.title {
    font-size: 24px;
}

.listbox01 li p {
    margin-bottom: 5px;
}


/* 首页产品 */

.product {
    clear: both;
    margin-top: 30px;
    width: 1300px;
    margin: auto;
}

.indextitle {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    background: url(../images/bg-tit01.png) center center no-repeat;
}

.indextitle span {
    font-size: 14px;
    display: block;
    font-weight: 400;
}

.pro-new-show {
    position: relative;
    width: 1200px;
    margin: auto;
    height: auto;
}

.tempWrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.pro-new-show .pro-list {
    width: 100%;
    height: auto;
    margin-top: 30px;
    overflow: hidden;
}

.pro-new-show .pro-list ul {
    left: 0px;
    position: relative;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
}

.pro-new-show .pro-list ul li {
    float: left;
    width: 25%;
    height: auto;
    overflow: hidden;
    background: #FFFFFF;
    margin-right: 19px;
}

.pro-new-show .pro-list ul li:last-child {
    margin-right: 0;
}

.pro-new-show .pro-list ul li img {
    width: 100%;
    height: 200px;
}

.pro-new-show .pro-list ul li .p-title {
    font-size: 16px;
    color: #323232;
    margin: 10px 0 10px 0;
    text-align: center;
}

.pro-new-show .arrow a {
    display: inline-block;
    position: absolute;
    width: 49px;
    height: 100px;
    z-index: 2;
}

.pro-new-show .arrow a.prev {
    left: -50px;
    top: 20%;
    background: url(../images/left.png) center center no-repeat;
}

.pro-new-show .arrow a.next {
    right: -50px;
    top: 20%;
    background: url(../images/right.png) center center no-repeat;
}

.pro-new-show .arrow a:hover {
    background-color: rgba(0, 0, 0, .3);
}

.pro-new-show .pagination {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 40px;
    text-align: center;
}

.pro-new-show .pagination ul li {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background: #FFFFFF;
    display: inline-block;
    margin: 0 8px;
    text-indent: -9999px;
}

.pro-new-show .pagination ul li.on {
    background: #2069ff;
}

/* 广告图 */

.addbox {
    width: 100%;
    height: auto;
    margin-top: 30px;
}

.addbox img {
    width: 100%;
    height: auto;
}


/* 首页列表 */

.indexlist {
    float: left;
    width: 32%;
    margin:30px 2% 30px 0;
    display: block;
    overflow: hidden;
}
.indexlist:nth-child(3),.indexlist:nth-child(7){
    margin-right: 0px;
}
.indexlist li{
    margin: 15px 0;
    font-size: 15px;
    padding-left: 15px;
    overflow:hidden; text-overflow:ellipsis; white-space:nowrap; 
    background: url(../images/coin.png) left center no-repeat;
}
.indexlist li:hover a{
    color: #157214;
}
.indexlist_title_en{
    color: #157214;
    font-size: 18px;
}
.indexlist_title_ch{
    color: #333;
    font-size: 18px;
    font-weight: 600;
    background: url(../images/line.png) right center no-repeat;
    margin-bottom: 15px;
}
.indexlist_title_ch span{
    background: #fff;
    padding: 0 30px 0 0 ;
}
.indexlist_more{
    float: right;
}
.indexlist li a{ 
    color: #000;
}
/* 底部 */
.footer{
    width: 100%;
    overflow: hidden;
    clear: both;
    padding: 50px 0 0 0;
    background: #1a1a1a;
    color: #7a7a7a;
}
.footer a{
    color: #7a7a7a;
}
.foot{
    width: 1200px;
    margin: auto;
    height: 170px;
}
.foot h2{ float: left; margin-right: 60px;}
.bankuai{
    float: left;
} 
.bankuai li{
    border: 1px solid #7a7a7a;
    padding: 5px 40px;
    margin: 10px 0;
}
.contact{
    float: left;
    margin-top: 10px;
    margin-left: 60px;
}
.contact p{ 
    height: 30px;
    line-height: 30px;
}
.ewm{
    float: right;
}
.ewm li{ 
    text-align: center;
    float: left;
    margin-right: 20px;
}
.link{
    clear: both;
    width: 1200px;
    margin: auto;
    overflow: hidden;
    padding-bottom: 10px;
}
.link p{ 
    float: left;
    margin-right: 10px;
}
.link ul{
    float: left;
}
.link ul li{
    float: left;
    margin: 0 20px;
}
.copyright{
    clear: both;
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    border-top: 1px solid #7a7a7a;
}

/* 列表页 */
.content_left{
    width: 260px;
    float: left;
    margin: 20px 2% 0 0;
}
.content_left .listbox01 li{
    float: none;
    width: 100%;
    overflow: hidden;
    padding: 20px 4%;
    margin-bottom: 10px;
}
.content_left .listbox01 div{ width: calc(100% - 80px);}
.content_left .listbox01 li img{
 width: 60px;
 height: 60px;
}
.content_left .indexlist{
    width: 100%;
    float: none;
}
.content_right{
    margin-top: 20px;
    width: 900px;
    float: right;
}
.content_nav a{ color: #000;}
.list li{
    margin: 20px 0;
    font-size: 15px;
    padding-left: 15px;
    height: 30px;
    line-height: 30px;
    background: url(../images/coin.png) left center no-repeat;
}
.list li p{ float: left; width: calc(100% - 100px); overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.list li a{
    color: #000;
}
.list li span{
    float: right;
}
.list li:hover a{
    color: #157214;
}
.pclist li{ width: 32%; float: left; margin-right: 1%; text-align: center;}
.pclist li p{ height: 40px; line-height: 20px;text-align: center;}
.pclist li img{ width: 100%; height: auto;}
.pclist li a{ color: #000;}
.cpimg{ margin: auto; text-align: center; margin-bottom: 20px;}
.cpimg img{ display: inline-block; max-width: 100%; height: auto;}
.cpname{ text-align: center; font-size: 20px; margin-bottom: 30px;}

.page{ clear:both; padding:30px 0px;}
.page a{ display:inline-block; padding:0 15px; height:35px; border:1px #aaa solid; border-radius:5px;  line-height:35px; margin:0 5px;}
.page span{ display:inline-block; padding:0 15px;}
.page a:hover{ background:#157214; color:#fff;border:1px #157214 solid;}
.page a.hover{ background:#157214; color:#fff;border:1px #157214 solid;}