.news-content-box {
    /*display: flex;*/
    /*flex-direction: column;*/
    margin: 0 200rem;
    /*margin-top: -68rem;*/
    margin-bottom: 85rem;
    /*background: #ffffff;*/
    padding: 30rem;
}


.img-column-box{
    /*display: grid;*/
    /*grid-template-columns: repeat(3,1fr);*/
    /*column-gap: 20rem;*/

    width: 100%;
    /*display: flex;*/

    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;


}

.img-column-box .column{
    width: 33.33%;
    /*height: 100%;*/

}

.img-column-box .column:nth-of-type(2){
    margin-left: 20rem;
    margin-right: 20rem;
}

.img-item{
    display: block;
    width: calc(33.33% - 10rem);
    height: 450rem;
    /*width: 100%;*/
    background-color: #ffffff;
    margin-bottom: 20rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.img-item:hover{
    transform: scale(1.05);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}

/*.img-item:nth-child(even){*/
    /*margin-left: 20rem;*/
    /*margin-right: 20rem;*/
/*}*/

.img-item .img-desc{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30rem;
}

.img-item .img-desc .img-title{
    padding-left: 30rem;
    font-size: 18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #6E6F71;
    display: flex;
    align-items: center;
    position: relative;
}

.img-item .img-desc .img-title::after{
    content: '';
    width: 26rem;
    height: 1.5rem;
    background-color: #6E6F71;
    position: absolute;
    left: 0;
}

.img-item .img-desc .img-title .line{
    width: 63rem;
    height: 1.5rem;
    margin-left: 10rem;
    background-color: #6E6F71;
    display: flex;
    align-items: center;
    position: relative;
}

.img-item .img-desc .img-title .line::after{
    content: '';
    width: 10rem;
    height: 10rem;
    background: #6E6F71;
    border-radius: 50%;
    position: absolute;
    right: -10rem;
    top: -5rem;
}

.img-item .img-desc .img-title .line::before{
    content: '';
    width: 30rem;
    height: 30rem;
    background: rgba(110, 111, 113, 0.3);
    border-radius: 50%;
    position: absolute;
    right: -20rem;
    top: -15rem;
}

.img-item .img-desc .img-date{
    font-size: 18rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #6E6F71;
}

