/*news*/
.news-content {
    min-height: 1000px;
    background: #fff;
    padding: 3%;
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0px;
}

.news-hr {
    width: 50px;
    border: 1px solid #ddd;
    border-image: linear-gradient(to right, #FE5D0D, #402807) 1;
}

.news-text {
    font-size: 14px;
    color: #888;
    padding-right: 10px;
    margin-top: 10px
}

.news-time {
    font-size: 14px;
    color: #999;
    margin-top: 18px;
}

/*news img big no div*/
.news-image-container {
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px 2px rgb(0 0 0 / 10%);
    text-align: left;
    margin-bottom: 20px;
    background: #fff;
    padding:10px;
    cursor: pointer;
    
    &::before,
    &::after {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        transition: .5s ease-in-out;
    }

    &::before {
        top: 0;
        left: 0;
        border-top: 0 solid #FE5D0D;
        border-left: 0 solid #FE5D0D;
    }

    &::after {
        right: 0;
        bottom: 0;
        border-bottom: 0 solid #FE5D0D;
        border-right: 0 solid #FE5D0D;
    }

    &:hover::before,
    &:hover::after {
        border-width: 1px;
        width: 100%;
        height: 100%;
    }

    &:hover {
        box-shadow: 0px 2px 5px 1px rgb(50 50 50 / 30%);
    }

    img {
        max-width: 300px;
        transition: transform 0.5s ease;
    }

    &:hover img {
        transform: scale(1.05);
    }
}

/*news-infos*/
.news-infos-content-img {
    width: 100%;
    border: 8px solid #fff;
    background-color: #ddd;
    box-shadow: 0 0 8px rgba(50, 50, 50, 0.3);
}

.news-infos-content-text {
    margin-top: 30px;
    padding: 10px;
    text-align: left;
    line-height: 1.8
}

.news-infos-remark {
    text-align: right;
    font-size: 12px;
    padding: 10px 0px;
    color: #666
}
