.article{
    width: 80%;
    margin: 0px auto;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.article-content{
    flex: 1;
    margin-left: 40px;
    line-height: 30px;
}
.article-content .content{
    width: 100%; 
    /* height: 500px;  */
    padding: 20px 125px;
    line-height: 30px;
}
.titlestyle43139 span{
    line-height: 35px !important;
}
.article-content .content p{
    text-align: left;
    text-indent: 2em;
    font-size: 17px;
    padding: 5px 0px;
}
.article-header{
        /* height: 80px; */
    border-bottom: 1px solid #ccc;
}
.header-content{
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
}
.header-content span{
    font-size: 18px;
    font-weight: 600;
}


.news{
    width: 310px;
}
.news-header{
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #ccc;
}
.news-header div{
    text-align: left;
    font-size: 18px;
    font-weight: 600;
}
.news-content{
    width: 100%;
    padding: 10px 0px;
    /* display: flex;
    align-items: center; */
}
.news-content p{
    width: 100%;
    position: relative;
    padding-left: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    overflow: hidden; 
    margin: 10px 0px;
    font-size: 17px;
    cursor: pointer;
    transition: all .2s;
}
.news-content p:hover{
    color:#064089;
}
.news-content p::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  /* background: #8f0009; */
  background-color: #064089;
}