/*
--分页栏示意代码
<div style="margin-top:10px;text-align:center;" class="pagebar">
    <span class="p_pages">
        <span class="p_first_d p_fun_d">首页</span>
        <span class="p_prev_d p_fun_d">上页</span>
        <span class="p_no_d">1</span>
        <span class="p_no"><a href="#">2</a></span>
        <span class="p_dot">...</span>
        <span class="p_no"><a href="#">12</a></span>
        <span class="p_next p_fun"><a href="#">下页</a></span>
        <span class="p_last p_fun"><a href="#">尾页</a></span>
    </span>
    <span class="p_goto"><input type="text" class="p_goto_input" maxlength=20 ></span>
    <span class="p_goto"><a href="#">跳转</a></span>
</div>
 
--样式名称表
 名称    带链接样式 不带链接样式 公共样式 不带链接公共样式
 首页     p_first   p_first_d   p_fun   p_fun_d
 尾页     p_last    p_last_d    p_fun   p_fun_d
 上一页   p_prev    p_prev_d    p_fun   p_fun_d
 下一页   p_next    p_next_d    p_fun   p_fun_d
 某页     p_no      p_no_d
  
 省略号   p_dot
 页码框   p_goto_input  p_goto
 跳转     p_goto
*/
/*pagebar可改为自定义名称*/
 
/*公共样式 字体，行高，字体颜色等*/
.pagebar {
    font-size: 12px;
    font-family: SimSun;
    line-height:12px;
 
    color:#A3A1A1;}
 
/*去掉a链接的下划线*/
.pagebar a{
    text-decoration: none;}
 
/*消掉最左侧页码区margin-left的5个像素*/
.pagebar .p_pages{
    margin-left: -5px;}
 
/*按钮和页码的外观*/
.pagebar .p_fun_d, .pagebar .p_no_d,.pagebar .p_fun a, .pagebar .p_no a{
   
   /* padding: 5px 8px;
    margin:0px 0px 0px 5px;
    height:24px;
    -height:auto;
    line-height:12px;
    box-sizing:border-box;
    display:inline-block;
    vertical-align:middle;*/
    
        display: inline-block;
       width: 37px;
    height: 37px;
    background-color: rgb(246, 243, 243);
    text-align: center;
    line-height: 37px;
    font-size: 14px;
    font-family: 幼圆;
    margin-right: 10px;
    border-radius: 19px;}
 .pagebar .p_fun_d, .pagebar .p_no_d,.pagebar  .pagebar .p_no a{
      width: 75px !important;}
/*文字对齐样式*/
.pagebar .p_t{
    line-height:12px;
    margin:0px;
    padding:0px;
    display:inline-block;
    vertical-align:middle;}
 
/*无链接的字体颜色*/
.pagebar .p_fun_d, .pagebar .p_no_d{
    color: #ccc;}
 
/*链接字体颜色*/
.pagebar .p_fun a, .pagebar .p_no a{
    color: #A3A1A1;}
 .pagebar .p_next a,.pagebar .p_last a,.pagebar .p_first a,.pagebar .p_prev a{
    width: 75px;}
/*鼠标移上时有链接按钮的外观*/
.pagebar .p_no a:hover,.pagebar .p_fun a:hover, .pagebar .p_goto a:hover{
    background-color: #004ea1;
        color: #fff;}

 
/*页码省略号...的外观*/
.pagebar .p_dot {
   /* margin-left:4px;
    margin-right:-4px;
    color:#a3a1a1;*/
        display: inline-block;
    width: 37px;
    height: 37px;
    background-color: rgb(246, 243, 243);
    text-align: center;
    line-height: 37px;
    font-size: 14px;
    font-family: 幼圆;
    margin-right: 10px;
    border-radius: 19px;}
 
/*当前页码的外观*/
.pagebar .p_no_d {
   
  /*  color: #fff;
    background-color: #258cff;*/
    display: inline-block;
   width: 37px !important;
    height: 37px;
       background: #004ea1;
    color: #fff;
    text-align: center;
    line-height: 37px;
    font-size: 14px;
    font-family: 幼圆;
    margin-right: 10px;
    border-radius: 19px;}
 
/*按钮控制*/
 
/*控制是否显示 "首页" "尾页" */
.pagebar .p_first,.pagebar .p_first_d,.pagebar .p_last,.pagebar .p_last_d{
    /*display:none;*/
         width: 75px !important;}
 
/*控制是否显示 "上页" "下页"*/
.pagebar .p_prev,.pagebar .p_prev_d.pagebar .p_next,.pagebar .p_next_d{
    /*display:none;*/     width: 75px !important;}
 
/*控制是否显示无链接的 "首页" "上页" "下页" "尾页"*/
.pagebar .p_first_d,.pagebar .p_prev_d,.pagebar .p_next_d,.pagebar .p_last_d{
    /*display:none;*/     width: 75px !important;}   
 
/*控制是否显示页码*/
.pagebar .p_no,.pagebar .p_no_d,.pagebar .p_dot{}
 
/*跳转到页码输入框的外观*/
.pagebar .p_goto input {
    font-family: SimSun;
    font-size:12px;
 
   
    height:22px;
    line-height:20px;
    box-sizing:border-box;
    vertical-align:middle;
 
    outline-width:thin;
    outline-color:#258CFF;
     
    margin:0px 2px;
    padding:0px 1px;
 
    width:22px;
    text-align:center;}
 
/*跳转到页码输入框  鼠标移上及输入时的外框颜色*/
.pagebar .p_goto input:hover, .pagebar .p_goto input:focus{
    border: 1px solid #258CFF;}
 
/*跳转按钮的外观*/
.pagebar .p_goto a{
  
    padding: 5px 6px;
    color: #A3A1A1;
 
    margin:0px;
 
    height:24px;
    -height:auto;
     
    line-height:12px;
    display:inline-block;
    box-sizing:border-box;
    vertical-align:middle;}

.news{
   display: inline-block;
   width:30px;
   height:19px;
   background:url(images/new.png)no-repeat;
       margin-bottom: -4px;
    margin-right: 5px;}
.sbz{
      display: inline-block;
    color: #f05b01e0;}
