/* CSS Document */


* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

img {
    margin: 0;
    border: none;
}

a {
    color: #333;
    text-decoration: none;
    outline: none;
    transition: ease-in 0.3s;
}

:root {
    --green: #2e8b57;
    --blue: #1E90FF;
    --orange: #FF8C00;
    --pink: #FF69B4;
    --light-pink: #FFDAB9;
    --dark-green: #228B22;
    --text-color: #333;
    --light-bg: #f8f9fa;
}


.top_nav {
    z-index: 9;
    /* background-color: #FFF;	
    border-bottom: solid 1px #0075bd; */
    position: fixed;
    top: 0;
    width: 100%;
    height: 140px;
    left: 0;
    transition: 0.4s;
    background: url(../images/topbg.png) repeat-x top center;
    background-size: auto 100%;

}

@media (max-width: 1680px) {
   .top_nav {
      height: 100px;
   }
}



.logo {
    margin: 0 20px;
    width: 680px;
    position: absolute;
    margin-left: 30;
    overflow: hidden;
    font-size: 0;
    top: 0px;
}


@media (max-width: 1680px) {
   .logo {
     width: 500px;
   }
 .logo img {
    width: 100%;
}

}


.logo a {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.logo img {
    width: 100%;
}

.logo1 {
    width: 180px;
}

.logo2 {
    width: 250px;
}


.wrap_top_links {
    /* background: #87a887; */
}

.top_links {
    position: relative;
    overflow: hidden;
    margin: 0 80px;
}

.top_link {
    width: auto;
    float: right;
    line-height: 30px;
    font-size: 0;
}

.top_link a {
    color: #fff;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    height: 20px;
    line-height: 20px;
    padding: 0 15px 0;
    position: relative;
    vertical-align: middle;
    font-size: 14px;
}

.top_link a::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.2);
}

.top_link a:hover {
    color: #fff;
}

.top_link .search_btn {
    width: 16px;
    height: 28px;
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin: 0 0 0 15px;
    vertical-align: middle;
    background: url(../images/search_btn.png) center no-repeat;
}



/* 主导航菜单 */

/* 汉堡菜单 - 移动端 */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    right: 0;
    float: right;
    z-index: 1000;
    position: fixed;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}



.top-main-nav {
    z-index: 100;
    position: absolute;

}

.main-nav {
    z-index: 100;
    position: fixed;
    left: 750px;
    right: 0;
    top: 35px;
}


@media (max-width: 1680px) {
   .main-nav {
     left: 550px;
     top: 30px;
   }
}

.horizontal-menu {
    list-style: none;
    display: flex;
    padding: 0 10px;
}

.horizontal-menu>li {
    position: relative;
}

.horizontal-menu>li>a {
    color: white;
    text-decoration: none;
    padding: 8px 8px;
    display: block;
    transition: all 0.3s ease;
    font-size: 22px;
    font-weight: bold;
}

@media (max-width: 1680px) {
   .horizontal-menu>li>a {
     font-size: 18px;
   }
}


.horizontal-menu>li:hover>a {

    /* border-bottom: 4px solid var(--orange); */

}

/* 二级菜单 - 居中显示 */
.sub-menu {
    position: absolute;
    list-style: none;
    background: white;
    min-width: 150px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 6px 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100; 

}

@media (max-width: 1680px) {
   .sub-menu {
      min-width: 140px;
   }
}


.horizontal-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    left: -20px;
}

.sub-menu li {
    position: relative;
}



.sub-menu li a {
    display: block;
    padding: 14px 10px;
    color: var(--text-color);
    color: #17a2b8 text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 20px;
}


@media (max-width: 1680px) {
   .sub-menu li a {
     font-size: 16px;
   }
}


.sub-menu li a:hover {
    background: #f8f9fa;

    color: #17a2b8;
    padding-left: 5px;
}

/* 三级菜单 */
.sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    background: var(--light-pink);

}

.sub-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    left: 140px;
}

/* 指示箭头 - 仅对二级和三级菜单有效 */
.sub-menu .has-submenu>a:after {
   content: '›';
    float: right;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.sub-menu .has-submenu:hover>a:after {
    transform: rotate(90deg);
}


/* 响应式设计 - 平板和手机 */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 100;
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .horizontal-menu {
        flex-direction: column;
        padding: 10px 0 20px 0;
        height: 100%;
    }

    .horizontal-menu>li {
        width: 100%;
    }

    .horizontal-menu>li>a {
        padding: 15px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        margin-left: 50px;
    }

    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.1);
        min-width: auto;
    }

    .sub-menu.active {
        display: block;
    }

    .sub-menu .sub-menu {
        position: static;
        transform: none;
        background: rgba(0, 0, 0, 0.15);
    }

    .sub-menu li a {
        padding-left: 40px;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .sub-menu .sub-menu li a {
        padding-left: 60px;

    }



    /* 移动端菜单箭头 */
    .has-submenu>a:after {
       content: '›';
        float: right;
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .has-submenu.active>a:after {
        transform: rotate(90deg);
    }

    /* 桌面端hover效果在移动端禁用 */
    .horizontal-menu li:hover>.sub-menu {
        display: none;
    }

    .sub-menu li:hover>.sub-menu {
        display: none;
    }
}






.overlay2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.overlay2.active {
    visibility: visible;
    opacity: 1;
    z-index: 9999;
}

.search-container {
    width: 80%;
    max-width: 600px;
    text-align: center;
    transform: translateY(-50px);
    transition: transform 0.5s ease;
}

.overlay2.active .search-container {
    transform: translateY(0);
}

.search-form {
    position: relative;
    width: 100%;
    display: flex;
}
.search-form form {   
    width: 100%;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 20px 70px 20px 25px;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    outline: none;
}


.search-input-images {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;

    background: #3498db url('../images/search.png') no-repeat center center;
    height: 66px;
    width: 66px;
    border-radius: 50px;
    float: right;
    position: absolute;
    right: 0px;
    bottom: 0px;
}


.search-input::placeholder {
    color: #bdc3c7;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #e74c3c;
}



.swiper-container {
    position: relative;
    overflow: hidden;
    height: 100vh;
    max-width: 100%;
    width: 100%;
}
@media (max-width: 992px) {
   .swiper-container {
    position: relative;
    overflow: hidden;
    height: 40vh;
    max-width: 100%;
    width: 100%;
}
}


.listswiper-container {
    position: relative;
    overflow: hidden;
    height: 50vh;
    max-width: 100%;
    width: 100%;
}

.swiper-container .arrow-left {
    background: url(../images/arrows.png) no-repeat left top;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
    z-index: 99;
}

.swiper-container .arrow-right {
    background: url(../images/arrows.png) no-repeat left bottom;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px;
    width: 17px;
    height: 30px;
    z-index: 99;
}

.swiper-slide {
    position: relative;
    text-align: center;

}

.swiper-slide img {
    width: 100%;
    height: 100%;
}

.gallerytitle {
    text-align: center;
    font-size: 1em;
    height: 50px;
    line-height: 50px;
    color: #fafafa;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

.pagination {
    /* position: absolute;
  z-index: 20;
  bottom: 20px;
  width: 120px;
  text-align: center;
  right:0; */
    display: flex;
    justify-content: center;
    /* 水平居中 */
    align-items: center;
    /* 垂直居中 */
    right: 10px;
    bottom: 20px;  
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;

}


.pagination2 {
    position: absolute;
    z-index: 20;
    bottom: 5px;
    width: 60px;
    text-align: center;
    right: 0;

}


.swiper-pagination-switch {
   display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #D9D9D9;
  box-shadow: 0px 0px 0px  2px #555 inset;
  margin: 0 3px;
    /* border-radius: 10px;
  background: #999;
  box-shadow: 0px 0px 0px  2px #555 inset;
 background: url(../images/bn_dt_dot.png) no-repeat ;
  margin: 0 3px; */
    cursor: pointer;
    opacity: 1;
   
}

.swiper-active-switch {
    background: #fff;
    opacity: 1;
   /* background: url(../images/bn_dt_dot_on3.png) no-repeat center center; */
}



.containerheader {
    text-align: center;
    margin-bottom: 25px;
    margin: 0 auto;
    width: 90%;
    position: relative;
}


.containerheader .title {
    text-align: center;
    background: url(../images/tit001.png) no-repeat bottom center;
    background-size: auto 80px;
    display: inline-block;
    position: relative;
    margin-bottom: 5px;
    height: 80px;

}


.containerheader h3 {
    font-size: 25px;
    line-height: 100px;
    font-weight: bold;
    color: #000;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'SHSCN-Bold';
    position: relative;
}



.containerheader .mores {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 14px;
    color: #626262;
    line-height: 18px;
    padding-right: 40px;
    transform: translateY(-50%);    
    background-size: 30px;
}

.containerheader .mores a {
    display: block;   
    background-size: 30px;
    color: #626262;
    line-height: 35px;
    padding-right: 40px;
}




.newscontainer {

    width: 100%;
    background: url(../images/containerbg03.jpg) no-repeat bottom center;
    background-size: cover;
}

.newslist {
    display: grid;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
}
@media (max-width: 1600px) {
   .newslist {  
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
}
.newslist .news-card {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.newslist .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(23, 162, 184, 0.2);
    background-color: #f0f9ff;
}

.newslist .image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.newslist .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.newscontainer .news-card:hover .news-image {
    transform: scale(1.08);
}

.newslist .date-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;

    background-color: rgba(23, 162, 184, 0.6);
    /* 增加透明度 */
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.newslist .day {
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
    font-weight: 700;
}

.newslist .month-year {
    font-size: 13px;
    display: block;
    font-weight: 600;
}

.newslist .news-content {
    padding: 20px;
    position: relative;
}

.newslist .news-title {
    color: #343a40;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
    text-align: left;
}

.newslist .news-card:hover .news-title {
    color: #17a2b8;
}

.newslist .news-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.newslist .read-more-container {
    text-align: right;
    margin-top: auto;
    /* 将查看详情推到卡片底部 */
    padding-top: 15px;
}

.newslist .read-more {
    display: inline-block;
    color: #17a2b8;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.newslist .read-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #17a2b8;
    transition: width 0.3s ease;
}

.newslist .news-card:hover .read-more {
    color: #138496;
}

.newslist .news-card:hover .read-more::after {
    width: 100%;
}

.newslist .card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(23, 162, 184, 0.05);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.newslist .news-card:hover .card-hover-effect {
    opacity: 1;
}





.noticecontainer {

    width: 100%;
    background: url(../images/containerbg01.jpg) no-repeat bottom center;
    background-size: cover;
}




.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 25px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 40px;
}

@media (max-width: 1600px) {
   .notice-grid{  
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
}

.notice-card {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 110px;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: #f0f9ff;
}

.time-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 85px;
    background-color: #20c997;
    color: white;
    padding: 15px 10px;
}

.day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.date {
    font-size: 0.85rem;
    margin-top: 5px;
}

.content-section {
    flex: 1;
    padding: 15px;
    display: flex;
    align-items: center;
    border-left: 1px solid #eee;
}

.news-title {
    font-size: 1rem;
    line-height: 1.4;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .notice-grid {
        grid-template-columns: 1fr;
    }

    .header h1 {
        font-size: 2rem;
    }
}






.featurescontainer {
    padding-top: .28rem;
    padding-bottom: .49rem;
    background: url(../images/containerbg01.png) no-repeat bottom center;
    background-size: cover;
    max-width: 100%;
}




/* 特色区域样式 */
.features {
    display: grid;
   flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(550px, 1fr));
    gap: 10px;
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 1600px) {
   .features{  
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}
}

.feature-card {
    background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
    color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    

}

.feature-card:nth-child(2) {
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);

}

.feature-card:nth-child(3) {
    background: linear-gradient(135deg, var(--orange) 20%, var(--pink) 100%);
}

.feature-icon img {

    width: 150px;
    height: 150px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: bold;
}


.feature-card p {
    margin-bottom: 15px;
    font-size: 18px;
}


.card-button {
    display: inline-block;
    padding: 5px 10px;
    background: transparent;
    border: 2px solid;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    color: #fff;
}


.achievementscontainer {


    padding-bottom: 20px;
    background: url(../images/containerbg02.jpg) no-repeat bottom center;
    background-size: cover;
    max-width: 100%;

}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;

}

.achievement-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.achievement-card .card-header {
    color: white;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}


.achievements-grid .card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%;
}

.more-btn {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;

}

.more-btn:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.3);
}

.card-content {
    padding: 0px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.achievement-list {
    list-style: none;
}

.achievement-item {
    padding: 10px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.achievement-item:last-child {
    border-bottom: none;
}

.item-title {
    flex: 1;
    padding-right: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #333;
    text-decoration: none;
    display: block;
}

.item-title:hover {
    color: #2980b9;
    text-decoration: underline;
}

.item-date {
    color: #888;
    font-size: 14px;
    white-space: nowrap;
}

/* 卡片悬停效果 */
.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* 拉美风格颜色主题 */
.card-academic-works .card-header {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    /* 草绿色 */
}

.card-academic-works:hover .card-header {
    background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
}

.card-academic-papers .card-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    /* 天蓝色 */
}

.card-academic-papers:hover .card-header {
    background: linear-gradient(135deg, #2980b9 0%, #1c6ea4 100%);
}

.card-translation-works .card-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    /* 橙色 */
}

.card-translation-works:hover .card-header {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.card-media-articles .card-header {
    background: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
    /* 粉红色 */
}

.card-media-articles:hover .card-header {
    background: linear-gradient(135deg, #fd79a8 0%, #f3689f 100%);
}



/* 拉美风格装饰元素 */
.decoration {
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    opacity: 0.8;
}

.card-academic-works .decoration {
    background: #27ae60;
}

.card-academic-papers .decoration {
    background: #2980b9;
}

.card-translation-works .decoration {
    background: #e67e22;
}

.card-media-articles .decoration {
    background: #fd79a8;
}





/* 响应式设计 */
@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 28px;
    }

    .card-header {
        font-size: 18px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    .description {
        font-size: 16px;
    }

    .card-header {
       
        text-align: center;
        gap: 10px;
    }

    .card-title {
        max-width: 100%;
    }
}




.footercontainer {

    width: 100%;
    color: #fff;
    padding: 20px 0px;
    overflow: hidden;
    position: relative;
    background: #007751 url(../images/footbg.png) no-repeat bottom center;
    background-size: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
}


/* 左侧区域样式 */
.footer-left {
    min-width: 300px;
    width: 28%;
    margin-left:20px;
    display: flex;
    flex-direction: column;
}



.institute-logo img {
    width: 300px;
    height: 150px;
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.lefttext {
    color: #e8f5e9;
    font-size: 16px;
    margin-bottom: 10px;
    margin-left: 10px;
    line-height: 30px;
    height: 30px;
}



/* 中间区域样式 */
.footer-middle {
    min-width: 300px;
    margin-top: 30px;
    padding: 0 10px;
    width: 55%;
}

.links-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    width: 80px;
}

.links-container {
    display: flex;
    flex-wrap: wrap;
}

.links-container ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    width: 100%;
}

.links-container li {
    display: inline-block;
    line-height: 40px;
    height: 40px;
}

.links-container a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
}

.links-container a:hover {
    color: #FFD700;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* 右侧区域样式 */
.footer-right {
    min-width: 150px;
    margin-top: 30px;
    margin-right: 30px;
    text-align: right;
    width: 10%;
}

.qrcode-container {
    display: inline-block;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.qrcode {
    width: 130px;
    height: 130px;
    background: #fff;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFD700;
    position: relative;
}

.qrcode img {

    width: 120px;
    height: 120px;
}


.qrcode-text {
    font-size: 16px;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* 版权信息样式 */
.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: #e8f5e9;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-middle {
        padding: 0;
        margin: 20px 0;
    }

    .links-container ul {
        gap: 10px 20px;
    }
}



/* 标题溢出隐藏 */
.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}




.wid_main {
    width: 80%;
    margin: 0 auto;

}


.ListColumnTitle {
    width: 290px;
    height: 80px;
    line-height: 80px;
    background-color: #007750;   
    text-align: center;

    position: absolute;
    z-index: 2;
    bottom: 0;
    /*left: 50px;*/
    font-size: 24px;

    filter: alpha(opacity=90);
    /*IE*/
    -moz-opacity: 0.9;
    /*Netscape Navigator*/
    -khtml-opacity: 0.9;
    /*Safari */
    opacity: 0.9;
    /*Firefox, Safari,  Opera*/
}

.ListColumnTitle span {
    color: #fff;
    font-size: 24px;
}


.position {
    color: #333;
    font-size: 16px;
    position: absolute;
    right: 50px;
    top: 0px;
}

.position span,
.position a,
.position i {
    font-size: 16px;
    color: #333;
}

.position em {
    font-size: 16px;
    color: #333;
    font-style: normal;
}

.position a:hover {
    color: #7f0103;
}

.listcontainer {

    background: url(../images/containerbg03.jpg) no-repeat bottom center;
    background-size: cover;
}

.listcontainercontent {
    display: flex;
    /* 设置为Flex容器 */
    min-height: 50vh;
    /* 容器至少占满整个视口高度 */
    width: 80%;
    margin: 0 auto;

}



.n_left {
    min-width: 290px;
    float: left;
    display: block;
    background: #FFF;
}

.n_left .subcontent {
    margin-bottom: 22px;
    background: #FFF;
}

.n_left .subcontent a {
    display: block;
    border-bottom: 1px solid #d6d5d2;
    border-top: none;
    height: 50px;
    background: url(../images/icon_left_li.png) 250px center no-repeat;
}

.n_left .subcontent a strong {
    width: 220px;
    margin: 0 auto;
    display: block;
    position: relative;
    font-size: 16px;
    color: #555555;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
}

.n_left .subcontent a:hover {
    /* border:1px solid #007750;  */
    border: 1px solid #F0F9FF;
    border-top: none;
    background: url(../images/icon_left_li_on.png) 250px center no-repeat #17a2b8;
    color: #555555;
}

.n_left .subcontent a:hover strong {
    font-weight: bold;
    color: #fff;
}

.n_left .subcontent a.on {
    border: 1px solid #007750;
    border-top: none;
    background: url(../images/icon_left_li_on.png) 250px center no-repeat #007750;
    color: #fff;
}

.n_left a.on strong {
    font-weight: bold;
    color: #fff;
}

.n_left .link_box a {
    display: block;
    margin-bottom: 10px;
}




.n_right {
    flex: 1;
    /* 右侧div占据剩余所有空间 */
    background: #fff;
    margin-left: 30px;
}

.right-title {
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #eeeeee;
    padding: 0 10px;
    width: 100%;
    float: left;
    position: relative;
    z-index: 100;
}
.right-title h2 {
font-size: 20px;
}
.right-content {
   padding-left:10px;
}
.right-content ul {
   min-height:40vh;
}


.right-content ul {
    padding: 20px;
}

.right-content li {
    border-bottom: 1px dotted #eeeeee;
}

.right-content ul a {
    color: black;
    font-size: 15px;
    line-height: 36px;
}

.right-content ul a:hover {
    color: #0075bd;
}

.right-content ul a p {
    display: inline-block;
}



.right-content .time{
    float: right;
    color: black;
line-height: 36px;
}




#pager {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;

}

.p_pages span {
    margin-right: 10px;
    padding: 5px;
    border-radius: 4px;
    font-size: 14px;
    background-color: #ccc;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.p_pages span a {
    color: #333
}

.p_pages span.p_no_d {
    background: #007751;
    color: #FFF;
}

.p_pages span.p_no_d a {
    color: #fff
}



.news-content {
    padding: 30px;
}

/* 新闻内容样式 */
.article-content {
    font-size: 17px;
    line-height: 1.8;
}

.article-content p {
   /*
 margin-bottom: 20px;
    text-align: left;   
     首行缩进2个字符 */
}

.article-content h2 {
    font-size: 20px;
    color: #2c3e50;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.article-content h3 {
    font-size: 18px;
    color: #34495e;
    margin: 25px 0 15px;
}

/* 图片样式 */
.article-content img {    
    max-width: 100%;
    height: auto;
    margin: 5px auto;
    border: 0px solid #ddd;
    padding: 0px;
    background: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 表格样式 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}

.article-content table,
.article-content th,
.article-content td {
    border: 0px solid #ddd;
}

.article-content th,
.article-content td {
    padding: 12px 15px;
    text-align: center;
}

.article-content th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.article-content tr:nth-child(even) {
    background-color: #f9f9f9;
}

.article-content ul,
.article-content ol {
    margin: 15px 0 15px 30px;
}

.article-content blockquote {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin: 20px 0;
    background: #f8f9fa;
    padding: 15px 20px;
    font-style: italic;
}




.detailcontainer {
    background: url(../images/containerbg03.jpg) no-repeat bottom center;
    background-size: cover;
}


.detailcontent {
    max-width: 80%;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.detailheader {
    padding: 20px 30px;
    border-bottom: 1px solid #2ecc71;
    /* 绿色横线 */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    color: #1a5276;
    text-align: left;
    /* 页面标题居左边 */
}

.breadcrumb {
    color: #7f8c8d;
    font-size: 14px;
    text-align: right;
    /* 导航路径居中 */
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.news-header {
    padding: 25px 30px 15px;
    border-bottom: 1px dashed #eaeaea;
    text-align: center;
    /* 新闻头部整体居中 */

}

.news-title {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    /* 新闻标题居中 */
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 10px;
    justify-content: center;
    /* 元数据内容居中 */
}

.font-size-controls {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    justify-content: center;
    /* 字号控制居中 */
}

.font-btn {
    padding: 3px 8px;
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.font-btn:hover {
    background: #e9ecef;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        margin: 0 10px;
    }

    header,
    .news-header,
    .news-content,
    footer {
        padding: 15px 20px;
    }

    .news-title {
        font-size: 20px;
    }

    .article-content {
        font-size: 15px;
    }

    .news-meta {
        flex-direction: column;
        gap: 8px;
    }
}