*{
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei";
    font-size: 16px;
    color: #333;
}
body,p,ul,li,dl,dd,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: #333;
}
h1,h2,h3,h4,h5,h6,em,i,b{
    font-style: normal;
    font-size: 100%;
    font-weight: normal;
}
input{
    outline: none;
}
.wrap{
    width: 1100px;
    margin: 0 auto;
}
/*β��*/


/*β��*/
.footer{ margin-top: 20px; border-top: 8px solid #014985; background-color: #fff;}
.footer_top{ margin: 24px auto; height: 40px; position: relative;}
.footer_top li.item{border: 1px solid #d8d8d8; line-height: 40px; float: left; margin-right: 13px; width:146px;  text-align: center; }
.footer_top li.last{margin-right: 0;}
.footer_top li.item>a{ color: #666; font-size: 14px; display: block; position: relative; background: url(../images/select.png) no-repeat 135px center;}
.footer_top li.item i{ color: #fff; position: absolute; right: 0; top: 0;}
.footer_bot{ padding-bottom:35px; overflow: hidden;}
.footer_lf{ float: left; }
.footer_lf_top{ font-size: 14px; color: #33;}
.footer_lf_top a{ font-size: 14px; color: #333;}
.footer_lf_top b{margin: 0 13px;}
.footer_lf_bot{ margin-top: 18px;}
.footer_lf_bot em{ display: block; margin-bottom: 4px; overflow: hidden;}
.footer_lf_bot em span{ float: left; font-size: 12px; color: #333; margin-right:30px;}
.footer_lf_bot em span a{/* float: left; */margin-right: 3px;color: #333;}
.footer_mid{ float: left ; margin-top: 25px;margin-right: 10px; }
.footer_mid a{ float: left; margin-right: 16px;}
.footer_mid .a2{ margin-top: 5px;}
.footer_rg{ float: right;}
.footer_rg li{ float: left; margin-left: 20px; width: 86px; }
.footer_rg li i{ display: block;}
.footer_rg li i img{ display: block; margin: 0 auto;}
.footer_rg li span{ display: block; text-align: center; font-size: 14px; color: #333; margin-top: 5px;}
@media screen and (max-width: 800px){
.footer_top,.footer_lf_top,.footer_rg {display: none;}
}
.wzdh{
	display: none;
	 width: 1200px;  
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 1px solid #dae2e8;
    background: #fff;
    z-index: 100;
    bottom: 100%;
}
.wzdh ul{ padding: 13px 18px;}
.wzdh li{
	    width: 16.6%;
    float: left;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    vertical-align: top;
}
.wzdh li a{
	    display: block;
    text-align: left;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    padding-left: 6px;
}
.wzdh li:hover a{ color: #015293;}
.footer_top li:hover .wzdh{ display: block;}
.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
}
.clearfix:after {
    clear: both;
}
.clearfix{
    *zoom: 1;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 0; 
}
/* 列表项：让标题和时间在一行显示 */
.news-list li {
  display: flex;          /* Flex 布局，让子元素并排 */
  align-items: center;    /* 垂直居中对齐 */
  justify-content: space-between; /* 标题左、时间右 */
  padding: 8px 0;         /* 上下间距，可调整 */
  border-bottom: 1px solid #eee; /* 底部分割线，可选 */
}

/* 标题：超出隐藏，显示省略号 */
.news-list li a {
  flex: 1; /* 占满剩余空间（时间宽度以外的区域） */
  white-space: nowrap;  /* 不换行 */
  overflow: hidden;     /* 超出隐藏 */
  text-overflow: ellipsis; /* 超出显示... */
  margin-right: 10px;   /* 和时间保持间距 */
  color: #333;          /* 标题颜色，可调整 */
  text-decoration: none;/* 去掉下划线 */
}

/* 时间：固定居右 */
.news-list li span {
  white-space: nowrap;  /* 防止时间换行 */
  color: #999;          /* 时间颜色，可调整 */
}