@charset "utf-8";

/* 头部 */
header{
    width: 100%;
    min-width: 1420px;
    padding: 0 20px;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/header_bg.png) no-repeat top left;
    box-sizing: border-box;
    z-index: 999;
    animation: 0.8s ease 0.5s 1 normal backwards running fadeInDown;
}
header>div{
    padding: 25px 0;
    position: relative;
}
header .link_top {
    margin: 21px 0;
}
header .link_top a{
    display: inline-block;
    width: auto;
    font-size: 12px;
    color: #c1dcff;
    padding-left: 25px;
    margin-right: 20px;
    line-height: 25px;
}
header .link_top a:nth-child(1){
    background: url(../img/header_top.png) no-repeat 0 2px;
}
header .link_top a:nth-child(2){
    background: url(../img/header_top.png) no-repeat 0 -23px;
}
header .link_top a:nth-child(3){
    background: url(../img/header_top.png) no-repeat left -45px;
}
header .link_top a:nth-child(4){
    background: url(../img/header_top.png) no-repeat left -73px;
}
header .link_top a:nth-child(5){
    background: url(../img/header_top.png) no-repeat left -97px;
}
header .link_top a:nth-child(1):hover{
    background: url(../img/header_top2.png) no-repeat 0 2px;
}
header .link_top a:nth-child(2):hover{
    background: url(../img/header_top2.png) no-repeat 0 -23px;
}
header .link_top a:nth-child(3):hover{
    background: url(../img/header_top2.png) no-repeat left -45px;
}
header .link_top a:nth-child(4):hover{
    background: url(../img/header_top2.png) no-repeat left -73px;
}
header .link_top a:nth-child(5):hover{
    background: url(../img/header_top2.png) no-repeat left -97px;
}
header .link_top a:hover{
    color: #ff9f03;
}
/*搜索*/
header .searchbox{
    margin: 20px 0;
}
header .searchbox a{
    float:left;
    line-height: 28px;
    font-size: 14px;
    padding-left: 35px;
    background: url(../img/english.png) no-repeat left center;
    color: #c1dcff;
    margin-right: 20px;
}
header .searchbox a:hover{
    color: #ff9f03;
    background: url(../img/english2.png) no-repeat left center;
}
header .searchbox>div{
    background: #548acb;
    width: 200px;
    height: 26px;
    overflow: hidden;
    border: 1px solid #73a2da;
    float:left;
}
header .searchbox .text {
    float: left;
    width: 140px;
    height: 26px;
    border: none;
    outline: none;
    line-height: 26px;
    padding-left: 10px;
    font-size: 14px;
    margin: 0;
    background: transparent;
    color: #c1dcff;
}
header .searchbox .submit {
    width: 50px;
    height: 26px;
    float: right;
    background: url(../img/search.png) no-repeat center;
    border: none;
    box-sizing: content-box;
    border-radius: 100%;
    position:relative;
}
header .searchbox .submit::before{
    display:block;
    content:"";
    width:1px;
    height:20px;
    position:absolute;
    left: 1px;
    top:3px;
    background: #000000;
}

/*logo*/
header .logo{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 415px;
    height: 68px;
}
header .logo a{
    display: block;
}

/*导航*/
header nav{
    position: relative;
    padding-top: 22px;
}
header nav::before{
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 0;
    left: 0;
    background: #699ed2;
}
header nav>ul.clearfix>li{
    width: 10%;
    float: left;
    text-align: center;
    padding: 0 1%;
    box-sizing: border-box;
    position: relative;
}
header nav>ul.clearfix>li>a{
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 48px;
}
header nav>ul.clearfix>li>a:hover, header nav>ul.clearfix>li.hover>a{
    color: #fff;
}
nav ul li.hover::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid transparent;
    border-bottom: 9px solid #fff;
    position: absolute;
    bottom: -9px;
    left: 50%;
    margin-left: -9px;
}
nav ul li>ol.sub{
    display: none;
    position: absolute;
    width: 100%;
    top: 33px;
    left: 0;
    padding-top: 24px;
    z-index: 1000;
}
nav ul li>ol.sub::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid transparent;
    border-bottom: 9px solid #1f61af;
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -9px;
}

nav ul li>ol.sub li a{
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 36px;
    color: #fff;
    text-align: center;
    background: #1f61af;
}

nav ul li>ol.sub li a:hover{
    color: #ef9e47;
    font-size: 17px;
    text-indent: 10px;
}

.link{
    padding-bottom: 30px;
    opacity: 0;
    visibility: hidden;
}
.link.animation{
    opacity: 1;
    visibility: visible;
    animation: 0.8s ease 0.5s 1 normal backwards running fadeInUp;
}
.link p{
    font-size: 16px;
    font-weight: bold;
    color: #1f61af;
}

.link p a{
    font-size: 14px;
    color: #999999;
    font-weight: normal;
    display: inline-block;
    padding: 0 15px;
    line-height: 1;
    border-right: 1px solid #999999;
}
.link p a:last-child{
    border-right: none;
}
.link p a:hover{
    color: #1f61af;
}
/* 底部 */
footer{
    background: url(../img/footer_bg.png) no-repeat center;
    background-size: cover;
}
footer>div.w1400{
    padding: 45px 0;
    position: relative;
}
footer>div.w1400 p.clearfix{
    width: 470px;
    margin-top: 3px;
}
footer>div.w1400 p.clearfix span{
    display: block;
    float: left;
    font-size: 15px;
    color: #d8e7fa;
    line-height: 30px;
    padding-left: 25px;
    margin-left: 30px;
}
footer>div.w1400 p.clearfix span:nth-child(1){
    background: url(../img/lxfs_icon.png) no-repeat left 5px;
}
footer>div.w1400 p.clearfix span:nth-child(2){
    background: url(../img/lxfs_icon.png) no-repeat left -20px;
}
footer>div.w1400 p.clearfix span:nth-child(3){
    background: url(../img/lxfs_icon.png) no-repeat left -44px;
}
footer>div.w1400 p.clearfix span:nth-child(4){
    background: url(../img/lxfs_icon.png) no-repeat left -70px;
}
footer>div.w1400 p.fr {
    margin-left: 110px;
}
footer>div.w1400 p.fr a{
    display: inline-block;
    margin: 0 4px;
}
footer>div.w1400 p.fr a:first-child{
    position: absolute;
    right: 0;
    top: -65px;
}
footer>p{
    text-align: center;
    font-size: 14px;
    color: #d8e7fa;
    line-height: 60px;
    border-top: 1px solid #366fb3;
}
footer>p>a{
    color: #d8e7fa!important;
}
footer>p>a:last-child{
    display: inline-block;
    padding-left: 30px;
    background: url(../img/ghs.png) no-repeat left center;
    margin-left: 30px;
}
footer>p>a:hover{
    color: #ef9e47!important;
}