.noticeText{
  position: absolute;
  font-size: 15px;
  left: 0;
  top: 50px;
  z-index: 1000;
  background: #fff;
  letter-spacing: 1px;
  color: #67ab54;
}
@media (min-width: 1600px) and (max-width: 1920px) {
    .logo2{
      width: 200px;
      position:absolute;
      top: 7px;
      left: 14%;
      text-align: center;
    }
    .logo2 h2{
      letter-spacing:6px;
      display: inline-block;
      font-size: 18px;
      margin-left: 0px;
     font-weight: 200;
    }
    .logo2 h6{
        font-size: 10px;
      font-weight: 200;
      letter-spacing:1px;
    }
    .logo2 span{
      position: relative;
      display: block;
      top: -35px;
      left: -0px;
      height: 30px;
      border-left:1px solid #000 ;
    }
 }
 @media(max-width: 1599px) {

    .logo2{
      display: none;
    }
    .logo2 h2{
      letter-spacing:5px;
    }
 }
 .accordion-container {
            width: 100%;
            height: 420px; /* PC端统一优化高度 */
            max-height: 80vh;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin-top: -20px;
            max-width: 88%;
            
        }
        #bg, #fg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .bgImg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease;
        }
        .bgImg.active {
            opacity: 1;
        }
        .box {
            position: absolute;
            top: 0;
            height: 100%;
            border-left: 1px solid rgba(255,255,255,0.2);
            background: rgba(0,0,0,0.2);
            backdrop-filter: blur(2px);
            color: white;
            cursor: pointer;
            transition: left 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
            overflow: hidden;
        }
        .box-content {
            padding: 25px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .box-title {
            font-size: clamp(18px, 3vw, 28px);
            font-weight: bold;
            text-shadow: 0 1px 4px rgba(0,0,0,0.6);
        }
        .box-desc {
            display: none;
        }

        /* ============== 移动端：上2下3 网格布局 ============== */
        @media (max-width:768px) {
            .accordion-container {
                height: 360px !important;
                border-radius: 10px;
            }
            /* 图片铺满修复：无黑边 + 高度100%填满 */
            .bgImg {
                background-size: cover !important;
                background-position: center !important;
                background-repeat: no-repeat !important;
                background-color: transparent !important;
            }
            #fg {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                grid-template-rows: 1fr 1fr 1fr !important;
                position: relative !important;
            }
            .box {
                all: unset !important;
                position: relative !important;
                width: 100% !important;
                height: 100% !important;
                background: transparent !important;
                backdrop-filter: none !important;
                transition: none !important;
                border: 1px solid rgba(255, 255, 255, 0.25) !important;
            }
            .box-content {
                padding: 15px !important;
                justify-content: flex-start !important;
                align-items: center !important;
            }
            .box-title {
                font-size: 15px !important;
                text-align: center !important;
                color: #fff !important;
                text-shadow: 0 1px 3px rgba(0,0,0,0.8) !important;
            }
        }
/*@keyframes scroll {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}*/
.marquee-wrap {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: absolute;
    top: 50px;
    background: #fff;
    color: #000;
    font-size: 15px;
}

/* 滚动动画 */
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.marquee-content h1{
    display: inline-block;
    color: #1d9526;
    font-size: 15px;
}
.marquee-content strong{
    color: red;
}
        /* 全屏外层 */
        .core-driver {
            width: 100%;
            min-height: 40vh;
            margin: -28px 0 50px 0;
            background: #f6f8fb;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
                    background: #fff;
        }

        .core-title {
            font-size: 42px;
            color: #1a237e;
            margin-bottom: 60px;
            text-align: center;
            font-weight: 700;
            letter-spacing: 3px;
            position: relative;
        }
        .core-title::after {
            content: "";
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2980b9);
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* 自适应网格 */
        .core-container {
            max-width: 88%;
            width: 100%;
            display: -ms-grid;
            display: grid;
            -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        /* 卡片主体 */
        .core-card {
            background: #ffffff;
            padding: 50px 35px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            -webkit-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            -o-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            -moz-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
               transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            -webkit-box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
               -moz-box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
                    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
            border: 1px solid rgba(26, 35, 126, 0.05);
        }

        /* 动态瀑布渐变背景 */
        .core-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(45deg, rgba(52,152,219,0), rgba(41,128,185,0));
            background: -moz-linear-gradient(45deg, rgba(52,152,219,0), rgba(41,128,185,0));
            background: -o-linear-gradient(45deg, rgba(52,152,219,0), rgba(41,128,185,0));
            background: linear-gradient(45deg, rgba(52,152,219,0), rgba(41,128,185,0));
            z-index: 0;
            opacity: 0;
            -webkit-transition: all 0.6s ease;
            -o-transition: all 0.6s ease;
            -moz-transition: all 0.6s ease;
               transition: all 0.6s ease;
        }

        /* 悬停：瀑布流动态渐变 */
        .core-card:hover::before {
            opacity: 1;
            background: -webkit-linear-gradient(135deg, rgba(52,152,219,0.15), rgba(41,128,185,0.25), rgba(52,152,219,0.15));
            background: -moz-linear-gradient(135deg, rgba(52,152,219,0.15), rgba(41,128,185,0.25), rgba(52,152,219,0.15));
            background: -o-linear-gradient(135deg, rgba(52,152,219,0.15), rgba(41,128,185,0.25), rgba(52,152,219,0.15));
            background: linear-gradient(135deg, rgba(52,152,219,0.15), rgba(41,128,185,0.25), rgba(52,152,219,0.15));
            background-size: 200% 200%;
            -webkit-animation: waterfallGradient 3s linear infinite;
               -moz-animation: waterfallGradient 3s linear infinite;
                 -o-animation: waterfallGradient 3s linear infinite;
                    animation: waterfallGradient 3s linear infinite;
        }

        /* 瀑布渐变动画 */
        @-webkit-keyframes waterfallGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @-moz-keyframes waterfallGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes waterfallGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* 卡片悬浮3D效果 */
        .core-card:hover {
            -webkit-transform: translateY(-15px) scale(1.03);
               -moz-transform: translateY(-15px) scale(1.03);
                -ms-transform: translateY(-15px) scale(1.03);
                 -o-transform: translateY(-15px) scale(1.03);
                    transform: translateY(-15px) scale(1.03);
            -webkit-box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
               -moz-box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
                    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
            border-color: #3498db;
        }

        /* 默认内容 */
        .card-default {
            position: relative;
            z-index: 1;
            -webkit-transition: all 0.4s ease;
            -o-transition: all 0.4s ease;
            -moz-transition: all 0.4s ease;
               transition: all 0.4s ease;
        }

        /* 悬停内容层 */
        .card-hover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            padding: 30px;
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            -o-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            -moz-transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
               transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        /* 图片：从上往下炫酷滑入 */
        .hover-img {
            width: 200px;
            height: 200px;
            -o-object-fit: contain;
               object-fit: contain;
            -webkit-transform: translateY(-80px) scale(0.5);
               -moz-transform: translateY(-80px) scale(0.5);
                -ms-transform: translateY(-80px) scale(0.5);
                 -o-transform: translateY(-80px) scale(0.5);
                    transform: translateY(-80px) scale(0.5);
            opacity: 0;
            -webkit-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
            -o-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
            -moz-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
               transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
        }

        /* 文字：从下往上炫酷滑入 */
        .hover-text {
            font-size: 18px;
            color: #1a237e;
            font-weight: 600;
            line-height: 1.7;
            text-align: center;
            margin-top: 25px;
            -webkit-transform: translateY(80px) scale(0.5);
               -moz-transform: translateY(80px) scale(0.5);
                -ms-transform: translateY(80px) scale(0.5);
                 -o-transform: translateY(80px) scale(0.5);
                    transform: translateY(80px) scale(0.5);
            opacity: 0;
            -webkit-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
            -o-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
            -moz-transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
               transition: all 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
        }

        /* 核心动画触发 */
        .core-card:hover .card-default {
            opacity: 0;
            visibility: hidden;
            -webkit-transform: scale(0.9);
               -moz-transform: scale(0.9);
                -ms-transform: scale(0.9);
                 -o-transform: scale(0.9);
                    transform: scale(0.9);
        }
        .core-card:hover .card-hover {
            opacity: 1;
            visibility: visible;
        }
        .core-card:hover .hover-img {
            -webkit-transform: translateY(0) scale(1);
               -moz-transform: translateY(0) scale(1);
                -ms-transform: translateY(0) scale(1);
                 -o-transform: translateY(0) scale(1);
                    transform: translateY(0) scale(1);
            opacity: 1;
        }
        .core-card:hover .hover-text {
            -webkit-transform: translateY(0) scale(1);
               -moz-transform: translateY(0) scale(1);
                -ms-transform: translateY(0) scale(1);
                 -o-transform: translateY(0) scale(1);
                    transform: translateY(0) scale(1);
            opacity: 1;
        }

        /* 图标渐变 */
        .card-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background-image: -webkit-linear-gradient(135deg, #3498db, #2980b9, #1a237e);
            background-image: -moz-linear-gradient(135deg, #3498db, #2980b9, #1a237e);
            background-image: -o-linear-gradient(135deg, #3498db, #2980b9, #1a237e);
            background-image: linear-gradient(135deg, #3498db, #2980b9, #1a237e);
            background-size: 200% 200%;
            -webkit-animation: iconGradient 3s linear infinite;
               -moz-animation: iconGradient 3s linear infinite;
                 -o-animation: iconGradient 3s linear infinite;
                    animation: iconGradient 3s linear infinite;
            border-radius: 50%;
            display: -webkit-box;
            display: -webkit-flex;
            display: -moz-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
               -moz-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center;
            color: #fff;
            font-size: 32px;
            font-weight: bold;
        }

        @-webkit-keyframes iconGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @-moz-keyframes iconGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes iconGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .card-title {
            font-size: 24px;
            color: #1a237e;
            margin-bottom: 20px;
            font-weight: 600;
            text-align: center;
        }
        .card-desc {
            font-size: 16px;
            color: #546e7a;
            line-height: 1.9;
            text-align: center;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .core-title { font-size: 32px; }
            .core-card { padding: 40px 25px; }
            .card-icon { width: 70px; height: 70px; font-size: 28px; }
        }



















