﻿/* ========================================
   全球创新工程板块样式 - Global Innovation
   字体：思源黑体 (Source Han Sans / Noto Sans SC)
   ======================================== */


/* 全球创新工程板块主容器 */
.gicx-section {
    font-family: 'Noto Sans SC', 'Source Han Sans CN';
    padding: 50px 0;
    background: #fff;
}

/* 卡片容器 */
.gicx-cards-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 卡片链接容器 */
.gicx-card-link {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

    .gicx-card-link:hover {
        text-decoration: none;
    }

    /* 移除卡片内所有元素的下划线 */
    .gicx-card-link .gicx-card-tit,
    .gicx-card-link .gicx-card-txt,
    .gicx-card-link .gicx-card-more,
    .gicx-card-link .gicx-highlight,
    .gicx-card-link h3,
    .gicx-card-link p,
    .gicx-card-link span {
        text-decoration: none !important;
    }

    .gicx-card-link:hover .gicx-card-tit,
    .gicx-card-link:hover .gicx-card-txt,
    .gicx-card-link:hover .gicx-card-more,
    .gicx-card-link:hover .gicx-highlight,
    .gicx-card-link:hover h3,
    .gicx-card-link:hover p,
    .gicx-card-link:hover span {
        text-decoration: none !important;
    }

/* 单个卡片 */
.gicx-card {
    display: flex;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
    border-radius: 5px;
}

    .gicx-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    /* 反向排列（图片在右） */
    .gicx-card.gicx-reverse {
        flex-direction: row-reverse !important;
    }

/* 图片区域 */
.gicx-card-img {
    flex: 0 0 515px;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

    .gicx-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

.gicx-card:hover .gicx-card-img img {
    transform: scale(1.05);
}

/* 数据徽章（47%） */
.gicx-data-badge {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 28px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 内容区域 */
.gicx-card-body {
    flex: 0 0 55%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 内容区域 - 居右 */
.gicx-card-body.right {
    align-items: flex-end;
    text-align: right;
}

/* 内容区域 - 居左 */
.gicx-card-body.left {
    align-items: flex-start;
    text-align: left;
}

/* 卡片标题 */
    .gicx-card-tit {
        font-size: 28px;
        font-weight: 700 !important;
        color: #333;
        line-height: 0.8;
        text-align: inherit;
    }

    .gicx-card-tit .gicx-highlight {
        color: #ff6e00;
        font-weight: 700;
    }

/* 卡片描述 */
.gicx-card-txt {
    font-size: 22px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    text-align: inherit;
}

/* 左引号图片 */
.gicx-quote-left {
    display: inline-block;
    width: 20px;
    height: 34px;
    vertical-align: middle;
    margin-bottom: 15px;
}

/* 右引号图片 */
.gicx-quote-right {
    display: inline-block;
    width: 20px;
    height: 34px;
    vertical-align: middle;
}

/* 了解更多按钮 */
.gicx-card-more {
    display: block;
    width: 160px;
    height: 47px;
    line-height: 47px;
    text-align: center;
    background: #ffc20f;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 24px;
    transition: all 0.3s ease;
}

/* 内容区域 - 居右 */
.gicx-card-body.right .gicx-card-more {
    margin-left: auto;
    margin-right: 0;
}

/* 内容区域 - 居左 */
.gicx-card-body.left .gicx-card-more {
    margin-left: 0;
    margin-right: auto;
}

.gicx-card-link:hover .gicx-card-more {
    text-decoration: none;
}

/* 专题板块卡片悬停浮动效果 */
.card.syimgwi {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .card.syimgwi:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.gicx-card-more:hover {
    background: #e5ae0e;
    color: #fff;
    transform: translateY(-2px);
}

/* 标题样式（在section内部） */
.innovation-header {
    text-align: center;
    margin-bottom: 10px;
}

/* 第二部分：新产品轮播项悬停浮动效果 - 多种选择器确保生效 */
#idTextPanel-1_phone .item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #idTextPanel-1_phone .item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    /* 备用选择器：针对轮播项内的图片链接 */
    #idTextPanel-1_phone .item a img {
        transition: transform 0.3s ease;
    }

    #idTextPanel-1_phone .item:hover a img {
        transform: translateY(-5px);
    }

/* 更强的选择器 - 确保轮播容器内的所有item都生效 */
.carousel-holder .item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .carousel-holder .item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.innovation-title {
    font-family: 'Noto Sans SC', 'Source Han Sans CN', 'Microsoft YaHei', sans-serif;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.title-highlight {
    color: #ffc20f;
    font-weight: 700;
}

.title-divider {
    color: #333;
    font-weight: 300;
}

.title-sub {
    color: #333;
    font-weight: 500;
}

/* 中屏幕及以下调整标题大小 */
@media screen and (max-width: 1199px) {
    .innovation-title {
        font-size: 26px;
        gap: 12px;
    }
}

@media screen and (max-width: 768px) {
    .innovation-title {
        font-size: 22px;
        gap: 10px;
    }
}

@media screen and (max-width: 480px) {
    .innovation-title {
        font-size: 18px;
        gap: 8px;
    }
}

/* 响应式设计 - 超大屏 (≥1400px) */
@media screen and (min-width: 1400px) {

    .gicx-cards-wrapper {
        max-width: 1400px;
        padding: 0 20px;
    }

    .gicx-card-img {
        flex: 0 0 515px;
    }

    .gicx-card-body {
        flex: 0 0 55%;
        padding: 40px 50px;
    }

    .gicx-card-tit {
        font-size: 28px;
        font-weight: 700 !important;
    }

    .gicx-card-txt {
        font-size: 18px;
        line-height: 1.5;
    }

    .gicx-card-more {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
        border-radius: 15px;
    }
}

/* 响应式设计 - 大屏 (1200-1399) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
          .innovation-title {
        font-size: 28px;
        gap: 12px;
    }
    .gicx-cards-wrapper {
        max-width: 1200px;
    }

    .gicx-card-img {
        flex: 0 0 460px;
    }

    .gicx-card-body {
        padding: 35px 40px;
    }

    .gicx-card-tit {
        font-size: 24px;
        font-weight: 700 !important;
    }

    .gicx-card-txt {
        font-size: 18px;
        text-align: inherit;
    }

    .gicx-quote-left,
    .gicx-quote-right {
        width: 18px;
        height: 31px;
    }

    .gicx-quote-left {
        margin-bottom: 14px;
    }

    .gicx-card-more {
        width: 94px;
        height: 28px;
        line-height: 28px;
        font-size: 11px;
        border-radius: 14px;
    }
}

/* 响应式设计 - 中大屏 (1000-1199) */
@media screen and (max-width: 1199px) and (min-width: 1000px) {
    .gicx-cards-wrapper {
        max-width: 1000px;
    }

    .gicx-card-img {
        flex: 0 0 400px;
    }

    .gicx-card-body {
        padding: 30px 35px;
    }

    .gicx-card-tit {
        font-size: 22px;
        font-weight: 700 !important;
    }

    .gicx-card-txt {
        font-size: 16px;
        text-align: inherit;
    }

    .gicx-quote-left,
    .gicx-quote-right {
        width: 13px;
        height: 22px;
    }

    .gicx-quote-left {
        margin-bottom: 10px;
    }

    .gicx-card-more {
        width: 70px;
        height: 20px;
        line-height: 20px;
        font-size: 10px;
        border-radius: 10px;
    }
}

/* 响应式设计 - 中屏 (≤999) 垂直布局 */
@media screen and (max-width: 999px) {
    .gicx-section {
        padding: 40px 0;
    }

    .gicx-cards-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }

    .gicx-card,
    .gicx-card.gicx-reverse {
        flex-direction: column !important;
        height: auto;
    }

        /* 确保垂直布局时图片在上，文字在下 */
        .gicx-card .gicx-card-img {
            order: 0;
        }

        .gicx-card .gicx-card-body {
            order: 1;
        }

        .gicx-card.gicx-reverse .gicx-card-img {
            order: 0;
        }

        .gicx-card.gicx-reverse .gicx-card-body {
            order: 1;
        }

    .gicx-card-img {
        flex: 0 0 auto;
        width: 100%;
        min-height: 180px;
        max-height: 280px;
    }

        .gicx-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .gicx-card-body {
        padding: 25px 20px;
        width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .gicx-card-tit {
        font-size: 20px;
        font-weight: 700 !important;
        margin-bottom: 12px;
        text-align: left !important;
    }

    .gicx-card-txt {
        font-size: 15px;
        margin-bottom: 16px;
        text-align: left !important;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .gicx-quote-left,
    .gicx-quote-right {
        width: 12px;
        height: 20px;
    }

    .gicx-quote-left {
        margin-bottom: 9px;
    }

    .gicx-card-more {
        width: 64px;
        height: 20px;
        line-height: 20px;
        font-size: 9px;
        border-radius: 10px;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .gicx-data-badge {
        right: 10px;
        font-size: 16px;
        padding: 7px 10px;
    }
}

/* 响应式设计 - 平板 (≤768) */
@media screen and (max-width: 768px) {
    .gicx-section {
        padding: 30px 0;
    }

    .gicx-cards-wrapper {
        padding: 0 15px;
        gap: 20px;
    }

    .gicx-card-img {
        min-height: 150px;
        max-height: 220px;
    }

    .gicx-card-body {
        padding: 20px;
        overflow: hidden;
        width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .gicx-card-tit {
        font-size: 18px;
        font-weight: 700 !important;
        margin-bottom: 12px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left !important;
        line-height: 0.8;
    }

    .gicx-card-txt {
        font-size: 14px;
        margin-bottom: 0px;
        text-align: left !important;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }

    .gicx-quote-left,
    .gicx-quote-right {
        width: 14px;
        height: 24px;
    }

    .gicx-quote-left {
        margin-bottom: 10px;
    }

    .gicx-card-more {
        width: 72px;
        height: 22px;
        line-height: 22px;
        font-size: 9px;
        border-radius: 11px;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
}

/* 响应式设计 - 手机 (≤480) */
@media screen and (max-width: 480px) {
    .gicx-card-img {
        min-height: 120px;
        max-height: 180px;
    }

    .gicx-card-body {
        padding: 15px;
        overflow: hidden;
        width: 100%;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .gicx-card-tit {
        font-size: 13px;
        font-weight: 700 !important;
        margin-bottom: 0px;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        text-align: left !important;
    }

    .gicx-card-txt {
        font-size: 12px;
        margin-bottom: 12px;
        text-align: left !important;
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .gicx-quote-left,
    .gicx-quote-right {
        width: 13px;
        height: 22px;
    }

    .gicx-quote-left {
        margin-bottom: 8px;
    }

    .gicx-card-more {
        width: 65px;
        height: 20px;
        line-height: 20px;
        font-size: 8px;
        border-radius: 10px;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .gicx-data-badge {
        font-size: 14px;
        padding: 6px 10px;
    }
}

