* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.container {
    width: 1140px;
    height: 100%;
    margin: 0 auto;
}

.more {
    font-size: 14px;
    color: #999;
}

h2 {
    font-size: 18px;
    font-weight: bold;
    color: #128E13;
}

h2 span {
    font-size: 10px;
    color: #999;
    font-weight: normal;
}

.section-header {
    width: 100%;
    height: 24px;
    margin-bottom: 20px;
}

.section-content {
    width: 100%;
    height: calc(100% - 44px);
}

.section-header a {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

/* flex */
.flex {
    display: flex;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-sb {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-center-h {
    display: flex;
    align-items: center;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

/* 顶部两个链接 */
.top-bar {
    height: 30px;
    width: 100%;
    background-color: #4d4d4d;
    font-size: 12px;
}

.top-bar a {
    color: #999;
    line-height: 12px;
    text-decoration: none;
}

.top-bar a:hover {
    border-bottom: 1px solid #999;
}

/* 头部区域 */
.header {
    height: 123px;
    width: 100%;
    background-color: #fff;
}

.search-box {
    width: 205px;
    background: #f2f2f2;
    color: #b3b3b3;
    padding: 0 0 0 15px;
    margin: 46px 0 46px 0;
    border: 1px solid #e5e5e5;
    border-radius: 15px;
}

.search-box form {
    display: block;
    margin-top: 0em;
    unicode-bidi: isolate;
}

.search-box input {
    width: 140px;
    height: 28px;
    line-height: 28px;
    border: 0;
    outline: none;
    background: #f2f2f2;
    margin: 0;
}

.search-box button {
    width: 28px;
    height: 28px;
    border: 0;
    padding: 0;
    background: #f2f2f2;
    outline: none;
    float: right;
    color: #5b5858;
    border-radius: 14px;
}

.search-box .button-icon {
    width: 60%;
    height: 60%;
    background-image: url(./img/icon/search.png);
    background-size: 100%;
}

/* 导航菜单 */
.main-nav {
    height: auto;
    width: 100%;
    background-color: #128E13;
}

.main-nav .nav-item {
    width: calc(100% / 5);
    height: 56px;
    font-size: 17px;
    text-decoration: none;
    line-height: 56px;
    color: #fff;
    background-color: #128E13;
    text-align: center;
}

.main-nav .nav-item:hover {
    background-color: #007F00;
}

/* 轮播图 */
.banner {
    height: 330px;
    width: 100%;
    /* 隐藏超出展示容器的内容 */
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.banner-control {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
}

.banner-control:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.banner-indicator.active {
    background-color: white;
}

/* 通知栏 */
.notice-bar {
    height: 40px;
}

.notice-bar .container {
    background-color: #fff;
    padding: 0 40px;
    position: relative;
}

.notice-content {
    cursor: pointer;
    width: 500px;
    height: 40px;
    overflow: hidden;
    position: relative;
}

.notice-container {
    width: 100%;
    transition: transform 0.3s ease;
}

.notice-item {
    height: 40px;
    display: flex;
    align-items: center;
}

.notice-data {
    font-size: 14px;
    width: 360px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.notice-data:hover {
    color: #23527C;
}

.notice-time {
    font-size: 12px;
    color: #999;
}

.notice-controls {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
}

.notice-control {
    font-size: 12px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 2px;
}

.notice-control:hover {
    color: #128E13;
}

.more {
    font-size: 14px;
    color: #999;
    cursor: pointer;
}

.more:hover {
    color: #128E13;
}

/* 主要区域 */
.main-content {
    margin-top: 20px;
    height: 440px;
}

.main-content .news-section,
.main-content .work-section {
    background-color: #fff;
    width: calc((100% - 20px) / 2);
    padding: 24px
}

/* 新闻图片轮播 */
.news-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.news-slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.news-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.news-slide a {
    text-decoration: none;
}

.news-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-caption {
    padding: 0 10px;
    background-color: #00000070;
    color: #fff;
    font-size: 18px;
    width: 100%;
    height: 50px;
    position: relative;
    top: -60px;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-indicators {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.news-indicator {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.news-indicator.active {
    background-color: white;
}

/* 工作 */
.work-section .work-list {
    width: 100%;
    height: 100%;
}

.work-section .work-list .work-item {
    cursor: pointer;
    width: 100%;
    height: calc(100% / 10);
}

.work-section .work-list .work-item .name-box {
    max-width: calc(100% - 100px);
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.work-section .work-list .work-item .name {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.work-section .work-list .data {
    color: #999;
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.work-section .work-list .work-item .name-box:hover {
    color: #23527C;
    border-bottom: 1px solid #23527C;
}


/* 横幅区域 */
.slogan-banner {
    width: 100%;
    height: 120px;
    margin-bottom: 20px;
}

/* 榜样引领区域 */
.example-section {
    width: 100%;
}

.example-section .section-header {
    margin-bottom: 20px;
}

.example-section .example-content {
    height: 360px;
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 10px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.example-section .example-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.example-section .example-content .example-box {
    user-select: none;
    touch-action: pan-y;
    padding: 20px;
    background-color: #fff;
    width: calc((100% - 40px) / 3);
    height: 100%;
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.example-section .example-content .example-box .title{
    margin-top: 10px;
    user-select: none;
    width: 100%;
    line-height: 50px;
    font-size: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.example-section .example-content .example-box .toMore{
    position: relative;
    width: 120px;
    height: 40px;
    background-color: #128E13;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
}

.example-section .example-content .example-box .toMore:hover::after{
    content: '';
    position: absolute;
    width: 55%;
    height: 1px;
    bottom: 12px;
    left: center;
    background-color: #fff;
    animation: underline 0.3s ease;
    z-index: 101;
}

.example-section .example-content .example-box .example-img{
    user-select: none;
    width: 100%;
    height: 222px;
}

.example-section .example-content .example-box .example-img img {
    user-select: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 文件制度+警示教育 */
.document-warning {
    margin-top: 10px;
    height: 270px;
    margin-bottom: 55px;
}

.document-warning .document-section {
    background-color: #fff;
    width: 755px;
    padding: 24px
}

.document-warning .document-image {
    height: 100%;
    width: 270px;
}

.document-warning .document-image img {
    height: 100%;
    width: 100%;
}

.document-warning .document-list {
    height: 100%;
    width: calc(100% - 295px);
}

.document-warning .document-list .doc-item {
    cursor: pointer;
    width: 100%;
    height: calc(100% / 5);
}

.document-warning .document-list .doc-item .name-box {
    max-width: calc(100% - 100px);
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.document-warning .document-list .doc-item .name {
    width: calc(100% - 10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-warning .document-list .circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 4px;
}

.document-warning .document-list .data {
    color: #999;
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.document-warning .document-list .doc-item .name-box:hover {
    color: #23527C;
    border-bottom: 1px solid #23527C;
}

.document-warning .document-list .circle:hover {
    background-color: #23527C;
}

.document-warning .warning-section {
    background-color: #fff;
    width: calc(100% - 775px);
    padding: 24px
}

.document-warning .warning-list {
    width: 100%;
    height: 100%;
}

.document-warning .warning-list .warn-item {
    cursor: pointer;
    width: 100%;
    height: calc(100% / 5);
}

.document-warning .warning-list .warn-item .name-box {
    max-width: calc(100% - 100px);
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.document-warning .warning-list .warn-item .name {
    width: calc(100% - 10px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-warning .warning-list .circle {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 4px;
}

.document-warning .warning-list .data {
    color: #999;
    height: 17px;
    line-height: 16px;
    border-bottom: 1px solid #0000;
}

.document-warning .warning-list .warn-item .name-box:hover {
    color: #23527C;
    border-bottom: 1px solid #23527C;
}

.document-warning .warning-list .circle:hover {
    background-color: #23527C;
}

/* 页脚 */
.footer {
    height: 113px;
    width: 100%;
    background-color: #4d4d4d;
    font-size: 12px;
}

.footer .footer-links {
    width: 100%;
    margin-bottom: 14px;
}

.footer .footer-links a {
    color: #fff;
    line-height: 14px;
    text-decoration: none;
    margin: 0 5px;
    border-bottom: 1px solid #ffffff00;
}

.footer .footer-links a:hover {
    border-bottom: 1px solid #fff;
}

.copyright {
    font-size: 12px;
    color: #999;
}