@charset "UTF-8";

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: #1D1F22;
    min-width: 1200px;
    background: #F1F5FB url(../images/body-bg.png) no-repeat center bottom;
    margin: 0 auto;
}
a{
    color: #1D1F22;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: #007aff;
    text-decoration:none;
}
input,button{
    outline: none;
    border: none;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
table{
    border-collapse: collapse;
}
.content table tr th, .content table tr td{
    padding: 5px 10px;
    border: 1px solid gray;
}
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;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/*头部*/
.header{
    position: relative;
    height: 158px;
    background: #D2E5F4 url(../images/header.jpg) no-repeat center top;
}
.header .top{
    height: 98px;
}
.header .logo{
    float: left;
    line-height: 98px;
}
.header .search{
    float: right;
    margin-top: 15px;
}
.header .search p{
    text-align: right;
    margin-bottom: 5px;
}
.header .search p a{
    color: rgba(29, 113, 183, 0.6);
    padding-left: 20px;
    background: url(../images/home.png) no-repeat left center;
}
.header form{
    position: relative;
}
.header input[type="text"]{
    width: 194px;
    height: 36px;
    padding: 0 36px 0 10px;
    background: #FDFEFF;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.15);
    border-radius: 5px;
    box-sizing: border-box;
}
.header input[type="submit"]{
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: url(../images/search.png) no-repeat center center;
}

.header .toggle{
    display: none;
}
/*导航栏*/
.nav{
    height: 60px;
    background: #1D71B7;
}
.menu{
    display: flex;
}
.menu>li{
    display: inline-flex;
    position: relative;
    flex-grow: 1;
}
.menu>li>a{
    flex-grow: 1;
    line-height: 60px;
    font-size: 18px;
    font-weight: bold;
    color: #FCFCFC;
    text-align: center;
}
.menu>li:hover{
    background-color: rgba(0,0,0,.6);
}
.menu .second-menu{
    position: absolute;
    top: 60px;
    left: 0;
    min-width: 100%;
    width: max-content;
    background-color: rgba(0,0,0,.6);
    display: none;
    z-index: 999;
}
.menu .second-menu a{
    display: block;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding: 0 10px;
    border-top: 1px solid #eee;
}
.menu .second-menu a:hover{
    background-color: rgba(29, 113, 183, 0.6);
}

/*尾部*/
.footer{
    height: 435px;
    font-size: 15px;
    background: rgba(239, 239, 239, 0.23);
    box-shadow: -8px -9px 178px 0 rgba(149,149,149,0.23);
}
.footer .lf{
    width: 600px;
}
.footer .link p{
    color: #000;
    font-size: 25px;
    padding: 30px 0;
}
.footer .link ul{
    margin: 0 -20px;
    overflow: hidden;
}
.footer .link ul li{
    float: left;
    width: 33.33%;
    padding: 0 20px;
}
.footer .link ul li a{
    display: block;
    color: #888;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(165, 165, 165, 0.37);
}
.footer .link ul li a:hover{
    color: #007aff;
}
.footer .copyright ul{
    margin-top: 30px;
    overflow: hidden;
}
.footer .copyright ul li{
    float: left;
    width: 40%;
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}
.footer .copyright ul li:last-of-type{
    width: 100%;
}
.footer .rt{
    margin-top: 80px;
    line-height: 3em;
    text-align: center;
}

/*返回顶部*/
.toTop{
    position: fixed;
    right: 15px;
    bottom: -100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    font-family: '黑体';
    background: rgba(0,0,0,.6);
    border-radius: 5px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: .3s;
    z-index: 99;
}