.news_box {
    width: 100%;
}

.news {
    max-width: 1588px;
    width: 90%;
    margin: auto;
    padding: calc(10px + 0.5rem) 0;
    display: flex;
    justify-content: space-between;
    gap: calc(10px + 3rem);
}

.news_right {
    flex: 1;
    padding-top: calc(25px + 0.5rem);
}

.news_list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news_item {
    border: 1px solid #e1e1e1;
    padding: calc(10px + 1rem);
    background: #fff;
    margin-bottom: calc(5px + 1.5rem);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.news_item .tit {
    border-bottom: 1px solid #cbcbcb;
    margin-bottom: calc(5px + 0.5rem);
    position: relative;
}

.news_item .tit h3 {
    padding-bottom: calc(5px + 0.5rem);
    font-size: calc(8px + 0.5rem);
    color: #565656;
    font-weight: normal;
    padding-right: 25%;
    margin: 0;
}

.news_item .tit .date {
    position: absolute;
    right: 0;
    top: 0;
    font-size: calc(4px + 0.5rem);
    color: #666666;
}

.news_item .info {
    font-size: calc(4px + 0.5rem);
    line-height: 2;
    color: #999999;
}

.news_item .more {
    width: calc(30px + 5rem);
    line-height: calc(3px + 1.5rem);

    font-size: calc(4px + 0.5rem);
    color: #666666;
    border: 1px solid #e1e1e1;
    margin-top: calc(5px + 0.5rem);
}

.news_item .more a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news_item:hover {
    box-shadow: 0px calc(0px + 0.1rem) calc(3px + 0.5rem) 1px rgba(8, 1, 3, 0.18);
}
.news_item:hover .more{
    background-color: #0069b8;
}
.news_item:hover .more{
    color: #ffffff;
}

@media screen and (max-width: 1100px){
    .news{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .news_item .tit h3{
        font-size: calc(12px + 1rem);
    }
    .news_item .tit .date{
        font-size: calc(10px + 1rem);
    }
    .news_item .info{
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .news_item .more{
        width: calc(30px + 11rem);
        line-height: calc(20px + 1.5rem);
        font-size: calc(10px + 1rem);
    }
}