* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", Arial, sans-serif;
        }
        @layer utilities {
      .carousel-item {
        @apply absolute inset-0 transition-opacity duration-1000 ;
      }
      .carousel-item.active {
        @apply opacity-100 z-10;
      }
      .carousel-indicator {
        @apply w-3 h-3 rounded-full bg-white/50 cursor-pointer transition-all duration-300;
      }
      .carousel-indicator.active {
        @apply bg-white scale-125;
      }
      .carousel-control {
        @apply absolute top-1/2 -translate-y-1/2 w-10 h-10 rounded-full bg-black/30 text-white flex items-center justify-center cursor-pointer transition-all duration-300 z-20 hover:bg-black/50;
      }
    }
    @layer utilities {
      .content-auto {
        content-visibility: auto;
      }
      .text-shadow {
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
      }
      .transition-transform-opacity {
        transition-property: transform, opacity;
      }
    }
     @media (min-width: 1536px) {
    .container {
         max-width: 100% !important; 
    }
}
.text-limit {
      /* 限制显示两行 */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      
      /* 超出部分隐藏 */
      overflow: hidden;
      
      /* 可选：避免内容被截断在单词中间 */
      word-break: break-all; /* 强制换行（根据需要选择） */
      /* 或使用 word-wrap: break-word; */
    }
    .bg-primary{
        background: #348656;
    }
        /* 顶部欢迎栏 */
        .top-bar {
            background-color: #f5f5f5;
            padding: 8px 0;
            font-size: 14px;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .top-bar-links a {
            color: #333;
            text-decoration: none;
            margin-left: 15px;
        }
        .top-bar-links a:hover {
            text-decoration: underline;
        }
        
        /* 头部Logo区域 */
        .header {
            padding: 20px 0;
            background-color: #fff;
        }
        .header .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area {
            display: flex;
            align-items: center;
        }
        .logo {
            width: 111px;
            /*height: 80px;*/
            margin-right: 15px;
        }
        .logo-text h1 {
            color: #348656;
            font-size: 30px;
            margin-bottom: 5px;
        }
        .logo-text p {
            color: #333333;
            font-size: 18px;
            line-height: 30px;
        }
        
        /* 服务承诺区域 */
        .service-promises {
            float: right;
            padding: 0 0 0 42px;
            width: 391px;
            margin: 0 18px 0 0;
            background: url(/assets/img/top_text.png) no-repeat center center;
        }
        .service-promises h3 {
            
            font-size: 20px;
            font-weight: bold;
            color: #348656;
            margin-bottom: 5px;
        }
        .service-promises ul {
            list-style: none;
        }
        .service-promises li {
            margin-bottom: 5px;
            position: relative;
            padding-left: 20px;
            font-size: 14px;
            color: #000000;
            line-height: 22px;
            padding: 0 0 0 20px;
            margin: 0;
        }
        .service-promises li:before {
            content: "✓";
            color: #348656;
            position: absolute;
            left: 0;
            font-weight: bold;
        }
        
        /* 咨询电话区域 */
        .contact-info {
            flex: 0 0 220px;
            text-align: center;
        }
        .contact-info span {
            
            
            font-size: 18px;
            display: block;
            color: #333333;
            text-align: left;
            background: url(/assets/img/top-tel_1.png) no-repeat left center;
            padding: 0 0 0 27px;
        }
        .phone-number {
            
            
            font-size: 32px;
            color: #348656;
            display: block;
            font-weight: bold;
            letter-spacing: 0;
            margin: 10px 0;
        }
        .enroll-notice {
            
            border: 1px solid #348656;
            text-align: center;
            line-height: 30px;
            color: #348656;
            font-size: 14px;
            border-radius: 20px;
            
        }
        
        /* 导航栏 */
        .nav-bar {
            background-color: #348656;
        }
        .nav-bar .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex
;
    justify-content: center;
    width: 100%;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            color: #fff;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 20px;
        }
        .nav-link:hover {
            background-color: #e06c00;
        }
        .nav-item.active .nav-link {
            background-color: #FF9E05;
        }
        
        /* 下拉菜单 */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #fda61d;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            list-style: none;
            width: 100%;
            display: none;
            z-index: 100;
        }
        .dropdown-item a {
            position: relative;
            display: block;
            z-index: 999;
            text-align: center;
            color: #fff;
            font-size: 16px;
            line-height: 45px;
            text-decoration: none;
            
        }
        .dropdown-item a:hover {
            background-color: #f37b1d;
            color:#fff;
        }
        .nav-item:hover .dropdown {
            display: block;
        }
        
        /* 轮播图区域 */
        .banner {
            position: relative;
            height: 400px;
            overflow: hidden;
        }
        .banner-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .banner-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .banner-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        .banner-text p {
            font-size: 18px;
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .header .container {
                flex-direction: column;
                text-align: center;
            }
            .logo-area {
                margin-bottom: 20px;
                justify-content: center;
            }
            .service-promises, .contact-info {
                margin: 10px 0;
                flex: none;
                width: 100%;
            }
            .nav-list {
                flex-wrap: wrap;
                justify-content: center;
            }
            .nav-link {
                padding: 10px 15px;
                font-size: 14px;
            }
            .banner {
                height: 300px;
            }
            .banner-text h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
            }
            .top-bar-links {
                margin-top: 5px;
            }
            .banner {
                height: 200px;
            }
            .banner-text h2 {
                font-size: 22px;
            }
            .banner-text p {
                font-size: 14px;
            }
        }
        .bannerh{
            height: 700px;
        }
        .w1200{
           width: 1200px !important; 
           margin: 0 auto;
        }
        .banner-h{
            width: 554px;
            height: 368px;
        }   
        
        .container {
            display: flex;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        .video-column {
            flex: 1;
            margin-right: 40px;
        }
        .video-box {
            width: 100%;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }
        .feature-column {
            flex: 1;
            padding-top: 10px;
        }
        .feature-item {
            margin-bottom: 10px;
            background: url(/assets/img/content_1.png) no-repeat left 6px;
            background-size: 70px;
            padding: 3px 0 3px 80px;
        }
        
        .feature-item:nth-child(2) {
            margin-bottom: 10px;
            background: url(/assets/img/content_2.png) no-repeat left 6px;
            background-size: 70px;
            padding: 3px 0 3px 80px;
        }
        .feature-item:nth-child(3) {
            margin-bottom: 10px;
            background: url(/assets/img/content_3.png) no-repeat left 6px;
            background-size: 70px;
            padding: 3px 0 3px 80px;
        }
        .feature-item h3 {
            color: #0066cc;
            margin-bottom: 10px;
            font-size: 20px;
        }
        .feature-item h3 span {
            color: #348656;
        }
        .feature-item p {
            line-height: 1.6;
            font-size: 14px;
        }
        .icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #e6f2ff;
            color: #0066cc;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
        }
        .icon i {
            font-size: 20px;
        }  
        .container-banner {
            width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        /* 标题栏样式 */
        .title-bar {
            text-align: right;
            margin-bottom: 20px;
            border-bottom:2px solid #348656;
            padding-bottom: 10px;
        }
        .title-bar a {
            color: #348656;
            text-decoration: none;
            font-size: 16px;
        }
        /* 内容区域样式 */
        .content {
            display: flex;
            gap: 30px;
        }
        /* 轮播图区域样式 */
        .carousel {
            flex: 0 0 554px;
            height: 368px;
            /*overflow: hidden;*/
            position: relative;
        }
        .carousel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .banner-h{
            width: 554px;
            height: 368px;
            border-radius: 5px;
        }
        .carousel-indicators {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }
        .carousel-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ccc;
            cursor: pointer;
        }
        .carousel-indicator.active {
            background-color: #f77f00;
        }
        /* 文本区域样式 */
        .text-area {
            flex: 1;
            line-height: 1.8;
        }
        .text-area p {
            margin-bottom: 20px;
        }
        .text-area a {
            color: #f77f00;
            text-decoration: none;
            font-size: 14px;
        }
        /* 轮播图容器样式 */
    .swiper-container {
      width: 554px;
      height: 368px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    /* 轮播项样式 */
    .swiper-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 轮播图文字内容 */
    .slide-content {
      position: absolute;
      color: white;
      text-align: center;
      padding: 0 20px;
      z-index: 10;
    }

    .slide-content h2 {
      font-size: 2.5rem;
      margin-bottom: 15px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.6s ease;
    }

    .slide-content p {
      font-size: 1.1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.6s ease 0.2s;
    }

    /* 当前活动的轮播项内容动画 */
    .swiper-slide-active .slide-content h2,
    .swiper-slide-active .slide-content p {
      transform: translateY(0);
      opacity: 1;
    }

    /* 遮罩层 */
    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    /* 分页器样式 */
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background: rgba(255, 255, 255, 0.7);
      opacity: 1;
      margin: 0 6px;
    }

    .swiper-pagination-bullet-active {
      background: white;
      width: 30px;
      border-radius: 6px;
      transition: width 0.3s ease;
    }

    /* 导航按钮样式 */
    .swiper-button-prev,
    .swiper-button-next {
      color: white;
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .swiper-button-prev:hover,
    .swiper-button-next:hover {
      background: rgba(0, 0, 0, 0.6);
      transform: scale(1.1);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 20px;
      font-weight: bold;
    }
    
    /* 自定义滚动条 */
    ::-webkit-scrollbar {
      width: 6px;
      height: 6px;
    }
    
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: #c1c1c1;
      border-radius: 10px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: #a1a1a1;
    }
    
    /* Swiper相关样式 */
    .swiper-container {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 80px;
    }
    
    .swiper-slide {
      transition: all 0.3s ease;
    }
    
    .swiper-slide:hover {
      transform: translateY(-10px);
    }
     .swiper-button-prev,
.swiper-button-next {
  display: none !important; /* 强制隐藏 */
}
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .title-bar {
            margin-bottom: 10px;
        }
        .title-bar h2 {
            font-size: 24px;
            color: #333;
        }
        .title-bar .line {
            height: 2px;
            background-color: #f79846;
            margin: 0 auto;
            width: 80%;
        }
        .right-link {
            text-align: right;
            margin: 10px 0;
        }
        .right-link a {
            color: #f79846;
            text-decoration: none;
            font-size: 14px;
        }
        .content {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }
        .column {
            width: 49%;
            border: 1px solid #eee;
            padding: 15px;
            background-color: #fff;
            border-radius: 5px;
        }
        .column-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
        .column-header h3 {
            font-size: 18px;
            color: #333;
        }
        .column-header a {
            color: #348656;
            text-decoration: none;
            font-size: 14px;
        }
        .article-item {
            display: flex;
            margin-bottom: 20px;
        }
        .article-img {
            width: 120px;
            height: 80px;
            margin-right: 15px;
            overflow: hidden;
            border-radius: 4px;
        }
        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .article-img img:hover {
            transform: scale(1.1);
        }
        .article-info {
            flex: 1;
        }
        .article-info h4 {
            font-size: 16px;
            color: #333;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .article-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .article-list {
            margin-top: 15px;
        }
        .article-list ul {
            list-style: none;
        }
        .article-list li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .article-list li a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .article-list li a:hover {
            color: #348656;
        }
        .article-list li .detail-link {
            color: #348656;
            font-size: 13px;
        }
        .footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #666;
}

/* 友情链接区域 */
.friend-link {
    /*text-align: center;*/
    margin-bottom: 10px;
}
.friend-link p:first-child {
    color: #999;
    margin-bottom: 5px;
}

/* 分割线 */
hr {
    border: none;
    border-top: 1px solid #eaeaea;
    margin: 15px 0;
}

/* 主体信息区域：Flex 布局实现多列对齐 */
.main-info {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Logo 与文字组 */
.logo-info {
    display: flex;
    align-items: center;
}
.logo-info img {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}
.logo-info .text-group h2 {
    color: #348656; /* 橙色标题 */
    font-size: 24px;
    margin-bottom: 8px;
}
.logo-info .text-group p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

/* 联系信息：图标与文字组 */
.contact-info .hotline,
.contact-info .address {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.contact-info img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.contact-info span:first-child {
    color: #333;
    font-weight: bold;
    margin-right: 5px;
}
.contact-info span:last-child {
    color: #666;
}

/* 二维码组 */
.qrcode-group {
    display: flex;
}
.qrcode-item {
    text-align: center;
    margin: 0 10px;
}
.qrcode-item img {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;
}
.qrcode-item p {
    font-size: 14px;
    color: #666;
}

/* 关键词与版权区域 */
.keywords-copyright p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    text-align: center;
}

/* 新闻列表容器 */
.news-list {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 8px 20px;
}

/* 列表样式 */
.news-list ul {
  list-style: none;
}

/* 列表项样式 */
.news-list li {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.news-list li:last-child {
  border-bottom: none;
}

/* 链接默认样式与 hover 样式 */
.news-list a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease; /* 颜色过渡动画，0.3秒平滑变化 */
  display: block; /* 让点击区域覆盖整个列表项 */
}

.news-list a:hover {
  color: #e64340; /* hover 时文字变为红色，可自行修改颜色值 */
}

    /* 轮播图容器样式 */
    .swiper-container {
      width: 100%;
      margin: 0 auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* 轮播项样式 */
    .swiper-slide {
      position: relative;
    
    }

   

    .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover; /* 保持图片比例并覆盖整个容器 */
    }

    /* 轮播图文字叠加层 */
    .slide-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: white;
      padding: 20px;
    }

    .slide-content h3 {
      margin-bottom: 10px;
      font-size: 1.5rem;
    }

    .slide-content p {
      font-size: 1rem;
      opacity: 0.9;
    }

    /* 导航按钮样式 */
    .swiper-button-prev, .swiper-button-next {
      color: white;
      background-color: rgba(0,0,0,0.3);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .swiper-button-prev:hover, .swiper-button-next:hover {
      background-color: rgba(0,0,0,0.6);
    }

    .swiper-button-prev:after, .swiper-button-next:after {
      font-size: 18px;
    }

    /* 分页器样式 */
    .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: rgba(255,255,255,0.6);
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background-color: white;
      width: 30px;
      border-radius: 6px;
      transition: width 0.3s ease;
    }
     .index-top .title {
    background: #f1f1f1;
  }
  .index-top .title .box {
    line-height: 40px;
    display: flex;
    justify-content: space-between;
  }
  .index-top .title .box .tit_com {
    float: left;
    color: #666666;
    font-size: 14px;
    font-weight: normal;
  }
  .index-top .title .box .sitemap {
    float: right;
    display: flex;
    align-items: center;
    position: relative;
  }
  .index-top .title .box .sitemap .icon {
    display: flex;
    align-items: center;
    margin: 0 5px 0 0;
  }
  .index-top .title .box .sitemap .xq {
    padding: 0 3px 0 0;
    color: #666666;
    position: relative;
  }
  .index-top .title .box .sitemap img {
    padding: 0 5px 0 10px;
  }
  .index-top .title .box .sitemap .last .xq {
    padding: 0 20px 0 10px;
    color: #dc2643;
    font-weight: bold;
  }
.tip-box{
    width: 200px;
    position: fixed;
    top: 50%;
    right: 10px;
    padding: 20px 20px 0 0;
    z-index: 9999999;
    height: 520px;
    margin-top: -270px;
    display: none;
}
.tip-box-list{
        width: 200px;
    height: 520px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.tip-box-list-top {
    width: 185px;
    height: 70px;
    text-align: left;
    padding-left: 15px;
    line-height: 70px;
    font-weight: bold;
    position: relative;
    z-index: 3;
    font-size: 18px;
    color: #fff;
}
.tip-box-list-top {
    content: '';
    width: 200px;
    height: 70px;
    z-index: 1;
    background-color: #093A95;
}
.tip-box-list-clear{
    width: 170px;
    padding: 13px 15px;
    height: 450px;
    position: relative;
    z-index: 3;
}
.tip-box-list-clear-list{
    width: 170px;
    height: 43px;
    float: left;
    border-radius: 5px;
    margin: 5px 0;
    overflow: hidden;
    text-align: center;
    background-color: #093A95;
}
.tip-box-list-clear-lists{
    width: 170px;
    height: 43px;
    float: left;
    border-radius: 5px;
    margin: 5px 0;
    overflow: hidden;
    text-align: center;
    background-color: #348656;
    
}
.tip-box-list-clear-lists-a{
    display: block;
    cursor: pointer;
    padding: 0 10px;
    width: 150px;
    line-height: 43px;
    font-size: 16px;
    color: #165da7;
    overflow: hidden;
}
.tip-box-list-clear-list-a{
    display: block;
    cursor: pointer;
    padding: 0 10px;
    width: 150px;
    line-height: 43px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
}
.boxshadow{
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.text-areas {
    flex: 1;
    line-height: 1.8;
}
.text-areas p {
    margin-bottom: 20px;
    text-indent: 2em;
}
.text-areas a {
    color: #f77f00;
    text-decoration: none;
    font-size: 14px;
}
 @media (min-width: 1024px) {
    .container {
         max-width: 100% !important; 
    }
    
}
.show_banner {
  height: 260px;
  background: url(/assets/img/about.jpg) no-repeat center top;
  background-size: 100% 260px;
}
