.news {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.news>a {
    width: 24%;
    margin-right: 1.3%;
    padding: 16px;
    background-color: #ffffff;
    box-shadow: 2px 2px 4px 4px #cccccc;
    margin-bottom: 20px;
    border-radius: 10px;
    transition: 0.5s;
}

.news>a:nth-child(4n) {
    margin-right: 0;
}

.news>a>div,
.news>a>div>img {
    height: 190px;
    overflow: hidden;
}

.news>a>.title {
    font-size: 18px;
    color: #444444;
    line-height: 30px;
   /* height: 60px;*/
    overflow: hidden;
    margin-top: 10px;
}

.news>a>.time {
    font-size: 12px;
    color: #999999;
    padding: 8px 0;
}

.news>a>.content {
    font-size: 14px;
    color: #777777;
    /*height: 82px;*/
    line-height: 28px;
    padding-bottom: 20px;
}

.news>a:hover {
    background-color: #c01a20;
    
}

.news>a:hover>p {
    color: #ffffff !important;
}

.news>a:hover>div>img {
    transform: scale(1.1);
}

.new {
    padding-top: 50px;
    overflow: hidden;
}

.new-left {
    width: 900px;
    float: left;
}

.new-left .title {
    font-size: 30px;
    margin-bottom: 40px;
}

.new-left .notes {
    font-size: 14px;
    color: #666666;
    padding-bottom: 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid #e0dfdf;
}

.new-left .content {
    color: #666666;
    line-height: 3;
}

.new-end {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #000000;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0dfdf;
}

.new-end>div {
    display: inline-block;
}

.new-end>div>a {
    display: block;
    margin: 10px 0;
}
.new-end>div>a:hover {
   color: #c01a20;
}

.new-right {
    width: 320px;
    float: right;
    padding-bottom: 60px;
    background-color: #f5f5f5;
}

.new-right div {
    position: relative;
    line-height: 60px;
    color: #ffffff;
    padding:0 20px;
}
.new-right div>span{
    position: relative;
    z-index: 1;
}

.new-right img {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    top: 0;
    z-index: 0;
  
}

.new-right a {
    display:block ;
    position: relative;
    line-height: 28px;
    font-size: 15px;
    color: #666666;
    padding:16px 20px 16px 30px;
  
}
.new-right a::before{
    content: '';
    display: inline-block;
    background-color: #666666;
    height: 6px;
    width: 6px;
    position: absolute;
    border-radius: 50%;
    left: 20px;
    top: 27px;
}
.new-right a::after{
    content: '';
    display: inline-block;
    background-color: #e0dfdf;
    height: 1px;
    width: 280px;
    position: absolute;
    left:0px;
    margin: auto;
    right: 0;
    bottom: 0;
    
}