                   /* 主容器样式 */
        .main-container {
            width: 1528px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            gap: 5px; /* 卡片间距 */
        }
        
        /* 卡片共用样式 */
        .cardin {
            height: 300px;
            width: 507px;
            background: #FFFFFF;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-radius: 8px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            
        }
        
        /* 卡片悬停效果 - 背景图片和缩放 */
        .cardin:hover {
            transform: translateY(-5px) ;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }
        
        /* 卡片背景设置 */
        .cardin::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/img/cpbj2.jpg   '); /* 所有卡片使用相同背景 */
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            z-index: 0;
        }
        
        .cardin:hover::after {
            opacity: 1;
        }
                /* 标题悬停效果 */
        .cardin:hover .cardin-title {
            color: #006FFF;
        }

                .cardin:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .cardin:nth-child(2) {
            animation-delay: 0.4s;
        }
        
        .cardin:nth-child(3) {
            animation-delay: 0.6s;
        }
        
        /* 卡片内容容器 - 确保内容在背景之上 */
        .cardin-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* 图片和标题容器 */
        .cardin-header {
            display: flex;
            align-items: flex-start;
            margin-left: 28px;
            margin-top: 10px;
        }
        
        /* 图片样式 */
        .cardin-img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            border-radius: 4px;
            transition: transform 0.3s ease;
            margin-right: 15px; /* 图片与标题间距 */
        }
        
        .cardin:hover .cardin-img {
            transform: scale(1.1);
        }
        
        /* 标题样式 */
        .cardin-title {
            font-size: 27px;
            color: #3A3D3F;
            line-height: 30px;
            text-align: left;
            transition: text-shadow 0.3s ease;
            margin-top: 15px;
        }
        
        /* 描述文本样式 */
        .cardin-desc {
            font-size: 19px;
            color: #707070;
            line-height: 28px;
            text-align: left;
            margin-top: 0px;
            margin-left: 28px;
            flex-grow: 1;
            letter-spacing: 2px;
        }
        
        /* 按钮容器 */
        .cardin-button-container {
            margin-left: 28px;
            margin-bottom: 20px;
        }
        
        /* 按钮样式 */
        .cardin-button {
            width: 160px;
            height: 44px;
            background: #DDECFF;
            border-radius: 4px;
            font-size: 18px;
            color: #006FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border: none;
            cursor: pointer;
        }
        
        .cardin:hover .cardin-button {
            background: #006FFF;
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 111, 255, 0.3);
        }
        
        /* 响应式设计 - 当屏幕小于1600px时调整 */
        @media (max-width: 1600px) {
            .main-container {
                width: 90%;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .cardin {
                width: calc(33.333% - 10px);
            }
        }
        
        /* 平板设备适配 */
        @media (max-width: 1024px) {
            .cardin {
                width: calc(50% - 10px);
            }
        }
        
        /* 移动设备适配 */
        @media (max-width: 768px) {
            .cardin {
                width: 100%;
                max-width: 507px;
            }
            
            .cardin-header, .cardin-desc, .cardin-button-container {
                margin-left: 20px;
            }
        }






        /* 解决方案 */
        .carousel-container {
            width: 1568px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        carousel-dzy{
            width: 100%;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.16, 0.77, 0.58, 0.97);
            will-change: transform;
        }
        
        .carousel-item {
            flex: 0 0 370px;
            height: 480px;
            background: #FFFFFF;
            border-radius: 8px;
            margin: 0 11px;
                    /*
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);*/
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item:hover {
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }
        
        .carousel-item:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/img/lds.jpg') center/cover no-repeat;
            opacity: 1;
            z-index: 1;
        }
        
        .carousel-title {
            font-size: 30px;
            color: #3A3D3F;
            line-height: 30px;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
            position: relative;
            z-index: 2;
            margin-top: 20px;
        }
        
        .carousel-image {
            width: 250px;
            height: 250px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 25px;
            transition: all 0.6s cubic-bezier(0.16, 0.77, 0.58, 0.97);
            position: relative;
            z-index: 2;
        }
        
        .carousel-item:hover .carousel-image {
            transform: scale(1.05) translateY(-5px);
          
        }
        
        .carousel-detail {
            width: 160px;
            height: 44px;
            background: #DDECFF;
            border-radius: 4px;
            color: #006FFF;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            z-index: 2;
        }
        
        .carousel-item:hover .carousel-detail {
            background: #006FFF;
            color: #FFFFFF;
            transform: translateY(-3px);
        }
        
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
            z-index: 10;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            outline: none;
            opacity: 0.9;
        }
        
        .carousel-btn:hover {
            background: #f0f4f8;
            transform: translateY(-50%) scale(1.08);
            opacity: 1;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        
        .carousel-btn:active {
            transform: translateY(-50%) scale(0.96);
        }
        
        .carousel-btn.prev {
            left: 20px;
        }
        
        .carousel-btn.next {
            right: 20px;
        }
        
        .carousel-btn svg {
            width: 28px;
            height: 28px;
            fill: #3A3D3F;
            transition: fill 0.3s ease;
        }
        
        .carousel-btn:hover svg {
            fill: #006FFF;
        }
        
        @media (max-width: 1600px) {
            .carousel-container {
                width: 90%;
            }
            
            .carousel-btn.prev {
                left: 15px;
            }
            
            .carousel-btn.next {
                right: 15px;
            }
        }


        /*图片*/
         .heroin-container {
            position: relative;
            width: 100%;
            height: 392px;
            overflow: hidden;
            background: #f0f0f0;
        }
        
        .heroin-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transform: scale(1.05);
            transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .heroin-image.animated {
            opacity: 1;
            transform: scale(1);
        }
        
        .heroin-content {
            position: absolute;
            top: 50%;
            left: 18%;
            transform: translateY(calc(-50% + 20px));
            text-align: center;
            z-index: 10;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .heroin-content.animated {
            transform: translateY(-50%);
        }
        
        .title-line1, .title-line2, .title-line3 {
            opacity: 0;
            transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), 
                        transform 2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .title-line1 {
            font-size: 48px;
            color: #001F46;
            line-height: 1.2;
            margin-bottom: 30px;
            font-weight: bold;
            transform: translateX(-60px);
            transition-delay: 0.5s;
        }
        
        .title-line2 {
            font-size: 30px;
            color: #3A3D3F;
            line-height: 1.2;
            margin-bottom: 40px;
            transform: translateX(-60px);
            transition-delay: 0.8s;
        }
        
        .title-line3 {
            color: #627590;
            font-size: 36px;
            font-weight: 700;
            transform: translateX(-60px);
            transition-delay: 1.1s;
        }
        
        .title-line1.animated, 
        .title-line2.animated, 
        .title-line3.animated {
            opacity: 1;
            transform: translateX(0);
        }
        
  
        @media (max-width: 1200px) {
            .title-line1 { font-size: 36px; }
            .title-line2 { font-size: 24px; }
            .title-line3 { font-size: 28px; }
        }
        
        @media (max-width: 768px) {
            .heroin-content { right: 5%; left: 5%; }
            .title-line1 { font-size: 28px; }
            .title-line2 { font-size: 18px; }
            .title-line3 { font-size: 20px; }
        }
        
        @media (max-width: 480px) {
            .heroin-content {
                right: 20px;
                left: 20px;
                text-align: center;
            }
        }


        /*新闻*/
                .corporate-news-container-wrapper {
            margin: 0 auto;
            max-width: 1562px;
            width: 100%;
            padding: 20px;
        }

        .corporate-news-primary-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            width: 100%;
        }

        .corporate-news-section-main {
            width: 100%;
            max-width: 700px;
            background: #FFFFFF;
            border-radius: 8px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0, 111, 255, 0.08);
            transition: transform 0.35s ease-out, box-shadow 0.3s ease;
        }

        .corporate-news-section-main:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 111, 255, 0.12);
        }

        .corporate-news-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .corporate-news-header-title {
            font-size: 22px;
            color: #006FFF;
            line-height: 1.2;
            font-weight: 600;
            text-align: left;
            position: relative;
            padding-left: 0px;
            animation: fadeInDown 0.6s both;
        }

        .corporate-news-header-more {
            font-size: 14px;
            color: #6A6A6A;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-right: 20px;
        }

        .corporate-news-header-more:hover {
            color: #0047ab;
            transform: translateX(3px);
        }

        .corporate-news-article-item {
            display: flex;
            margin-bottom: 20px;
            animation: fadeInUp 0.6s 0.2s both;
            cursor: pointer;
        }

        .corporate-news-media-container {
            flex: 0 0 164px;
            height: 108px;
            margin-right: 16px;
            overflow: hidden;
            border-radius: 4px;
            position: relative;
        }

        .corporate-news-media-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .corporate-news-article-item:hover .corporate-news-media-image {
            transform: scale(1.05);
        }

        .corporate-news-content-wrapper {
            flex: 1;
        }

        .corporate-news-article-title {
            font-size: 18px;
            color: #1A1A1A;
            line-height: 1.4;
            margin-bottom: 10px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .corporate-news-article-item:hover .corporate-news-article-title {
            color: #006FFF;
        }

        .corporate-news-article-excerpt {
            font-size: 14px;
            color: #878787;
            line-height: 1.6;
            text-align: left;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .corporate-news-divider-line {
            width: 100%;
            height: 1px;
            background: #DEEAFC;
            margin: 24px 0;
            position: relative;
            animation: expandWidth 0.8s 0.4s both;
        }

        .corporate-news-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .corporate-news-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            animation: fadeInRight 0.5s both;
            cursor: pointer;
        }

        .corporate-news-feature-item:last-child {
            margin-bottom: 0;
        }

        .corporate-news-feature-item:nth-child(1) {
            animation-delay: 0.5s;
        }

        .corporate-news-feature-item:nth-child(2) {
            animation-delay: 0.6s;
        }

        .corporate-news-feature-item:nth-child(3) {
            animation-delay: 0.7s;
        }

        .corporate-news-bullet-point {
            width: 8px;
            height: 8px;
            background: #006FFF;
            border-radius: 2px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .corporate-news-feature-text {
            font-size: 16px;
            color: #1A1A1A;
            line-height: 1.5;
            text-align: left;
            transition: all 0.3s ease;
        }

        .corporate-news-feature-item:hover .corporate-news-feature-text {
            color: #006FFF;
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes expandWidth {
            from {
                width: 0;
                opacity: 0;
            }
            to {
                width: 100%;
                opacity: 1;
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .corporate-news-container-wrapper {
                padding: 15px;
            }
            
            .corporate-news-section-main {
                padding: 20px;
            }
            
            .corporate-news-article-item {
                flex-direction: column;
            }
            
            .corporate-news-media-container {
                flex: 0 0 auto;
                width: 100%;
                height: 180px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .corporate-news-header-title {
                font-size: 20px;
                margin-bottom: 0;
            }
            
            .corporate-news-header-more {
                font-size: 13px;
            }
            
            .corporate-news-article-title {
                font-size: 17px;
            }
            
            .corporate-news-feature-text {
                font-size: 15px;
            }
            
            .corporate-news-divider-line {
                margin: 20px 0;
            }
        }

        @media (max-width: 480px) {
            .corporate-news-section-main {
                padding: 16px;
            }
            
            .corporate-news-header-title {
                font-size: 18px;
            }
            
            .corporate-news-header-more {
                font-size: 12px;
                margin-right: 10px;
            }
            
            .corporate-news-article-title {
                font-size: 16px;
            }
            
            .corporate-news-article-excerpt {
                font-size: 13px;
                -webkit-line-clamp: 2;
            }
            
            .corporate-news-feature-text {
                font-size: 14px;
            }
            
            .corporate-news-media-container {
                height: 150px;
            }
        }
