        /* 给轮播图容器添加样式 */
        .swiper-container {
            width: auto;
            height: 600px;
            margin: 0 auto;
        }

        /* 给轮播图中每个slide添加样式 */
        .swiper-slide-banner {
            position: relative;
            width: auto;
            height: 600px;
            overflow: hidden;
        }

        /* 给轮播图中每张图片添加样式 */
        .swiper-slide-banner img {
            position: absolute;
            width: auto;
            height: 600px;
            object-fit: cover;
        }

        /* 给轮播图中每个slide的文字容器添加样式 */
        .swiper-slide-banner .content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 36px;
            text-align: center;
        }

        /* 给轮播图中每个slide的文字容器添加背景色 */
        /* .swiper-slide .content-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        } */

        /* 给轮播导航按钮添加样式 */
        .swiper-button-prev,
        .swiper-button-next {
            background-color: rgba(211, 211, 211, 0.3);
            color: rgba(255, 255, 255, 0.3);
            font-size: 24px;
            padding: 30px;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background-color: rgba(253, 74, 24, 0.3);
        }



    /* 产品轮播 */
    
