
 

.title1 {
    /*height: 90px;*/
    z-index: 1;
    position: relative;
    padding: 56px 0px 0;
    box-sizing: border-box;
    font-size: 28px;
    color: #333;
    display: flex;
    cursor: default;
    align-items: center;
    justify-content: center;
}

.title1-line {
    width: 106px;
    height: 1px;
    background: rgba(51, 51, 51, 1);
}

.title1 p .title1_red {
    color: rgba(230, 0, 18, 1)
}

.title1 p {
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0;
    font-family: SourceHanSansCN;
}

.title1-en {
    display: flex;
    align-items: center;
    justify-content: center;
    font: normal 16px/1.5 'SourceHanSansCN-Medium';
    color: #999;
    cursor: default;
    margin-top: 20px;
}


 
/*---------------------行业资讯-----------------------*/
.message {
    width: 100%;
    height: 400px;
    padding-bottom: 45px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 1);
}


.message_li {
    width: 33%;
    height: 106px;
    display: inline-block;
    margin-top: 70px;
    clear: both;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.message_li:last-child {
    border-right: none;
}

.message_li li {
    padding-left: 100px;
    color: rgba(0, 0, 0, 0.8);
    list-style-type: disc;
    padding-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.message_li li:hover {
    color: rgba(230, 0, 18, 1);
}

