﻿@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-10-18 08:57:34
 * @version $Id$
 */
 /* header */

.container{
    width: 1400px;
    margin: 0 auto;
}
header{
    width:100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #fff;
    z-index: 10;
    box-shadow:0px 0px 10px 0px #a4a4aa; 
}
@media(max-width:1400px){
    header{
        width:auto;
    }
}
.header{
    position: relative;
    height: 100px;
}
.logo{
    margin-top: 32px;
    float: left;
    width: 430px;
}
.logo img{
    display: block;
    width: 100%;
}
.nav{
    float: right;
}
.nav ul li{
    float: left;
    position: relative;
    margin-right: 18px;
    height: 100px;
}
.nav ul li:last-child{
    margin-right: 0px;
}
.nav ul li > a{
    height: 40px;
    margin-top: 30px;
    line-height: 40px;
    font-size: 16px;
    width: 100px;
    text-align: center;
    color: #000001;
    display: block;
    transition: all 0.5s;
    background-color: transparent;
}
.nav ul li:hover>a, .nav ul .nav-active > a{
    color: #fff;
    background-color: #005bac;
}
.nav-sub{
    position: absolute;
    top: 100px;
    left: 0px;
    z-index: 66;
    display: none;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.nav-sub dl dd a{
    color: #fff;
    background: #005bac;
    display: block;
    width: 100px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    margin-bottom: 2px;
}
.nav-sub dl dd:hover a{
    background: #a4262a;
    color: #fff;
}
/* banner */
#banner .swiper-container{
    width: 100%;
    
}
#banner .swiper-slide img{
    width: 100%;
    display: block;
}
.banner-swiper .swiper-pagination-bullet{
    width: 50px;
    height: 4px;
    background: #fff;
    border-radius: 0px;
    opacity: 1;
}
.banner-swiper .swiper-pagination-bullet-active{
    background: #005bac;
}
.banner-swiper > .swiper-pagination-bullets .swiper-pagination-bullet{
    margin: 0 15px;
}
.banner-swiper > .swiper-pagination-bullets{
    bottom: 50px;
}
/* 产品中心 */
.home-pro{
    overflow: hidden;
    width: 100%;
    padding-bottom: 50px;
}
.hpro-title{
    text-align: center;
    padding-top: 80px;
    padding-bottom: 55px;
}
.hpro-title h2{
    font-size: 40px;
    line-height: 40px;
    color: #000;
    margin-bottom: 15px;
}
.hpro-title span{
    font-size: 16px;
    color: #999;
    line-height: 24px;
}
.hpro-list{
    margin-left: -14px;
    margin-right: -14px;
}
.hpro-list li{
    float: left;
    width: 25%;
    padding: 0 14px;
    margin-bottom: 33px;
    box-sizing: border-box;
}
.hpro-img{
    width: 100%;
    overflow: hidden;
}
.hpro-img img{
    width: 100%;
    display: block; height:200px;
    transition: all .5s;
}
.hpro-txt{
    height: 60px;
    border: 1px solid #eee;
}
.hpro-txt p{
    width: 100%;
    height: 58px;
    line-height: 58px;
    background: #fff;
    transition: all .5s;
    font-size: 14px;
    text-align: center;
}
.hpro-list li:hover .hpro-img img{
    transform: scale(1.1);
}
.hpro-list li:hover .hpro-txt p{
    background: #005bac;
    color: #fff;
}
/* 走进浩盾 */
.home-about{
    background: #eeeeee;
    padding-top: 80px;
    padding-bottom: 80px;
}
.habout-left{
    float: left;
    width: 50%;
}
.htitle-two h2{
    font-size: 40px;
    color: #000;
    line-height: 40px;
    margin-bottom: 38px;
}
.htitle-two i{
    display: block;
    width: 80px;
    height: 4px;
    background: #a4262a;
    margin-bottom: 32px;
}
.habout-info{
    color: #333;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 58px;
}
.look-more{
    display: block;
    width: 168px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    padding: 0 30px;
    background: #005bac url(img/about_more_arrow.png) no-repeat right 30px center;
    border-radius: 5px;
    transition: all .5s;
    margin-bottom: 70px;
}
.look-more:hover{
    transform: translateX(5px);
}
.habout-icon{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.habout-icon li{
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}
.hicon-img{
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid #005bac;
    background-color: transparent;
    transition: all .5s;
    margin-right: 14px;
}
.hicon-img img{
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .5s;
}
.icon-unon{
    opacity: 1;
}
.icon-on{
    opacity: 0;
}
.hicon-info{
    color: #333;
    font-size: 16px;
}
.hicon-info h5{
    line-height: 24px;
    margin-bottom: 2px;
}
.habout-icon li:hover .hicon-img{
    background-color: #005bac;
}
.habout-icon li:hover .icon-unon{
    opacity: 0;
}
.habout-icon li:hover .icon-on{
    opacity: 1;
}
.habout-right{
    float: right;
    width: 50%;
    padding-left: 40px;
}
.habout-imgs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.habout-limg{
    width: 322px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    display: flex;
}
.habout-imgitem{
    position: relative;
    width: 100%;
}
.habout-imgitem img{
    width: 100%;
    display: block;
}
.habout-imgitem p{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px 15px;
    font-size: 24px;
    color: #fff;
}
/* 工程案例 */
.home-case{
    overflow: hidden;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 70px;
}
.hcase-left{
    float: left;
    width: 50%;
}
.hcase-info{
    margin-bottom: 33px;
}
.hcase-left .look-more{
    margin-bottom: 40px;
}
.hcase-left-img{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: -14px;
}
.hcase-img-item{
    padding: 0 14px;
    width: 50%;
}
.hcase-img{
    overflow: hidden;
    width: 100%;
}
.hcase-img img{
    display: block;
    width: 100%;
}
.hcase-txt{
    padding-top: 15px;
    padding-bottom: 15px;
}
.hcase-txt h5{
    font-size: 18px;
    color: #222;
    margin-bottom: 5px;
    line-height: 24px;
}
.hcase-txt span{
    font-size: 14px;
    line-height: 24px;
    color: #666;
}
.hcase-right{
    float: right;
    width: 50%;
}
.hcase-right-top{
    width: 100%;
    margin-bottom: 20px;
    padding-left: 14px;
}
.hcase-ms{
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    background: #005bac;
}
.hcase-right-bom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: -14px;
}
/* 新闻资讯 */
.home-news{
    background-color: #eee;
    padding-bottom: 80px;
}
.hnews-main{
    margin-left: -20px;
    margin-right: -20px;
}
.hnews-main li{
    float: left;
    padding: 0 20px;
    width: 33.33333333%;
}
.hnews-img{
    width: 100%;
    overflow: hidden;
}
.hnews-img img{
    display: block;
    width: 100%;
    transition: all .2s;
}
.hnews-info{
    padding: 30px 15px;
    background: #fff;
}
.hnews-info h2{
    font-size: 20px;
    color: #333;
    line-height: 24px;
    margin-bottom: 12px;
    transition: all .5s;
}
.hnews-info span{
    color: #999;
    font-size: 16px;
    line-height: 24px;
}
.hnews-txt{
    padding-top: 8px;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.hnews-main li:hover .hnews-img img{
    transform: scale(1.1);
}
.hnews-main li:hover .hnews-info h2{
    color: #005bac;
    font-weight: bold;
    transform: translateY(-5px);
}
/* 底部 */
#footer{
    padding-top: 50px;
    padding-bottom: 14px;
    background-color: #262626;
}
.footer-left{
    float: left;
    width: 39%;
}
.footer-code{
    width: 154px;
    overflow: hidden;
    float: left;
    margin-right: 24px;
}
.footer-code img{
    width: 100%;
    display: block;
}
.footer-code p{
    color: #898989;
    font-size: 16px;
    line-height: 36px;
    text-align: center;
}
.fcode-info{
    float: left;
    width: calc(100% - 178px);
    color: #898989;
    font-size: 16px;
    line-height: 16px;
}
.fcode-info p{
    margin-bottom: 18px;
}
.footer-right{
    float: right;
    width: 60%;
}
.footer-nav{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-bottom: 44px;
}
.footer-nav li{
    margin-right: 32px;
}
.footer-nav li:last-child{
    margin-right: 0px;
}
.footer-nav li a{
    font-size: 16px;
    line-height: 16px;
    color: #898989;
}
.share{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}
.share .bshare-custom a{
    height: 34px;
    width: 34px;
    border-radius: 50%;
    padding-left: 0px;
    margin: 0 5px;
}
.share .bshare-custom .bshare-sinaminiblog{
    background: #fff url(img/weibo_icon.png) no-repeat center;
}
.share .bshare-custom .bshare-qqim{
    background: #fff url(img/qq_icon.png) no-repeat center;
}
.share .bshare-custom .bshare-weixin{
    margin-right: 0px;
    background: #fff url(img/weixin_icon.png) no-repeat center;
}
.share .bshare-custom a:hover{
    opacity: 1;
}
.share .bshare-custom .bshare-sinaminiblog:hover{
    background: #005bac url(img/weibo_icon_on.png) no-repeat center;
}
.share .bshare-custom .bshare-qqim:hover{
    background: #005bac url(img/qq_icon_on.png) no-repeat center;
}
.share .bshare-custom .bshare-weixin:hover{
    background: #005bac url(img/weixin_icon_on.png) no-repeat center;
}
.copy{
    text-align: right;
}
.copy span{
    font-size: 16px;
    line-height: 24px;
    color: #808080;
}
/* 走进浩盾 */
.inav{
    height: 80px;
    box-shadow: 0px 0px 10px 0px #f3f3f3;
}
.inav-ul{
    float: left;
}
.inav-ul li{
    float: left;
}
.inav-ul li a{
    display: block;
    width: 140px;
    border-right: 1px solid #e5e5e5;
    height: 80px;
    line-height: 80px;
    text-align: center;
    transition: all .5s;
}
.inav-ul li:first-child a{
    border-left: 1px solid #e5e5e5;
}
.inav-ul li a:hover{
    color: #fff;
    background: #005bac;
}
.inav-right{
    float: right;
    padding-left: 24px;
    background: url(img/nav_daohang.png) no-repeat left center;
    font-size: 16px;
    color: #333;
}
.inav-right a{
    font-size: 16px;
    color: #333;
    line-height: 80px;
}
.inav-right a:hover{
    color: #005bac;
}
.about-cont{
    padding-bottom: 80px;
}
.about-main .inside-title{
    padding-top: 80px;
    padding-bottom: 60px;
    font-size: 40px;
    color: #333;
    line-height: 40px;
    text-align: center;
}
.about-cont img{ 
    margin-bottom: 22px;
}
.about-cont p{
    color: #333;
    font-size: 16px;
    line-height: 30px;
}
.news-top{
    padding-bottom: 28px;
    border-bottom: 1px dashed #999;
}
.news-img{
    float: left;
    width: 290px;
}
.news-top-info{
    width: calc(100% - 290px);
    float: right;
    padding-left: 28px;
    padding-top: 38px;
}
.news-top-info h2{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 15px;
    transition: all .5s;
}
.news-info span{
    font-size: 14px;
    color: #999;
    line-height: 24px;
}
.news-info p{
    font-size: 16px;
    color: #666;
    line-height: 24px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-all;
    text-overflow: ellipsis;
}
.news-top-info:hover h2{
    transform: translateY(-5px);
}
.news-top-info:hover h2 a{
    color: #005bac;
}
.news-list li{
    padding: 25px 0px;
    border-bottom: 1px dashed #999;
}
.news-list li h2{
    font-size: 20px;
    line-height: 24px;
    color: #333;
    margin-bottom: 10px;
    transition: all .5s;
}
.news-list li:hover h2 > a{
    color: #005bac;
}
.news-list li:hover h2{
    transform: translateY(-5px);
}
/* 产品 */
.pros-main{
    padding-top: 80px;
    overflow: hidden;
}
.left-panel{
    float: left;
    width: 296px;
}
.lp-title{
    width: 100%;
    height: 150px;
    background: #005bac;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4px;
}
.lp-title h2{
    font-size: 36px;
    color: #fff;
    font-weight: bold;
    font-family: Cambria;
    text-transform: uppercase;
    line-height: 36px;
    margin-bottom: 8px;
}
.lp-title span{
    font-size: 24px;
    color: #fff;
}
.lp-ul li{
    margin-bottom: 4px;
    position: relative;
}
.lp-ul li > a{
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: #e5e5e5 url(img/pro_add.png) no-repeat right 30px center;
    padding: 0 30px;
    transition: all .5s;
}
.lp-ul li:hover > a, .lp-ul li.lp-on > a {
    color: #fff;
    background: #005bac url(img/pro_jain.png) no-repeat right 30px center;
}
.lp-sub{
    width: 100%;
    display: none;
}
.lp-sub dl dd a{
    color: #666;
    border: 1px solid #c9c9c9;
    display: block;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    border-top: none;
    background: #fff;
    text-align: center;
}
.lp-sub dl dd:first-child a{
    border-top: 1px solid #c9c9c9;
}
.lp-sub dl dd:hover a{
    color: #005bac;
}
.right-panel{
    float: right;
    width: calc(100% - 356px);
}
.rpro-title{
    height: 48px;
    padding: 0 20px;
    background: #005bac;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}
.rpro-title-left{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.rpro-title-left h2{
    margin-left: 12px;
    font-size: 18px;
    color: #fff;
}
.rpro-title-right a{
    color: #fff;
}
.rpro-title-right a:hover{
    color: #a4262a;
}
.pros-ul{
    margin-left: -13px;
    margin-right: -13px;
}
.pros-ul li{
    float: left;
    width: 33.333333%;
    padding: 0 13px;
    margin-top: 33px;
}
.pros-img{
    width: 100%;
    overflow: hidden;
}
.pros-img img{
    display: block;
    width: 100%;
    transition: all .5s; height:240px;
}
.pros-ul li p{
    width: 100%;
    border: 1px solid #eee;
    line-height: 60px;
    background: #fff;
    text-align: center;
    font-size: 14px;
    transition: all .5s;
}
.pros-ul li:hover p{
    color: #fff;
    background: #005bac;
}
.pros-ul li:hover .pros-img img{
    transform: scale(1.1);
}

.inside-banner img{
    width: 100%;
}