.keyword-bar {
  height:60px;
  display: flex;
  align-items: center;
  font-size:34px;
  font-weight:bold;
  color:rgba(187,35,52,1);
  margin-bottom: 20px;
}
.keyword-bar > img{
  height:32px;
  margin-right: 8px;
}
.keyword-bar .search {
  padding-left: 30px;
  height: 60px;
  flex: 1;
  background:rgba(255,255,255,1);
  border-radius:8px;
  display: flex;
  align-items: center;
}
.keyword-bar .search > input {
  margin: 0 20px;
  flex: 1;
  font-size:20px;
  color: #000;
  border: none;
  outline: none;
}
.keyword-bar .search > button {
  margin-right: 26px;
  font-size:24px;
  color:rgba(187,35,52,1);
}

.selector-bar {
  margin-top: 47px;
  display: flex;
}
.selector-bar .selector {
  margin-left: 16px;
}
.selector-bar .selector:first-child{
  margin-left: 0;
}
.company-box{
  width: 100%;
  text-align: left;
}
.company-item{
  width: 380px;
  box-sizing: border-box;
  background:rgba(255,255,255,1);
  border-radius:4px;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
  color: #333333;

  font-size: 20px;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.2s linear;
  text-decoration: none;
}
.company-item div{
  height: 80px;
  line-height: 80px;
  display: inline-block;
  font-size: 18px;
  overflow: hidden;
  max-width: 300px;
  color: #333333;
}
.company-item:hover{
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.company-item:nth-child(3n){
  margin-right: 0;
}
.company-item .icon{
  float: right;
  margin-top: 37px;
  transform: rotate(-90deg);
  width: 12px;
  height: 6px;
}
.pagination-wrapper{
  margin-bottom: 40px;
}