body{
    max-width: 100vw !important;
    overflow-x: hidden;
}
/* 中心概况页面样式 */
.main-content {
    min-height: 600px;
    background-color: #f8f9fa;
}

/* 标签页导航样式 */
.tabs-navigation {
    background: white;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 0;
}

.tab-nav-list {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

.tab-nav-btn {
    background: transparent;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tab-nav-btn:hover {
    color: #38a660;
    background-color: #f8f9fa;
}

.tab-nav-btn.active {
    color: #38a660;
    border-bottom-color: #38a660;
    background-color: white;
    font-weight: 600;
}

/* 面包屑导航 */
.breadcrumb-nav {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.breadcrumb-item {
    color: #666;
}

.breadcrumb-item.active {
    color: #38a660;
    font-weight: 500;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

/* 标签页内容区域 */
.tab-content {
    background: white;
    overflow: hidden;

}

/* 优美园林内容区域 */
.presence-content {
    padding: 0 40px 0 40px;
}

.presence-content-item {
    margin-bottom: 40px;
}
/* 园林介绍文本 */
.garden-intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* 园林展示网格 */
.garden-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.garden-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: white;
}

.garden-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.garden-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.garden-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

.garden-image::before {
    content: '图片加载中...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #666;
    font-size: 14px;
}

.garden-item:hover .garden-image {
    transform: scale(1.05);
}

.garden-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.garden-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.garden-description {
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 园林图片网格样式 */
.garden-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.garden-grid-item {
    display: flex;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
}

.garden-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.garden-caption {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    font-family: PingFangSC-regular;
    font-weight: 600;
    color: #4f4f4f;
    background: #f8f9fa;
    text-align: center;
    border-left: 1px solid #e9ecef;
}

.garden-image-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.garden-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.garden-grid-item:hover .garden-image-wrapper img {
    transform: scale(1.05);
}

/* 分页器样式 */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #38a660;
    color: white;
    border-color: #38a660;
}

.pagination-btn:disabled {
    display: none;
}

.pagination-numbers {
    display: flex;
    gap: 4px;
    margin: 0 10px;
}

.pagination-number {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    background: #38a660;
    color: white;
    border-color: #38a660;
}

.pagination-number.active {
    background: #38a660;
    color: white;
    border-color: #38a660;
    font-weight: 600;
}

.pagination-info {
    font-size: 14px;
    color: #666;
}

/* 特色亮点区域 */
.highlights-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    margin: 40px 0;
    border-radius: 12px;
    border-left: 4px solid #38a660;
}

.highlights-title {
    color: #2d5016;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-3px);
}

.highlight-icon {
    font-size: 36px;
    color: #38a660;
    margin-bottom: 15px;
}

.highlight-item h4 {
    color: #2d5016;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .tab-nav-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .presence-content {
        padding: 0 20px;
    }
    
    .presence-content-item-title h2 {
        font-size: 24px;
    }
    
    .garden-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 园林图片网格响应式 */
    .garden-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0;
    }

    .garden-grid-item {
        flex-direction: column;
        min-height: auto;
    }

    .garden-caption {
        flex: none;
        border-left: none;
        border-top: 1px solid #e9ecef;
        padding: 15px;
        font-size: 15px;
    }

    .garden-image-wrapper {
        height: 200px;
    }

    /* 分页器响应式 */
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }

    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pagination-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .highlights-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tab-nav-list {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-nav-btn {
        white-space: nowrap;
        min-width: 100px;
    }
    
    .garden-item {
        margin-bottom: 15px;
    }
    
    .garden-image-container {
        height: 150px;
    }
    
    .garden-overlay {
        padding: 15px;
    }
    
    .garden-title {
        font-size: 16px;
    }
    
    /* 园林图片网格小屏幕响应式 */
    .garden-image-wrapper {
        height: 180px;
    }
    
    .garden-caption {
        padding: 12px;
        font-size: 14px;
    }
    
    /* 分页器小屏幕响应式 */
    .pagination-numbers {
        margin: 0 5px;
    }
    
    .pagination-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .garden-intro {
        padding: 0 10px;
        font-size: 14px;
    }
    
    .highlights-section {
        padding: 15px;
        margin: 15px 0;
    }
    
    .highlight-item {
        padding: 15px;
    }
}
.garden-grid-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.garden-grid-item:hover {
    transform: translateY(-5px);
}

.garden-image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.garden-grid-item:hover .image-overlay {
    /* opacity: 1; */
}

.image-overlay i {
    color: white;
    font-size: 24px;
}

.image-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-detail-modal .modal-content {
    background: white;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-detail-modal .modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.image-detail-modal .modal-title {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.image-detail-modal .close-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.image-detail-modal .close-btn:hover {
    color: #333;
}.image-detail-modal .modal-body {
    padding: 20px;
}

.image-detail-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.detail-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-description {
    color: #666;
    line-height: 1.6;
}

.image-description p {
    margin-bottom: 15px;
}

.image-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.image-category {
    color: #38a660;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
}

.image-date {
    color: #999;
    font-size: 14px;
}

/* 荣誉奖项样式 */
.honor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.honor-grid-item {
    background: #f8f9fa;
  
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.honor-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}





.honor-header {
    padding: 20px 20px 15px 20px;
    position: relative;
}

.honor-title {
    font-size: 18px;
    font-weight: 600;
    color: #4f4f4f;
    font-family: PingFangSC-regular;
    margin: 0;
    line-height: 1.4;
    padding-right: 60px;
}

.honor-image-wrapper {
    flex: 0 0 180px;
    overflow: hidden;
    margin: 0 0px;
 
}

.honor-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.honor-grid-item:hover .honor-image-wrapper img {
    transform: scale(1.05);
}

.honor-content {
    flex: 1;
    padding: 0px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.honor-description {
    font-size: 14px;
    color: #4f4f4f;
    font-family: PingFangSC-regular;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
}

.honor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.honor-footer * {
    font-size: 12px;
    color: #4f4f4f;
    font-family: PingFangSC-regular;
    font-weight: 500;
}

.honor-award-type {
    font-size: 12px;
    color: #4f4f4f;
    font-family: PingFangSC-regular;
    font-weight: 500;

}



@media (max-width: 992px) {
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .honor-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    
    .honor-grid-item {
        min-height: 310px;
    }
    
    .honor-image-wrapper {
        flex: 0 0 150px;
    }
    
    .honor-title {
        font-size: 16px;
        padding-right: 50px;
    }
    

}

@media (max-width: 768px) {
    .image-detail-modal .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .image-detail-modal .modal-header,
    .image-detail-modal .modal-body {
        padding: 15px;
    }
}

