        /*轮播图 圆的 */
        .el-carousel__button {
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }
        .titles {
            font-size: 50px;
            color: rgb(143, 108, 73);
            text-align: center;
            font-weight: bold;
            margin-top: 50px;
            margin-bottom: 30px;
        }
        .el-carousel__arrow {
            width: 90px;
            height: 90px;
        }

        .el-carousel__arrow i {
            font-size: 50px;
        }
        html {
            overflow-x: hidden;
            /* 隐藏水平滚动条 */
            overflow-y: auto;
            /* 保持垂直滚动 */
            -ms-overflow-style: none;
            /* IE和Edge */
            scrollbar-width: none;
            /* Firefox */
        }

        html::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        body::-webkit-scrollbar {
            width: 0;
            /* 将滚动条宽度设置为0以隐藏它 */
        }

        body {
            overflow-y: scroll;
            /* 允许垂直滚动 */
            scrollbar-width: none;
            /* 对于Firefox，尝试隐藏滚动条 */
            -ms-overflow-style: none;
            /* 对于Internet Explorer和Edge，尝试隐藏滚动条 */
        }

        #app::-webkit-scrollbar {
            width: 0;
            /* 将滚动条宽度设置为0以隐藏它 */
        }

        #app {
            overflow-y: scroll;
            /* 允许垂直滚动 */
            scrollbar-width: none;
            /* 对于Firefox，尝试隐藏滚动条 */
            -ms-overflow-style: none;
            /* 对于Internet Explorer和Edge，尝试隐藏滚动条 */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        li {
            list-style: none;
        }

        body {
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }


        /* 导航按钮 - 适配移动端 */
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.4);
            color: white;
            border: none;
            padding: 12px 15px;
            cursor: pointer;
            z-index: 10;
            font-size: 18px;
            border-radius: 50%;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .carousel-button:hover {
            opacity: 1;
            background: rgba(0, 0, 0, 0.6);
        }

        .prev {
            left: 15px;
        }

        .next {
            right: 15px;
        }
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
        }



        /* 图片画廊样式 */
        .gallery-container {
            width: 100%;
            max-width: 1900px;
            margin: 30px auto;
            padding: 0 15px;
        }

        .gallery-title {
            text-align: left;
            margin-bottom: 25px;
            font-size: 24px;
            color: #333;
        }

        .gallery {
            display: flex;
            overflow: hidden;
        }



        .gallery-itembox {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            flex: 1;
            padding: 20rpx;
            box-sizing: border-box;
        }

        .word {
            text-align: center;
            font-size: 24px;
            background-color: #f0f0f0; /* 高级浅灰色 */
            padding: 16px; /* 添加一些内边距，让内容更美观 */
            border-radius: 5px; /* 添加圆角，让背景看起来更高级 */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影，提升视觉效果 */
        }

        .word div:nth-child(1) {
            font-size: 24px;
            margin-top: 20px;
        }

        .word div:nth-child(2) {
            font-size: 20px;
            margin-top: 12px;
        }
        .gallbg {
            width: 95%;
            overflow: hidden;
            margin: 0 auto;
            position: relative;
            padding-bottom: 10px;
        }
        .gallery-item {
            width: 100%;
            transition: all 0.3s ease;
        }
          
        .gallery-itembox:hover .gallery-item {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .mengban {
            height: 0%;
            position: absolute;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 99;
            transform: scale(1.03);
            transition: all 0.5s;
        }

        .gallery-itembox:hover .mengban {
            height: 100%;
            transform: scale(1.03);
            transition: all 0.5s;
            background: rgba(1, 0, 53, 0.5);
        }

        /* .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        } */

        .gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 弹窗样式 */
        .modal-overlay {
            position: fixed;
            top: 10;
            left:0;
            right: 0;
            height: 800px;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .lunbo_modal-content {
            position: relative;
            width: 95%;
            max-width: 900px;
            max-height: 90vh;
            text-align: center;
        }

        .lunbo_modal-image {
            max-width: 100%;
            max-height: 80vh;
            display: block;
            margin: 0 auto;
            border-radius: 4px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .close-button {
            position: absolute;
            top: 15px;
            right: 15px;
            background: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            transition: all 0.2s;
        }

        .close-button:hover {
            transform: scale(1.1);
            background: #f1f1f1;
        }

        /* 新增导航栏样式 */
        .header {
            background-color: rgb(64, 64, 64);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            color: #ffffff;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            margin-right: 50px;
            padding: 15px 0;
        }

        .nav-main {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            list-style: none;
            height: 100%;
        }

        .nav-item {
            position: relative;
            padding: 20px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-item>a {
            text-decoration: none;
            color: #fff;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-item:hover>a {
            color: #7f6000;
        }

        /* 二级导航 */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 130px;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 5px 5px;
            opacity: 0;
            color: white;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-item:hover .submenu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .submenu-item {
            padding: 12px 20px;
            transition: all 0.2s;
        }

        .submenu-item:last-child {
            border-bottom: none;
        }

        .submenu-item:hover {
            color: #555;
        }

        .submenu-item a {
            color: white;
            text-decoration: none;
            display: block;
            transition: color 0.2s;
        }

        .submenu-item:hover a {
            color: #7f6000;
        } 
    /* 添加在原有.word样式中 */
.word {
    /* 原有样式保持不变 */
    padding: 12px; /* 减少内边距 */
}

.word div:nth-child(1) {
    font-size: 24px;
    margin-top: 20px;
    /* 添加移动端样式 */
    @media (max-width: 768px) {
        font-size: 18px;
        margin-top: 12px;
    }
}

.word div:nth-child(2) {
    font-size: 20px;
    margin-top: 12px;
    /* 添加移动端样式 */
    @media (max-width: 768px) {
        font-size: 14px;
        margin-top: 8px;
    }
}

/* 同时调整画廊布局适应移动端 */
@media (max-width: 768px) {
    .gallery {
        flex-wrap: wrap; /* 换行显示 */
    }
    
    .gallery-itembox {
        flex: 1 1 50%; /* 每行显示2个 */
        padding: 10px; /* 减少间距 */
    }

    .gallbg {
        padding-bottom: 5px; /* 减少底部间距 */
    }
}

@media (max-width: 480px) {
    .gallery-itembox {
        flex: 1 1 100%; /* 小屏幕单列显示 */
    }
    
    .word {
        padding: 8px; /* 进一步减少内边距 */
    }
}