@charset "utf-8";
.Filter {
  border-left: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  margin: 10px 0;
}
.Filter li {
  float: left;
}
.Filter li.item {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #fff;
  border-color: #e1e1e1 #e1e1e1 #e1e1e1 currentcolor;
  border-image: none;
  border-style: solid solid solid none;
  border-width: 1px 1px 1px medium;
  box-sizing: border-box;
  color: #666;
  cursor: pointer;
  height: 35px;
  line-height: 35px;
  margin-top: -1px;
  position: relative;
  text-align: center;
  width: 33.33%;
}
.Filter li.item:last-child {
  border-right: 1px solid #e1e1e1;
}
.Filter li.item i {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #878787;
  display: inline-block;
  height: 0;
  margin-top: -2px;
  position: absolute;
  right: 10%;
  top: 50%;
  transition: all 1s ease-out 0s;
  width: 0;
  z-index: 10;
}
.Filter .item.cur,
.Filter .item:hover {
  background: #c40001 none repeat scroll 0 0;
  color: #FFF;
}
.Filter .item.cur i
.Filter .item:hover i{
  transform: rotate(180deg);
  border-color: #FFF;
}
.Filter .item-sub {display:none;background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  clear: both;
  color: white;

  width: 100%;
}
.Filter .item-sub .body {padding: 5px;
}
.Filter .item-sub .body.cur {
  display: block;
}
.Filter .item-sub .body a {
  background: #ebebeb none repeat scroll 0 0;
  border-radius: 3px;
  display: inline-block;
  line-height: 25px;
  margin: 5px 2px;
  padding: 0 10px;
}
.Filter .item-sub .body a.cur {
  background: #c40001 none repeat scroll 0 0;
  color: #fff;
}

.Filter ul li .item-sub a:hover{background: #c40001 none repeat scroll 0 0; color: #fff;}
.Filter ul li .item-sub{position: absolute;top:100%;width:300%;text-align:left;z-index:100;}
.Filter ul li:nth-child(3n+1) .item-sub{left:0;}
.Filter ul li:nth-child(3n+2) .item-sub{left:-100%;}
.Filter ul li:nth-child(3n+3) .item-sub{left:-200%;}
.Filter ul .item:hover .item-sub{display:block;}

