@charset "utf-8";
html,
body{
    margin: auto;
    padding: 0;
    height:100%;
    width:100%;
   /* max-width:1024px;*/
    /*background-color:#fff;*/
    font-size: 15px;
    line-height: 1.5;
    color:#333;
    font-family:Microsoft YaHei,Arial;
}
html{
    -webkit-appearance:none;
    -ms-text-size-adjust: 100%;
    -webkit-touch-callout: none;
}
ul,li{
    margin:0;
    padding:0;
    list-style:none;
}
input,button,textarea{
    margin:0;
    padding:0;
    outline:none;
    border:none;
    background:none;
    color:#666;
}
a{
    text-decoration:none;
    -webkit-tap-highlight-color:rgba(255,255,255,0);/*解决点击链接有蓝色背影*/
    cursor: pointer;
    color:#333;
    /*transition: 0.5s all;*/
}
a:hover{
    text-decoration:none;
}
p{
    margin:0;
    padding:0;
}
button{
    cursor: pointer;
}
img {
    display: block;
}
/* rest */
.btn-primary{
    padding-left:20px;
    padding-right:20px;
    background: #9EB724 !important;
    border-color: #9EB724  !important;
    outline: none;
    border-radius: 15px;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:hover:active{
    border-color: #9EB724;
    outline: none;
    background: #647d22 !important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.btn-default{
    padding-left:20px;
    padding-right:20px;
    border-color: #9EB724  !important;
    color:#9EB724;
    border-radius: 15px;
}
.btn-default:hover{
    color:#9EB724;
}


/* header */
header{
    margin:20px auto 10px;
    max-width: 1170px;
    /*height:61px;*/
}
/* logo */
.logo{
    float:left;
    padding-left:20px;
}
.logo-img,
.logo-title{
    margin-right:10px;
    float:left;
}
.logo-img{
    width:100px;
}
.logo-title{
    padding:6px 0;
}
.logo-title>h2{
    margin:5px;
    font-size:14px;
    font-style: italic;
}
.logo-title>h2.company-name{
    font-style: normal;
    font-size:24px;
    font-weight: bold;
}

/* 图册下载 */
.imager-download{
    padding-top: 20px ;
    float: right;
}
.imager-download>a{
    padding:5px 10px;
    color: #fff;
    background:#9eb724;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    text-decoration: none;
}
.imager-download>a:hover{
    color: #fff;
    background: #647d22;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* nav */
.nav{
    margin:12px 0;
    display:-webkit-flex;
    display:flex;
    height:37px;
}
.nav>li{
    margin-left:20px;
    margin-right:20px;
    font-size:16px;
}
.nav>li:first-child{
    margin-left:0;
}
.nav>li>a{
    padding:5px 0;
    border-bottom:3px solid #fff;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}
.nav>li>a:hover,
.nav>li>a.active{
    background:none;
    color: #6f8035;
    font-weight: bold;;
    border-color: #94a53b;
}

/* banner */
.swiper-container {
    width: 100%;
    /*height: 400px;*/
}
.banner img{
    width:100%;
    /*!*height:600px !important;*!*/
}
.swiper-button-next, .swiper-button-prev{
    width:40px;
    height:40px;
    border-radius: 50%;
    background-color:rgba(255,255,255,0.3);
    background-size:13px 22px;
}


/* section */
section{
    margin:auto;
    padding:80px 0 60px;
    /*max-width:1024px;*/
}
section>h3{
    position:relative;
    margin:0;
    padding-bottom:30px;
    font-size:32px;
    font-weight: bold;
    text-align: center;
    color:#9EB724;
}
section p{
    text-indent: 2em;
}
section .section-link{
    padding: 42px 0 0;
    text-align: center;
}
section .section-link>a{
    display:inline-block;
    padding: 5px 30px;
    border: 1px solid #9eb724;
    background-color: #fff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    color: #9eb724;
    font-size:14px;
}
section .section-link>a:hover{
    color: #647d22;
    border-color: #647d22;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
section .section-link>a .iconfont{
    display: inline-block;
    font-size:14px;
    -webkit-transform: translateX(0);;
    transform: translateX(0);
    -webkit-transition: .2s;
    transition: .2s;
}
section .section-link>a:hover .iconfont{
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}

/* 首页 */
/* 关于我们 */
.section-about{

}
.section-about .about-main{
    margin:0;
}
.section-about .about-content{
    /* height: 350px; */
    margin: 63px 0;
    position: relative;
    padding:24px;
    background-color:#fff;
    -webkit-transition: .4s;
    transition: .4s;
}
.section-about .about-content:hover{
    -webkit-box-shadow:0 4px 14px rgba(0,0,0,.1);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.section-about .about-content:before{
    background: url(../images/dots-small.svg);
    content: "";
    width: 80px;
    height: 80px;
    left: 0;
    top: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1;
}
.section-about .about-content:hover:before{
    opacity: 1;
    -webkit-transform: translate3d(-10px,-10px,0);
    transform: translate3d(-10px,-10px,0);
}
.section-about .about-content:after{
    background: url(../images/dots-small.svg);
    content: "";
    width: 80px;
    height: 80px;
    right: 0;
    bottom: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: -1;
}
.section-about .about-content:hover:after{
    opacity: 1;
    -webkit-transform: translate3d(15px,15px,0);
    transform: translate3d(15px,15px,0);
}
.section-about .aim{
    position: relative;
    margin:auto;
    height:350px;
    width: 350px;
}
.section-about .aim .aim-item{
    position: absolute;
    width:150px;
    height:150px;
    color:#fff;
    font-size:20px;
    font-weight: bold;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.section-about .aim .aim-item:hover,
.about-wrap .aim .aim-box:hover .aim-item{
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s;
    transition: .3s;
}
.section-about .aim .aim-item.aim-item-credibility{
    left: 80px;
    top: 60px;
    background: rgba(41, 96, 218, 0.7);
    /* display: none; */
    width: 180px;
    height: 180px;
}
.section-about .aim .aim-item.aim-item-practical{
    left:0;
    top:0;
    background: rgba(97, 142, 46, 0.77);
}
.section-about .aim .aim-item.aim-item-innovation{
    left:200px;
    top:20px;
    background: rgba(246, 106, 10, 0.95);
}
.section-about .aim .aim-item.aim-item-strive{
    left:90px;
    top:200px;
    background: rgba(159, 16, 17, 0.8);
}

/* 服务领域 */
.service-list{
    margin-top:24px;
    margin-bottom:24px;
    padding:0 15px;
    font-size:18px;
}
.service-list li{
    margin-top:20px;
    padding:15px 20px;
    line-height: 30px;
}
.service-list li:nth-of-type(odd){
    background: rgba(234, 243, 253, 0.64);
}
.service-list li:nth-of-type(even){
    background: rgba(205, 228, 107, 0.11);
}
.service-list li:hover{
    border-color: #d1d5da;
    -webkit-box-shadow: 0 1px 15px rgba(27,31,35,.15);
    box-shadow: 0 1px 15px rgba(27,31,35,.15);
    -webkit-transition: .2s;
    transition: .2s;
}
.service-list li:first-child{
    margin-top:5px;
}
.service-list li .iconfont{
    display:block;
    float:left;
    margin-right:15px;
    font-size:22px;
    color: #28b9e4;
}

.left{
    float:left;
}

/* 工程案例 */
.project-list{
    margin:24px 0;
    overflow: hidden;
}
.project-list>li{
    position: relative;
    margin-bottom:30px;
    overflow: hidden;
}
.project-list>li>a{
    position: relative;
    display:block;
}
.project-list>li img{
    width:100%;
    -webkit-box-shadow: 2px 2px 5px #888888;
    box-shadow: 2px 2px 5px #888888;
}
.project-list>li:hover img{
    -webkit-transform: scale(1.025);
    transform: scale(1.055);
    -webkit-transition: .6s;
    transition: .6s;
}
.project-list .hover-wrap{
    position:absolute;
    bottom:-50px;
    left:0;
    width:100%;
    height:50px;
    line-height: 50px;
    text-align: center;
    color:#fff;
    background:rgba(0,0,0,0.6);
    background: -webkit-linear-gradient(rgba(255,255,255,0.1),rgba(0,0,0,0.9)); /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(rgba(255,255,255,0.1),rgba(0,0,0,0.9)); /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(rgba(255,255,255,0.1),rgba(0,0,0,0.9)); /* Firefox 3.6 - 15 */
    background: linear-gradient(rgba(255,255,255,0.1),rgba(0,0,0,0.9)); /* 标准的语法 */
}
.project-list>li:hover .hover-wrap{
    bottom:0px;
    border-color: #d1d5da;
    -webkit-box-shadow: 0 1px 15px rgba(27,31,35,.15);
    box-shadow: 0 1px 15px rgba(27,31,35,.15);
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
}


/* 关于我们 */
.about-wrap{

}
.about-wrap .section-about .about-content{
    margin-top:24px;
    -webkit-box-shadow:0 4px 14px rgba(0,0,0,.1);
    box-shadow: 0 4px 14px rgba(0,0,0,.1);
}
.about-wrap .section-about .about-content:before{
    opacity: 1;
    -webkit-transform: translate3d(-10px,-10px,0);
    transform: translate3d(-10px,-10px,0);
}
.about-wrap .section-about .about-content:after{
    opacity: 1;
    -webkit-transform: translate3d(15px,15px,0);
    transform: translate3d(15px,15px,0);
}
.about-wrap .aim{
    width:auto;
    height:auto;
}
.about-wrap .aim .aim-box{
    position:relative;
    margin-top:20px;
    padding: 10px 0;
    width:100%;
    height:150px;
    display:-webkit-flex;
    display:flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.about-wrap .aim .aim-box:hover{

}
.about-wrap .aim .aim-box .aim-item{
    position: relative;
    margin-right:4px;
    width:120px;
    height:120px;
    left:0;
    top:0;
}
.about-wrap .aim .aim-box .aim-infos{
    padding-left:24px;
    padding-right:24px;
    height:100%;
    display:-webkit-flex;
    display:flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-shadow: 1px 2px 6px 0px #ccc;
    -moz-box-shadow: 1px 2px 6px 0px #ccc;
     box-shadow: 1px 2px 6px 0px #ccc;
}
/* 鼠标悬浮在各个 宗旨上边的效果 */
.about-wrap .aim .aim-credibility-box:hover .aim-infos{
    -webkit-box-shadow: 1px 2px 6px 0px rgba(41, 96, 218, 0.7);
    -moz-box-shadow: 1px 2px 6px 0px rgba(41, 96, 218, 0.7);
    box-shadow: 1px 2px 6px 0px rgba(41, 96, 218, 0.7);
}
.about-wrap .aim .aim-practical-box:hover .aim-infos{
    -webkit-box-shadow: 1px 2px 6px 0px rgba(97, 142, 46, 0.77);
    -moz-box-shadow: 1px 2px 6px 0px rgba(97, 142, 46, 0.77);
    box-shadow: 1px 2px 6px 0px rgba(97, 142, 46, 0.77);
}
.about-wrap .aim .aim-innovation-box:hover .aim-infos{
    -webkit-box-shadow: 1px 2px 6px 0px rgba(246, 106, 10, 0.95);
    -moz-box-shadow: 1px 2px 6px 0px rgba(246, 106, 10, 0.95);
    box-shadow: 1px 2px 6px 0px rgba(246, 106, 10, 0.95);
}
.about-wrap .aim .aim-strive-box:hover .aim-infos{
    -webkit-box-shadow: 1px 2px 6px 0px rgba(159, 16, 17, 0.8);
    -moz-box-shadow: 1px 2px 6px 0px rgba(159, 16, 17, 0.8);
    box-shadow: 1px 2px 6px 0px rgba(159, 16, 17, 0.8);
}
.about-wrap .aim .aim-box .aim-infos>p{
    text-indent: 0;
}


/* 案例展示 */
.project-wrap{}
.project-wrap .project-tab{
    padding:24px 0;
    text-align: center;
}
.project-wrap .project-tab>li{
    margin:0 5px;
    border: solid 2px #9EB724;
    display:inline-block;
}
.project-wrap .project-tab>li>a{
    padding:7px 14px;
    display:inline-block;
}
.project-wrap .project-tab>li.active a,
.project-wrap .project-tab>li a:hover{
    color: #ffffff;
    cursor: default;
    background: #9EB724;
}
.project-wrap .project-list{
    margin-bottom: 0;
}
.project-wrap .project-list>li{
    margin-bottom:3px;
}
.project-wrap .project-list>li .img-box{
    overflow: hidden;
}
.project-wrap .project-list>li .project-name{
    padding:10px 0;
    font-weight: bold;
    color: #666;
    font-size:15px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
}
.project-wrap .project-list>li:hover .project-name{
    color: #799224;
}

/* 联系我们 */
.contact-content,
.join-content{
    padding-top:24px;
}
.contact-item{
    margin:0 auto 50px auto;
    text-align: center;
    width:400px;
}
.contact-item:hover{}
.contact-item:last-child{
    margin-bottom:0;
}
.contact-item .iconfont{
    margin:10px;
    font-size:24px;
    color:#666;
    display:block;
    transition: 0.5s;
}
.contact-item:hover .iconfont{
    transform: rotateY(180deg);
}
.contact-item .contact-item-title{
    margin:10px 0;
    color: #799224;
}

/* 加入我们 */
.job-container{
    position: absolute;
    bottom: 0;
    left:0;
    padding:0 15px;
    width: 100%;
    color:#fff;
}
.join_table{
    margin-bottom:0;
    background: rgba(0,0,0,0.6);
}
.join_table>thead>tr>th {
    height: 46px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    border-bottom:none;
}
.join_table th:nth-child(1) {
    padding-left: 20px;
    text-align: left;
}
.join_table>tbody>tr>td {
    height: 51px;
    text-align: center;
    border:none;
    font-size: 16px;
    vertical-align: middle;
}
.join_table td:nth-child(1) {
    padding-left: 20px;
    text-align: left;
    padding-right: 20px;
    /*width: 485px;*/
    white-space: pre-wrap;
    word-wrap: break-word;
}
.join_table td .btn-primary{
    background: rgba(158, 183, 36, 0) !important;
}
.join_table .btn-primary:hover,
.join_table .btn-primary:active,
.join_table .btn-primary:active:hover,
.join_table .btn-primary:hover:active{
    border-color: #9EB724;
    outline: none;
    background: #647d22 !important;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}


/* 职位介绍 */
.join-wrap{}
.join-wrap .banner{
    position: relative;
}
.join-container{
    padding-top:0;
}
.join-container .job-name{
    position: relative;
}
.join-container .job-name h4{
    margin-right: 20px;
    font-weight: bold;
    display:inline-block;
}

.join-container .bref-list{
    padding:10px 0;
    display:flex;
    border-bottom: 1px solid #ddd;
}
.join-container .bref-list>li{
    padding-right:100px;
}
.join-container .job-detail{
    margin:20px 0;
}
.join-container .job-detail .job-detail-item{
    margin-bottom: 20px;
}
.join-container .job-detail .job-item-title{
    font-size: 16px;
    font-weight:bold;
}
.join-container .job-detail .job-item-list>li{
    padding:10px ;
}
.join-container .job-detail .job-item-list>li:last-child{
    padding-bottom: 0;
}

/* footer */
footer{
    margin-top: 30px;
    padding: 46px 0;
    background: #fafbfc;
    color: #999;
    text-align: center;
    font-size:14px;
}