.nav {
    width: 100%;
    position: relative;
}
.news-nav {
    width: 100%;
    height: 46.875rem;
}
.news-list-container {
    width: 100%;
    box-sizing: border-box;
    padding: 5rem 18.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f9f9f9;
}
.news-item {
    box-sizing: border-box;
    padding: 2.5rem;
    border-radius: 1.25rem;
    display: flex;
    background-color: #FFFFFF;
    cursor: pointer;
    margin-bottom: 2.5rem;
}
.item-prew-photo {
    width: 25rem;
    height: 15rem;
    overflow: hidden;
    margin-right: 3.125rem;
    border-radius: 0.625rem;
    transition-duration: 300ms;
}
.prew-photo {
    width: 100%;
    height: 100%;
}
.news-item:hover .item-prew-photo {
    transform: scale(1.05);
    transition-duration: 300ms;
}
.news-synopsis {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 50rem;
    padding: 0.625rem;
}
.news-synopsis-title {
    min-width: 48.75rem;
    font-weight: bold;
    font-size: 1.5rem;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-watch {
    display: flex;
    align-items: center;
}
.news-watch-l {
    display: flex;
    align-items: center;
    margin-right: 2.75rem;
    color: #999999;
}
.news-watch-r {
    color: #999999;
}
.eyes-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.news-synopsis-content {
    font-size: 1.375rem;
    color: #333333;
    line-height: 1.625rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.watch-detail {
    width: 10rem;
    height: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #999999;
    position: relative;
    box-sizing: border-box;
    transition-duration: 300ms;
}
.arrow-03 {
    width: 2rem;
    height: 2rem;
    margin-left: 1.5rem;
}
.arrow-04 {
    display: none;
}
.news-synopsis:hover .news-synopsis-title {
    color: #006FFF;
}
.news-synopsis:hover .watch-detail {
    background: #00A8FF;
    width: 10rem;
    height: 2.5rem;
    border: 1px solid #00A8FF;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    transition-duration: 300ms;
}
.news-synopsis:hover .arrow-03 {
    display: none;
}
.news-synopsis:hover .arrow-04 {
    display: block;
    width: 2rem;
    height: 2rem;
    margin-left: 1.5rem;
}
.pagination-container {
    display: flex;
    height: 3.125rem;
    align-items: center;
    justify-content: center;

}
.total-page, .pre-page,.page-list,.router-to,.router-input {
    font-size: 1.25rem;
    color: #333333;
}
.pre-page {
    box-sizing: border-box;
    padding: 0.4375rem 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #EEEEEE;
}
.page-list {
    display: flex;
    gap: 0.5rem;
}
.page-list-item {
    box-sizing: border-box;
    padding: 0.4375rem 0.875rem;
    border-radius: 0.375rem;
    border: 1px solid #EEEEEE;
}
.total-page {
    margin-right: 1.125rem;
}
.pre-page,.page-list {
    margin-right: 0.5rem;
    cursor: pointer;
}
.next-page {
    margin-right: 1.125rem;
}
.router-input {
    width: 5rem;
    border-radius: 0.375rem;
    border: 1px solid #EEEEEE;
    padding: 0.4375rem 0.5rem;
    text-align: center;
}
.router-input:focus {
    border: 1px solid #0fc878;
}
.page-list-item:hover {
    background-color: #00A8FF;
    border: 1px solid #00A8FF;
    color: #FFFFFF;
}
