@charset "utf-8";

.inner_banner{
    height: 360px;
    text-align: center;
    color: #fff;
    background-size: cover;
    font-family: 'roboto_b';
}
.inner_banner h3{
    padding-top: 90px;
    font-size: 36px;
    font-weight: normal;
}
.inner_banner h4{
    font-size: 40px;
}
.inner_banner.banner_about{
    background-image: url(../image/banner_about.jpg);
}
.inner_banner.banner_case{
    background-image: url(../image/banner_case.jpg);
}
.inner_banner.banner_pro{
    background-image: url(../image/banner_pro.jpg);
}
.inner_banner.banner_news{
    background-image: url(../image/banner_news.jpg);
}
.inner_banner.banner_con{
    background-image: url(../image/banner_con.jpg);
}


/*----------------二级导航+面包屑导航----------------*/
.bread_nav{
    background: #fff;
    height: 70px;
    margin-top: -73px;
    border-bottom: 3px solid #efefef;
}
.bread_nav .second_nav{
    margin-left: 30px;
}
.bread_nav .second_nav li{
    float: left;
    margin: 0 2px;
}
.bread_nav .second_nav li a{
    display: block;
    font-size: 15px;
    line-height: 40px;
    margin-top: 15px;
    position: relative;
    padding: 0 26px;
    border-radius: 40px;
}
.bread_nav .second_nav li a:hover,
.bread_nav .second_nav li a.current{
    color: #fff;
    background-color: #215aad;
}
.bread_nav .fr .bread{
    line-height: 70px;
    padding-right: 30px;
    color: #999;
    font-size: 14px;
    max-width: 370px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.bread_nav .fr .bread a:hover{
    color: #215aad;
}


/*----------------内页内容区域综合----------------*/
.text_box,
.text_box p,
.text_box div,
.text_box span{
    line-height: 2;
    font-size: 15px;
}
.text_box img{
    max-width: 100%;
}
.content_box{
    padding: 40px;
    min-height: 100px;
}
.inner_body{
    background: #f2f2f2;
}
.inner_body .w1200{
    background: #fff;
}
/*内页翻页*/
.pagelist{
    width: 100%;
    text-align: center;
}
.pagelist #pege li{
    list-style: none;
    display: inline-block;
    margin: 0px 2px;
    border: 1px #dcdcdc solid;
    color: #898989;
    width: 40px;
    height: 40px;
    padding: 0px;
    text-align: center;
    line-height: 40px;
    background: #f9f9f9;
    overflow: hidden;
    font-size: 14px;
}
.pagelist #pege li:first-child,
.pagelist #pege li:last-child{
    width: 68px;
}
.pagelist #pege li a{
    display: block;
    width: 100%;
    height: 100%; 
    transition: all ease 0.5s;
    color: #333;
    background-color: #fff;
    line-height: 40px;
}
.pagelist #pege li a:hover{
    background: #215aad;
    color: #fff;
}
/*详情页翻页*/
.page_change{
    background: #f2f2f2;
    padding: 20px;
    margin-top: 30px;
}
.page_change p{
    color: #666;
    line-height: 1.8;
}
.page_change p:nth-child(1){
    margin-bottom: 4px;
}




/*----------------内页案例----------------*/
.case_list .list_item{
    width: 23.5%;
    margin-right: 2%;
    float: left;
    margin-bottom: 30px;
}
.case_list .list_item:nth-child(4n){
    margin-right: 0;
}
.case_list .list_item a {
    display: block;
    width: 100%;
}
.case_list .list_item a .img_cover {
    width: 100%;
    height: 0;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
}
.case_list .list_item a .img_cover img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1);
    transition: all ease 0.4s;
}
.case_list .list_item:hover a .img_cover img {
    transform: scale(1.08);
}
.case_list .list_item a p {
    border: 1px #eaeaea solid;
    border-top: 0;
    position: relative;
    padding: 16px 14px;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
}
.case_list .list_item a p:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #215aad;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all ease 0.4s;
}
.case_list .list_item:hover a p:after{
    width: 100%;
}
/*案例详细*/
.case_detail p.tit{
    border-top: 1px #dcdcdc solid;
    border-bottom: 1px #dcdcdc solid;
    margin-bottom: 30px;
    font-size: 26px;
    text-align: center;
    padding: 14px 0;
}





/*----------------内页产品----------------*/
.pro_list .list_item{
    width: calc(32% - 2px);
    margin-right: 2%;
    float: left;
    border: 1px #eaeaea solid;
    margin-bottom: 30px;
}
.pro_list .list_item:nth-child(3n){
    margin-right: 0;
}
.pro_list .list_item .img_cover {
    margin-top: 14px;
    margin-left: 14px;
    overflow: hidden;
    width: calc(100% - 28px);
    height: 0;
    padding-top: calc(75% - 21px);
    position: relative;
}
.pro_list .list_item .img_cover img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.pro_list .list_item .tit_box {
    margin: 0 auto;
    width: calc(100% - 28px);
}
.pro_list .list_item .tit_box a {
    border-left: 4px #f0f0f0 solid;
    display: block;
    margin: 20px 0;
    line-height: 1.2;
    padding: 4px 0 4px 12px;
}
.pro_list .list_item:hover .tit_box a {
    border-color: #215aad;
}
.pro_list .list_item .tit_box a h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    transition: all ease 0.3s;
}
.pro_list .list_item:hover .tit_box a h3 {
    color: #215aad;
}
.pro_list .list_item .tit_box a p {
    font-size: 14px;
    color: #999;
}
/*产品详细*/
.pro_detail_img{
    width: 50%;
}
.pro_detail_list{
    width: 46%;
}
.pro_detail_list p.tit{
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.pro_detail_list p.info{
    line-height: 2;
    font-size: 15px;
    margin-bottom: 30px;
}
.pro_detail_list p.tel_2{
    font-family: 'roboto_b';
    font-size: 28px;
    color: #215aad;
}
.pro_detail_list p.button a{
    display: block;
    background-color: #215aad;
    color: #fff;
    text-align: center;
    width: 160px;
    line-height: 48px;
    font-size: 15px;
    margin-top: 40px;
}
.pro_detail_box > p{
    background: #f2f2f2;
}
.pro_detail_box > p span{
    display: block;
    width: 150px;
    line-height: 42px;
    text-align: center;
    background: #333;
    color: #fff;
}
.pro_detail_box .text_box{
    border: 1px #eaeaea solid;
    padding: 30px;
    border-top: 0;
}
.pro_detail_box{
    margin-top: 30px;
    margin-bottom: 30px;
}





/*----------------内页新闻----------------*/
.news_item{
    border: 1px #eaeaea solid;
    margin-bottom: 30px;
    padding: 20px 40px 20px 20px;
    transition: all ease 0.4s;
}
.news_item:hover{
    box-shadow: 0px 5px 20px -4px rgba(0, 0, 0, 0.15);
}
.news_item .fl{
    width: 22%;
}
.news_item .fl .img_cover{
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 70%;
}
.news_item .fl .img_cover img{
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}
.news_item .fr{
    width: 74%;
}
.news_item .tit_box{
    margin-top: 14px;
}
.news_item .tit_box .tit{
    width: 70%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news_item .tit_box .tit a{
    font-size: 22px;
}
.news_item .tit_box .tit a:hover{
    color: #215aad;
}
.news_item .tit_box .date{
    width: 30%;
    text-align: right;
    line-height: 29px;
}
.news_item .info{
    line-height: 1.725;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 20px;
    color: #666;
}
.news_item a.button{
    display: block;
    line-height: 36px;
    width: 124px;
    background: #215aad;
    color: #fff;
    text-align: center;
}
.news_item a.button:hover{
    background: #ea9315;
}
/*新闻详细*/
.news_detail .tit_box{
    text-align: center;
}
.news_detail p.tit{
    font-size: 26px;
}
.news_detail p.info{
    font-size: 14px;
    color: #666;
    border-top: 1px dashed #eaeaea;
    border-bottom: 1px dashed #eaeaea;
    padding: 10px 0;
    margin-top: 20px;
    margin-bottom: 20px;
}







/*----------------内页联系----------------*/
.contact_box{
    margin-bottom: 30px;
}
.contact_box > div{
    width: 25%;
    text-align: center;
}
.contact_box > div i{
    font-size: 40px;
    display: inline-block;
    border: 2px #eaeaea solid;
    border-radius: 100%;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: #666;
}
.contact_box > div p.tit{
    font-size: 22px;
    margin-top: 10px;
}
/*留言*/
.contact_p{
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;

}
.input_box > div{
    width: 32%;
    margin-right: 2%;
}
.input_box > div:last-child{
    margin-right: 0;
}
.input_box > div input,
.liuyanbox > div textarea{
    color: #333!important;
    width: calc(100% - 24px);
    padding: 10px;
    border: 2px #dcdcdc solid;
}
.input_box > div p,
.liuyanbox .textarea_box p{
    margin-bottom: 10px;
    color: #666;
}
.liuyanbox .textarea_box{
    margin-top: 20px;
}
.liuyanbox > div textarea{
    min-height: 140px;
    resize: vertical;
}
#msgLeft_Btn{
    display: block;
    width: 200px;
    text-align: center;
    line-height: 46px;
    background: #215aad;
    color: #fff;
    font-size: 16px;
    margin: 20px auto 0 auto;
}
#msgLeft_Btn:hover{
    background: #ea9315;
}
