.row{
    margin-left: 0px;
    margin-right: 0px;
}

@keyframes danchu{
    0% {
        opacity: 0;
        /*transform: scale(1);*/
    }
    100% {
        opacity: 1;
        /*transform: scale(1.2);*/
    }
}

/*头部..................................................................................*/
#h_header {
    background-color: #072c7d;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    opacity: 0;

    transition: opacity 1s; /*过渡*/
    -moz-transition: opacity 1s; /* Firefox 4 */
    -webkit-transition: opacity 1s; /* Safari 和 Chrome */
    -o-transition: opacity 1s; /* Opera */
}

#h_header:hover {
    /*animation:danchu 1.2s 1;*/
    /*-webkit-animation:danchu 1.2s 1; !* Safari 和 Chrome *!*/
    /*animation-fill-mode:forwards; !*保持结束后样式*!*/
    opacity: 1;
}


#h_header .left{
    background-color: #03b19f;
    height: 60px;
    -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
    clip-path: polygon(0 0, 99% 0, 91% 100%, 0% 100%);

}

#h_header .left img:nth-child(1){
    /*margin-top: 14px !important;*/
    margin-left: -12px;
    display: inline !important;
    width: 90px !important;
    height: 30px !important;
}

#h_header .left img:nth-child(2){
    /*margin-top: 14px !important;*/
    margin-left: 8px;
    display: inline !important;
    width: 160px !important;
    height: 60px !important;
}

#h_header .left .font-name{
    font-size: 10px;
    color: #fff;
    line-height: 14px;
    margin-top: 16px;
    white-space: nowrap;
    overflow: hidden;
}

#h_header .right{
    height: 60px;
    line-height: 60px;
    /*overflow:hidden;*/
    /*text-overflow:ellipsis;*/
    /*white-space:nowrap;*/
}

#h_header .right .top-nav{

    height: 60px;
}

#h_header .right .top-nav ul{
    white-space: nowrap;
    overflow: hidden;
    /*border: 1px #ac2925 solid;*/
    height: 60px;
    display: flex;
    margin-left: -86px;
}

#h_header .right .top-nav ul li{
    /*border: 1px #ffffff solid;*/
    height: 60px;
    list-style: none;

}

#h_header .right a{
    text-decoration: none;
    color: #fff;
    margin-right: 14px;
}
#h_header .right a:hover{
    color: #03B19FFF;
}

#h_header .right .top-nav ul .sub-menu{
    /*border: 1px #ac2925 solid;*/
    /*background-color: #0a5ba6;*/
    background-color: rgba(10,91,166,1);
    /*display: block;*/
    position: absolute;
    /*left: 0px;*/
    /*bottom: 0px;*/
    width: 130px;

    display: none;
}

#h_header .right .top-nav ul .sub-menu div{
    /*border: 1px #ffffff solid;*/
    height: 48px;
    padding-left: 20px;
    line-height: 48px;

}

#h_header .right .top-nav ul li:hover .sub-menu{
    display: block;

    animation:danchu 1s 1;
    -webkit-animation:danchu 1s 1; /* Safari 和 Chrome */
    animation-fill-mode:forwards; /*保持结束后样式*/
}


/*联系我们图片*/
#h_header .right .lianxime:hover .top-img{
    display: block !important;
}