body {
    margin: 0;
    background-color: #fff;
    background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
}

html {
    overflow-x: hidden;
    transition: transform 0.5s ease;
}


.picbase1-content {
    display: none !important;
}


a {
    color: #000;
    text-decoration: none;
}

ul {
    padding: 0;
    margin: 0;
    border: 0;
}

li {
    list-style-type: none;
    padding: 0;
    margin: 0;
    border: 0;
}

/*头部*/
.header {
    height: 120px;
    background: linear-gradient(to right, #114e2d, #0b7b61);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
}

.header.fixed .inheader {
    height: 80px;
}

.header.fixed img {
    width: 400px;
}

.inheader {
    margin: 0 auto;
    width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.header .left {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.header .left .img {
    transition: transform 0.3s ease;
    height: 100%;
}

.header .left .img:hover {
    transform: scale(1.02);
}

.header img {
    width: 600px;
    height: 100%;
    display: block;
    object-fit: contain;
}

.inheader .right {
    width: 400px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 40px;
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.2s;
}

/*系统默认搜索*/
.wp_search {
    width: 340px;
    border-radius: 25px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wp_search:hover,
.wp_search:focus-within {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.9);
}

.wp_search #keyword {
    width: 280px !important;
    padding: 8px 0;
    border: none;
    height: 30px;
    line-height: 30px;
    background: transparent;
    color: #333;
    font-size: 15px;
    outline: none;
}

.wp_search #keyword::placeholder {
    color: #999;
    opacity: 0.8;
}

.wp_search .search {
    border: none;
    width: 30px;
    height: 30px;
    outline: none;
    background: url(./img/seacher.png) no-repeat center;
    background-size: 24px 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.wp_search .search:hover {
    opacity: 1;
    transform: scale(1.1);
}

/*导航栏*/
.header .navigationMenu {
    display: none;
}

.navigation {
    height: 50px;
    background: linear-gradient(to right, #114e2d, #0b7b61);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navigation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent);
}

.navigation.fixed {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
}

.navigation .in {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

.navin li {
    width: 170px;
    height: 50px;
    float: left;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navin li:hover {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.98);
    color: #0d2b5c;
    text-decoration: none;
}

.navin li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navin li:hover::after {
    width: 100%;
}

.navin li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.navin li:hover::before {
    left: 100%;
}

.navigation a {
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.navin li:hover a {
    color: #0d2b5c;
}

.navigationLeft {
    display: none;
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.5s ease;
    z-index: 1000;
    background: linear-gradient(to right, #114e2d, #0b7b61);
    padding: 20px 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.15);
}

.navigationLeft .in {
    width: 200px;
}

.navigationLeft ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.navigationLeft li {
    padding: 15px 25px;
    color: #fff;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

.navigationLeft li:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 35px;
}

.navigationLeft li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: #fff;
    transition: all 0.3s ease;
}

.navigationLeft li:hover::after {
    height: 70%;
}

.navigationLeft a {
    color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {
    .navigationLeft {
        display: block;
    }
}

/*轮播图*/
.banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.banner2 {
    position: relative;
    width: 100%;
    height: 218px !important;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* 轮播图导航按钮 */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.banner-nav:hover {
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

/* 轮播图指示器 */
.banner-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.banner-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-indicator.active {
    background: #fff;
    transform: scale(1.2);
}

/* 轮播图标题 */
.banner-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.banner:hover .banner-title {
    opacity: 1;
    transform: translateY(0);
}

/* 轮播图动画 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.banner img.active {
    animation: fadeIn 0.5s ease forwards;
}

/*菜单栏*/
.menuout,
.news,
.and {
    width: 66%;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
}

.menuout {
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    margin-top: 30px;
}

.menu {
    width: 100%;
    margin: 0 auto;

}

.menu ul {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
}

.menu li {
    flex: 1;
    text-align: center;
    opacity: 0;
    animation: menuFadeIn 0.8s ease forwards;
}

.menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.menu li:nth-child(2) {
    animation-delay: 0.3s;
    position: relative;
    right: 15px;
}

.menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.menu li:nth-child(4) {
    animation-delay: 0.7s;
    position: relative;
    right: 15px;
}

.menu .box {
    background: #fff;
    border-radius: 16px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.menu .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(25, 118, 210, 0.2);
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
}

.menu .inbox {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 118, 210, 0.08);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu .inbox img {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.menu .box:hover .inbox {
    background: rgba(25, 118, 210, 0.15);
    transform: rotate(8deg) scale(1.05);
}

.menu a {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.6;
    height: 100px;
}

.menu .box:hover a {
    color: #2a8771;
    transform: scale(1.02);
}

/* 分隔样式 */
.menu .sanjiao {
    display: none;
}


.menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05), transparent);
}

/* 优化移动端换行显示 */
.xx {
    display: none;
}

@media screen and (max-width: 768px) {
    .xx {
        display: inline;
    }
}

/*新闻区域*/
.news {
    max-width: 1200px;
    margin: 25px auto;
    padding: 25px;
    background: linear-gradient(135deg, #114e2d, #0b7b61);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(11, 123, 97, 0.15);
    display: flex;
    gap: 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.news::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 22px;
    z-index: -1;
}

.news .BannerBox {
    flex: 1;
    height: 470px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news .textBox {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.news .text {

    border-radius: 16px;
    overflow: hidden;
    background: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: none;
}

.news .title {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.news .title i {
    font-size: 20px;
}

.news .context {
    padding: 20px;
    height: calc(100% - 60px);
    overflow-y: auto;
    background: transparent;
}

.news .context ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news .context li {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.news .context li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-left-color: rgba(255, 255, 255, 0.4);
}

.news .context .sudynews_rili_1.rili .news_list li.news {
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    width: 100% !important;
}

.news .context .sudynews_rili_1.rili .news_list li.news .news_wz {
    flex: 1;
    margin-left: 15px;
}

.news .banner2 {
    height: 470px !important;
    min-height: 470px !important;
}

.news .banner2 img {
    width: 100% !important;
    height: 100% !important;

    transition: transform 0.5s ease;
}

.news .banner2:hover img {
    transform: scale(1.05);
}

.picbase1,
.picbase1s {
    width: 100% !important;
    height: 100% !important;
}

.news .title {
    width: 100%;
    height: 70px;
    text-align: left;
    line-height: 70px;
    background: linear-gradient(135deg, #114e2d, #0b7b61);
    color: #ffffff;
    font-size: 24px;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.news .context {
    flex: 1;
    padding: 0 30px;
    background: linear-gradient(135deg, #ffffff, #f8faff);

}

.news .context ul {
    width: 390px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news .context li {
    width: 420px !important;
    background: #fff;
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(76, 132, 204, 0.05);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    height: 65px;
    gap: 30px;
}

.news .context li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 74, 148, 0.03), rgba(44, 90, 158, 0.03));
    opacity: 0;
    transition: all 0.4s ease;
}

.news .context li:hover {
    transform: translateX(15px);

}

.news .context li:hover::before {
    opacity: 1;
}

.news .context .sudynews_rili_1.rili .news_list li.news .news_text a {
    display: block;
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news .banner2 .picbase1-slidenav {
    display: none;
}

.news .banner2 .picbase1-credit {
    top: 370px;
}

/* 新闻日历样式优化 */
.sudynews_rili_1.rili .news_list li.news {
    width: 350px;
    white-space: nowrap;
}

.sudynews_rili_1.rili .news_list li.news .news_title {
    padding-top: 0;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 500;

}


.sudynews_rili_1.rili .news_list li.news .news_text {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.85;
}

.sudynews_rili_1.rili .news_list li.news .news_time {
    float: left;
    width: 85px !important;
    height: 65px !important;
    margin-right: 20px;
    margin-left: 0;
    background-image: linear-gradient(45deg, #114e2d, #0b7b61) !important;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(76, 132, 204, 0.15);
}

/*文件和下载区域*/
.and {
    margin: 30px auto;
    background: linear-gradient(135deg, #f0f7ff, #ffffff);
    width: 66%;
    padding: 40px;
}

.and .title {
    margin: 0 auto 40px;
    width: 800px;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(76, 132, 204, 0.08);
    backdrop-filter: blur(10px);
}

.and .title li {
    flex: 1;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    position: relative;
    cursor: pointer;
    color: #666;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.and .title li.active {
    color: #fff;
    font-weight: 500;
    background: linear-gradient(135deg, #114e2d, #0b7b61);
    box-shadow: 0 4px 15px rgba(76, 132, 204, 0.15);
}

.and .box {
    margin-top: 30px;
    padding: 0 20px;
}

.and .context {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(76, 132, 204, 0.08);
}

.and .context.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.and .context ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 10px;
}

.and .context li {
    background: #fff;
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(76, 132, 204, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.and .context li::before {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 24px;
    color: #0b7b61;
    opacity: 0.8;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    left: 5px;
}

.and .context li::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 74, 148, 0.03), rgba(44, 90, 158, 0.03));
    opacity: 0;
    transition: all 0.4s ease;
}

.and .context li:hover {
    transform: translateX(15px);
    border-left-color: #0b7b61;
    box-shadow: 0 4px 20px rgba(76, 132, 204, 0.12);
}

.and .context li:hover::before {
    transform: scale(1.1);
    opacity: 1;
}

.and .context li:hover::after {
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*active*/
li.active {
    color: #0b7b61;
}

.context.active {
    display: block;
}

/*底*/
.di {
    background-color: #0b7b61;
}

.bottom {
    padding-top: 30px;
    width: 1200px;
    margin: 0 auto;
}

.bottom div {
    display: inline-block;
}

.bottom .line {
    border: 1px solid #fff;
    height: 145px;
    margin: 0 60px;
    position: relative;
    top: 10px;
}

.bottom .left {
    width: 326px;
}

.bottom .left img {
    width: 326px;
    height: 69px;
}

.bottom .left p {
    font-size: 18px;
    color: #fff;
    text-align: center;
}

.bottom .right {
    width: 630px;
    color: #fff;
    font-size: 18px;
}

.bottom .right .link p {
    font-size: 18px;
}

.bottom .right a {
    color: #fff;
    padding-right: 5px;
}

/*日历新闻*/
.sudynews_rili_1.rili .news_list li.news .news_time {
    float: left;
    width: 75px !important;
    height: 55px !important;
    margin-right: 15px;
    margin-left: 0;
    background-image: linear-gradient(45deg, #114e2d, #0b7b61) !important;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(76, 132, 204, 0.15);
}

.sudynews_rili_1.rili .news_list li.news .news_time .news_days {
    color: #fff !important;
    padding-top: 5px;
    font-size: 24px !important;
    font-weight: 500;
}

.news .context .sudynews_rili_1.rili .news_list li.news .news_time .news_days {
    padding: 0 20px !important;
}

.sudynews_rili_1.rili .news_list li.news .news_time .news_year {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 13px;
}

.sudynews_rili_1.rili .news_list li.news {
    padding: 0 !important;
    margin: 0
        /*!important*/
    ;
    display: flex;
    align-items: center;
}

.sudynews_rili_1.rili .news_list li.news .news_wz {
    flex: 1;
}

.news .context .sudynews_rili_1.rili .news_list li.news .news_wz {
    position: relative;
    right: 20px;
}

.sudynews_rili_1.rili .news_list li.news .news_title {
    padding-top: 0;
    color: #2c2c2c;
    transition: all 0.3s ease;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.sudynews_rili_1.rili .news_list li.news:hover .news_title {
    color: #4c84cc;
}

.sudynews_rili_1.rili .news_list li.news .news_text {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
    display: block;
    width: 270px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 信息栏 */
.main-wrap {
    width: 100%;
    min-height: 340px;
}

.message {
    width: 1200px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    top: -300px;
}

.message-left {
    float: left;
    width: 260px;
    height: 65px;
    margin-top: 0px;
    background-image: url(./img/sub_lbg.png);
}

.message-left-title {
    font-weight: normal;
    color: #fff;
    line-height: 65px;
    text-align: center;
}

.message-left-title h1 {
    margin-top: 0px;
}



.message-right {
    float: right;
    margin-left: 20px;
    margin-top: 70px;
    width: 918px;
    border: 1px solid #e0e0e0;
}

.right-title {
    padding: 10px;
    margin: 0 auto;
    height: 28px;
    background: #f1f1f1;
    border-bottom: 1px solid #e0e0e0;
}

.right-title-title {
    float: left;
    width: 30%;
    color: #444;
    text-transform: uppercase;
    font-size: 18px;
    padding-left: 15px;
}

.right-title-more {
    float: right;
}

.right-title-more-img {
    width: 15px;
    height: 18px;
    vertical-align: middle;
}

.right-title-more-more {
    display: inline-block;
    vertical-align: middle;
}

.right-title-more-more span {
    display: inline-block;
    margin-bottom: 4px;
}

.rightcont {
    margin: 10px;
}

.rightcont .rightcontin {
    border-top: 1px solid #d0d0d0;
    font-size: 14px;
    padding-top: 13px;
}

.rightcont .rightcontin li {
    height: 40px;
    padding-top: 13px;
}

.sub {
    margin-top: -22px;
}

.sub-menu-item {
    height: 40px;
    background-color: #f4f4f4;
    padding-top: 14px;
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-bottom: 1px;
    vertical-align: middle;
    border-left: 4px solid #0b7b61;
}

.total {
    float: right;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #114e2d, #0b7b61);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* 为固定导航腾出空间 */
body.header-fixed {
    padding-top: 170px;
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu li {
    opacity: 0;
    animation: menuFadeIn 0.8s ease forwards;
}

.menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.menu li:nth-child(2) {
    animation-delay: 0.3s;
}

.menu li:nth-child(3) {
    animation-delay: 0.5s;
}

.menu li:nth-child(4) {
    animation-delay: 0.7s;
}

/*945*/

/* 菜单项基础样式 */
.menu-item {
    height: 100%;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.menu-item .icon-box{
    padding: 0 15px 0 40px;
}

.menu-item .icon-circle {
    width: 45px;
    height: 45px;
    background: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item .icon-circle img {
    width: 25px;
    height: 25px;
}

.menu-item .text-box {
    flex: 1;
    min-width: 0;
}

.menu-item .text-box .title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item .arrow-icon {
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.6;
    align-items: center;
}

/* 优化悬浮效果 */
.menu-item:hover {
    transform: translateX(8px);
    background: linear-gradient(to right, #f8f9ff, #ffffff);
    box-shadow: 0 4px 15px rgba(0, 91, 172, 0.08);
}

.menu-item:hover .icon-circle {
    transform: scale(1.1);
}

.menu-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* 为每个菜单项添加特殊颜色 */
.menu-item-1 .icon-circle {
    background: #e8f5ff;
}

.menu-item-1:hover .icon-circle {
    background: #d1e9ff;
}

.menu-item-2 .icon-circle {
    background: #e6ffef;
}

.menu-item-2:hover .icon-circle {
    background: #ccf5e0;
}

.menu-item-3 .icon-circle {
    background: #fff2e6;
}

.menu-item-3:hover .icon-circle {
    background: #ffe4cc;
}

.menu-item-4 .icon-circle {
    background: #f0e6ff;
}

.menu-item-4:hover .icon-circle {
    background: #e1ccff;
}

/*滚动*/
.banner-menu-container {
    transition: all 0.7s ease;
}

@media screen and (min-width: 945px) {

    .banner-wrapper {
        opacity: 0;
        position: relative;
        right: 100px;
        transition: all 0.7s ease;
    }

    .menu-wrapper {
        opacity: 0;
        position: relative;
        left: 100px;
        transition: all 0.7s ease;
    }

    .news .BannerBox {
        opacity: 0;
        position: relative;
        left: 100px;
        transition: all 0.7s ease;
    }

    .news .textBox {
        opacity: 0;
        position: relative;
        right: 100px;
        transition: all 0.7s ease;
height:454px;
    }

    .and {
        opacity: 0;
        position: relative;
        right: 1000px;
        transition: all 0.7s ease;
    }
}


/*底部补充*/
.footer-left {
    flex: 0.5 !important;
}

.friend-links {
    align-items: center;
    /* 垂直居中 */
}

.friend-links a {
    display: block;
    /* 将每个链接块级化 */
    text-align: left;
    /* 左对齐 */
}

 body {
    overflow: hidden;
}

body::-webkit-scrollbar {
    display: none;
} 

/* 优化整体布局和间距 */
.banner-menu-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 12px 15px;
    background: transparent;
    border: 2px solid rgba(11, 123, 97, 0.15);
    border-radius: 16px;
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.banner-menu-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    /* background: linear-gradient(135deg, rgba(17, 78, 45, 0.1), rgba(11, 123, 97, 0.1)); */
    z-index: -1;
}

/* 优化轮播图容器 */
.banner-wrapper {
    width: 69%;
    height: 470px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(11, 123, 97, 0.08);
    position: relative;
    background: #fff;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

/* 优化菜单容器 */
.menu-wrapper {
    width: 29%;
    height: 470px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(11, 123, 97, 0.08);
    display: flex;
    flex-direction: column;
}

.menu-box {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-title {
    padding: 12px 15px;
    background: linear-gradient(135deg, #114e2d, #0b7b61);
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(11, 123, 97, 0.15);
}

.menu-title i {
    color: #fff;
    margin-right: 8px;
}

/* 优化菜单列表布局 */
.menu {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu ul {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
}

.menu li {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: menuFadeIn 0.8s ease forwards;
}

/* 优化菜单项样式 */
.menu-item {
    height: 100%;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.menu-item .icon-box {
    margin: 0 15px 0 0;
}

.menu-item .icon-circle {
    width: 45px;
    height: 45px;
    background: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item .icon-circle img {
    width: 25px;
    height: 25px;
}

.menu-item .text-box {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}

.menu-item .text-box .title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item .arrow-icon {
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.6;
}

/* 优化悬浮效果 */
.menu-item:hover {
    transform: translateX(8px);
    background: linear-gradient(to right, #f8f9ff, #ffffff);
    box-shadow: 0 4px 15px rgba(0, 91, 172, 0.08);
}

.menu-item:hover .icon-circle {
    transform: scale(1.1);
}

.menu-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* 优化整体布局和间距 */
.banner-menu-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 12px 15px;
    background: transparent;
    border: 2px solid rgba(11, 123, 97, 0.15);
    border-radius: 16px;
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.banner-menu-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    /* background: linear-gradient(135deg, rgba(17, 78, 45, 0.1), rgba(11, 123, 97, 0.1)); */
    z-index: -1;
}

/* 优化轮播图容器 */
.banner-wrapper {
    width: 69%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(11, 123, 97, 0.08);
    position: relative;
    background: #fff;
}

.banner-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
    pointer-events: none;
}

/* 优化菜单容器 */
.menu-wrapper {
    width: 29%;
    height: 80%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(11, 123, 97, 0.08);
    display: flex;
    flex-direction: column;
}

.menu-box {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-title {
    padding: 12px 15px;
    background: linear-gradient(135deg, #114e2d, #0b7b61);
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(11, 123, 97, 0.15);
}

.menu-title i {
    color: #fff;
    margin-right: 8px;
}

/* 优化菜单列表布局 */
.menu {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu ul {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 12px;
    padding: 0;
    margin: 0;
}

.menu li {
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: menuFadeIn 0.8s ease forwards;
}

/* 优化菜单项样式 */
.menu-item {
    height: 100%;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f7;
}

.menu-item .icon-box {
    margin: 0 15px 0 0;
}

.menu-item .icon-circle {
    width: 45px;
    height: 45px;
    background: #f5f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item .icon-circle img {
    width: 25px;
    height: 25px;
}

.menu-item .text-box {
    flex: 1;
    min-width: 0;
}

.menu-item .text-box .title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item .arrow-icon {
    font-size: 14px;
    margin-left: 10px;
    opacity: 0.6;
}

/* 优化悬浮效果 */
.menu-item:hover {
    transform: translateX(8px);
    background: linear-gradient(to right, #f8f9ff, #ffffff);
    box-shadow: 0 4px 15px rgba(0, 91, 172, 0.08);
}

.menu-item:hover .icon-circle {
    transform: scale(1.1);
}

.menu-item:hover .arrow-icon {
    opacity: 1;
    transform: translateX(3px);
}

/* 增强动画效果 */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-menu-container,
.news,
.and.file-download {
    animation: slideUp 0.6s ease-out forwards;
}

.news {
    animation-delay: 0.2s;
}

.and.file-download {
    animation-delay: 0.4s;
}

/* 优化响应式布局 */
@media screen and (max-width: 1200px) {

    .banner-menu-container,
    .news,
    .and.file-download {
        margin: 20px;
        width: auto;
    }
}

@media screen and (max-width: 992px) {
    .news {
        flex-direction: column;
    }

    .news .BannerBox,
    .news .textBox {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .banner-menu-container {
        padding: 20px;
        flex-direction: column;
        min-height: auto;
    }

    .banner-wrapper,
    .menu-wrapper {
        width: 100%;
        height: auto;
    }

    .banner-wrapper {
        height: 360px;
    }

    .menu-wrapper {
        height: auto;
        min-height: 420px;
    }

    .and .title {
        flex-wrap: wrap;
    }

    .and .title li {
        flex: 1;
        min-width: 150px;
        text-align: center;
    }
}

/* 优化交互反馈 */
.menu-item,
.and .title li,
.news .context li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover {
    transform: translateY(-3px) scale(1.02);
}

.and .title li:hover:not(.active) {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.news .context li:hover {
    transform: translateX(10px) scale(1.01);
}

/* 新闻区域容器 */
.news-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 250px);
    padding: 40px 0;
}

/* 装饰元素 */
.decorative-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(17, 78, 45, 0.03), rgba(11, 123, 97, 0.03));
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 8%;
    animation-delay: -5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, 30px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-5deg);
    }

    75% {
        transform: translate(-30px, -10px) rotate(3deg);
    }
}

/* 新闻容器装饰 */
.news-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(11, 123, 97, 0.1) 20%,
            rgba(11, 123, 97, 0.1) 80%,
            transparent);
    z-index: -1;
}

/* 新闻模块装饰 */
.news::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 22px;
    z-index: -1;
}

.news {
    position: relative;
    backdrop-filter: blur(10px);
}

/* 标题装饰 */
.news .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent);
}

/* 新闻列表项装饰 */
.news .context li {
    position: relative;
    overflow: hidden;
}

.news .context li::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news .context li:hover::after {
    opacity: 1;
}

/* 滚动条美化 */
.news .context::-webkit-scrollbar {
    width: 6px;
}

.news .context::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.news .context::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.news .context::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 图标动画 */
.news .title i {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* 新闻日期样式优化 */
.sudynews_rili_1.rili .news_list li.news .news_time {
    position: relative;
    overflow: hidden;
}

.sudynews_rili_1.rili .news_list li.news .news_time::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sudynews_rili_1.rili .news_list li.news:hover .news_time::before {
    opacity: 1;
}

/* 轮播图装饰 */
.news .banner2 {
    position: relative;
}

.news .banner2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* 整体页面动画 */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.news {
    animation: fadeInScale 0.6s ease-out forwards;
}

/*上一个模块*/
.the-previous-one,.the-previous-two{
    /*上下翻转180°*/
    transform: rotateX(180deg);
}

.soar{
    bottom: 100px;
}