@charset "UTF-8";

/*public css*/
.ellipsis{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.duohang{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.duohang2{
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#bgmask{
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0;opacity: 0;
    background: rgba(0,0,0,.7);
    z-index: 99;
    transition: all .8s ease;
}

#header{
    height: 100px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 3px 14px 0px rgba(0,0,0,.1);
}
#header .wrap{
    padding: 0 7.6%;
}
#header .logo{
    display: block;
    height: 100%;line-height: 100px;
    position: relative;
    transition: all .8s ease;
    left: 0;
}
#nav{
    float: right;
}
#nav li .item{
    display: inline-block;
    color: #333333;font-size: 16px;
    height: 100px;
    line-height: 100px;
    padding: 0 28px;
    background: url(../images/line.png) no-repeat right center;
    position: relative;
}
#nav li:last-child .item{
    background: none;
}
#nav .nli{
    float: left;position: relative;
}
#nav .item.active, #nav .item:hover{ color: #014896;}
.subnav{
    position: absolute;
    width: 100%;
    left: 0;
    top: 100px;
    text-align: center;
    height: 336px;
    display: none;
    background: #145eb7;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.subnav .bg{
    position: absolute;
    top: 0;width: 0;
    left: 50%;margin-left: 0;
    height: 100%;
    z-index: 0;
    transition: all 0.3s 0s ease-in-out;
    -webkit-transition: all 0.3s 0s ease-in-out;
    background: rgba(255, 255, 255, 0.15);
}
.subnav a{
    display: block;
    padding: 0 28px;
    color: #fff;
    font-size: 14px;
    height:48px;
    line-height: 48px;
    position: relative;z-index: 9;
    transition: all .4s ease;
}
.subnav a:hover{background: #014896;}
#nav .nli:hover .item{
    color: #014896;
}
#nav .nli:hover .subnav .bg{
    background: #2d7cdb;
    width: 100%;margin-left: -50%;
}

.hcut{height: 100px;}
.navbtn{
    position: absolute;
    right: 0;
    top: 0;
    height: 100px;
    padding: 38px 15px 0;
    display: none;
    width: 80px;
    transition: all .8s ease;
}
.navbtn span{
    display: block;
    width: 40px;height: 2px;background: #666;
    margin: 0 auto;
    transition: transform .3s ease;
}
.navbtn .line2{opacity: 1;visibility: visible;transition: all .3s ease;}
.navbtn span+span{margin-top: 10px;}

body.open .navbtn .line2{opacity: 0;visibility: hidden;}
body.open .navbtn .line1{
    transform: translateY(12px) rotate(-45deg);
    -webkit-transform: translateY(12px) rotate(-45deg);
}
body.open .navbtn .line3{
    transform: translateY(-12px) rotate(45deg);
    -webkit-transform: translateY(-12px) rotate(45deg);
}
body.open .navbtn{
    right: 60%;
}
body.open #header .logo{left: -60%;}
body.open #bgmask{height: 100%;opacity: 1;}
body.open #nav{
    right: 0;opacity: 1;visibility: visible;
}

#footer{
    background: url(../images/bg3.png) no-repeat center;
    background-size: cover;
    padding: 80px 15px;
    overflow:hidden;
}
#footer .wrap{
    max-width: 1140px;
    margin: 0 auto;
}
#footer .concat p{
    font-size: 16px;color: rgba(255,255,255,.7);line-height: 2;
}
#footer .concat .tel{
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 12px;color: rgba(255,255,255,.8);line-height: 1.5;
    margin-bottom: 10px;
}
#footer .concat .t1{font-size: 36px;color: #fff;line-height: 1;margin-top: 4px;}
#footer .copyright{
    font-size: 14px;color: rgba(255,255,255,.9);line-height: 2;
    padding-top: 30px;
}
#footer .copyright .img{margin-bottom:20px; }
#footer .copyright a{
    font-size: 14px;color: rgba(255,255,255,.9);line-height: 2;
}
.sidebar{
    position: fixed;
    right: 0;
    bottom:30%;
    background: -webkit-linear-gradient( #014896, #145eb7);
    background: -o-linear-gradient(#014896, #145eb7);
    background: -webkit-gradient(linear, left top, left bottom, from(#014896), to(#145eb7));
    background: -webkit-linear-gradient(#014896, #145eb7);
    background: linear-gradient(#014896, #145eb7);
    z-index: 9999;
}
.sidebar li{
    text-align: center;
    position: relative;
    height: 72px;
    width: 64px;
}
.sidebar li .pic{
    height: 72px;
    line-height: 72px;
    text-align: center;
    cursor: pointer;
    position: relative;z-index: 9;
}
.sidebar li .con{
    position: absolute;
    color: #fff;font-size: 14px;
    line-height: 1.8;
    top: 0;
    background: #145eb7;
    z-index: 8;
    text-align: center;
    width: 0;
    opacity: 0;
    visibility: hidden;
    padding: 15px;width: 150px;
    right:64px;
}
.sidebar li:hover .con{
    opacity: 1;
    visibility: visible;
    -webkit-animation: zoomIn .5s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: zoomIn .5s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}