* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}

body {
    font-family: "微软雅黑";
    background: url(../images/bg.jpg) center no-repeat;
	background-size:cover;
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

.clear {
    clear: both;
    overflow: hidden;
}

.mobile-inner-header {
    background-color: rgba(0, 166, 80, 0.7);
    width: 100%;
    height: 60px;
    display: none;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    position: relative;
}

.mobile-inner-header-icon {
    color: #fff;
    height: 60px;
    font-size: 25px;
    text-align: center;
    width: 60px;
    position: absolute;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
    outline: none;
    top: 0;
    right: 0;
}

.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(255, 255, 255, 1);
}

.mobile-inner-header img {
    height: 70%;
}

.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(0, 166, 80, 0.9);
    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: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 100%;
}

.banner .swiper-pagination-bullet-active {
    opacity: 0.6;
}

.banner.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 35px;
}

.banner.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.head {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 172px;
    background: url(../images/nav.png) center no-repeat;
}

.heads {
    max-width: 1495px;
    margin: auto;
    height: 172px;
    position: relative;
}

.logo {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 10px;
    left: 0;
}

.leftnav .nav {
    float: left;
    margin-right: 180px;
    height: 80px;
    line-height: 80px;
}

.leftnav a {
    font-size: 24px;
    color: #fff;
    display: block;
}

.leftnav .nav:last-child {
    margin-right: 0;
}

.rightnav .nav {
    float: left;
    margin-right: 180px;
    height: 80px;
    line-height: 80px;
}

.rightnav a {
    font-size: 24px;
    color: #fff;
    display: block;
}

.rightnav .nav:last-child {
    margin-right: 0;
}

.leftnav {
    left: 11%;
    top: 0;
    position: absolute;
}

.rightnav {
    right: 11%;
    top: 0;
    position: absolute;
}

.nav {
    position: relative;
}

.detailnav {
    position: absolute;
    left: -20%;
    top: 70px;
    width: 140%;
    text-align: center;
    background: #00A650;
    z-index: 99;
    display: none;
}

.detailnav li {
    height: auto;
    line-height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.detailnav li a {
    font-size: 16px;
}

.nav:hover .detailnav {
    display: block;
}

.search {
    cursor: pointer;
    top: 25px;
    position: absolute;
    right: 0;
}

.search-box {
    width: 30%;
    position: fixed;
    right: 0;
    top: 115px;
    display: none;
    z-index: 9999;
    background: #00A650;
    padding: 18px 2%;
}

.search-box .close {
    float: right;
    width: 35px;
    height: 35px;
    background: url(../images/wel26.png) no-repeat center;
    background-size: 100%;
    margin-top: 2px;
    opacity: 1;
}

.search-box form {
    width: 76%;
    height: 40px;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
}

.search-box form .text {
    font-size: 12px;
    border: none;
    background: none;
    padding: 0 28px 0 18px;
    width: 100%;
    height: 40px;
    color: #fff;
    line-height: 40px;
    outline: none;
}

.search-box form .submit {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 14px;
    margin-top: -15px;
    background: url(../images/search.png) no-repeat center;
    border: none;
}

.search-box form .text::-webkit-input-placeholder {
    color: #fff;
}

.search-box form .text:-moz-placeholder {
    color: #fff;
}

.search-box form .text::-moz-placeholder {
    color: #fff;
}

.search-box form .text:-ms-input-placeholder {
    color: #fff;
}

.floadAd {
    position: fixed;
    z-index: 998;
    display: none;
}

.floadAd .item {
    display: block;
}

.floadAd .item img {
    vertical-align: bottom;
}

.new {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
}

.news {
    max-width: 1495px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 30px 45px;
}

.left_new {
    float: left;
    width: 46.2%;
}

.newswiper a {
    display: block;
    overflow: hidden;
    border-radius: 5px;
}

.newswiper a img {
    width: 100%;
    border-radius: 5px;
}

.newswiper a p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55px;
    line-height: 55px;
    background: rgba(0, 166, 80, 0.6);
    padding-left: 40px;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
}

.newswiper .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 3px;
}

.newswiper .swiper-pagination-bullet-active {
    width: 45px;
}

.newswiper.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 20px;
    text-align: right;
    padding-right: 40px;
}

.newswiper.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
}

.right_new {
    float: right;
    width: 47%;
}

.rnewnav {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 166, 80, 0.4);
    height: 51px;
}

.rnewnav span,
.rnewnav a {
    display: block;
    width: 25%;
    float: left;
    padding-left: 3%;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.rnewnav span.active {
    background: url(../images/newnav.png) left center no-repeat;
    color: #fff;
}

.rnewlist {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.rnew {
    width: 100%;
    overflow: hidden;
    line-height: 30px;
    border-bottom: 1px dashed #EFEFEF;
    padding-left: 20px;
    background: url(../images/newlist.png) left center no-repeat;
}

.rnewtitle {
    float: left;
    font-size: 18px;
    color: #333;
	padding:10px 0;
}

.rnewdate {
    float: right;
    font-size: 12px;
    color: #666;
}

.rnew:hover {
    background: url(../images/newlist_active.png) left center no-repeat;
}

.rnew:hover .rnewtitle {
    color: #00A650;
}

.rnewlists {
    display: none;
}

.info {
    width: 100%;
    padding-top: 55px;
    overflow: hidden;
}

.infos {
    max-width: 1495px;
    margin: auto;
}

.left_info {
    float: left;
    background: #fff;
    border-radius: 10px;
    height: 416px;
    width: 44.1%;
    padding: 40px 25px 0;
}

.right_info {
    float: right;
    background: #fff url(../images/info.png) right bottom no-repeat;
    border-radius: 10px;
    height: 416px;
    width: 53%;
    padding: 40px 25px 0;
}

.infotitle {
    text-align: center;
    margin-top: -80px;
}

.linfo a {
    display: block;
    line-height: 18px;
    border-bottom: 1px dashed #EFEFEF;
    padding-left: 20px;
    background: url(../images/newlist.png) left center no-repeat;
    font-size: 18px;
    color: #333;
}

.linfo a:last-child {
    border-bottom: none;
}

.linfo a:hover {
    color: #00A650;
    background: url(../images/newlist_active.png) left center no-repeat;
}

.rinfo a {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 49px;
    border-top: 1px dashed #EFEFEF;
    padding-left: 20px;
    background: url(../images/newlist.png) left center no-repeat;
}

.rinfo_title {
    float: left;
    font-size: 18px;
    color: #333;
}

.rinfodate {
    float: right;
    font-size: 12px;
    color: #666;
}

.rinfo a:hover {
    background: url(../images/newlist_active.png) left center no-repeat;
}

.rinfo a:hover .rinfo_title {
    color: #00A650;
}

.linfo,
.rinfo {
    margin-top: 20px;
}

.case {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
}

.cases {
    max-width: 1495px;
    margin: auto;
}

.caseswiper img {
    width: 100%;
    border: 4px solid #00A650;
}

.link {
    width: 100%;
    overflow: hidden;
    margin: 60px 0 0;
}

.links {
    max-width: 1495px;
    margin: auto;
    background: rgba(0, 166, 80, 0.1);
    height: 30px;
    line-height: 30px;
    border-radius: 10px;
}

.links a {
    display: block;
    width: 25%;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #333;
}

.copy {
    width: 100%;
    text-align: center;
    background: #0BB469;
    font-size: 14px;
    color: #fff;
    line-height: 45px;
}

.copy a {
    font-size: 14px;
    color: #fff;
    margin-left: 10px;
}

.backtop {
    position: fixed;
    bottom: 10%;
    right: 5%;
    cursor: pointer;
}

.about {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.abouts {
    max-width: 1495px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 40px;
}

.abtitle {
    text-align: center;
    border-bottom: 1px solid rgba(0, 166, 80, 0.4);
    font-size: 36px;
    color: #333;
    padding-bottom: 16px;
}

.abintro {
    text-align: center;
    margin-top: 15px;
}

.abintro span {
    padding: 0 20px;
    font-size: 12px;
    color: #666;
}

.abintro span img {
    margin-right: 10px;
    margin-top: -3px;
}

.abcon {
    font-size: 20px;
    color: #333;
    text-indent: 2em;
    line-height: 1.8;
    margin-top: 25px;
}

.innew {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.innews {
    max-width: 1495px;
    margin: auto;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    padding: 45px;
}

.innew_left {
    float: left;
    width: 17%;
}

.innew_left_nav_top {
    width: 100%;
    text-align: center;
    background: #00A650;
    line-height: 53px;
    font-size: 22px;
    color: #fff;
}

.innew_left_nav_list a {
    display: block;
    text-align: center;
    border: 1px solid #DDDDDD;
    line-height: 51px;
    font-size: 22px;
    color: #333;
}

.innew_left_nav_list a:hover {
    color: #00A650;
}

.innew_left_bot {
    width: 100%;
    padding: 35px 15px;
    background: #fff url(../images/info.png) right bottom no-repeat;
    background-size: 65px;
    border-radius: 10px;
    box-shadow: 0 0 10px #eee;
    margin-top: 50px;
}

.innew_left_bot_title {
    text-align: center;
    margin-top: -60px;
}

.innew_left_bot_title img {
    width: 155px;
}

.innew_left_bot_list a {
    display: block;
    padding-left: 15px;
    font-size: 14px;
    color: #333;
    background: url(../images/newlist.png) left center no-repeat;
    border-bottom: 1px dashed #DDDDDD;
    line-height: 40px;
}

.innew_left_bot_list a:last-child {
    border-bottom: none;
}

.innew_right {
    float: right;
    width: 78%;
}

.innew_right_top {
    width: 100%;
    border-bottom: 1px solid rgba(0, 166, 80, 0.4);
    line-height: 53px;
    overflow: hidden;
}

.innew_right_top_fl {
    float: left;
}

.innew_right_top_fl a,
.innew_right_top_fl span {
    font-size: 16px;
    color: #666;
}

.innew_right_top_fl a:hover {
    color: #00A650;
}

.innew_right_top_fl img {
    margin-top: -5px;
}

.innew_right_top_fr {
    float: right;
    background: url(../images/newnav.png) center no-repeat;
    font-size: 30px;
    color: #fff;
    padding: 0 40px 0 20px;
    background-size: cover;
}

.innew_right_bot {
    margin-top: 20px;
}

.innew_right_bot a {
    display: block;
    border-bottom: 1px dashed #ddd;
    line-height: 48px;
    padding-left: 20px;
    background: url(../images/newlist.png) left center no-repeat;
    overflow: hidden;
}

.innew_right_bot_title {
    float: left;
    font-size: 18px;
    color: #333;
}

.innew_right_bot_date {
    float: right;
    font-size: 14px;
    color: #666;
}

.innew_right_bot_date img {
    margin-right: 10px;
    margin-top: -3px;
}

.innew_right_bot a:hover {
    background: url(../images/newlist_active.png) left center no-repeat;
}

.innew_right_bot a:hover .innew_right_bot_title,
.innew_right_bot a:hover .innew_right_bot_date {
    color: #00A650;
}

.newshow {
    margin-top: 20px;
    font-size: 20px;
    color: #333;
    line-height: 1.8;
}

.newshow img{
	max-width:100%;
}

.contact {
    width: 100%;
    margin-top: 20px;
}

.left_contact {
    float: left;
    width: 47%;
}

.right_contact {
    float: right;
    width: 50%;
}

.rcon img {
    width: 34px;
    margin-right: 10px;
}

.rcon p {
    font-size: 20px;
    color: #333;
    margin-top: 15px;
}

.job {
    width: 100%;
    margin-top: 20px;
}

.job_topic {
    width: 100%;
    overflow: hidden;
    background: rgba(230, 243, 248, 0.4);
    height: 45px;
    line-height: 45px;
}

.job_topic span {
    display: block;
    width: calc(100% / 6);
    text-align: center;
    font-size: 18px;
    color: #333;
    float: left;
}

.jobitem {
    border-bottom: 1px solid #DDDDDD;
}

.jobitem_top {
    width: 100%;
    overflow: hidden;
    line-height: 50px;
    cursor: pointer;
}

.jobitem_top span {
    display: block;
    width: calc(100% / 6);
    text-align: center;
    font-size: 16px;
    color: #333;
    float: left;
}

.jobitem_bot {
    width: 90%;
    margin: auto;
}

.jobitem_bots {
    width: 100%;
    padding: 25px 0;
    border-top: 1px dashed #DDDDDD;
}

.jobitem_bot_title {
    font-size: 16px;
    color: #666;
}

.jobitem_bot_con {
    font-size: 14px;
    color: #666;
    line-height: 2;
    margin-top: 15px;
}

.jobitem_bot {
    display: none;
}

.jobitem.active .jobitem_top span {
    color: #00A650;
}

.newshowtitle{
	font-size:20px;
	text-align:center;
	margin:25px 0;
}
.swiper-container.infoswiper{
	height:295px;
}