/* ========== AUM ACG Hero ========== */
.aum-acg-hero {
    width: 100%;
}

.aum-acg-hero .aum-acg-hero__wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 560px;
    width: 100%;
}

.aum-acg-hero .aum-acg-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aum-acg-hero .aum-acg-hero__bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.aum-acg-hero .aum-acg-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(3, 10, 24, 0.65);
}

/* ── 新增：居中限宽容器，背景全宽，内容限 1200px ── */
.aum-acg-hero .aum-acg-hero__container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.aum-acg-hero .aum-acg-hero__content {
    /* z-index 和 position 移到 __container，这里只管内容宽度和内边距 */
    width: 100%;
    max-width: 720px;
    /* 可由控件控制 */
}

.aum-acg-hero .aum-acg-hero__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(37, 99, 235, 0.2);
    border-radius: 6px;
    backdrop-filter: blur(6px);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}

/* 圆点样式 */
.aum-acg-hero .aum-acg-hero__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #dd2726;
    animation: aum-acg-hero-dot-pulse 1.5s ease-in-out infinite;
}

/* 呼吸动画 */
@keyframes aum-acg-hero-dot-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.aum-acg-hero .aum-acg-hero__title {
    margin: 0 0 16px 0;
    font-weight: 800;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.5px;
}

.aum-acg-hero .aum-acg-hero__desc {
    margin: 0 0 24px 0;
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
}

.aum-acg-hero .aum-acg-hero__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    /* 可由控件控制 */
}

.aum-acg-hero .aum-acg-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    border-radius: 12px;
    /* 可由控件控制 */
    padding: 14px 22px;
    /* 可由控件控制 */
    font-weight: 700;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    user-select: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.aum-acg-hero .aum-acg-hero__btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

.aum-acg-hero .aum-acg-hero__btn:hover {
    transform: translateY(-1px);
}

/* Primary */
.aum-acg-hero .aum-acg-hero__btn--primary {
    background: #2D63FF;
    color: #fff;
    box-shadow: 0 10px 24px rgba(45, 99, 255, 0.25);
}

.aum-acg-hero .aum-acg-hero__btn--primary:hover {
    background: #1F4FE6;
}

/* Secondary */
.aum-acg-hero .aum-acg-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.aum-acg-hero .aum-acg-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.16);
}

.aum-acg-hero .aum-acg-hero__gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* 在背景(0)之上，普通遮罩(1)之下，内容(2)之下 */
}

/* 移动端微调 */
@media (max-width: 767px) {
    .aum-acg-hero .aum-acg-hero__content {
        padding: 56px 0;
    }

    .aum-acg-hero .aum-acg-hero__subtitle {
        border-radius: 9px;
    }
}







/* ========== AUM ACG Advantages ========== */
.aum-acg-advantages {
    width: 100%;
}

.aum-acg-advantages .aum-acg-advantages__header {
    text-align: center;
    margin-bottom: 36px;
}

.aum-acg-advantages .aum-acg-advantages__subtitle {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2D63FF;
    margin-bottom: 10px;
}

.aum-acg-advantages .aum-acg-advantages__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.15;
    color: #0B1220;
}

.aum-acg-advantages .aum-acg-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 可由控件覆盖(响应式) */
    gap: 48px;
}

.aum-acg-advantages .aum-acg-advantages__card {
    background: #F7FAFF;
    border-radius: 22px;
    padding: 36px 28px;
    border: 1px solid rgba(11, 18, 32, 0.06);
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}

.aum-acg-advantages .aum-acg-advantages__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(11, 18, 32, 0.12);
}

.aum-acg-advantages .aum-acg-advantages__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 8px 22px rgba(11, 18, 32, 0.06);
}

.aum-acg-advantages .aum-acg-advantages__icon i {
    font-size: 26px;
    color: #2D63FF;
}

.aum-acg-advantages .aum-acg-advantages__icon svg {
    width: 26px;
    height: 26px;
    fill: #2D63FF;
}

.aum-acg-advantages .aum-acg-advantages__card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #0B1220;
}

.aum-acg-advantages .aum-acg-advantages__card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #5A667C;
    max-width: 520px;
    margin: 0 auto;
}

/* ========== 响应式适配 ========== */

/* 平板端 (max-width: 1024px) */
@media (max-width: 1024px) {
    .aum-acg-advantages .aum-acg-advantages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 平板端一行2个 */
        gap: 32px;
        /* 平板端间距稍小 */
    }

    .aum-acg-advantages .aum-acg-advantages__card {
        padding: 28px 22px;
        /* 平板端内边距稍小 */
    }

    .aum-acg-advantages .aum-acg-advantages__icon {
        width: 56px;
        height: 56px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon i {
        font-size: 24px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon svg {
        width: 24px;
        height: 24px;
    }

    .aum-acg-advantages .aum-acg-advantages__header {
        margin-bottom: 32px;
        /* 平板端标题间距稍小 */
    }
}

/* 小平板端 (max-width: 768px) */
@media (max-width: 768px) {
    .aum-acg-advantages .aum-acg-advantages__grid {
        gap: 24px;
        /* 小平板端间距更小 */
    }

    .aum-acg-advantages .aum-acg-advantages__card {
        padding: 24px 20px;
        /* 小平板端内边距更小 */
        border-radius: 20px;
    }

    .aum-acg-advantages .aum-acg-advantages__title {
        font-size: clamp(24px, 3.2vw, 32px);
    }
}

/* 手机端 (max-width: 640px) */
@media (max-width: 640px) {
    .aum-acg-advantages .aum-acg-advantages__grid {
        grid-template-columns: 1fr;
        /* 手机端一行1个 */
        gap: 20px;
        /* 手机端间距更紧凑 */
        max-width: 420px;
        /* 限制最大宽度，避免在大屏手机上过宽 */
        margin: 0 auto;
        /* 居中显示 */
    }

    .aum-acg-advantages .aum-acg-advantages__card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon i {
        font-size: 22px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon svg {
        width: 22px;
        height: 22px;
    }

    .aum-acg-advantages .aum-acg-advantages__card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .aum-acg-advantages .aum-acg-advantages__card-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    .aum-acg-advantages .aum-acg-advantages__header {
        margin-bottom: 28px;
    }

    .aum-acg-advantages .aum-acg-advantages__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }
}

/* 小手机端 (max-width: 480px) */
@media (max-width: 480px) {
    .aum-acg-advantages .aum-acg-advantages__grid {
        gap: 16px;
    }

    .aum-acg-advantages .aum-acg-advantages__card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon i {
        font-size: 20px;
    }

    .aum-acg-advantages .aum-acg-advantages__icon svg {
        width: 20px;
        height: 20px;
    }

    .aum-acg-advantages .aum-acg-advantages__title {
        font-size: 22px;
    }
}





/* ========== AUM ACG Product Matrix ========== */
.aum-acg-product-matrix {
    width: 100%;
}

.aum-acg-product-matrix .aum-acg-product-matrix__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__subtitle {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #2D63FF;
}

.aum-acg-product-matrix .aum-acg-product-matrix__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.12;
    color: #0B1220;
}

.aum-acg-product-matrix .aum-acg-product-matrix__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none !important;
    background: #F2F6FF;
    color: #3D4B66;
    font-size: 11px;
    line-height: 1;
    border: 1px solid rgba(11, 18, 32, 0.06);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.aum-acg-product-matrix .aum-acg-product-matrix__tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11, 18, 32, 0.10);
}

.aum-acg-product-matrix .aum-acg-product-matrix__tab--active {
    background: #0B3AAE;
    color: #fff;
    border-color: rgba(11, 58, 174, 0.22);
}

.aum-acg-product-matrix .aum-acg-product-matrix__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__card {
    background: #fff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 20px;
    padding: 28px 28px 22px 28px;
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
}

.aum-acg-product-matrix .aum-acg-product-matrix__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(11, 18, 32, 0.12);
}

.aum-acg-product-matrix .aum-acg-product-matrix__card-title {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.15;
    color: #0B1220;
}

.aum-acg-product-matrix .aum-acg-product-matrix__card-desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: #5A667C;
    min-height: 54px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__meta {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__meta-left {
    font-size: 12px;
    color: #7A879E;
}

.aum-acg-product-matrix .aum-acg-product-matrix__meta-right {
    font-size: 12px;
    font-weight: 600;
    color: #0B1220;
    text-align: right;
}

.aum-acg-product-matrix .aum-acg-product-matrix__details {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(11, 18, 32, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    text-decoration: none !important;
    color: #0B3AAE;
    font-weight: 600;
    letter-spacing: 1.4px;
    font-size: 12px;
}

.aum-acg-product-matrix .aum-acg-product-matrix__details-arrow {
    font-size: 18px;
    line-height: 1;
}

/* ========== 响应式适配 ========== */

/* 大平板端 (max-width: 1024px) */
@media (max-width: 1024px) {
    .aum-acg-product-matrix .aum-acg-product-matrix__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 平板端一行2个 */
        gap: 24px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card {
        padding: 24px 22px 20px 22px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-title {
        font-size: 20px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-desc {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta-right {
        text-align: left;
        width: 100%;
    }
}

/* 平板端 (max-width: 768px) */
@media (max-width: 768px) {
    .aum-acg-product-matrix .aum-acg-product-matrix__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__tabs {
        justify-content: flex-start;
        width: 100%;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__tab {
        padding: 9px 16px;
        font-size: 10px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__grid {
        gap: 20px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card {
        padding: 22px 20px 18px 20px;
        border-radius: 18px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__title {
        font-size: clamp(24px, 3.2vw, 32px);
    }
}

/* 手机端 (max-width: 640px) */
@media (max-width: 640px) {
    .aum-acg-product-matrix .aum-acg-product-matrix__grid {
        grid-template-columns: 1fr;
        /* 手机端一行1个 */
        gap: 18px;
        max-width: 420px;
        /* 限制最大宽度 */
        margin: 0 auto;
        /* 居中显示 */
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card {
        padding: 20px 18px 16px 18px;
        border-radius: 16px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-title {
        font-size: 18px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-desc {
        font-size: 13px;
        line-height: 1.6;
        min-height: auto;
        /* 移除最小高度 */
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__tabs {
        overflow-x: auto;
        /* 允许水平滚动 */
        flex-wrap: nowrap;
        padding-bottom: 8px;
        /* 给滚动条留空间 */
        -webkit-overflow-scrolling: touch;
        /* iOS平滑滚动 */
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__tab {
        flex-shrink: 0;
        /* 防止按钮被压缩 */
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta {
        margin-top: 16px;
        padding-top: 12px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta-left,
    .aum-acg-product-matrix .aum-acg-product-matrix__meta-right {
        font-size: 11px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__details {
        margin-top: 16px;
        padding-top: 14px;
        font-size: 11px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__details-arrow {
        font-size: 16px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__top {
        margin-bottom: 22px;
    }
}

/* 小手机端 (max-width: 480px) */
@media (max-width: 480px) {
    .aum-acg-product-matrix .aum-acg-product-matrix__grid {
        gap: 16px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card {
        padding: 18px 16px 14px 16px;
        border-radius: 14px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-title {
        font-size: 16px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__card-desc {
        font-size: 12.5px;
        margin-top: 10px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__tab {
        padding: 8px 14px;
        font-size: 9px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__title {
        font-size: 22px;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta {
        flex-direction: row;
        /* 小屏时恢复水平布局，节约垂直空间 */
        align-items: center;
    }

    .aum-acg-product-matrix .aum-acg-product-matrix__meta-right {
        text-align: right;
    }
}




/* ========== AUM ACG Solutions ========== */
.aum-acg-solutions {
    width: 100%;
}

.aum-acg-solutions .aum-acg-solutions__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.aum-acg-solutions .aum-acg-solutions__subtitle {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #2D63FF;
    margin-bottom: 10px;
}

.aum-acg-solutions .aum-acg-solutions__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.12;
    color: #0B1220;
}

.aum-acg-solutions .aum-acg-solutions__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    font-size: 13px;
    color: #0B3AAE;
    white-space: nowrap;
    padding-top: 8px;
}

.aum-acg-solutions .aum-acg-solutions__more-arrow {
    font-size: 13px;
}

.aum-acg-solutions .aum-acg-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.aum-acg-solutions .aum-acg-solutions__card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 380px;
    background: #0B1220;
}

.aum-acg-solutions .aum-acg-solutions__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.aum-acg-solutions .aum-acg-solutions__bg-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: scale(1);
    transition: transform .45s ease;
    display: block;
}

.aum-acg-solutions .aum-acg-solutions__card:hover .aum-acg-solutions__bg-img {
    transform: scale(1.08);
}

.aum-acg-solutions .aum-acg-solutions__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.65) 100%);
}

.aum-acg-solutions .aum-acg-solutions__content {
    position: relative;
    z-index: 2;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
}

.aum-acg-solutions .aum-acg-solutions__card-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 1.15;
    color: #fff;
}

.aum-acg-solutions .aum-acg-solutions__card-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.aum-acg-solutions .aum-acg-solutions__btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-decoration: none !important;
    font-weight: 800;
    color: #0B3AAE;
    background: #fff;
    padding: 12px 20px;
    border-radius: 14px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.aum-acg-solutions .aum-acg-solutions__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* ========== 响应式适配 ========== */

/* 大平板端 (max-width: 1024px) */
@media (max-width: 1024px) {
    .aum-acg-solutions .aum-acg-solutions__grid {
        gap: 24px;
    }

    .aum-acg-solutions .aum-acg-solutions__card {
        min-height: 340px;
    }

    .aum-acg-solutions .aum-acg-solutions__content {
        padding: 24px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-title {
        font-size: 24px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-desc {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .aum-acg-solutions .aum-acg-solutions__btn {
        padding: 11px 18px;
    }
}

/* 平板端 (max-width: 768px) */
@media (max-width: 768px) {
    .aum-acg-solutions .aum-acg-solutions__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .aum-acg-solutions .aum-acg-solutions__more {
        align-self: flex-start;
        /* 确保链接左对齐 */
    }

    .aum-acg-solutions .aum-acg-solutions__grid {
        gap: 20px;
    }

    .aum-acg-solutions .aum-acg-solutions__card {
        min-height: 320px;
        border-radius: 22px;
    }

    .aum-acg-solutions .aum-acg-solutions__content {
        padding: 22px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-title {
        font-size: 22px;
    }

    .aum-acg-solutions .aum-acg-solutions__title {
        font-size: clamp(24px, 3.2vw, 32px);
    }

    .aum-acg-solutions .aum-acg-solutions__btn {
        padding: 10px 16px;
        border-radius: 12px;
    }
}

/* 手机端 (max-width: 640px) */
@media (max-width: 640px) {
    .aum-acg-solutions .aum-acg-solutions__grid {
        grid-template-columns: 1fr;
        /* 手机端一行1个 */
        gap: 18px;
        max-width: 420px;
        /* 限制最大宽度 */
        margin: 0 auto;
        /* 居中显示 */
    }

    .aum-acg-solutions .aum-acg-solutions__card {
        min-height: 280px;
        border-radius: 20px;
    }

    .aum-acg-solutions .aum-acg-solutions__content {
        padding: 20px 18px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-title {
        font-size: 20px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .aum-acg-solutions .aum-acg-solutions__btn {
        padding: 9px 14px;
        border-radius: 10px;
        font-size: 13px;
    }

    .aum-acg-solutions .aum-acg-solutions__top {
        margin-bottom: 22px;
    }

    .aum-acg-solutions .aum-acg-solutions__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .aum-acg-solutions .aum-acg-solutions__more {
        font-size: 12px;
    }

    .aum-acg-solutions .aum-acg-solutions__more-arrow {
        font-size: 12px;
    }
}

/* 小手机端 (max-width: 480px) */
@media (max-width: 480px) {
    .aum-acg-solutions .aum-acg-solutions__grid {
        gap: 16px;
    }

    .aum-acg-solutions .aum-acg-solutions__card {
        min-height: 260px;
        border-radius: 18px;
    }

    .aum-acg-solutions .aum-acg-solutions__content {
        padding: 18px 16px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-title {
        font-size: 18px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-desc {
        font-size: 12.5px;
        line-height: 1.6;
    }

    .aum-acg-solutions .aum-acg-solutions__btn {
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 12px;
        margin-top: 12px;
    }

    .aum-acg-solutions .aum-acg-solutions__title {
        font-size: 22px;
    }

    .aum-acg-solutions .aum-acg-solutions__top {
        gap: 16px;
    }
}

/* 极小手机端 (max-width: 360px) */
@media (max-width: 360px) {
    .aum-acg-solutions .aum-acg-solutions__card {
        min-height: 240px;
    }

    .aum-acg-solutions .aum-acg-solutions__content {
        padding: 16px 14px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-title {
        font-size: 16px;
    }

    .aum-acg-solutions .aum-acg-solutions__card-desc {
        font-size: 12px;
    }

    .aum-acg-solutions .aum-acg-solutions__btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}





/* ========== AUM ACG News & Insight ========== */
.aum-acg-news-insight {
    width: 100%;
    position: relative;
}

.aum-acg-news-insight .aum-acg-news-insight__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.aum-acg-news-insight .aum-acg-news-insight__subtitle {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #2D63FF;
    margin-bottom: 10px;
}

.aum-acg-news-insight .aum-acg-news-insight__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.12;
    color: #0B1220;
}

.aum-acg-news-insight .aum-acg-news-insight__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 6px;
}

.aum-acg-news-insight .aum-acg-news-insight__tab {
    appearance: none;
    border: 1px solid rgba(11, 18, 32, 0.06);
    background: #F2F6FF;
    color: #3D4B66;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}

.aum-acg-news-insight .aum-acg-news-insight__tab:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(11, 18, 32, 0.10);
}

.aum-acg-news-insight .aum-acg-news-insight__tab--active {
    background: #0B3AAE;
    color: #fff;
    border-color: rgba(11, 58, 174, 0.22);
}

.aum-acg-news-insight .aum-acg-news-insight__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.aum-acg-news-insight .aum-acg-news-insight__card {
    background: #fff;
    border: 1px solid rgba(11, 18, 32, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-news-insight .aum-acg-news-insight__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(11, 18, 32, 0.12);
}

.aum-acg-news-insight .aum-acg-news-insight__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0B1220;
}

.aum-acg-news-insight .aum-acg-news-insight__thumb-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .45s ease;
}

.aum-acg-news-insight .aum-acg-news-insight__card:hover .aum-acg-news-insight__thumb-img {
    transform: scale(1.06);
}

.aum-acg-news-insight .aum-acg-news-insight__info {
    padding: 18px 18px 20px 18px;
}

.aum-acg-news-insight .aum-acg-news-insight__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #6B7890;
    margin-bottom: 10px;
}

.aum-acg-news-insight .aum-acg-news-insight__dot {
    opacity: 0.7;
}

.aum-acg-news-insight .aum-acg-news-insight__card-title {
    display: block;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.35;
    color: #0B1220;
    margin-bottom: 10px;
}

.aum-acg-news-insight .aum-acg-news-insight__excerpt {
    font-size: 13px;
    line-height: 1.75;
    color: #5A667C;
}

.aum-acg-news-insight .aum-acg-news-insight__loading {
    display: none;
    margin-top: 14px;
    font-size: 13px;
    color: #6B7890;
}

.aum-acg-news-insight.is-loading .aum-acg-news-insight__loading {
    display: block;
}

/* ========== 响应式适配 ========== */

/* 大平板端 (max-width: 1024px) */
@media (max-width: 1024px) {
    .aum-acg-news-insight .aum-acg-news-insight__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 平板端一行2个 */
        gap: 24px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__info {
        padding: 16px 16px 18px 16px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card-title {
        font-size: 16px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__excerpt {
        font-size: 12.5px;
        line-height: 1.6;
    }

    .aum-acg-news-insight .aum-acg-news-insight__meta {
        font-size: 11px;
    }
}

/* 平板端 (max-width: 768px) */
@media (max-width: 768px) {
    .aum-acg-news-insight .aum-acg-news-insight__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__tabs {
        justify-content: flex-start;
        width: 100%;
    }

    .aum-acg-news-insight .aum-acg-news-insight__tab {
        padding: 9px 16px;
        font-size: 10px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__grid {
        gap: 20px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card {
        border-radius: 16px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__info {
        padding: 14px 14px 16px 14px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__title {
        font-size: clamp(24px, 3.2vw, 32px);
    }

    .aum-acg-news-insight .aum-acg-news-insight__card:hover {
        transform: translateY(-4px);
    }
}

/* 手机端 (max-width: 640px) */
@media (max-width: 640px) {
    .aum-acg-news-insight .aum-acg-news-insight__grid {
        grid-template-columns: 1fr;
        /* 手机端一行1个 */
        gap: 18px;
        max-width: 420px;
        /* 限制最大宽度 */
        margin: 0 auto;
        /* 居中显示 */
    }

    .aum-acg-news-insight .aum-acg-news-insight__card {
        border-radius: 14px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__thumb {
        aspect-ratio: 16 / 9;
        /* 保持比例 */
    }

    .aum-acg-news-insight .aum-acg-news-insight__info {
        padding: 12px 12px 14px 12px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__excerpt {
        font-size: 12px;
        line-height: 1.6;
    }

    .aum-acg-news-insight .aum-acg-news-insight__meta {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__tabs {
        overflow-x: auto;
        /* 允许水平滚动 */
        flex-wrap: nowrap;
        padding-bottom: 8px;
        /* 给滚动条留空间 */
        -webkit-overflow-scrolling: touch;
        /* iOS平滑滚动 */
    }

    .aum-acg-news-insight .aum-acg-news-insight__tab {
        flex-shrink: 0;
        /* 防止按钮被压缩 */
    }

    .aum-acg-news-insight .aum-acg-news-insight__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__top {
        margin-bottom: 20px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__loading {
        font-size: 12px;
    }
}

/* 小手机端 (max-width: 480px) */
@media (max-width: 480px) {
    .aum-acg-news-insight .aum-acg-news-insight__grid {
        gap: 16px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card {
        border-radius: 12px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__info {
        padding: 10px 10px 12px 10px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card-title {
        font-size: 14px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__excerpt {
        font-size: 11.5px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__tab {
        padding: 8px 14px;
        font-size: 9px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__title {
        font-size: 22px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card:hover {
        transform: translateY(-2px);
    }
}

/* 极小手机端 (max-width: 360px) */
@media (max-width: 360px) {
    .aum-acg-news-insight .aum-acg-news-insight__info {
        padding: 8px 8px 10px 8px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__card-title {
        font-size: 13px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__excerpt {
        font-size: 11px;
    }

    .aum-acg-news-insight .aum-acg-news-insight__meta {
        flex-wrap: wrap;
        /* 小屏幕时允许换行 */
        gap: 4px 8px;
    }
}




/* ========== AUM ACG DevHub ========== */
.aum-acg-devhub {
    width: 100%;
}

.aum-acg-devhub .aum-acg-devhub__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 34px auto;
}

.aum-acg-devhub .aum-acg-devhub__subtitle {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #2D63FF;
    margin-bottom: 10px;
}

.aum-acg-devhub .aum-acg-devhub__title {
    margin: 0;
    font-weight: 600;
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.12;
    color: #0B1220;
}

.aum-acg-devhub .aum-acg-devhub__desc {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.8;
    color: #5A667C;
}

.aum-acg-devhub .aum-acg-devhub__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.aum-acg-devhub .aum-acg-devhub__card {
    display: block;
    text-decoration: none !important;
    background: #fff;
    border: 1px solid rgba(11, 18, 32, 0.06);
    border-radius: 18px;
    padding: 22px;
    transition: transform .3s ease, box-shadow .3s ease;
    will-change: transform;
    color: inherit;
}

.aum-acg-devhub .aum-acg-devhub__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(11, 18, 32, 0.14);
}

.aum-acg-devhub .aum-acg-devhub__iconbox {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #EEF4FF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.aum-acg-devhub .aum-acg-devhub__iconbox i {
    font-size: 22px;
    color: #2D63FF;
}

.aum-acg-devhub .aum-acg-devhub__iconbox svg {
    width: 22px;
    height: 22px;
    fill: #2D63FF;
}

.aum-acg-devhub .aum-acg-devhub__card-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.25;
    color: #0B1220;
    margin-bottom: 10px;
}

.aum-acg-devhub .aum-acg-devhub__card-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #5A667C;
}

/* ========== 响应式适配 ========== */

/* 大平板端 (max-width: 1024px) */
@media (max-width: 1024px) {
    .aum-acg-devhub .aum-acg-devhub__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        /* 平板端一行2个 */
        gap: 24px;
    }

    .aum-acg-devhub .aum-acg-devhub__header {
        margin-bottom: 28px;
    }

    .aum-acg-devhub .aum-acg-devhub__card {
        padding: 20px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox i {
        font-size: 20px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox svg {
        width: 20px;
        height: 20px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-title {
        font-size: 16px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-desc {
        font-size: 12.5px;
        line-height: 1.7;
    }
}

/* 平板端 (max-width: 768px) */
@media (max-width: 768px) {
    .aum-acg-devhub .aum-acg-devhub__grid {
        gap: 20px;
    }

    .aum-acg-devhub .aum-acg-devhub__card {
        padding: 18px;
        border-radius: 16px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox i {
        font-size: 18px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox svg {
        width: 18px;
        height: 18px;
    }

    .aum-acg-devhub .aum-acg-devhub__title {
        font-size: clamp(24px, 3.2vw, 32px);
    }

    .aum-acg-devhub .aum-acg-devhub__desc {
        font-size: 13.5px;
    }

    .aum-acg-devhub .aum-acg-devhub__card:hover {
        transform: translateY(-6px);
    }
}

/* 手机端 (max-width: 640px) */
@media (max-width: 640px) {
    .aum-acg-devhub .aum-acg-devhub__grid {
        grid-template-columns: 1fr;
        /* 手机端一行1个 */
        gap: 18px;
        max-width: 420px;
        /* 限制最大宽度 */
        margin: 0 auto;
        /* 居中显示 */
    }

    .aum-acg-devhub .aum-acg-devhub__header {
        margin-bottom: 24px;
    }

    .aum-acg-devhub .aum-acg-devhub__card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox {
        width: 44px;
        height: 44px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox i {
        font-size: 16px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox svg {
        width: 16px;
        height: 16px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .aum-acg-devhub .aum-acg-devhub__subtitle {
        font-size: 11px;
        letter-spacing: 3px;
    }

    .aum-acg-devhub .aum-acg-devhub__desc {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* 小手机端 (max-width: 480px) */
@media (max-width: 480px) {
    .aum-acg-devhub .aum-acg-devhub__grid {
        gap: 16px;
    }

    .aum-acg-devhub .aum-acg-devhub__card {
        padding: 18px 16px;
        border-radius: 12px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox {
        width: 40px;
        height: 40px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox i {
        font-size: 15px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox svg {
        width: 15px;
        height: 15px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-title {
        font-size: 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-desc {
        font-size: 11.5px;
    }

    .aum-acg-devhub .aum-acg-devhub__title {
        font-size: 22px;
    }

    .aum-acg-devhub .aum-acg-devhub__header {
        margin-bottom: 20px;
    }

    .aum-acg-devhub .aum-acg-devhub__card:hover {
        transform: translateY(-4px);
    }
}

/* 极小手机端 (max-width: 360px) */
@media (max-width: 360px) {
    .aum-acg-devhub .aum-acg-devhub__card {
        padding: 16px 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox {
        width: 36px;
        height: 36px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox i {
        font-size: 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__iconbox svg {
        width: 14px;
        height: 14px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-title {
        font-size: 13px;
    }

    .aum-acg-devhub .aum-acg-devhub__card-desc {
        font-size: 11px;
    }
}




/* ========== AUM ACG Contact Panel ========== */
.aum-acg-contact-panel {
    width: 100%;
}

.aum-acg-contact-panel .aum-acg-contact-panel__wrap {
    display: grid;
    grid-template-columns: 1.05fr 1.4fr;
    overflow: hidden;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(11, 18, 32, 0.10);
}

.aum-acg-contact-panel .aum-acg-contact-panel__left {
    background: #0B3AAE;
    padding: 54px 36px;
    color: #fff;
}

.aum-acg-contact-panel .aum-acg-contact-panel__left-title {
    font-weight: 600;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.08;
    margin: 0 0 18px 0;
}

.aum-acg-contact-panel .aum-acg-contact-panel__left-desc {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.aum-acg-contact-panel .aum-acg-contact-panel__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.14);
    margin: 34px 0 26px;
}

.aum-acg-contact-panel .aum-acg-contact-panel__bottom {
    display: grid;
    grid-template-columns: 56px 1fr;
    /* iconbox 固定宽度 */
    gap: 14px;
    /* icon 与右侧间距 */
    align-items: start;
}

/* iconbox 本身保留你原来的样式 */
.aum-acg-contact-panel .aum-acg-contact-panel__iconbox {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.aum-acg-contact-panel .aum-acg-contact-panel__iconbox i {
    font-size: 24px;
    color: #3CFF9A;
}

.aum-acg-contact-panel .aum-acg-contact-panel__iconbox svg {
    width: 24px;
    height: 24px;
    fill: #3CFF9A;
}

.aum-acg-contact-panel .aum-acg-contact-panel__bottom-right {
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 18px;
}

/* 第一行：feature text */
.aum-acg-contact-panel .aum-acg-contact-panel__feature-text {
    display: block;
}

.aum-acg-contact-panel .aum-acg-contact-panel__feature-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    margin-top: 2px;
    color: #fff;
}

.aum-acg-contact-panel .aum-acg-contact-panel__feature-desc {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* 第二行：左 wechat / 右 qr */
.aum-acg-contact-panel .aum-acg-contact-panel__wechat-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: end;
}

.aum-acg-contact-panel .aum-acg-contact-panel__wechat {
    margin-top: 0;
    /* 原来有 margin-top:18px，这里不需要了 */
}

.aum-acg-contact-panel .aum-acg-contact-panel__wechat-title {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.95;
}

.aum-acg-contact-panel .aum-acg-contact-panel__wechat-sub {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.aum-acg-contact-panel .aum-acg-contact-panel__wechat-time {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.aum-acg-contact-panel .aum-acg-contact-panel__qr {
    justify-self: end;
}

.aum-acg-contact-panel .aum-acg-contact-panel__qr-img {
    width: 92px !important;
    height: 92px !important;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
}

.aum-acg-contact-panel .aum-acg-contact-panel__right {
    background: #fff;
    padding: 36px 36px;
}

.aum-acg-contact-panel .aum-acg-contact-panel__form {
    width: 100%;
}

/* 让 CF7 表单更贴近 UI（轻量兜底，可再按你站点 form 样式覆盖） */
.aum-acg-contact-panel .wpcf7 form {
    margin: 0;
}

.aum-acg-contact-panel .wpcf7 input[type="text"],
.aum-acg-contact-panel .wpcf7 input[type="tel"],
.aum-acg-contact-panel .wpcf7 input[type="email"],
.aum-acg-contact-panel .wpcf7 textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(11, 18, 32, 0.10);
    padding: 12px 14px;
    outline: none;
}

.aum-acg-contact-panel .wpcf7 input[type="submit"],
.aum-acg-contact-panel .wpcf7 button {
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 800;
}

/* 响应式 */
@media (max-width: 1024px) {
    .aum-acg-contact-panel .aum-acg-contact-panel__wrap {
        grid-template-columns: 1fr;
    }

    .aum-acg-contact-panel .aum-acg-contact-panel__left,
    .aum-acg-contact-panel .aum-acg-contact-panel__right {
        padding: 34px 22px;
    }

    /* bottom：移动端改为上下 */
    .aum-acg-contact-panel .aum-acg-contact-panel__bottom {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .aum-acg-contact-panel .aum-acg-contact-panel__wechat-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .aum-acg-contact-panel .aum-acg-contact-panel__qr {
        justify-self: start;
    }
}




/* ========== AUM ACG Info Bar ========== */
.aum-acg-info-bar {
    width: 100%;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 16px;
}

.aum-acg-info-bar .aum-acg-info-bar__inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.aum-acg-info-bar .aum-acg-info-bar__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0B3AAE;
    /* 可由控件覆盖（你要求的 i 背景色控件） */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.aum-acg-info-bar .aum-acg-info-bar__icon-svg {
    display: block;
    width: 20px;
    height: 20px;
}

.aum-acg-info-bar .aum-acg-info-bar__text {
    flex: 1 1 auto;
    /* 右侧占剩余全宽 */
    min-width: 0;
}

.aum-acg-info-bar .aum-acg-info-bar__title {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.4;
    color: #0B1220;
    margin-bottom: 6px;
}

.aum-acg-info-bar .aum-acg-info-bar__desc {
    font-size: 13px;
    line-height: 1.85;
    color: #3D4B66;
}







/* ========== AUM ACG Industry Grid (7) ========== */
.aum-acg-industry-grid {
    width: 100%;
}

.aum-acg-industry-grid .aum-acg-industry-grid__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 18px;
    
}

/* 桌面整体比例（可选） */
.aum-acg-industry-grid.aum-acg-industry-grid--aspect-1-1 .aum-acg-industry-grid__grid {
    aspect-ratio: 1 / 1;
}

.aum-acg-industry-grid.aum-acg-industry-grid--aspect-4-3 .aum-acg-industry-grid__grid {
    aspect-ratio: 4 / 3;
}

.aum-acg-industry-grid.aum-acg-industry-grid--aspect-16-9 .aum-acg-industry-grid__grid {
    aspect-ratio: 16 / 9;
}

/* 固定布局：7 项定位 */
.aum-acg-industry-grid .aum-acg-industry-grid__item {
    position: relative;
    display: block;
    text-decoration: none !important;
    color: inherit;
    min-height: 0;
}

/* 1号：第一行跨两列（1-2格） */
.aum-acg-industry-grid .aum-acg-industry-grid__item--pos1 {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

/* 2号：第二行第一列 */
.aum-acg-industry-grid .aum-acg-industry-grid__item--pos2 {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* 3号：竖跨（第一行第三列 + 第二行第三列） */
.aum-acg-industry-grid .aum-acg-industry-grid__item--pos3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* 4号：第二行第二列（图里红框那种） */
.aum-acg-industry-grid .aum-acg-industry-grid__item--pos4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* 5/6/7号：第三行三列 */
.aum-acg-industry-grid .aum-acg-industry-grid__item--pos5 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.aum-acg-industry-grid .aum-acg-industry-grid__item--pos6 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.aum-acg-industry-grid .aum-acg-industry-grid__item--pos7 {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}

.aum-acg-industry-grid .aum-acg-industry-grid__card {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 26px;
    
    overflow: hidden;
    transform: translateY(0);
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-industry-grid .aum-acg-industry-grid__bg {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transform: scale(1);
    transition: transform .8s ease;
}

.aum-acg-industry-grid .aum-acg-industry-grid__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.70) 100%);
    pointer-events: none;
}

.aum-acg-industry-grid .aum-acg-industry-grid__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    
}

.aum-acg-industry-grid .aum-acg-industry-grid__toprow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__iconbox {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(45, 99, 255, 0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.aum-acg-industry-grid .aum-acg-industry-grid__iconbox i {
    font-size: 18px;
    color: #fff;
}

.aum-acg-industry-grid .aum-acg-industry-grid__iconbox svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.aum-acg-industry-grid .aum-acg-industry-grid__subtitle {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
}

.aum-acg-industry-grid .aum-acg-industry-grid__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 10px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.80);
    max-width: 520px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 800;
}

/* Hover 内部信息卡（默认隐藏，hover 出现） */
.aum-acg-industry-grid .aum-acg-industry-grid__hovercard {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 16px;
    padding: 14px 14px 12px;
    background: rgba(20, 26, 38, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    opacity: 0;
    transform: translateY(30%);
    pointer-events: none;
    transition: opacity .8s ease, transform .22s ease;
}

.aum-acg-industry-grid .aum-acg-industry-grid__kv {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__kvrow {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.aum-acg-industry-grid .aum-acg-industry-grid__kvk {
    opacity: 0.85;
    font-weight: 800;
}

.aum-acg-industry-grid .aum-acg-industry-grid__kvv {
    font-weight: 600;
}

.aum-acg-industry-grid .aum-acg-industry-grid__reco {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 10px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__hoverlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #7FC0FF;
}

.aum-acg-industry-grid .aum-acg-industry-grid__arrow {
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
}

.aum-acg-industry-grid .aum-acg-industry-grid__hc-cta {
    display: flex;
    justify-content: space-between;
}

.aum-acg-industry-grid .aum-acg-industry-grid__hc-cta .aum-acg-industry-grid__reco {
    margin-bottom: 0 !important;
}

/* Hover 动效：上移 + 背景放大 + 信息卡弹出 */
@media (hover:hover) and (pointer:fine) {
    .aum-acg-industry-grid .aum-acg-industry-grid__item:hover .aum-acg-industry-grid__card {
        /* transform 上移由控件输出到 :hover，可叠加也没关系 */
        box-shadow: 0 22px 60px rgba(11, 18, 32, 0.18);
    }

    .aum-acg-industry-grid .aum-acg-industry-grid__item:hover .aum-acg-industry-grid__bg {
        transform: scale(1.08);
    }

    .aum-acg-industry-grid .aum-acg-industry-grid__item:hover .aum-acg-industry-grid__hovercard {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 小卡片/竖卡默认标题字号微调（可后续再做控件） */
.aum-acg-industry-grid .aum-acg-industry-grid__item--small .aum-acg-industry-grid__title {
    font-size: 20px;
}

.aum-acg-industry-grid .aum-acg-industry-grid__item--tall .aum-acg-industry-grid__title {
    font-size: 24px;
}

/* ========== Mobile：全部正方形小格 + 点击跳转（已整卡<a>实现） ========== */
@media (max-width: 1024px) {

    /* 强制清除桌面比例 */
    .aum-acg-industry-grid.aum-acg-industry-grid--aspect-1-1 .aum-acg-industry-grid__grid,
    .aum-acg-industry-grid.aum-acg-industry-grid--aspect-4-3 .aum-acg-industry-grid__grid,
    .aum-acg-industry-grid.aum-acg-industry-grid--aspect-16-9 .aum-acg-industry-grid__grid {
        aspect-ratio: auto !important;
    }

    .aum-acg-industry-grid .aum-acg-industry-grid__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    /* 取消定位 */
    .aum-acg-industry-grid .aum-acg-industry-grid__item {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* 每个卡片强制正方形 */
    .aum-acg-industry-grid .aum-acg-industry-grid__card {
        aspect-ratio: 1 / 1;
    }

    .aum-acg-industry-grid .aum-acg-industry-grid__hovercard {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .aum-acg-industry-grid .aum-acg-industry-grid__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}






/* ========== AUM ACG Custom CTA ========== */
.aum-acg-custom-cta {
    width: 100%;
}

.aum-acg-custom-cta .aum-acg-custom-cta__wrap {
    background: #F6FAFF;
    /* 可控 */
    border-radius: 42px;
    /* 可控 */
}

.aum-acg-custom-cta .aum-acg-custom-cta__inner {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    align-items: center;
    gap: 36px;
    /* 可控 */
}

.aum-acg-custom-cta .aum-acg-custom-cta__left {
    max-width: 720px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #2D63FF;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(45, 99, 255, 0.10);
    margin-bottom: 18px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__title {
    font-weight: 950;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.05;
    color: #0B1220;
    margin-bottom: 14px;
}

/* 高亮 span 继承行高，渐变模式下防裁切 */
.aum-acg-custom-cta .aum-acg-custom-cta__title span {
    display: inline;
    line-height: inherit;
    padding-bottom: 0.08em;
    /* 防渐变文字底部裁切 */
}

.aum-acg-custom-cta .aum-acg-custom-cta__desc {
    font-size: 14px;
    line-height: 1.9;
    color: #5A667C;
    max-width: 640px;
}

/* 右侧卡片 */
.aum-acg-custom-cta .aum-acg-custom-cta__card {
    background: #0B3AAE;
    /* 可控 */
    color: #fff;
    border-radius: 22px;
    /* 可控 */
    padding: 22px;
    /* 可控 */
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.18);
}

.aum-acg-custom-cta .aum-acg-custom-cta__row1 {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: start;
}

.aum-acg-custom-cta .aum-acg-custom-cta__card-title {
    font-weight: 950;
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 8px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__card-sub {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.aum-acg-custom-cta .aum-acg-custom-cta__qr-img {
    width: 78px !important;
    height: 78px !important;
    object-fit: cover;
    border-radius: 12px;
    background: #fff;
    padding: 6px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__row2 {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__phone-label {
    font-weight: 600;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__phone {
    font-weight: 950;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.aum-acg-custom-cta .aum-acg-custom-cta__emailbtn {
    margin-top: 14px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
    background: #fff;
    /* 可控 */
    color: #0B3AAE;
    /* 可控 */
    border-radius: 14px;
    /* 可控 */
    padding: 12px 14px;
    font-weight: 950;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-custom-cta .aum-acg-custom-cta__emailbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.aum-acg-custom-cta .aum-acg-custom-cta__emailicon {
    font-size: 14px;
    line-height: 1;
}

/* 响应式 */
@media (max-width: 1024px) {
    .aum-acg-custom-cta .aum-acg-custom-cta__inner {
        grid-template-columns: 1fr;
    }

    .aum-acg-custom-cta .aum-acg-custom-cta__right {
        max-width: 520px;
    }
}






/* ========== AUM ACG Support Search ========== */
.aum-acg-support-search {
    width: 100%;
    position: relative;
    background-color: #0f172a;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 32px 32px;
    
}

.aum-acg-support-search .aum-acg-support-search__inner {
    max-width: 1200px;
    min-height: 400px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* 中间内容区域（上下左右居中感） */
.aum-acg-support-search .aum-acg-support-search__content {
    text-align: center;
    max-width: 980px;
    margin: 0 auto;
}

.aum-acg-support-search .aum-acg-support-search__title {
    font-weight: 950;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.12;
    color: #fff;
    margin-bottom: 14px;
}

.aum-acg-support-search .aum-acg-support-search__subtitle {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 22px;
}

/* 大搜索框 */
.aum-acg-support-search .aum-acg-support-search__search {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 10px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.aum-acg-support-search .aum-acg-support-search__searchicon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 36px;
    opacity: 0.55;
}

.aum-acg-support-search .aum-acg-support-search__input {
    width: 100%;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    height: 36px;
    font-size: 14px;
    color: #0B1220;
}

.aum-acg-support-search .aum-acg-support-search__btn {
    border: 0;
    outline: none;
    height: 36px;
    padding: 0 22px;
    border-radius: 14px;
    background: #2D63FF;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-support-search .aum-acg-support-search__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(45, 99, 255, 0.35);
}

/* 热词 */
.aum-acg-support-search .aum-acg-support-search__hot {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 13px;
}

.aum-acg-support-search .aum-acg-support-search__hot-label {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 800;
}

.aum-acg-support-search .aum-acg-support-search__hotword {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none !important;
    font-weight: 800;
}

.aum-acg-support-search .aum-acg-support-search__hotword:hover {
    color: #7FC0FF;
}

/* 底部卡片浮层：叠加在大背景底部线上方 */
.aum-acg-support-search .aum-acg-support-search__cardswrap {
    position: absolute;
    top: 100%;
    transform: translateY(-60px);
    display: flex;
    justify-content: center;
}

.aum-acg-support-search .aum-acg-support-search__cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.aum-acg-support-search .aum-acg-support-search__card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 18px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.14);
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-support-search .aum-acg-support-search__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(11, 18, 32, 0.18);
}

.aum-acg-support-search .aum-acg-support-search__card-iconbox {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--aum-acg-support-search-iconbox-bg, rgba(45, 99, 255, 0.12));
}

.aum-acg-support-search .aum-acg-support-search__card-iconbox i {
    font-size: 18px;
    color: var(--aum-acg-support-search-icon-color, #2D63FF);
}

.aum-acg-support-search .aum-acg-support-search__card-iconbox svg {
    width: 18px;
    height: 18px;
    fill: var(--aum-acg-support-search-icon-color, #2D63FF);
}

.aum-acg-support-search .aum-acg-support-search__card-title {
    font-weight: 950;
    font-size: 16px;
    color: #0B1220;
}

.aum-acg-support-search .aum-acg-support-search__card-desc {
    font-size: 13px;
    line-height: 1.75;
    color: #5A667C;
}

/* 响应式 */
@media (max-width: 1024px) {
    .aum-acg-support-search .aum-acg-support-search__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .aum-acg-support-search .aum-acg-support-search__search {
        grid-template-columns: 40px 1fr auto;
        padding: 8px;
    }

    .aum-acg-support-search .aum-acg-support-search__btn {
        padding: 0 14px;
    }

    .aum-acg-support-search .aum-acg-support-search__cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}








/* ========== AUM ACG Latest Updates ========== */
.aum-acg-latest-updates {
    width: 100%;
}

.aum-acg-latest-updates .aum-acg-latest-updates__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.aum-acg-latest-updates .aum-acg-latest-updates__h-title {
    font-weight: 950;
    font-size: 20px;
    color: #0B1220;
}

.aum-acg-latest-updates .aum-acg-latest-updates__h-link {
    font-weight: 600;
    font-size: 13px;
    color: #2D63FF;
    text-decoration: none !important;
}

.aum-acg-latest-updates .aum-acg-latest-updates__h-link:hover {
    opacity: .9;
    text-decoration: underline !important;
}

.aum-acg-latest-updates .aum-acg-latest-updates__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* 控件会覆盖 */
    gap: 22px;
    /* 控件会覆盖 */
}

.aum-acg-latest-updates .aum-acg-latest-updates__card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 18px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-latest-updates .aum-acg-latest-updates__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
}

.aum-acg-latest-updates .aum-acg-latest-updates__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.aum-acg-latest-updates .aum-acg-latest-updates__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(45, 99, 255, 0.12);
    color: #2D63FF;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.aum-acg-latest-updates .aum-acg-latest-updates__date {
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 18, 32, 0.55);
}

.aum-acg-latest-updates .aum-acg-latest-updates__title {
    font-weight: 950;
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.aum-acg-latest-updates .aum-acg-latest-updates__titlelink {
    color: #0B1220;
    text-decoration: none !important;
}

.aum-acg-latest-updates .aum-acg-latest-updates__titlelink:hover {
    text-decoration: underline !important;
}

.aum-acg-latest-updates .aum-acg-latest-updates__excerpt {
    font-size: 13px;
    line-height: 1.75;
    color: #5A667C;
    margin-bottom: 14px;
}

.aum-acg-latest-updates .aum-acg-latest-updates__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 950;
    font-size: 13px;
    color: #2D63FF;
    text-decoration: none !important;
}

.aum-acg-latest-updates .aum-acg-latest-updates__arrow {
    font-size: 18px;
    line-height: 1;
    transform: translateY(-1px);
}

.aum-acg-latest-updates .aum-acg-latest-updates__empty {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed rgba(15, 23, 42, 0.20);
    border-radius: 12px;
    color: rgba(11, 18, 32, 0.65);
}

/* Mobile */
@media (max-width: 1024px) {
    .aum-acg-latest-updates .aum-acg-latest-updates__grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}






/* ========== AUM ACG FAQ ========== */
.aum-acg-faq {
    width: 100%;
}

.aum-acg-faq .aum-acg-faq__inner {
    max-width: 980px;
    /* 可控 */
    margin: 0 auto;
}

.aum-acg-faq .aum-acg-faq__head {
    text-align: center;
    margin-bottom: 26px;
}

.aum-acg-faq .aum-acg-faq__subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(45, 99, 255, 0.10);
    color: #2D63FF;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
}

.aum-acg-faq .aum-acg-faq__title {
    font-weight: 950;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.15;
    color: #0B1220;
    margin-bottom: 10px;
}

.aum-acg-faq .aum-acg-faq__desc {
    font-size: 14px;
    line-height: 1.8;
    color: #5A667C;
}

/* list */
.aum-acg-faq .aum-acg-faq__list {
    display: grid;
    gap: 14px;
}

.aum-acg-faq .aum-acg-faq__item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    overflow: hidden;
    transition: box-shadow .3s ease, transform .3s ease;
}

.aum-acg-faq .aum-acg-faq__toggle {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    padding: 16px 18px;
}

.aum-acg-faq .aum-acg-faq__q {
    font-weight: 950;
    font-size: 14px;
    color: #0B1220;
}

.aum-acg-faq .aum-acg-faq__chev {
    color: rgba(11, 18, 32, 0.55);
    font-size: 18px;
    line-height: 1;
    transition: transform .3s ease;
    transform: rotate(0deg);
}

.aum-acg-faq .aum-acg-faq__item.is-open .aum-acg-faq__chev {
    transform: rotate(180deg);
}

.aum-acg-faq .aum-acg-faq__panel {
    padding: 0 18px 16px 18px;
}

.aum-acg-faq .aum-acg-faq__a {
    font-size: 13px;
    line-height: 1.85;
    color: #5A667C;
}

/* bottom link */
.aum-acg-faq .aum-acg-faq__bottom {
    text-align: center;
    margin-top: 22px;
}

.aum-acg-faq .aum-acg-faq__bottomlink {
    font-weight: 950;
    font-size: 13px;
    color: #2D63FF;
    text-decoration: none !important;
}

.aum-acg-faq .aum-acg-faq__bottomlink:hover {
    text-decoration: underline !important;
}

/* mobile */
@media (max-width: 600px) {
    .aum-acg-faq .aum-acg-faq__toggle {
        padding: 14px 14px;
    }

    .aum-acg-faq .aum-acg-faq__panel {
        padding: 0 14px 14px 14px;
    }
}







/* ========== AUM ACG Page Head ========== */
.aum-acg-page-head {
    width: 100%;
    padding: 64px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgb(239, 246, 255), rgb(255, 255, 255));
}

.aum-acg-page-head.is-dot-off {
    background-image: none !important;
}

.aum-acg-page-head .aum-acg-page-head__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-acg-page-head .aum-acg-page-head__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 18px;
    align-items: center;
}

.aum-acg-page-head .aum-acg-page-head__breadcrumb {
    font-size: 12px;
    font-weight: 800;
    color: rgba(11, 18, 32, 0.55);
    margin-bottom: 10px;
}

.aum-acg-page-head .aum-acg-page-head__title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 950;
    color: #0B1220;
    line-height: 1.12;
    margin-bottom: 10px;
}

.aum-acg-page-head .aum-acg-page-head__desc {
    font-size: 13px;
    line-height: 1.8;
    color: #5A667C;
}

.aum-acg-page-head .aum-acg-page-head__right {
    display: flex;
    justify-content: flex-end;
}

.aum-acg-page-head .aum-acg-page-head__search {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 12px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: center;
}

.aum-acg-page-head .aum-acg-page-head__icon {
    opacity: .55;
}

.aum-acg-page-head .aum-acg-page-head__input {
    width: 100%;
    border: 0 !important;
    outline: none !important;
    background: transparent !important;
    font-size: 13px;
    color: #0B1220;
}

.aum-acg-page-head .aum-acg-page-head__input::placeholder {
    color: rgba(11, 18, 32, 0.45);
}

/* Mobile */
@media (max-width: 900px) {
    .aum-acg-page-head .aum-acg-page-head__grid {
        grid-template-columns: 1fr;
    }

    .aum-acg-page-head .aum-acg-page-head__right {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .aum-acg-page-head .aum-acg-page-head__search {
        max-width: 520px;
    }
}







/* ========== AUM ACG Dual Cards ========== */
.aum-acg-dual-cards {
    width: 100%;
}

.aum-acg-dual-cards .aum-acg-dual-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.aum-acg-dual-cards .aum-acg-dual-cards__card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    padding: 22px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

.aum-acg-dual-cards .aum-acg-dual-cards__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
}

.aum-acg-dual-cards .aum-acg-dual-cards__top {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.aum-acg-dual-cards .aum-acg-dual-cards__iconbox {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(45, 99, 255, 0.10);
    display: grid;
    place-items: center;
    transition: transform .3s ease, border-radius .3s ease;
}

.aum-acg-dual-cards .aum-acg-dual-cards__iconimg {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: transform .3s ease;
}

.aum-acg-dual-cards .aum-acg-dual-cards__title {
    font-weight: 950;
    font-size: 16px;
    color: #0B1220;
}

.aum-acg-dual-cards .aum-acg-dual-cards__desc {
    font-size: 13px;
    line-height: 1.8;
    color: #5A667C;
}

.aum-acg-dual-cards .aum-acg-dual-cards__divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    margin: 18px 0 14px;
}

/* Card 1 meta row */
.aum-acg-dual-cards .aum-acg-dual-cards__meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.aum-acg-dual-cards .aum-acg-dual-cards__meta {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: rgba(11, 18, 32, 0.55);
    font-size: 12px;
    font-weight: 800;
}

.aum-acg-dual-cards .aum-acg-dual-cards__meta-ic {
    display: inline-flex;
    align-items: center;
}

/* Card 2 buttons */
.aum-acg-dual-cards .aum-acg-dual-cards__btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.aum-acg-dual-cards .aum-acg-dual-cards__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.12);
    color: #16A34A;
    border-radius: 10px;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none !important;
    transition: transform .3s ease, opacity .3s ease, background .3s ease, color .3s ease;
    outline: none;
    border: none;
    cursor: pointer;
}

/* 悬停：图标+图标底色放大（写死） */
.aum-acg-dual-cards .aum-acg-dual-cards__card:hover .aum-acg-dual-cards__iconbox {
    transform: scale(1.08);
}

.aum-acg-dual-cards .aum-acg-dual-cards__card:hover .aum-acg-dual-cards__iconimg {
    transform: scale(1.08);
}

/* Mobile */
@media (max-width: 900px) {
    .aum-acg-dual-cards .aum-acg-dual-cards__grid {
        grid-template-columns: 1fr;
    }
}











/* ========== AUM ACG Ecosystem ========== */
.aum-acg-ecosystem {
    width: 100%;
}

.aum-acg-ecosystem .aum-acg-ecosystem__head {
    margin-bottom: 18px;
}

.aum-acg-ecosystem .aum-acg-ecosystem__titleRow {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.aum-acg-ecosystem .aum-acg-ecosystem__bar {
    width: 6px;
    /* 控件覆盖 */
    border-radius: 6px;
    /* 控件覆盖 */
    background: #2D63FF;
    /* 控件覆盖 */
    align-self: stretch;
    /* 跟随标题高度 */
}

.aum-acg-ecosystem .aum-acg-ecosystem__title {
    font-weight: 950;
    font-size: 20px;
    line-height: 1.2;
    color: #0B1220;
}

.aum-acg-ecosystem .aum-acg-ecosystem__desc {
    color: #5A667C;
    font-size: 13px;
    line-height: 1.8;
    max-width: 920px;
}

.aum-acg-ecosystem .aum-acg-ecosystem__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* 控件覆盖 */
    gap: 22px;
    /* 控件覆盖 */
}

.aum-acg-ecosystem .aum-acg-ecosystem__card {
    display: block;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 12px;
    padding: 18px;
    text-decoration: none !important;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-ecosystem .aum-acg-ecosystem__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
}

.aum-acg-ecosystem .aum-acg-ecosystem__logoBox {
    width: 100%;
    height: 54px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.03);
    display: grid;
    place-items: center;
    margin-bottom: 12px;
}

.aum-acg-ecosystem .aum-acg-ecosystem__logo {
    max-height: 26px;
    max-width: 80%;
    object-fit: contain;
}

.aum-acg-ecosystem .aum-acg-ecosystem__name {
    font-weight: 950;
    font-size: 14px;
    color: #0B1220;
    margin-bottom: 8px;
}

.aum-acg-ecosystem .aum-acg-ecosystem__intro {
    font-size: 12px;
    line-height: 1.75;
    color: #5A667C;
}

/* Mobile */
@media (max-width: 1024px) {
    .aum-acg-ecosystem .aum-acg-ecosystem__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .aum-acg-ecosystem .aum-acg-ecosystem__grid {
        grid-template-columns: 1fr;
    }
}








/* ========== AUM ACG CTA Dots ========== */
.aum-acg-cta-dots {
    position: relative;
    width: 100%;
    background-color: #2563EB;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 26px 26px;
    border-radius: 16px;
    overflow: hidden;
}

.aum-acg-cta-dots.is-dots-off {
    background-image: none !important;
}

.aum-acg-cta-dots .aum-acg-cta-dots__inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
    margin: 0 auto;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 上下居中 */
    text-align: center;
    gap: 12px;
}

.aum-acg-cta-dots .aum-acg-cta-dots__title {
    font-weight: 950;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.15;
    color: #fff;
}

.aum-acg-cta-dots .aum-acg-cta-dots__desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    line-height: 1.85;
    max-width: 820px;
}

.aum-acg-cta-dots .aum-acg-cta-dots__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.aum-acg-cta-dots .aum-acg-cta-dots__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 13px;
    text-decoration: none !important;
    transition: transform .3s ease, background .3s ease, color .3s ease, opacity .3s ease;
    user-select: none;
}

.aum-acg-cta-dots .aum-acg-cta-dots__btn--1 {
    background: #fff;
    color: #1D4ED8;
    border-radius: 12px;
    padding: 12px 22px;
}

.aum-acg-cta-dots .aum-acg-cta-dots__btn--2 {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 12px;
    padding: 12px 22px;
}

.aum-acg-cta-dots.is-lift .aum-acg-cta-dots__btn:hover {
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 640px) {
    .aum-acg-cta-dots .aum-acg-cta-dots__inner {
        min-height: 0;
    }

    .aum-acg-cta-dots .aum-acg-cta-dots__actions {
        gap: 10px;
    }

    .aum-acg-cta-dots .aum-acg-cta-dots__btn {
        width: 100%;
    }
}






/* ========== AUM ACG Anchor Section ========== */
.aum-acg-anchor-section {
    width: 100%;
}

.aum-acg-anchor-section__title {
    font-size: 22px;
    font-weight: 950;
    line-height: 1.2;
    margin: 0 0 12px;
    color: #0B1220;
}

.aum-acg-anchor-section__content {
    color: #5A667C;
    font-size: 13px;
    line-height: 1.85;
}

.aum-acg-anchor-section__content p {
    margin: 0 0 12px;
}

.aum-acg-anchor-section__divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    margin-top: 18px;
}

/* ========== AUM ACG TOC ========== */
.aum-acg-toc {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 12px;
    padding: 18px;
}

.aum-acg-toc__title {
    font-weight: 950;
    font-size: 14px;
    color: #0B1220;
    margin-bottom: 12px;
}

.aum-acg-toc__list {
    display: grid;
    gap: 6px;
}

.aum-acg-toc__empty {
    font-size: 12px;
    color: rgba(11, 18, 32, 0.55);
    padding: 8px 10px;
}

.aum-acg-toc__item {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none !important;
    color: rgba(11, 18, 32, 0.75);
    padding: 10px 12px;
    border-radius: 10px;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.aum-acg-toc__item:hover {
    color: #2563EB;
    transform: translateY(-1px);
}

.aum-acg-toc__item.is-active {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.08);
}

.aum-acg-toc__num {
    opacity: .65;
    font-weight: 600;
    font-size: 12px;
}

.aum-acg-toc__text {
    font-weight: 800;
    font-size: 12px;
    line-height: 1.4;
}








/* ========== AUM ACG CTA Card ========== */
.aum-acg-cta-card {
    width: 100%;
    background: #2563EB;
    border-radius: 16px;
    padding: 22px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-cta-card.is-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(11, 18, 32, 0.14);
}

.aum-acg-cta-card__inner {
    text-align: left;
}

.aum-acg-cta-card__title {
    font-weight: 950;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 10px;
}

.aum-acg-cta-card__desc {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.90);
    margin: 0 0 16px;
}

.aum-acg-cta-card__btnWrap {
    margin-top: 0;
    /* 控件覆盖 */
}

.aum-acg-cta-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1D4ED8;
    font-weight: 950;
    font-size: 13px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: background .3s ease, color .3s ease, transform .3s ease, opacity .3s ease;
    user-select: none;
}

.aum-acg-cta-card__btn:hover {
    background: #EAF0FF;
    color: #1D4ED8;
    transform: translateY(-1px);
}

/* 按钮铺满 */
.aum-acg-cta-card.is-btn-full .aum-acg-cta-card__btn {
    width: 100%;
}

/* Mobile */
@media (max-width: 640px) {
    .aum-acg-cta-card {
        padding: 18px;
        border-radius: 14px;
    }
}







/* ========== AUM ACG Banner Points ========== */
.aum-acg-banner-points {
    width: 100%;
}

.aum-acg-banner-points__inner {
    width: 100%;
    max-width: 960px;
}

.aum-acg-banner-points__title {
    margin: 0 0 14px;
    font-weight: 950;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.1;
    color: #fff;
}

.aum-acg-banner-points__desc {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.9;
    max-width: 780px;
}

.aum-acg-banner-points__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.aum-acg-banner-points__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    user-select: none;
}

.aum-acg-banner-points__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #34D399;
    /* 默认绿色 */
}

.aum-acg-banner-points__icon svg {
    width: 14px;
    height: 14px;
}

.aum-acg-banner-points__itemText {
    font-weight: 800;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
}

/* Mobile */
@media (max-width: 640px) {
    .aum-acg-banner-points__row {
        gap: 12px;
    }

    .aum-acg-banner-points__item {
        width: auto;
    }
}




/* ========== AUM ACG Partner Logos ========== */
.aum-acg-partner-logos {
    width: 100%;
}

.aum-acg-partner-logos__title {
    margin: 0;
    font-weight: 950;
    font-size: 18px;
    color: #0B1220;
}

.aum-acg-partner-logos__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    /* 默认，控件会覆盖 */
    gap: 24px;
    margin-top: 18px;
}

.aum-acg-partner-logos__item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    min-height: 58px;
    text-decoration: none !important;
    transition: transform .3s ease, box-shadow .3s ease;
}

.aum-acg-partner-logos__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.12);
}

.aum-acg-partner-logos__logo {
    height: 22px;
    /* 控件会覆盖 */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.45;
    /* 控件会覆盖 */
}

/* Mobile */
@media (max-width: 767px) {
    .aum-acg-partner-logos__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .aum-acg-partner-logos__item {
        padding: 16px;
    }
}








/* ========== AUM ACG Text Tags ========== */
.aum-acg-text-tags {
    width: 100%;
}

.aum-acg-text-tags__title {
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #0B1220;
    margin: 0 0 10px;
}

.aum-acg-text-tags__list {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 默认：换行 */
.aum-acg-text-tags.is-wrap .aum-acg-text-tags__list {
    flex-wrap: wrap;
}

/* 不换行：可横向滚动（更适合移动端） */
.aum-acg-text-tags.is-nowrap .aum-acg-text-tags__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.aum-acg-text-tags.is-nowrap .aum-acg-text-tags__list::-webkit-scrollbar {
    height: 6px;
}

.aum-acg-text-tags.is-nowrap .aum-acg-text-tags__list::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.14);
    border-radius: 999px;
}

.aum-acg-text-tags__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 8px;
    padding: 6px 10px;
    font-weight: 600;
    font-size: 12px;
    color: #0B1220;
    text-decoration: none !important;
    transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
    user-select: none;
}

.aum-acg-text-tags__item:hover {
    background: #F3F6FF;
    color: #1D4ED8;
    border-color: rgba(29, 78, 216, 0.25);
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 640px) {
    .aum-acg-text-tags__title {
        letter-spacing: .10em;
    }
}






/* ========== 文章 AUM ACG Feature Cards ========== */
.article-aum-acg-feature-cards {
    width: 100%;
}

.article-aum-acg-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* 默认，控件会覆盖 */
    gap: 22px;
}

.article-aum-acg-feature-cards__card {
    display: block;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 22px;
    text-decoration: none !important;
    transition: transform .3s ease, box-shadow .3s ease;
}

.article-aum-acg-feature-cards__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 46px rgba(11, 18, 32, 0.10);
}

.article-aum-acg-feature-cards__iconWrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EEF2FF;
    /* 控件控制 */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.article-aum-acg-feature-cards__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    /* 控件控制 */
    color: #2563EB;
    /* 控件控制 */
}

.article-aum-acg-feature-cards__icon svg {
    width: 18px;
    height: 18px;
}

.article-aum-acg-feature-cards__content {
    margin-top: 14px;
    /* 控件控制 */
    font-size: 13px;
    line-height: 1.9;
    color: #0B1220;
}

/* 给用户自己输入“对号”留空间：ul 更紧凑一点（可按需删） */
.article-aum-acg-feature-cards__content ul {
    margin: 10px 0 0;
    padding-left: 18px;
}

.article-aum-acg-feature-cards__content li {
    margin: 6px 0;
}

/* Mobile */
@media (max-width: 767px) {
    .article-aum-acg-feature-cards__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .article-aum-acg-feature-cards__card {
        padding: 18px;
    }
}








/* ========== 文章 AUM ACG Step Guide ========== */
.article-aum-acg-step-guide {
    width: 100%;
    background: #F8FBFF;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 14px;
    padding: 22px;
}

.article-aum-acg-step-guide__head {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.article-aum-acg-step-guide__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0B3B91;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-aum-acg-step-guide__title {
    margin: 0;
    font-weight: 950;
    font-size: 18px;
    color: #0B1220;
}

.article-aum-acg-step-guide__desc {
    margin-top: 10px;
    margin-bottom: 18px;
    color: rgba(11, 18, 32, 0.72);
    font-size: 13px;
    line-height: 1.9;
    max-width: 980px;
}

.article-aum-acg-step-guide__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 默认，控件会覆盖 */
    gap: 18px;
}

.article-aum-acg-step-guide__card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    padding: 16px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.article-aum-acg-step-guide__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(11, 18, 32, 0.10);
}

.article-aum-acg-step-guide__cardTitle {
    font-weight: 950;
    font-size: 13px;
    color: #0B1220;
}

.article-aum-acg-step-guide__cardDesc {
    margin-top: 6px;
    font-weight: 700;
    font-size: 12px;
    color: rgba(11, 18, 32, 0.62);
}

/* Mobile */
@media (max-width: 767px) {
    .article-aum-acg-step-guide {
        padding: 18px;
    }

    .article-aum-acg-step-guide__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}









/* ========== 文章 AUM ACG File Download ========== */
.article-aum-acg-file-download {
    width: 100%;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 12px;
    padding: 14px;
}

.article-aum-acg-file-download__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.article-aum-acg-file-download__left {
    display: flex;
    align-items: center;
    gap: 12px;
    
    min-width: 0;
}

.article-aum-acg-file-download__formatBox {
    width: 36px;
    
    height: 36px;
    
    border-radius: 10px;
    background: #FFF1F2;
    
    color: #EF4444;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: .04em;
    flex: 0 0 auto;
    text-transform: uppercase;
}

.article-aum-acg-file-download__meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.article-aum-acg-file-download__fileTitle {
    font-weight: 950;
    font-size: 14px;
    color: #0B1220;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-aum-acg-file-download__fileSize {
    font-weight: 800;
    font-size: 12px;
    color: rgba(11, 18, 32, 0.55);
}

.article-aum-acg-file-download__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F1F5F9;
    
    color: #0B1220;
    
    padding: 10px 16px;
    
    border-radius: 10px;
    
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
    flex: 0 0 auto;
}

.article-aum-acg-file-download__btn:hover {
    transform: translateY(-1px);
    background: #E2E8F0;
    
    box-shadow: 0 14px 34px rgba(11, 18, 32, 0.10);
}

.article-aum-acg-file-download__btn.is-disabled {
    opacity: .55;
    pointer-events: none;
}

/* Mobile */
@media (max-width: 767px) {
    .article-aum-acg-file-download__row {
        gap: 10px;
    }

    .article-aum-acg-file-download__btn {
        padding: 10px 12px;
    }

    .article-aum-acg-file-download__formatBox {
        width: 42px;
        height: 42px;
    }
}