/* 列表页样式 */
.list-container {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}

/* 面包屑导航样式 */
.breadcrumb {
    width: 100%;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .layui-breadcrumb {
    visibility: visible;
}

.breadcrumb .layui-breadcrumb a {
    color: #666;
    font-size: 16px;
}

.breadcrumb .layui-breadcrumb a:hover {
    color: #118569;
}

.breadcrumb .layui-breadcrumb cite {
    color: #333;
    font-size: 16px;
}

/* 栏目列表样式 */
.column-list {
    width: 25%;
    margin-right: 2%;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.column-title {
    padding: 22px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f9f9f9;
}

.column-title h2 {
    font-size: 22px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.column-items {
    padding: 15px;
    margin: 0;
    list-style: none;
}

.column-items li {
    margin-bottom: 5px;
}

.column-items li:last-child {
    margin-bottom: 0;
}

.column-items a {
    display: block;
    padding: 15px 20px;
    color: #666;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}

.column-items a:hover {
    background: #f2f2f2;
    color: #118569;
}

.column-items li.active a {
    background: #118569;
    color: #fff;
}

/* 新闻列表样式 */
.news-list {
    width: 73%;
    margin-bottom: 20px;
}

.news-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.news-item {
    display: flex;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.news-list ul li:last-child .news-item{
    margin-bottom: 0px;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.news-date {
    display: flex;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    padding-right: 20px;
    border-right: 1px solid #eee;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.news-date .day {
    display: block;
    font-size: 24px;
    color: #118569;
    font-weight: bold;
    line-height: 1;
}

.news-date .month {
    display: block;
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.news-content {
    flex: 1;
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    justify-content: center;
}

.news-content h3 {
    font-size: 18px;
}

.news-content h3 a {
    color: #333;
    line-height: 1.6;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #118569;
}

.news-content p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* 分页样式 */
.pagination {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.layui-laypage {
    margin: 0;
}

.layui-laypage a {
    margin: 0 5px;
    padding: 0 12px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #e2e2e2;
    color: #666;
    border-radius: 2px;
    transition: all 0.3s;
}

.layui-laypage a.on {
    background-color: #118569;
    color: #ffffff;
    border-color: #118569;
}

.layui-laypage a.on:hover {
    color: #ffffff;
}

.layui-laypage a:hover {
    color: #118569;
    border-color: #118569;
}

.layui-laypage-curr {
    background-color: #118569 !important;
    border-color: #118569 !important;
}

.layui-laypage-curr em {
    color: #fff !important;
}

.layui-laypage-prev,
.layui-laypage-next {
    padding: 0 15px;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .list-container {
        padding: 15px;
    }

    .column-title h2{
        font-size: 18px;
    }

    .column-list {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .column-items a{
        font-size: 14px;
    }

    .news-list {
        width: 100%;
        margin-bottom: 10px;
    }

    .news-item {
        flex-direction: column;
        padding: 15px;
    }

    .news-date {
        width: auto;
        padding-right: 0;
        padding-bottom: 15px;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-end;
    }

    .news-date .day {
        font-size: 20px;
        margin-right: 10px;
    }

    .news-date .month {
        margin-top: 0;
    }

    .news-content {
        padding-left: 0;
    }

    .pagination{
        margin-top: 20px;
        margin-bottom: 20px;
    }
}




/*----------------------- 详情页 ----------------------------*/
/* 详情页样式 */
.detail-container {
    padding: 30px 0;
}

/* 文章内容样式 */
.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.1);
}

.article-title {
    font-size: 24px;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
    text-align: center;
    font-weight: 600;
}

.article-meta {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    display: inline-block;
    margin: 0 15px;
    color: #999;
    font-size: 14px;
}

.article-body {
    line-height: 1.5;
    font-size: 16px;
}

.article-body * {
    max-width: 100%!important;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body p:last-child {
    margin-bottom: 0;
}

.article-body a {
    color: #118569;
    text-decoration: none;
}

.article-body a:hover {
    text-decoration: underline;
}

/* 相关文档和附件样式 */
.related-documents,
.related-attachments {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #e5e5e5;
}

.related-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    padding-bottom: 8px;
    /*border-bottom: 1px solid #e5e5e5;*/
}

.related-title i {
    color: #118569;
    margin-right: 8px;
    font-size: 24px;
    vertical-align: middle;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dotted #eee;
}

.related-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.related-list a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.related-list a:hover {
    color: #118569;
}

.related-list i {
    font-size: 18px;
    margin-right: 10px;
    color: #118569;
}

.related-list .doc-name {
    flex: 1;
    font-size: 15px;
}

.related-list .doc-size,
.related-list .doc-time {
    color: #999;
    font-size: 13px;
    margin-left: 10px;
}

/*----------------------- 新闻标题区域 ----------------------------*/
/* 新闻标题样式 */
.news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 25px;
    padding: 15px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
    border-left: 4px solid #118569;
    box-shadow: 0 2px 8px rgba(17, 133, 105, 0.1);
}

.news-title:first-child {
    margin-top: 0;
}

.news-title span {
    font-size: 24px;
    color: #118569;
    font-weight: 700;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.news-title .more {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.news-title .more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

.news-title .more:hover {
    color: #fff;
    background: linear-gradient(135deg, #118569 0%, #0d6e4f 100%);
    border-color: #118569;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 133, 105, 0.3);
}

.news-title .more:hover::before {
    left: 100%;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .breadcrumb {
        margin-bottom: 15px;
    }

    .detail-container {
        padding: 15px;
    }

    .article-content {
        padding: 0;
        box-shadow:unset;
    }

    .article-title {
        font-size: 20px;
    }

    .article-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-meta span {
        margin: 5px 10px;
    }

    .article-body {
        font-size: 15px;
    }

    .related-documents,
    .related-attachments {
        margin-top: 20px;
        padding-top: 15px;
    }

    .related-title {
        font-size: 16px;
    }

    .related-list .doc-name {
        font-size: 14px;
    }

    .news-title {
        margin-bottom: 15px;
        padding: 12px 8px;
        border-left-width: 3px;
        box-shadow: 0 1px 4px rgba(17, 133, 105, 0.08);
    }

    .news-title span {
        font-size: 19px;
        padding-left: 0;
        text-shadow: none;
    }

    .news-title .more {
        font-size: 12px;
        padding: 6px 12px;
        border-radius: 15px;
    }
}




/*----------------------- 师资力量列表样式 ----------------------------*/
/* 图片列表网格布局 */
.photo_list {
    width: 73%;
    margin-bottom: 20px;
}

.photo_list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.photo_list li {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.photo_list li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(17, 133, 105, 0.2);
}

.photo_list .pic {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.photo_list .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo_list li:hover .pic img {
    transform: scale(1.05);
}

.photo_list .title {
    padding: 15px 10px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #eee;
}

.photo_list .title a {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.4;
}

.photo_list .title a:hover {
    color: #118569;
}

/* 响应式网格布局 */
@media screen and (max-width: 1200px) {
    .photo_list ul {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .photo_list .pic {
        height: 350px;
    }
}

@media screen and (max-width: 992px) {
    .photo_list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .photo_list .pic {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .photo_list{
        width: 100%;
    }
    
    .photo_list ul {
        gap: 15px;
    }
    
    .photo_list .pic {
        height: 400px;
    }
    
    .photo_list .title {
        padding: 12px 8px;
    }
    
    .photo_list .title a {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .photo_list ul {
        gap: 10px;
    }
    .photo_list .pic {
        height: 240px;
    }
    .photo_list .title a {
        font-size: 14px;
    }
}





