.news-top-next-dh {
    width: 500px;
    position: absolute;
    top: 10%; /* 通过调整top和left属性，可以对文字进行精确定位 */
    left: 8%;
    color: #fff; /* 设置文字颜色 */
}

.news-top-next-dh p {
    font-size: 36px;
}

.news-lj {
    width: 700px;
    position: absolute;
    top: 60%; /* 通过调整top和left属性，可以对文字进行精确定位 */
    left: 8%;
    color: #fff; /* 设置文字颜色 */
}

.news-lj a {
    text-decoration: none; /* 移除默认链接的下划线 */
    color: #000; /* 默认字体颜色 */
    background-color: #f9f9f9; /* 默认背景颜色 */
    padding: 10px 15px; /* 内边距，使链接更大，更易点击 */
    border-radius: 5px; /* 圆角边框 */
    margin-right: 10px; /* 可选，添加一些右边距 */
    transition: background-color 0.3s, color 0.3s; /* 平滑的背景颜色和字体颜色变化 */
    width: 120px; /* 设置固定宽度 */
    text-align: center; /* 文字居中 */
    display: inline-block; /* 设置为行内块级元素 */
}

.news-lj a:hover {
    background-color: #0056b3; /* 光标指向时的背景颜色 */
    color: #fff; /* 光标指向时的字体颜色 */
}


.news-ss {
    width: auto;
    height: 60px;
    position: absolute;
    top: 60%; /* 通过调整top和left属性，可以对文字进行精确定位 */
    left: 70%;
    color: #fff; /* 设置文字颜色 */
}


input[type="text"] {
    padding: 5px; /* 输入框的内边距 */
    border: 1px solid #ccc; /* 边框样式 */
    border-radius: 4px; /* 边框圆角 */
    width: 300px; /* 输入框宽度 */
    height: 30px; /* 输入框高度 */
    transition: border-color 0.3s ease; /* Add transition effect for border color */
}

input[type="text"]:focus {
    border-color: transparent; /* Set border color to transparent on focus */
    outline: none; /* Remove outline */
}

button {
    padding: 5px 10px; /* 按钮的内边距 */
    border: none; /* 去掉默认边框 */
    background-color: #ffffff; /* 按钮默认背景颜色 */
    border-radius: 4px; /* 边框圆角 */
    cursor: pointer; /* 鼠标移到按钮上时显示指针 */
    position: relative; /* 使按钮相对定位 */
    top: 6px; /* 向下移动按钮 */
    transition: background-color 0.3s ease; /* Add transition for background color */
}

button:hover {
    background-color: #007bff; /* 按钮背景颜色变成蓝色 */
}

button img {
    width: 25px;
    height: auto;
    transition: filter 0.3s ease; /* Add transition for image filter */
}

button:hover img {
    filter: brightness(0) invert(1); /* 图片变成白色 */
}


.news-item-top {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 20px;
}


.nes-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 50px;
    background-color: #fff;
    border-radius: 5px;
}

.news-item {
    display: flex;
    text-decoration: none; /* 移除链接的下划线 */
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    padding-top: 40px;
    transition: background-color 0.3s; /* 背景颜色变化的过渡效果 */
}

.news-item:hover {
    background-color: #e4e2e2;
    color: #0056b3; /* 光标指向时的字体颜色 */
}

.news-item:hover .news-date,
.news-item:hover .news-content,
.news-item:hover .news-header,
.news-item:hover .news-title,
.news-item:hover .news-details,
.news-item:hover p {
    color: #0056b3; /* 光标指向时，内部所有字体的颜色 */
}

.link-container {
    text-align: center; /* Center the links within the container */
    margin-top: 20px; /* Add some top margin to the container */
}

.link-container a.link {
    padding: 10px 20px; /* Add padding inside the links */
    margin: 0 10px; /* Add margin outside the links */
    background-color: #f0f0f0; /* Add a background color to the links */
    text-decoration: none; /* Remove the default underline from links */
    color: #000; /* Set the text color */
    border-radius: 4px; /* Add rounded corners to the links */
    transition: background-color 0.3s ease; /* Smooth transition for background color on hover */
}

.link-container a.link:hover {
    background-color: #007bff; /* Change background color on hover */
    color: #fff; /* Change text color on hover */
}

.news-date {
    width: 80px;
    height: 90px;
    text-align: center;
    background-color: #e4e2e2;
}

.news-date .date-day {
    font-size: 34px;
    margin-top: 15px;
    font-weight: bold;
    color: #007bff;
}

.news-date .date-year-month {
    font-size: 14px;
    color: #000000;

}

.news-content {
    margin-left: 15px;

}
.news-content p {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
    line-height: 1.6; /* 设置行距 */
}
.news-header-nr {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-header-top {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.news-image {
    width: 400px;
    height: 250px;
    margin-right: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 -2px 4px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}
.news-title{

}
.news-title h2 {
    margin: 0;
    margin-bottom: 15px;
    font-size: 21px;
    color: #333;
}

.news-details {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.news-details span {
    margin-right: 10px;
}

.news-details-rq {
    font-size: 12px;
    color: #094bbd;
    margin-top: 5px;
}

.news-details-rq span {
    margin-right: 10px;
    font-size: 16px;
}



.news-link {
    margin-top: 38px;
    padding: 15px 60px;
    background-color: #d2d2d3;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s, color 0.3s; /* 平滑的背景颜色和字体颜色变化 */
}


.news-link:hover {
    background-color: #0056b3; /* 光标指向时的背景颜色 */
    color: #fff; /* 光标指向时的字体颜色 */
}


.Hrs-dh-container {
    display: flex; /* 使用 Flexbox 布局，使链接在同一行排列 */
    align-items: center; /* 垂直居中对齐 */
    margin-left: 135px; /* 整体左边距 */
    padding-top: 50px;
    padding-bottom: 10px;
}

.Hrs-dh-container a {
    text-decoration: none; /* 移除默认链接的下划线 */
    color: #000; /* 默认字体颜色 */
    font-size: 16px; /* 设置字体大小 */
    margin-right: 10px; /* 每个链接之间的右边距 */
    display: flex; /* 使用 Flexbox 布局，使图片和文字在同一行排列 */
    align-items: center; /* 垂直居中对齐 */
    transition: color 0.3s ease; /* 添加过渡效果 */
}

.Hrs-dh-container a:hover {
    color: #0056b3; /* 光标指向时的背景颜色 */
}

.Hrs-dh-container a img {
    width: 20px; /* 设置图片宽度 */
    height: 20px; /* 设置图片高度 */
    margin-right: 5px; /* 图片与文字之间的间距 */
}

.Hrs-dh-container-nr {
    margin: 0 auto;
    margin-top: 20px;
    background-color: rgb(247, 247, 247);
    width: 1400px;
    height: auto;
}

.container {
    text-align: center; /* 水平居中 */
    margin-bottom: 80px;
}

.dynamic-width {
    display: inline-block;
    padding: 15px 20px; /* 可选，增加左右内边距 */
    border-bottom: 1.5px solid rgb(228, 2, 2); /* 添加底边线 */
}

.link-container {
    text-align: center; /* 将内容居中显示 */
    margin: auto;
    padding: 30px 0px;
    border-top: 1px solid #ccc; /* 添加上边线 */

}

.link-container a {
    text-decoration: none; /* 移除默认链接的下划线 */
    color: #000; /* 默认字体颜色 */
    margin: 0 10px; /* 设置链接之间的水平间距 */
}


.spk-hear-z {
    display: flex;
    width: 1440px;
    min-height: 600px;
    margin: 50px auto;
    flex-wrap: wrap; /* 允许换行 */
}


.spk-hear-nr {
    margin: 25px 10px;
}

.spk-hear {
    width: 340px;
    height: 300px;
}

.spk-image {
    position: relative;
    display: flex;
    width: 340px;
    height: 280px;

}

.spk-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.spk-image-fg {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #77777733;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.spk-image-fg img {
    width: 20%;
    height: auto;
}

.spk-next {
    display: flex;
    align-items: center; /* 垂直居中 */
    padding-left: 15px; /* 左侧内边距 */
    padding-right: 15px; /* 右侧内边距 */
    background-color: #eceaea;
}

.spk-next img {
    width: 20px;
    height: auto;
}

.spk-next img,
.spk-next p {
    margin-right: 10px; /* 间距 */
}

.spk-next img:last-child {
    margin-left: auto;
}

.spk-hear .spk-image {
    overflow: hidden; /* 防止图片溢出容器 */
}

.spk-hear .spk-image img {
    transition: transform 0.8s ease; /* 添加过渡效果 */
}

.spk-hear:hover .spk-image img {
    transform: scale(1.2); /* 图片放大 */
}

.spk-hear .spk-image-fg img {
    transition: transform 0.8s ease; /* 添加过渡效果 */
}

.spk-hear:hover .spk-image-fg img {
    transform: scale(0.8); /* 图标缩小 */
}

.spk-hear .spk-next {
    transition: background-color 0.8s ease; /* 添加过渡效果 */
}

.spk-hear:hover .spk-next {
    background-color: #1b3d9d;
    color: rgb(255, 255, 255);
}

.spk-hear:hover .spk-next img {
    filter: brightness(0) invert(1);
}

.spk-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000; /* 确保覆盖所有内容 */
}

.spk-video {
    width: 50%;
    height: 50%;
}

.spk-video-close {
    position: absolute;
    top: 235px;
    right: 370px;
    background-color: rgba(0, 0, 0, 0.8);
    border: none;
    cursor: pointer;
}


.spk-video-close img {
    width: 30px;
    height: auto;
}


.nes-nr {
    position: relative; /* 使得容器成为相对定位 */
    width: 1400px;
    margin: auto;
    padding-top: 50px;
}

.nes-nr::before {
    content: ''; /* 必须有内容，这里为空 */
    position: absolute; /* 绝对定位 */
    top: 0; /* 位于容器的顶部 */
    left: 0; /* 位于容器的左侧 */
    width: 0; /* 宽度为0，形成一个三角形 */
    height: 0; /* 高度为0，形成一个三角形 */
    border-top: 30px solid rgb(44, 79, 185); /* 上边框为30px的红色，形成三角形 */
    border-right: 30px solid transparent; /* 右边框为透明，形成三角形 */
}

.nes-nr-top {
    height: 130px;
    border-bottom: 0.5px solid #d1d1d1; /* 这里的 #000 是指黑色的边线，你可以根据需要修改颜色 */
}

.nes-nr-top h1 {
    font-size: 32px;
    font-weight: 500;
}

.nes-nr-top p {
    font-size: 26px;
    font-weight: 500;
    color: #777;
}

.nes-nr-bottom {
    margin: 50px auto;
    width: 1100px;
}


.nes-nr-bottom img {
    display: block; /* 让图片成为块级元素 */
    margin: 0 auto; /* 设置左右边距为自动，实现水平居中 */
}

.nes-nr-bottom span {
    display: block; /* 将span元素转换为块级元素 */
    text-indent: 2em; /* 设置首行缩进为2个em单位 */
}