    body {
        width: 100%;
    }
    .section:first-child {
        margin-top: 30px;
    }
    .news-item:hover .font {
        color: #CC7B29;
    }
    
    /* 图片画廊布局样式 */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
        margin-top: 30px;
    }
    
    .gallery-item {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-decoration: none;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .gallery-img-box {
        position: relative;
        width: 100%;
        padding-bottom: 56.33%; /* 307/545 = 0.5633，保持545x307的比例 */
        overflow: hidden;
    }
    
    .gallery-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .gallery-item:hover .gallery-image {
        transform: scale(1.05);
    }
    
    .gallery-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
        padding: 20px 15px 15px;
        opacity: 1;
        transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }
    
    .gallery-title {
        color: white;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        /* 标准属性兼容性 */
        line-clamp: 2;
      }
      
      /* 视频播放图标样式 */
      .video-play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 52px;
        height: 52px;
        background: url("../images/play.png") no-repeat center center;
        opacity: .8;
        background-size: contain;
        z-index: 2;
        transition: all 0.3s ease;
      }
      
      .gallery-item:hover .video-play-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
      }
      
      #load-more-container {
        text-align: center;
        margin: 0 0 20px;
        display: none;
      }

.load-more-btn {
        padding: 10px 24px;
        background-color: #CC7B29;
        color: white;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 6px rgba(64, 158, 255, 0.3);
        align-items: center;
        justify-content: center;
        min-width: 120px;
        height: 40px;
        display: inline-flex;
    }
    
    .load-more-btn:hover {
        background-color: #CC7B29;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(64, 158, 255, 0.4);
    }
    
    .load-more-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(64, 158, 255, 0.3);
    }
    
    .load-more-btn:disabled {
        background-color: #CC7B29;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }
    
    /* 加载动画 */
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    .loading-spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 0.8s linear infinite;
        margin-right: 8px;
    }
    
    .btn-text {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* 加载失败状态 */
    .error-text {
        color: #f56c6c;
        margin-right: 6px;
    }

.no-more {
    color: #999;
    font-size: 14px;
    padding: 15px 0;
    text-align: center;
    display: none;
}

.no-more::before,
.no-more::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background: #ddd;
    margin: 0 10px;
    vertical-align: middle;
}
      
/* 移动端样式 */
@media screen and (max-width: 768px) {
    body {
        padding-top: 60px !important;
    }
    .group {
        width: 100%;
    }

    .news-list {
        padding: 0 15px;
    }

    .news-list .img-box {
        width: 100px;
        height: 100px;
    }

    .news-list .font {
        line-height: 22px;
        font-size: 16px;
    }

    .news-list .mt-27 {
        margin-top: 5px;
        font-size: 12px;
    }

    .news-list .mt-33 {
        margin-top: 15px;
    }

    .news-list .mt-30 {
        margin-top: 15px;
    }
    .gallery-grid{
        margin-top: 15px;
    }
    .footer {
        display: none;
    }
    #newsList .page{
        display: none;
    }
    #load-more-container{
        display: block;
    }

}