
/* CSS reset */

@charset "utf-8";
*{margin:0px;padding:0px}
*,*:before,*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}
body, html{font:"微软雅黑",Arial,sans-serif;color:#333; font-size:14px; font-family: "微软雅黑";}
a{cursor:pointer;color:#333;}
a,a:active,u,s,del{text-decoration:none;color:#333;}
img{border:0;vertical-align: middle;display: inline-block;}
i,em,b{font-style:normal}
dl,ol,ul,li{list-style:none}
input,select{ outline: none; }
ul li{ zoom: 1;}
ul li:after { content: ""; clear: both; display: block; }
.clear { zoom: 1; }
.clear:after { content: ""; clear: both; display: block; }
ul:after{ display:block; content:""; clear:both;}
table{border-collapse:collapse;}/*细线边框*/
.fl{ float:left;}
.fr{ float:right;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display: block;}
/*清除ie的默认选择框样式清除，隐藏下拉箭头*/
select::-ms-expand { display: none; }
.wp{
    width: 90%;
    /* width: 1735px; */
    margin: 0 auto}
/*禁止 ios 长按时不触发系统的菜单，禁止 ios&android 长按时下载图片*/
-webkit-touch-callout:none;
/*控制元素在移动设备上是否使用滚动回弹效果.*/
html,body{
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.pages {
    text-align: center;
    margin: 10px 0 40px;
  }
  
  .pages ul {
    display: inline-block;
  }
  
  .pages ul li {
    float: left;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  
  .pages ul li:last-child a{
      border-right: 1px solid #e6e6e6;
  }
  .pages ul li a {
    display: block;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    text-align: center;
    font-size: 16px;
    color: #4f4f4f;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-right: 0;
  }
  
  .pages ul a:hover, .pages ul li.on a {
    /*border:none;*/
    background-color: #74c213;
    border-color: #74c213;
    color: #fff;
  }
  
  .pages ul .active {
    background: #74c213;
    border: 1px solid #74c213;
  }
  
  .pages ul .active p, .pages ul .active span, .pages ul .active i {
    color: white !important;
  }
  
  .pages ul .disabled {
    background: white;
    border: 1px solid #e6e6e6;
    font-size: 16px;
  }
  
  