/********¿¨Æ¬×é**********/
.comp-news .items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;  
}
.comp-news .item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 15px;
}
.comp-news .items-1 .item {
    width: 100%;
}
.comp-news .items-2 .item {
    width: 50%;
}
.comp-news .items-3 .item {
    width: 33.33%;
} 
 
.comp-news .item .item-wrap {
    background: #FFFFFF; 
    box-shadow: 0 10px 40px 0px rgba(0, 0, 0, .1);
    display: inline-block; 
}  
  
.comp-news .item .title { 
    height: 125px;
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 25px;
}

.comp-news .item .title h2 {
    font-size: 24px;
    color: #FFFFFF;
}
.comp-news .item .title span {
    font-size: 15px;
    color: #FFFFFF;
    margin-top: 6px;
    display: inline-block;
}

.comp-news .item ul {
    padding: 20px 10px 20px 20px;
}
.comp-news .item li {
    position: relative;  
    font-size: 14px;
    line-height: 24px;
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:5px 0;
}
.comp-news .item li:before {
    display:inline-block;
    content: ''; 
    width: 8px;
    height: 8px;
    background: #DAE2F2; 
    border-radius: 50%;
    margin-right:10px;
}

.comp-news .item li a:hover {
    color: #299cf8;
}
.comp-news .item li a {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    flex: 1;
    text-align: left;
}
.comp-news .item li span {
    font-size: 12px;
    color: #999; 
    margin-left: 15px;
}
.comp-news .item .more {
    display: inline-block;
    align-self: center;
    height: 38px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 38px;
    color: #fff;
    border: none;
    border-radius: 6px;
    background: #299cf8;
    margin-top: 20px;
}