/* ====== 关于恩贝斯板块样式 ====== */
.about-enbuss {
    padding: 50px 20px;

    background: var(--bg-white);
    overflow: hidden;
}

/* 内容容器，最大宽度限制和弹性布局 */
.about-box {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    /* 初始状态：透明且向下偏移，用于滚动动画 */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    padding: 0 var(--spacing-sm);
}

/* 滚动到可视区域时的状态 */
.about-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* ====== 左侧内容区域 ====== */
.about-left {
    flex: 1;
    position: relative;
}

/* 标题样式 */
.about-title {
    margin-bottom: 40px;
    position: relative;
}

/* 英文标题样式：半透明大字效果 */
.about-title .en-title {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.2);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

/* 中文标题样式 */
.about-title h3 {
    font-size: 32px;
    color: #333;
    margin-top: 15px;
    font-weight: 500;
}

/* 内容文字样式 */
.about-content {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--font-sm);
}

.about-content p {
    margin-bottom: var(--spacing-sm);
    text-align: justify;
}

/* ====== 地图上的雷达点动画 ====== */
.radar-point {
    position: absolute;
    right: 18%;
    top: 38%;
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
}

/* 雷达扩散动画效果 */
.radar-point::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.6);
    border-radius: 50%;
    animation: radar 2s infinite;
}

@keyframes radar {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* 世界地图区域 */
.about-left .world-map {
    margin-top: var(--spacing-lg);
    position: relative;
}

.about-left .world-map img {
    width: 100%;
    height: auto;
}

/* 了解更多按钮样式 */
.world-map .learn-more {
    display: flex;
    align-items: center;
}

/* 箭头动画效果 */
.world-map .learn-more::after {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../images/arrow-right.png') no-repeat center;
    background-size: contain;
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover::after {
    transform: translateX(5px);
}

/* ====== 右侧内容区域 ====== */
.about-right {
    flex: 1;
    padding-top: 90px;
}

/* 右侧图片容器 */
.right-image {
    margin-bottom: var(--spacing-xl);
    position: relative;
}

/* 图片悬停效果 */
.right-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.right-image:hover img {
    transform: scale(1.05);
}

/* ====== 数据统计区域 ====== */
.data-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

/* 单个统计项样式 */
.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: left;
    position: relative;
}

.stat-item .line-star {
    width: 100%;
    height: 2px;
    background-color: #aabecd;
    display: inline-block;
}

.stat-item:nth-child(2),
.stat-item:nth-child(4) {
    padding-top: 140px;
}

/* 统计数字包装器 */
.number-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

/* 数字样式 */
.stat-item .number {
    font-size: 42px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Arial', sans-serif;
    padding-bottom: var(--spacing-sm);
}

/* 加号样式 */
.stat-item .right-number {
    display: flex;
    flex-direction: column;
    padding-left: var(--spacing-xs);
    align-items: center;
}

.stat-item .plus {
    font-size: var(--font-sm);
    color: var(--primary-color);
    margin-left: 2px;
    font-weight: bold;
}

/* 描述文字样式 */
.stat-item p {
    margin: 5px 0;
    color: var(--text-secondary);
    font-size: var(--font-sm);
}

/* 单位文字样式 */
.stat-item .unit {
    color: var(--text-light);
    font-size: var(--font-xs);
}

/* 统计项悬停效果 */
.stat-item:hover {
    border-bottom-color: var(--primary-color);
}

.stat-item:hover .number,
.stat-item:hover .plus {
    color: var(--primary-color);
}

/* ====== 关于恩贝斯板块样式End ====== */

/* ====== 产品展示板块样式 ====== */
.produce-show {
    width: 100%;
    background: #fff;
    position: relative;

    padding: 60px 0% 0 0;
    overflow: hidden;
}

/* 标题样式 */
.produce-title {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.produce-title .en-title {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.2);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.produce-title h3 {
    font-size: 32px;
    color: #333;
    margin: 15px 0;
    font-weight: 500;
}

.produce-title .subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    max-width: 600px;
}

.produce-title.show {
    opacity: 1;
    transform: translateX(0);
}

/* 产品容器 */
.produce-container {
    width: 100%;
    display: flex;
    justify-content: stretch;
    padding: 0;
    position: relative;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.produce-container.show {
    opacity: 1;
    transform: translateX(0);
}

/* 产品项样式 */
.produce-item {
    flex: 1;
    height: 700px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 产品项内容样式 */
.produce-front {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 产品图片容器 */
.produce-front .icon-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.produce-front .icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 产品标题和图标 */
.produce-front .icon-circle {
    position: absolute;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);

    z-index: 2;
    transition: all 0.6s ease;
}

.produce-front .icon-circle img {
    width: 100%;
    height: 100%;
}

.produce-front h4 {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(25% + 180px);
    text-align: center;
    color: #fff;
    font-size: 28px;
    margin: 0;
    z-index: 99;
    transition: all 0.6s ease;
}

/* 了解更多按钮 */
.produce-front .prodece-more {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px 0;
    background: url(../images/flashline2.png) no-repeat top center;
    transition: all 0.3s ease;
    opacity: 1;
}

/* 悬停效果 */
.produce-item:hover .prodece-more {
    opacity: 0;
    transform: translateY(20px);
}

/* 产品详细内容 */
.produce-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 0;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.6s ease;
    z-index: 3;
    display: flex;
    flex-direction: column;
}

.produce-info .info-content {
    flex: 1;
    padding: 0px 60px 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.produce-info h4 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: left;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.produce-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.3s;
}

/* 底部链接区域 */
.produce-info .bottom-area {
    background: url(../images/flashline2.png) no-repeat top center;
    padding: 30px 60px;
    background-size: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.4s;
}

/* 产品链接 */
.produce-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.produce-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-right: 30px;
}

.produce-links a:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.5;
    margin-right: 10px;
}

/* 了解更多按钮 */
.produce-info .learn-more {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 30px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.produce-info .learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #2d65bc;
    transition: all 0.3s ease;
    z-index: -1;
}

.produce-info .learn-more:hover {
    border-color: #2d65bc;
}

.produce-info .learn-more:hover::before {
    width: 100%;
}

/* 悬停时显示新的了解更多按钮 */
.produce-item:hover .produce-info .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* 悬停效果 */
.produce-item:hover {
    flex: 1.5;
}

.produce-item:hover .produce-info {
    opacity: 1;
    transform: translateX(0);
}

.produce-item:hover .produce-info h4,
.produce-item:hover .produce-info p,
.produce-item:hover .produce-info .bottom-area {
    opacity: 1;
    transform: translateY(0);
}

.produce-item:hover .icon-circle {
    opacity: 0;
    transform: translate(-50%, -20px);
}

.produce-item:hover h4 {
    opacity: 0;
    transform: translateY(-20px);
}

/* 非悬停项的效果 */
.produce-container:hover .produce-item:not(:hover) {
    flex: 0.8;
}

/* 遮罩层 */
.produce-front::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: all 0.3s ease;
}

.produce-item:hover .produce-front::after {
    opacity: 0;
}

/* ====== 新闻中心板块样式 ====== */
.news-center {
    width: 100%;
    padding: 50px 20px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.news-box {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    padding: 20px;
    height: 745px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.news-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* 左侧大图 */
.news-item:first-child {
    width: 32%;
    margin-right: 2%;
    height: 100%;
    border-radius: 15px;
    margin-bottom: 2%;
}

/* 右侧区域 */
.right-content {
    width: calc(68% - 20px);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* 右侧上方横图 */
.right-content .news-top {
    width: 100%;
}

/* 右侧下方容器 */
.right-bottom-wrapper {
    display: flex;
    gap: 20px;
    height: calc(50% - 30px);
}

.right-bottom-wrapper .news-item {
    width: 50%;
    height: 100%;
}

/* 新闻项样式 */
.news-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 4px;
}

/* 图片容器 */
.news-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 信息区域 */
.news-info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
}

.news-info h3 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;

}

.news-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.learn-more-wrapper {
    margin-top: auto;
}

.news-info .learn-more {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* 遮罩层 */
.news-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* 悬停效果 */
.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-info .learn-more:hover {
    background: #2d65bc;
    border-color: #2d65bc;
}

/* ====== 科技资讯板块样式 ====== */
.tech-news {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* 标题样式 */
.tech-title {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.tech-title.show {
    opacity: 1;
    transform: translateX(0);
}

/* 轮播图区域 */
/* 科技资讯轮播图容器样式调整 */
.tech-banner-swiper {
    position: relative;
    overflow: visible !important;
}

.tech-slide {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-swiper {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    margin-bottom: 80px;
    cursor: pointer;
}

.tech-swiper.show {
    opacity: 1;
    transform: translateY(0);
}

/* 科技资讯轮播图样式 */
.tech-banner-swiper {
    width: 100%;
    height: 385px;
    border-radius: 10px;
    overflow: hidden;
}

.tech-slide {
    display: flex;
    height: 100%;
}

.tech-slide-image {
    width: 554px;
    height: 100%;
    overflow: hidden;
}

.tech-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tech-slide:hover .tech-slide-image img {
    transform: scale(1.05);
}

/* 轮播图信息区域 */
.slide-info {
    width: calc(100% - 554px);
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.slide-info .date {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
}

.slide-info h3 {
    font-size: 28px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 500;
    line-height: 1.4;
}

.slide-info p {
    font-size: 16px;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    text-overflow: ellipsis;
    line-height: 30px


}

.slide-info .more-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.slide-info .more-link:hover {
    color: #2d65bc;
    transform: translateX(10px);
}

/* 新闻列表区域 */
.tech-list {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

/* 标题样式 */
.tech-title {
    margin-bottom: 40px;
    position: relative;
}

/* 英文标题样式：半透明大字效果 */
.tech-title .en-title {
    font-size: 32px;
    color: rgba(0, 0, 0, 0.2);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
}

.tech-title h3 {
    font-size: 32px;
    color: #333;
    margin: 15px 0;
    font-weight: 500;
}

.tech-list.show {
    opacity: 1;
    transform: translateX(0);
}

.tech-list-inner {
    display: grid;
    grid-template-columns: repeat(3, 420px);
    gap: 30px;
    justify-content: space-between;
}

.tech-item {
    height: 580px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    cursor: pointer;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.tech-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tech-item-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.tech-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover .tech-item-image img {
    transform: scale(1.05);
}

.tech-item-info {
    padding: 30px;
    flex: 1;
}

.tech-item-info .date {
    font-size: 16px;
    color: #999;
    margin-bottom: 15px;
}

.tech-item-info h4 {
    font-size: 20px;
    color: #333;
    margin: 0 0 20px 0;
    font-weight: 500;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.tech-item-info p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tech-item .more-link {
    display: block;
    text-align: center;
    padding: 20px 0;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    border-top: 1px solid #eee;
    transition: all 0.3s ease;
    margin-top: auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.tech-item .more-link:hover {
    color: #2d65bc;
    background: rgba(20, 101, 231, 0.05);
}

/* ====== 应用案例板块样式 ====== */
.application-case {
    width: 100%;
    height: calc(100vh - 100px);
    position: relative;
    background: #000;
    overflow: hidden;
}

/* 标题样式 */
.case-title {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.title-box {
    position: absolute;
    left: 18%;
    top: 25%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 380px;
    height: 363px;
    border-radius: 4px;
}

.title-list {
    height: 100%;
    width: 100%;
    padding: 20px 20px;
    border: 1px solid #7d7d7d;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.case-title h2 {
    font-size: 32px;
    color: #fff;
    margin: 0 0 20px 0;
    font-weight: 500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;

}

.ptitle-main {
    text-align: center;
    margin-top: 30px;
}

.case-title h3 {
    font-size: 24px;
    color: #fff;
    margin: 0 0 15px 0;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    text-align: center;
}

.case-title p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
    line-height: 1.8;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.case-title .case-more {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 4px;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.case-title .case-more:hover {
    background-color: #2d65bc;
    border-color: #fff;
}

/* 轮播图容器 */
.case-swiper {
    width: 100%;
    height: 100%;
}

/* 轮播图主体样式 */
.case-banner-swiper {
    width: 100%;
    height: 100%;
}

.case-slide {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 图片区域 */
.case-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.case-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 缩略图区域 */
.case-trubs-box {
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0px;
    bottom: 0px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
}

.case-thumbs {
    position: absolute;
    left: 18%;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.thumb {
    width: 160px;
    height: 90px;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.thumb::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.thumb.active {
    opacity: 1;
    border: 2px solid #fff;
}

.thumb.active::after {
    background: rgba(0, 0, 0, 0);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 遮罩层 */
.case-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 30%);
    z-index: 1;
}