/*CSS样式重写*/
body,p,h1,h2,h3,h4,h5,h6,ul,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: 1200px;
}
a{
    color:#333;
    text-decoration:none;
}
a:hover{
    color:#0670EA;
}
input,button{
    outline:none;
    border:none;
}
img{
    vertical-align: middle;
    border: none;
    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: 1200px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipse{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*头部*/
.header{
    height: 186px;
    background: url(../images/header.jpg) no-repeat center center;
}
.logo img{
    height: 65px;
    margin: 33px 0;
    animation: zoomIn 1s;
}
.logo .search{
    float: right;
    position: relative;
    top: 50px;
}

.logo .search input[type='text']{
    width: 160px;
    height: 35px;
    line-height: 35px;
    padding: 0 50px 0 15px;
    background-color: #FDFDFD;
    border-radius: 20px;
}
.logo .search input[type='submit']{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 35px;
    line-height: 35px;
    background: url(../images/search.png) no-repeat center center;
    cursor: pointer;
}

.nav{
    height: 55px;
    background-color: rgba(0,55,145,.3);
}
.menu{
    display: flex;
    justify-content: center;
}
.menu>li{
    position: relative;
    flex-grow: 1;
}
.menu>li a{
    display: block;
    height: 55px;
    line-height: 55px;
    color: #fff;
    font-size: 17px;
    text-align: center;
}
.menu>li:hover>a{
    background-color: #0670EA;
}
.menu>li span{
    display: none;
}
.sub-menu{
    position: absolute;
    top: 55px;
    left: 0;
    display: none;
    z-index: 9;
    min-width: 100%;

}
.sub-menu li a{
    margin-top: 2px;
    font-size: 16px;
    background-color: #0670EA;
    word-break: keep-all;
}
.sub-menu li a:hover{
    color: #0670EA;
    background-color: #fff;
}

/*尾部*/
.footer{
    height: auto;
    background: url(../images/footer.jpg) no-repeat center center;
}
.contact{
    margin-top: 35px;
    padding-bottom: 15px;
    border-bottom: 1px solid #4787E0;
    overflow: hidden;
}
.contact ul li{
    float: left;
    width: 30%;
    color: #fff;
}
.contact ul li:first-child{
    width: 30%;
}
.contact ul li.flogo{
    width: 488px;
}
.contact ul li p{
    line-height: 30px;
}
.contact ul li h3{
    font-size: 18px;
    font-weight: normal;
}
.contact ul li h2{
    margin: 10px 0 0px;
    font-size: 26px;
}
.contact ul li:last-child{
    text-align: left;	width:240px ;padding-top: 15px;
}
.contact ul li.qr{
	width: 108px;
	padding-top: 15px;
}
.contact ul li.qr img{
	width: 82px;
	height: 82px;
    border: 6px solid #fff;
}
.footer .bottom{
    padding: 15px 0;
	text-align: center;
    color: #c6daf8;
}
.footer .bottom a{
    color: #c6daf8;
}
.footer .bottom a:hover{
    color: #fff;
}