
#newsArea {
    background-image: var(--img-bg-green);

    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#banner {
    margin: 120px auto 0;
    width: 1100px;
}

#banner > img {
    width: 100%;
}

#newsBlock, #newsDetail {
    margin: 20px auto 0;
    width: 900px;
}

#newsBlock > .title {
    color: #fcfe00;
    font-size: 35px;
}

#newsBlock > .list {
    margin-top: 20px;
}

#newsBlock > .list > hr {
    color: white;
    border: 0;
    height: 1px;
    background-color: white;
    margin: 0;
}

.news-container {
    padding: 15px 0;
}

.news-container:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.news-container > a {
    display: flex;
    text-decoration: none;
}

.news-container .news-time {
    color: #6bd595;
    font-size: 20px;
    margin-left: 10px;
    width: 150px;
}

.news-container .news-content {
    color: #fcfe00;;
    font-size: 18px;
    line-height: 30px;
    width: 730px;
    cursor: pointer;
}

#newsBlock > .pager {
    justify-content: end;
    margin: 35px 0 75px;
}

#newsBlock > .pager > a {
    border: 1px solid white;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    text-decoration: none;
}

#newsBlock > .pager > a.current-page {
    border: 1px solid #fcfe00;
    background-color: #fcfe00;
    color: #578f6f;
}

#newsDetail .title {
    color: #fcfe00;
    font-size: 35px;
}

#newsDetail > .title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#newsDetail > .title-area > a{
    width: 45px;
    height: 45px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #568d6d;
    font-size: 35px;
    text-decoration: none;
}

#newsDetail > .intro {
    border-top: solid 1px #fcfe00;
    border-bottom: solid 1px #fcfe00;
    margin-top: 10px;
}

#newsDetail > .intro > table {
    width: 100%;
    color: #6bd595;
    margin: 10px 0;
}

#newsDetail > .intro .detail-title-col {
    width: 100px;
}

#newsDetail > .intro .detail-title-name {
    color: #fcfe00;
}

#newsDetail > .content {
    color: white;
    margin: 50px auto 150px;
}