.company_list_box .window_width{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.company_list_box .box-item{
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 10px;
    padding: 20px;
    width: calc((100% - 20px)/2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.company_list_box .img{
    width: 80px;
    height: 80px;
    border-radius: 100%;
    vertical-align: top;
}
.company_list_box .info{
    flex: 1;
    padding-left: 20px;
    text-align: left;
}
.company_list_box .title{
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:2;
    font-size: 16px;
    font-weight: bold;
    color: #cc0000;
    margin-bottom: 20px;
}
.company_list_box .btn-view a{
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    margin-right: 10px;
    background: #cc0000;
    font-size: 12px;
}

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination li{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
    font-size: 12px;
    color: #666666;
    cursor: pointer;
    margin: 0 3px;
    box-sizing: border-box;
}
.pagination li.disabled{
    display: none;
}
.pagination li a,.pagination li span{
    color: inherit;
    display: block;
    height: 38px;
    line-height: 38px;
}
.pagination li:hover,.pagination li.active{
    background: #cc0000;
    color: #ffffff;
}

.search-box{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    min-width: 1200px;
}
.search-box .search-input{
    height: 35px;
    width: 300px;
    border: 1px solid #f4f4f4;
    border-right: none;
    padding: 0 10px;
}
.search-box .search-btn{
    width: 100px;
    height: 35px;
    border: none;
    background: #cc0000;
    color: #ffffff;
    text-align: center;
}