/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1400px;
}
a{
    color: #333;
    text-decoration:none;
}
a:hover{
    color: #00214A;
}
input,button{
    outline:0;
    border: none;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
table{
    border-collapse: collapse;
}
td,th{
    padding: 5px 8px;
    border: 1px solid #ededed;
}
video{
    object-fit: fill;
}

/*通用样式*/
.lf{
    float: left;
}
.rt{
    float: right;
}
.container{
    width: 1400px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipse{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*头部*/
.header{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    min-width: 1400px;
    z-index: 999;
}
.fixed{
    position: fixed;
    background-color: #fff;
    box-shadow: 0 2px 4px #eee;
    animation: slideInDown .5s;
}
.top{
    height: 48px;
    line-height: 48px;
    text-align: right;
    display: none;
    background-color: #ccc;
}
.top a{
    color: #fff;
    opacity: .5;
}
.top a:hover{
    opacity: 1;
}
.top span{
    color: #fff;
    padding: 0 15px;
    opacity: .5;
}
.logo{
    position: relative;
    padding: 30px 0;
    /*overflow: hidden;*/
}
.logo img{
    animation: zoomIn .5s;
}
.logo>a{
    position: absolute;
    top: 25px;
    right: 0;
    color: #fff;
}
.logo>a:hover{
    color: #00214A;
}
.logo .search{
    float: right;
    position: relative;
    top: 25px;
}
input[type='text']{
    width: 150px;
    height: 35px;
    line-height: 35px;
    padding: 0 50px 0 15px;
    background-color: #FDFDFD;
    border-radius: 20px;
}
input[type='submit']{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    line-height: 35px;
    background: url(../images/search.png) no-repeat center center;
    cursor: pointer;
}
.menu{
    display: flex;
    justify-content: center;
    /*animation: slideInUp .5s;*/
}
.menu>li{
    position: relative;
    width: 155px;
}
.menu>li a{
    display: block;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.menu>li:hover>a{
    background-color: #00214A;
}
.menu>li:hover .sub-menu{
    /*display: block;*/
}
.menu>li span{
    display: none;
}
.sub-menu{
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    display: none;
    z-index: 9;
}
.sub-menu li a{
    margin-top: 2px;
    font-size: 16px;
    background-color: #00214A;
}
.sub-menu li a:hover{
    color: #00214A;
    background-color: #fff;
}

.fixed .logo{
    float: left;
    padding: 20px 0 15px;
}
.fixed .logo .search{
    display: none;
}
.fixed .menu{
    float: right;
    margin-top: 30px;
}
.fixed .menu>li>a{
    color: #333;
    font-size: 16px;
}
.fixed .menu>li:hover>a{
    color: #fff;
}
.fixed .menu>li{
    width: 95px;
}

/*尾部*/
.footer{
    height: 446px;
    background: #00214A url(../images/footer.jpg) no-repeat center center;
}
/*友情链接*/
.links h2{
    line-height: 40px;
    padding: 40px 0;
    color: #fff;
    font-size: 30px;
    opacity: .6;
}
.links h2 span{
    padding-left: 10px;
    font-size: 18px;
    font-weight: normal;
}
.links ul{
    padding-bottom: 60px;
    margin-bottom: 40px;
    border-bottom: 1px solid #375877;
    overflow: hidden;
}
.links ul li{
    position: relative;
    float: left;
    width: 25%;
    line-height: 2em;
}
.links ul li a{
    color: #fff;
    transition: .3s;
}
.links ul li a:hover{
    color: orange;
    padding-left: 1em;
}
.bottom p{
    margin-right: 100px;
    line-height: 2em;
    color: #fff;
    opacity: .6;
}
.bottom p a{
    color: #fff;
}
.bottom p a:hover{
    text-decoration: underline;
}