.nav-bar {
        background-color: #0056b3;
        display: flex;
        flex-wrap: wrap;
      }
      .nav-bar .nav-link {
        color: #fff;
        font-size: 18px;
      }
      .nav-bar .nav-link:hover {
        background-color: #004a80;
      }
	  .nav-bar .nav-link-active{
        background-color: #004a80 !important;
      }
      .bkgnd-white{
        background-color: #fff;
      }
     
     .swiper {
        width: 100%;
        height: 100%;
     }
     .swiper2 {
        position: relative;
     }
     .mySwiper .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 400px;
     }
     
    .mySwiper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .mySwiper .swiper-slide{
        height:360px;
        margin-top:50px;
    }

    .mySwiper .swiper-slide-active{
        position: relative;
        z-index: 2;
        transform: scale(2) !important;
    }
    .auto-panel{
        display: none;
        margin-top:40px;
    }
    .button-icon{
        width:60px;
        position: relative;
    }
    .auto-button{
        user-select: none;
        transition: all .3s ease-in;
    }

    .swiper-title-bar{
        border-left:5px solid #89bf04;
        padding-left:10px;
        font-size:20px;
        font-weight: bold;
        color:#006934;
        flex-shrink: 0;
    }
    .swiper-title-bar-char{
        height:3px;
        background-color: #3A5F4D;
        width:20px;
        margin:0 10px;
        flex-shrink: 0;
    }

    .swiper-title-bar-content{
        font-size:20px;
        font-weight: bold;
        color:#3A5F4D;
        flex-shrink: 0;
    }

    .swiper-title-bar2{
        border-left:5px solid #89bf04;
        padding-left:10px;
        font-size:20px;
        font-weight: bold;
        color:#3A5F4D;
    }
    .img-bkgnd {
      width: 100%;
      height: 0;
      padding-bottom: 67%;
      position: relative;
    }
    
    .lunbo-tu{
        overflow: hidden;
    }
  
    .swiper-button-prev{
        background-image:none;
        background-color: #B8B8B8;
        border-radius: 10px;
        width:30px !important;
        height:60px !important;
        cursor:pointer;
     }
     .swiper-button-prev::after{
        position: absolute;
        content:"";
        left: 10px;
        top: 20px;
        width:20px;
        height:20px;
        border-left:3px solid #FFFFFF;
        border-top:3px solid #FFFFFF;
        transform: rotate(-45deg);
     }
     .swiper-button-prev:hover{
        background-color: #ccc;
     }

    .swiper-button-next{
        background-image:none;
        background-color: #B8B8B8;
        border-radius: 10px;
        width:30px !important;
        height:60px !important;
        cursor:pointer;
    }
    .swiper-button-next:hover{
        background-color: #ccc;
    }
    .swiper-button-next::after{
        position: absolute;
        content:"";
        right: 10px;
        top: 20px;
        width:20px;
        height:20px;
        border-right:3px solid #FFFFFF;
        border-top:3px solid #FFFFFF;
        transform: rotate(45deg);
    }

    /* 手风琴样式 */
        .sfq .accordion-container {
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
        }

        .sfq .accordion-slider {
            width: 100%;
            height: 450px;
        }

        .sfq .slider-wrapper {
            display: flex;
            width: 100%;
            height: 100%;
        }

        /* 所有项默认窄边 */
        .sfq .slider-item {
            width: 80px;
            height: 100%;
            transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            overflow: hidden;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
        }

        /* active项展开 */
        .sfq .slider-item.active {
            width: calc(100% - 80px * 4);
        }

        .sfq .accordion-item {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .sfq .accordion-link {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            text-decoration: none;
        }

        .sfq .slider-item .accordion-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transition: background-color 0.5s ease;
            z-index: 1;
        }

        .sfq .slider-item:nth-child(odd) .accordion-item::before {
            background-color: #3680D9;
        }

        .sfq .slider-item:nth-child(even) .accordion-item::before {
            background-color: #0F5394;
        }

        .sfq .slider-item.active .accordion-item::before {
            background-color: rgba(0, 0, 0, 0.15);
        }

        .sfq .accordion-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .sfq .slider-item.active .accordion-item img {
            transform: scale(1.03);
        }

        .sfq .desc-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            font-size: 18px;
            line-height: 1.8;
            opacity: 0;
            transition: opacity 0.5s ease;
            z-index: 2;
            text-align: center;
            padding: 0 30px;
            max-width: 80%;
            pointer-events: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .sfq .slider-item.active .desc-text {
            opacity: 1;
        }

        .sfq .mini-title {
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            writing-mode: vertical-rl;
            color: #fff;
            font-size: 18px;
            font-weight: bold;
            white-space: nowrap;
            opacity: 1;
            transition: opacity 0.5s ease;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .sfq .slider-item.active .mini-title {
            opacity: 0;
        }

        /* 响应式调整 */
        @media (max-width: 1200px) {
            .sfq .slider-item {
                width: 60px;
            }
            .sfq .slider-item.active {
                width: calc(100% - 60px * 4);
            }
        }
        
     .nav-item-verline{
      width:1px;
      height:50px;
      background-color:#eee;
    }
    .title-icon{
      background-color: #0F5394;
      width:40px;
      height:40px;
      border-radius:10px;
    }
    .title-icon-img{
      width:30px;
      height:30px;
    }
    .title-icon-text{
      color:#0F5394;
      font-size:28px;
      font-weight: bold;
    }
	
    .image-bottom-text{
      left:0;
      right:0;
      bottom:0;
      background-color:rgba(0,86,195,0.5);
    }
   /* 指示器容器样式 */
    .swiper-pagination {
      bottom: 20px !important; /* 覆盖默认距离，加!important确保生效 */
      z-index: 10;
    }

    /* 单个指示器圆点（未选中） */
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: #fff;
      opacity: 0.6;
      margin: 0 6px !important; /* 覆盖默认间距 */
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .swiper-container{
      position: relative;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
      background-color: #fff;
      width: 25px;
      border-radius: 6px;
    }

    .swiper-pagination-bullet:hover {
      opacity: 0.9;
    }