/* e:\资产管理系统\assetManagementSystem\css\home.css */

/* ================= 全局响应式基础修改 ================= */
main {
    width: 100%;
    /* 移除 min-width: 1200px，允许小屏幕浏览 */
    box-sizing: border-box;
    background-color: #fff;
    overflow-x: hidden; /* 防止横向滚动条 */
}

.content {
    width: 100%;
    position: relative;
    /* 确保内容不会溢出 */
    overflow: hidden; 
}

/* 通用模块容器：改为最大宽度限制，而非固定宽度 */
.module {
    width: 100%;
    max-width: 1200px; /* 保持在大屏下的最大宽度 */
    margin: 0 auto;    /* 居中 */
    padding: 0 20px;   /* 两侧留白，防止贴边 */
    box-sizing: border-box;
}

/* ================= 轮播图区域响应式 ================= */
.home-swiper-wrap {
    width: 100%;
}

.home-swiper {
    width: 100%;
    height: 540px;
}

.home-swiper .swiper-slide {
    position: relative;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: #4671FE !important;
    /* 移动端隐藏导航按钮或缩小 */
}
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

.home-swiper .swiper-pagination-bullet {
    width: 50px !important;
    height: 4px !important;
    background: #fff !important;
    border-radius: 2px !important;
    margin: 0 5px !important;
    opacity: 0.5 !important;
    transition: all 0.3s ease;
}

.home-swiper .swiper-pagination-bullet-active {
    background: #4671FE !important;
    opacity: 1 !important;
    width: 50px !important;
}

/* ================= Module 1 (Hero Section) 响应式 ================= */
.home-swiper .swiper-slide .module1 {
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding-top: 0;
    box-sizing: border-box;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    pointer-events: none;
}

.home-swiper .swiper-slide .module1 .btn_wrap {
    pointer-events: auto;
}

/* 针对小屏幕调整 Module1 的位置和字体 */
@media (max-width: 1200px) {
    .home-swiper .swiper-slide .module1 {
        padding: 0 20px;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .home-swiper .swiper-slide .module1 {
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }
    .module1 h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .module1 p {
        width: 100%;
        font-size: 14px;
        margin-bottom: 20px;
    }
    .module1 button {
        width: 120px;
        height: 40px;
        font-size: 14px;
    }
}

.module1 h1 {
    font-weight: 500;
    font-size: 44px;
    color: #333333;
    margin-bottom: 20px;
}

.module1 p {
    width: 617px;
    font-size: 18px;
    color: rgba(51, 51, 51, 0.8);
    line-height: 28px;
    margin-bottom: 40px;
}

/* 响应式：P标签宽度不再固定 */
@media (max-width: 768px) {
    .module1 p {
        width: 100%;
    }
}

.module1 .btn_wrap {
    display: flex;
    align-items: center;
}

.module1 button {
    width: 158px;
    height: 50px;
    background: #4671FE;
    border-radius: 4px;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.module1 .btn-outline {
    border: 1px solid #4671FE;
    background-color: transparent;
    color: #4671FE;
    margin-left: 12px;
}

/* ================= Module 2 (Stats) 响应式 ================= */
.content.content2 {
    width: 100%;
    height: auto; /* 高度自适应 */
    min-height: 126px;
    background: #F7F9FC;
    padding: 20px 0;
}

.module2 {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap; /* 允许换行 */
}

.module2 .item {
    flex: 1;
    min-width: 150px; /* 最小宽度，防止挤压 */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.module2 .item .count {
    display: flex;
    font-weight: bold;
    align-items: baseline;
    margin-bottom: 4px;
    color: #4671FE;
}

.module2 .item .count span {
    font-family: DIN, sans-serif;
    font-weight: bold;
    font-size: 44px;
    color: #4671FE;
}

.module2 .item .count img {
    width: 40px;
    height: 40px;
    margin-left: 4px;
}

.module2 .item p {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    white-space: nowrap; /* 防止文字换行 */
}

/* ================= Module 3 (Tabs) 响应式 ================= */
.module h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 54px;
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .module h3 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

.content4 {
    height: auto;
    min-height: 697px;
    background-image: url('../images/home/bg.png');
    background-size: cover;
    background-position: center;
}

.module3 {
    padding: 60px 0 80px;
}

/* Tabs 导航响应式 */
.tabs-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap; /* 允许换行 */
}

.tab-btn {
    width: auto; /* 宽度自适应 */
    min-width: 120px;
    height: 66px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .tab-btn {
        flex: 1 1 30%; /* 每行3个 */
        height: 50px;
        font-size: 14px;
    }
    .tab-btn img {
        width: 16px;
        height: 16px;
    }
}

.tab-btn img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.tab-btn.active {
    background: rgba(70, 113, 254, 0.1);
    color: #4671FE;
    border-radius: 4px;
}

.tab-panel {
    width: 100%;
    display: flex;
    background: #F7F9FF;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    flex-wrap: wrap; /* 允许换行 */
}

.panel-left {
    padding: 40px;
    box-sizing: border-box;
    flex: 1;
    min-width: 300px;
}

@media (max-width: 992px) {
    .panel-left {
        width: 100%;
        padding: 20px;
    }
    .panel-right-img {
        width: 100%;
        height: auto;
        margin-top: 20px;
    }
    .panel-right-img img {
        width: 100%;
        height: auto;
    }
}

.panel-left h3 {
    text-align: left;
    font-weight: 600;
    font-size: 24px;
    color: #333333;
    line-height: 36px;
    margin-bottom: 8px;
}

.panel-left p {
    font-weight: 400;
    font-size: 16px;
    color: #666666;
    margin-bottom: 24px;
}

.tag-pool {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
}

.tag-item {
    padding: 6px 20px;
    background: rgba(70, 113, 254, 0.1);
    border-radius: 2px;
    font-size: 13px;
}

.tab-panel .btn_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-panel .btn_wrap .btn {
    width: 144px;
    height: 46px;
    background: #4671FE;
    border-radius: 4px;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0; /* 使用 gap 替代 margin */
    border: none;
    cursor: pointer;
}

.tab-panel .btn_wrap .btn-secondary {
    border: 1px solid #4671FE;
    color: #4671FE;
    background: transparent;
}

.panel-right-img {
    width: 760px;
    height: 420px;
    flex-shrink: 0;
}

.panel-right-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ================= PK Section 响应式 ================= */
.pk-section {
    background: #F8FAFC;
    padding: 60px 0;
}

.pk-table {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* 允许换行 */
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
}

.pk-col {
    flex: 1;
    min-width: 300px; /* 最小宽度 */
    height: auto;
    background: #F5FFFF;
}

.pk-col-1 {
    background: #F7F8F9;
}

.pk-vs {
    width: 144px;
    height: 577px;
    background: #EEF7FE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .pk-vs {
        width: 100%;
        height: 60px;
        flex-direction: row;
        min-height: auto;
    }
    .pk-vs img {
        position: static;
        width: 60px;
        height: auto;
        margin-right: 10px;
    }
    .vs-block {
        display: none;
    }
    .vs-item {
        border-bottom: none;
        border-right: 1px solid #eee;
        padding: 0 10px;
    }
    .vs-item:last-child {
        border-right: none;
    }
}

.pk-vs img {
    width: 144px;
    height: 100px;
    position: absolute;
    top: 0;
}

.vs-block {
    height: 80px;
}

.vs-item {
    flex: 1;
    text-align: center;
    width: 100%;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    color: #4671FE;
}

.vs-item:last-child {
    border-bottom: none;
}

.pk-col h3 {
    flex: 1;
    height: 80px;
    background: #60C598;
    line-height: 80px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    font-size: 24px;
}

.pk-col-1 h3 {
    background: #DDDEDF;
    color: #333;
}

.pk_list {
    height: auto;
    min-height: 380px;
    padding: 0 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .pk_list {
        padding: 0 15px;
    }
}

.pk_list .pk_item {
    display: flex;
    flex: 1;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    padding-top: 23px;
    padding-bottom: 23px;
    align-items: flex-start;
}

.pk_list .pk_item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.pk_list .pk_item .text {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
}

.pk_list .pk_item:nth-last-child(1) {
    border-bottom: none;
}

/* ================= Module 5 (Reasons) 响应式 ================= */
.module5 .list {
    width: 100%;
    height: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F7F9FF;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 768px) {
    .module5 .list {
        padding: 20px;
        flex-direction: column;
    }
}

.module5 .list .item {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
    padding: 32px 0;
}

.module5 .list .item img {
    width: 52px;
    height: 52px;
    margin-right: 16px;
}

.module5 .list .item .detail {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module5 .list .item .detail .title {
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    margin-bottom: 4px;
}

.module5 .list .item .detail span {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

/* ================= Module 6 (News) 响应式及 A 标签样式 ================= */
.module6 {
    padding-top: 0;
}

.module6 h3 {
    margin-bottom: 10px;
}

.module6 p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
}

/* 新增：查看更多链接样式 */
.module6 p .more-link {
    color: #4671FE;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

.module6 p .more-link:hover {
    color: #2551d6;
    text-decoration: underline;
}

.module6 p span {
    color: #4671FE;
}

/* List 1 (Top News Images) */
.module6 .list1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 47px;
    flex-wrap: wrap;
    gap: 20px;
}

.module6 .list1 .item {
    width: 380px;
    height: 240px;
    position: relative;
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .module6 .list1 .item {
        width: 100%;
        height: 200px;
    }
}

.module6 .list1 .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    border-radius: 4px;
}

/* 修改：List1 中的 Text 现在是 A 标签 */
.module6 .list1 .item .text {
    width: 100%;
    height: 44px;
    background: rgba(255, 255, 255, 0.9); /* 稍微提高不透明度以增强可读性 */
    font-size: 16px;
    color: #333333;
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    text-decoration: none; /* 去除下划线 */
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    transition: background 0.3s, color 0.3s;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.module6 .list1 .item .text:hover {
    background: #4671FE;
    color: #fff;
}

/* List 2 (News List) */
.module6 .list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 92px;
    grid-row-gap: 42px;
}

@media (max-width: 992px) {
    .module6 .list {
        grid-template-columns: 1fr;
        grid-column-gap: 0;
    }
}

.module6 .list .item {
    display: flex;
    align-items: flex-start; /* 顶部对齐 */
    min-width: 0;
}

.module6 .list .item .date {
    width: 90px;
    height: 70px;
    border-radius: 4px;
    border: 1px solid #F0F0F0;
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    box-sizing: border-box;
    margin-right: 14px;
    flex-shrink: 0;
}

.module6 .list .item .date span {
    font-weight: 600;
    font-size: 20px;
    color: #333333;
}

.module6 .list .item .date .year {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
}

.module6 .list .item .item_detail {
    width: 100%; /* 自适应剩余宽度 */
    overflow: hidden;
}

/* 修改：Title 现在是 A 标签 */
.module6 .list .item .item_detail .title {
    font-weight: 600;
    font-size: 16px;
    color: #333333;
    line-height: 28px;
    margin-bottom: 4px;
    text-decoration: none; /* 去除下划线 */
    display: -webkit-box; /* 必须结合的属性 */
    -webkit-box-orient: vertical; /* 必须结合的属性 */
    -webkit-line-clamp: 1; /* 关键属性：限制为1行，如果想显示2行则改为2 */
    overflow: hidden; /* 超出隐藏 */
    text-overflow: ellipsis; /* 显示省略号 */
    transition: color 0.3s;
    
    /* 确保在旧版浏览器或特定情况下也能单行省略 */
    white-space: nowrap; 
}

.module6 .list .item .item_detail .title:hover {
    color: #4671FE;
}

.module6 .list .item .item_detail p {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    margin: 0; /* 重置默认 margin */
    
    /* 多行文本省略 (可选) */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}


@media screen and (max-width: 768px) {
    .content_bg {
        height: auto;
        padding: 60px 0;
    }
    .module1 h1 {
        font-size: 28px;
        text-align: center;
    }

    .module1 p {
        font-size: 14px;
        text-align: center;
        margin: 0 auto 30px auto;
    }
    
    .module1 button {
        margin: 0 auto;
    }
}



/* ================= 资产全生命周期管理模块 ================= */
.content-lifecycle {
    background: #F7F9FF;
    padding: 0;
}

.module-lifecycle {
    padding: 70px 20px 80px;
    text-align: center;
}

.module-lifecycle h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 54px;
    margin-bottom: 12px;
    text-align: center;
}

.lifecycle-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 56px;
    text-align: center;
}

.lifecycle-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    background: #fff;
    padding: 40px 0;
    position: relative;
}

.lifecycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /*flex: 1;*/
    min-width: 170px;
    max-width: 180px;
}

.step-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #EEF2FF;
    color: #4671FE;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
}

.step-arrow {
    /*position: absolute;*/
    /*top: 24px;*/
    /*left: calc(50% + 26px);*/
    font-size: 20px;
    color: #4571FF;
    z-index: 0;
    margin-bottom: 56px;
}

.lifecycle-step.last .step-arrow {
    display: none;
}

.step-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.step-sub {
    font-size: 13px;
    color: #888888;
}

@media (max-width: 768px) {
    .lifecycle-steps {
        gap: 20px;
    }
    .lifecycle-step {
        min-width: 80px;
        max-width: 100px;
    }
    .step-arrow {
        display: none;
    }
    .module-lifecycle h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .lifecycle-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

/* ================= 核心功能模块 ================= */
.content-core {
    background: #fff;
    padding: 0;
}

.module-core {
    padding: 70px 20px 80px;
    text-align: center;
}

.module-core h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 54px;
    margin-bottom: 24px;
    text-align: center;
}

.core-features {
    display: flex;
    align-items: center;
    /*justify-content: center;*/
    gap: 48px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.core-feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333333;
}


.core-features .core-feature-tag img {
    width: 20px;
    height: 20px;
}

.core-check {
    color: #4671FE;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
}

.core-body {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /*box-shadow: 0 4px 32px rgba(70, 113, 254, 0.08);*/
    /*border: 1px solid #EEF0F8;*/
    min-height: 400px;
}

.core-nav {
    width: 220px;
    flex-shrink: 0;
    /*background: #F7F9FF;*/
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.core-nav-item {
    padding: 18px 28px;
    font-size: 16px;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    border-left: 3px solid transparent;
    position: relative;
}

.core-nav-item:hover {
    background: rgba(70, 113, 254, 0.06);
    color: #4671FE;
}

.core-nav-item.active {
    background: #fff;
    color: #4671FE;
    font-weight: 600;
    border-left-color: #4671FE;
    background: #EEF2FF;
}

.core-preview {
    flex: 1;
    background: #fff;
    padding: 24px;
    overflow: hidden;
    position: relative;
    min-height: 420px;
}

.core-panel {
    width: 100%;
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(32px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
    pointer-events: none;
    z-index: 0;
}

.core-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.core-panel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    /* box-shadow: 0 2px 16px rgba(0,0,0,0.08); */
}

@media (max-width: 768px) {
    .core-body {
        flex-direction: column;
    }
    .core-preview {
        min-height: 320px;
        padding: 16px;
    }
    .core-panel {
        top: 16px;
        left: 16px;
        right: 16px;
        transform: translateY(20px);
    }
    .core-panel.active {
        transform: translateY(0);
    }
    .core-nav {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 10px;
        gap: 4px;
    }
    .core-nav-item {
        flex: 1;
        min-width: 120px;
        padding: 10px 12px;
        font-size: 13px;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
    }
    .core-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: #4671FE;
    }
    .core-features {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
    }
    .module-core h3 {
        font-size: 24px;
        line-height: 36px;
    }
}

/* ================= 产品矩阵模块 ================= */
.content-matrix {
    background: #fff;
    padding: 0;
}

.module-matrix {
    padding: 70px 20px 80px;
    text-align: center;
}

.module-matrix h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 54px;
    margin-bottom: 12px;
    text-align: center;
}

.matrix-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 48px;
    text-align: center;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.matrix-item {
    border-radius: 8px;
    padding: 30px 24px 24px;
    text-align: left;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid #F2F3F5;
}

.matrix-item:hover {
    box-shadow: 0 8px 32px rgba(70, 113, 254, 0.12);
    border-color: #e0e8ff;
    transform: translateY(-3px);
}

.matrix-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 52px;
    height: 24px;
}

.matrix-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.matrix-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.matrix-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.matrix-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.matrix-desc {
    font-size: 13px;
    color: #888888;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.matrix-more {
    font-size: 13px;
    color: #4671FE;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s;
}

.matrix-more:hover {
    color: #2551d6;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .module-matrix h3 {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 600px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    .module-matrix h3 {
        font-size: 22px;
        line-height: 34px;
    }
    .matrix-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}



/* ================= 行业覆盖模块 ================= */
.content-industry {
    background: #F7F8FA;
    padding: 0;
}

.module-industry {
    padding: 70px 20px 60px;
    text-align: center;
}

.module-industry h3 {
    font-weight: 600;
    font-size: 36px;
    color: #333333;
    line-height: 54px;
    margin-bottom: 12px;
    text-align: center;
}

.industry-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 48px;
    text-align: center;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.industry-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
    border: 1px solid transparent;
}

.industry-item:hover {
    box-shadow: 0 6px 24px rgba(70, 113, 254, 0.1);
    border-color: #e0e8ff;
    transform: translateY(-2px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.industry-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.industry-content {
    flex: 1;
    min-width: 0;
}

.industry-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.industry-desc {
    font-size: 13px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 12px;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.industry-tags span {
    padding: 3px 12px;
    background: #F5F7FF;
    border-radius: 4px;
    font-size: 12px;
    color: #4571FF;
    white-space: nowrap;
}

.industry-footer {
    text-align: center;
    margin-top: 8px;
}

.industry-more-link {
    font-size: 15px;
    color: #4671FE;
    text-decoration: none;
    transition: color 0.2s;
}

.industry-more-link:hover {
    color: #2551d6;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .module-industry h3 {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 600px) {
    .industry-grid {
        grid-template-columns: 1fr;
    }
    .module-industry h3 {
        font-size: 22px;
        line-height: 34px;
    }
    .industry-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }
}