.team-list {
    padding: 60px 80px;
}

.team-list .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.team-list .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card .photo {
    height: 180px;
    overflow: hidden;
}

.news-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .info {
    position: relative;
    padding: 20px;
}

.news-card .tag {
    display: inline-block;
    padding: 4px 12px;
    background: #C9AA79;
    color: #fff;
    font-size: 10px;
    margin-bottom: 10px;
}

.news-card .date {
    float: right;
    color: #999;
}

.news-card h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
    height: 54px;
    overflow: hidden;
}

.card-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    height: 66px;
    overflow: hidden;
    margin: 15px 0 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qian-title {
    font-family: Taipei Sans TC Beta;
    font-weight: bold;
    font-size: 16px;
    color: #1C3263;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* 分页样式 */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover,
.pagination a.active,
.pagination a.current {
    background: #1C3263;
    color: #fff;
}

.pagination .prev,
.pagination .next {
    font-weight: bold;
}

h2{
    font-size: 30px !important;
    color: white !important;
}

.learn-more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    
    height: 32px;
    width: 120px;
}

.news-detail {

    margin: 0 auto;
    padding: 20px 0;
}

.news-detail .title {
    font-size: 30px;
    color: #1C3263;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.news-detail .date {
    text-align: center;
    color: #999;
    margin-bottom: 40px;
}

.news-detail .content {
    line-height: 1.8;
}

.news-detail .content p {
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    text-align: justify;
}

.news-detail .news-image {
    margin: 30px 0;
    text-align: center;
}

.news-detail .news-image img {
    max-width: 100%;
    height: auto;
}
.sec-title h1,
.sec-title h2{
    margin-top: 20px;
    margin-bottom: 10px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .team-list{
        padding: 30px 30px;
    }
    .team-list .container {
        padding: 0 15px;
    }

    .grid {
        grid-template-columns: 1fr  !important;
        gap: 20px !important;
        
    }

    .news-card {
        margin: 0;
        width: 100%;
        max-width: 100%;  /* 确保不超出容器 */
        overflow: hidden;  /* 防止内容溢出 */
    }

    .news-card .photo {
        height: 200px;
        width: 100%;  
        position: relative;  /* 添加相对定位 */
        overflow: hidden;  /* 防止图片溢出 */
    }

    .news-card .photo img {
        height: 100%;
        object-fit: cover;
        position: absolute;  /* 绝对定位 */
        top: 0;
        left: 0;
    }

    .news-card .info {
        padding: 15px;
    }

    .tag {
        min-width: 60px;
    }

    .qian-title {
        font-size: 16px;
        line-height: 1.4;
    }

    .card-desc {
        font-size: 14px;
        margin: 10px 0;
    }

    .learn-more {
        position:static;
       
    }

    .lbreadcrumb {
        padding: 10px 15px;
    }

    .split.container {
        margin: 10px 15px;
    }
    .sec-title .en{
        margin-top: 20px;
        font-size: 30px !important;
    }
}

 