/* 设置轮播容器样式 */
    .feature--thumb {
        padding-top: 0 !important;
        margin-top: 0 !important;
        height: auto !important;
    }

    /* 调整轮播组件 */
    .feat-slider.owl-carousel {
        height: auto !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* 图片容器设置 */
    .main-thumb {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        height: auto !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 图片样式调整 */
    .main-thumb img {
        margin-top: -50px !important; /* 负边距向上移动图片 */
        max-height: 800px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    /* 确保轮播相关元素不添加额外空间 */
    .owl-stage-outer,
    .owl-stage,
    .owl-item {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    @media (max-width: 767px) {
        .feature--thumb {
            display: none !important;
        }

        /* 如果需要保留列但只隐藏图片，可以使用下面的代码 */
        /*.main-thumb {
            display: none !important;
        }*/
    }

    /* 修改横幅下载按钮颜色为橙色 */
    #banner-download-button {
        background: #ff8a00 !important;
        border-color: #ff8a00 !important;
    }

    /* 添加悬停效果 */
    #banner-download-button:hover {
        background: #e67e00 !important;
        border-color: #e67e00 !important;
    }


/* 缩小footer整体高度 */
    footer {
        margin-top: -20px; /* 减少与上方内容的间距 */
    }

    /* 减少footer内部的padding */
    .footer-section-16.padding-top {
        padding-top: 30px; /* 原来可能是50px或更多 */
    }

    /* 减少底部区域的padding */
    .footer-bottom.padding-top {
        padding-top: 15px; /* 减少顶部内边距 */
        padding-bottom: 10px; /* 控制底部空间 */
    }

    /* 缩小链接的间距 */
    .footer-link {
        margin-bottom: 10px; /* 减少底部边距 */
    }

    /* 调整版权信息区域 */
    .copyright {
        padding-top: 10px;
        padding-bottom: 15px;
        margin-top: 5px;
    }

    /* 调整版权信息文字大小 */
    .copyright p {
        font-size: 12px; /* 缩小字体大小 */
        margin-bottom: 0;
    }