@charset "UTF-8";

html {
    background-color: #ffffff;
}

.news-container {
    height: 54.6rem;
    margin: 0px;
    background: url(../images/news-bj.png) no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.news-container .news-container-title {
    width: 81.7rem;
    height: 31rem;
    background: rgba(28, 84, 225, 0.85);
    position: absolute;
    left: 18.3rem;
    top: 16.5rem;
}

.news-container .news-container-title p {
    font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
    font-weight: bold;
    font-size: 7.4rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    margin: 0 0 0 11.5rem;
}

.news-container .news-container-title p:nth-child(2) {
    font-size: 4.2rem;
    margin-top: 2rem;
}

.news-title {
    font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
    font-weight: bold;
    font-size: 5.4rem;
    color: #000000;
    margin: 5rem 0;
}

.new-top-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    margin: 0 0 5rem 0;
}

.new-top-three-item {
    width: 100%;
    height: 42rem;
    position: relative;
    margin: 0;
    background-size: cover !important;
    background-position: center center !important;
    overflow: hidden;
    cursor: pointer;
}

.new-top-three-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    background-size: cover;
    background-position: center center;
    transition: transform 0.5s ease;
    z-index: 1;
}

.new-top-three-item:hover::before {
    transform: scale(1.2);
}

.new-top-three-item-content {
    height: 16rem;
    background: rgba(0, 0, 0, 0.55);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 1.3rem;
    gap: 0.9rem;
    z-index: 2;
}

.new-top-three-item-content-title {
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 2.2rem;
    color: #FFFFFF;
    line-height: 3.6rem;
}

.new-top-three-item-content-date {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 1.4rem;
    color: #FFFFFF;
    line-height: 3.6rem;
    margin: 0 0.7rem;
}

.new-top-three-item-content-date-details {
    width: 10.5rem;
    height: 3.6rem;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2.6rem;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 1.6rem;
    color: #FFFFFF;
    cursor: pointer;
    user-select: none;
}

.new-item-list {
    width: 100%;
    margin: 0 0 4.5rem 0;
}

.new-item-list-content {
    gap: 1rem;
    padding: 2.7rem 0;
    border-bottom: 1px solid #D3D3D3;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 2rem;
    color: #000000;
    cursor: pointer;
    user-select: none;
}

.new-item-list-content:hover {
    color: #0466ED;
    border-color: #0466ED;
}

@media (max-width: 768px) {
    .news-container {
        height: 40rem;
    }

    .news-container .news-container-title {
        width: auto;
        position: absolute;
        right: 0;
        top: 5rem;
    }
    .news-container .news-container-title .desc {
        display: none;
    }
    .news-container .news-container-title .title {
        font-size: 4rem;
    }

    .news-container .news-container-title .title1 {
        margin-left: 2rem;
    }

    .container {
        width: auto;
        padding: 1rem;
    }

    .container .content {
        display: block;
        height: auto;
    }

    .container .content .right .img-container {
        width: 100%;
        height: 30rem;
    }

    .new-top-three{
        display: block;
    }
}