html, body {
    min-width: 1200px;
}

.banner-container {
    background-image: url('static/images/news/banner.png');
    background-size: cover;
    background-position: center;
    height: 674px;
}

.news-item {
    border-bottom: 1px solid #F5F5F7;
}

.news-item:hover {
    background: #FFFFFF;
    box-shadow: 0px 8px 30px 0px rgba(162, 162, 162, 0.2);
    border-radius: 10px;
    transition: all 1s;
}

.hot-news-title {
    border-bottom: 1px solid #DADAE5;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.pagination-btn {
    padding: 5px 10px;
    margin: 0 5px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
}

.pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.pagination-pages {
    display: flex;
    align-items: center;
}

.pagination-page {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: #F5F5F7;
    cursor: pointer;
    border-radius: 4px;
    color: #303033;
}

.pagination-page.active-btn {
    background: #175FE5;
    color: #fff;
}

/* 模态框的样式 */
.modal {
    display: none;
    /* 默认隐藏 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* 半透明背景 */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 740px;
    border-radius: 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}