    /* 添加媒体查询处理移动端样式 */


    @media only screen and (max-width: 767px) {
        .banner-slider-area .owl-dots {
            display: none;
        }

        .sy-banner>.banner-slider {
            margin-top: 60px;
        }

        /* 调整"了解更多"按钮样式 */
        .banner-btn .default-btn {
            padding: 8px 15px;
            font-size: 12px;
        }

        /* 调整轮播指示点大小 */
        .owl-dots .owl-dot span {
            width: 8px !important;
            height: 8px !important;
            margin: 5px 3px !important;
        }

        /* 调整按钮位置 */
        .banner-btn {
            left: 5px;
            bottom: 5px;

        }
    }


    /* @media only screen and (max-width: 767px) {
        .detail-title >div{
            margin-top: 60px;
        }
    } */

    /* 导航栏 */
    .nav-bar {

        /* 添加到您的CSS文件中 */
        .nav-buttons-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .nav-buttons .nav-link {
            padding: 8px 15px;
            color: #191919;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-buttons .nav-link:hover,
        .nav-buttons .nav-link.active {
            color: #FF1F00;
        }

        @media (max-width: 768px) {
            .nav-buttons .nav-link {
                flex: 0 0 calc(50% - 10px);
                text-align: center;
                margin-bottom: 10px;
                padding: 10px;
                background: #f8f9fa;
                border-radius: 5px;
            }
        }

        @media (max-width: 480px) {
            .nav-buttons .nav-link {
                flex: 0 0 100%;
            }
        }

    }


    @media screen and (max-width: 768px) {
        .nav-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 0 15px;
        }

        .nav-buttons .nav-link {
            font-size: 14px;
            padding: 8px 12px;
            white-space: nowrap;
        }

        .nav-buttons .nav-separator {
            display: none;
            /* 在移动端隐藏分隔符 */
        }
    }


    /* 导航按钮样式 */


    /* 移动端适配 */
    @media (max-width: 768px) {
        .nav-separator {
            display: none;
            /* 在移动端隐藏分隔符 */
        }

        .main-nav-buttons {
            margin-bottom: 10px;
        }

        .nav-link,
        .sub-nav-link {
            font-size: 14px;
            padding: 6px 12px;
        }

        .sub-nav-buttons {
            gap: 8px;
        }
    }

    @media (max-width: 768px) {
        .solution-detail .detail-container {
            width: 90%;
        }

        .solution-detail .more-solution-detail {
            width: 90%;
        }
    }



    .gdys {

        /* 前面的基础样式保持不变 */
        html {
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        html::-webkit-scrollbar {
            display: none;
        }

        body {
            margin: 0;
            padding: 0;
            overflow: hidden;
        }

        .section {
            position: relative;
            background-size: cover;
            background-position: center;
            color: white;
        }

        /* 修改content样式 */
        .content {
            position: absolute;
            left: 25%;
            /* 改为左侧固定位置 */
            top: 50%;
            transform: translateY(-50%);
            /* 只保留垂直居中 */
            text-align: left;
            /* 文字左对齐 */
            max-width: 1200px;
            padding: 40px;
            border-radius: 10px;
        }

        /* 修改标题样式 */
        h1 {
            font-size: 36px;
            margin-bottom: 20px;
            text-align: left;
            font-weight: bold;
            position: relative;
            padding-bottom: 15px;
            color: #FFF;
        }

        /* 可以为标题添加下划线装饰 */
        h1:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: white;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 15px;
            text-align: left;
            color: #FFF;
        }

        /* 其他样式保持不变 */
        .footer {
            color: white;
            padding: 50px 0;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .fp-completely {
            position: relative !important;
        }

        .smooth-scroll {
            scroll-behavior: smooth;
        }

        /* 导航栏响应式样式 */
        @media (max-width: 991px) {
            .navbar-area {
                /* padding: 10px 0; */
                background: #fff;
            }

            .mobile-nav {
                display: block;
                position: relative;
            }

            .mobile-nav .logo {
                width: 120px;
                display: block;
                padding: 10px 0;
            }

            .main-nav {
                display: none;
            }

            .mean-container .mean-bar {
                background-color: #191919 !important;
                padding: 0;
            }

            .mean-container .mean-nav {
                margin-top: 60px;
            }

            .mean-container .mean-nav ul li a {
                padding: 10px 20px;
                border-top: 1px solid #dbdbdb;
            }
        }

        /* 修改主导航样式 */
        .main-nav {
            background-color: #111;
            top: 0;
            position: inherit;
            left: 0;
            padding: 0;
            width: 100%;
            height: auto
        }

        .main-nav .navbar {
            padding: 0;
            position: relative;
        }

        @media (max-width: 767px) {
            .content {
                left: 10%;
                right: 10%;
                width: 80%;
                padding: 20px;
            }

            h1 {
                font-size: 24px;
            }

            p {
                font-size: 16px;
            }

            .nav-side {
                display: none;
            }
        }
    }