/* ====== Archive / Taxonomy Common ====== */
.aum-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 16px;
}

.aum-archive-hero {
    padding: 64px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgb(239, 246, 255), rgb(255, 255, 255));
}

.aum-archive-hero .aum-archive {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    justify-content: space-between;
}

.aum-hero-left {
    flex: 1;
    min-width: 0;
}

.aum-hero-right {
    width: 300px;
    max-width: 100%;
}

.aum-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #666;
    font-size: 13px;
}

.aum-breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.aum-breadcrumbs a:hover {
    text-decoration: underline;
}

.aum-breadcrumbs .sep {
    margin-left: 8px;
    color: #bbb;
}

.aum-breadcrumbs .current-page-text {
    font-weight: bold;
    color: #000;
}

.aum-hero-title {
    margin: 0 0 30px 0;
    font-size: 40px;
    line-height: 1.15;
}

.aum-hero-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    max-width: 720px;
}

.aum-hero-desc p {
    margin: 0;
}

.aum-archive-search {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.aum-search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    color: #999;
}

.aum-archive-search input[type="search"] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

.aum-archive-search input[type="search"]:focus+.search-icon {
    color: #1e6fff;
}

/* Tabs */
.aum-archive-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.aum-archive-tabs .tab {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    text-decoration: none;
    color: #333;
    background: #fff;
    font-size: 14px;
}

.aum-archive-tabs .tab:hover {
    color: #1e6fff;
}

.aum-archive-tabs .tab.is-active {
    color: #1e6fff;
    font-weight: bold;
    border-bottom: 2px solid #1e6fff;
}

/* Grid */
.aum-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1024px) {
    .aum-archive-hero {
        flex-direction: column;
    }

    .aum-hero-right {
        width: 100%;
    }

    .aum-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aum-archive-hero .aum-archive{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .aum-cards {
        grid-template-columns: 1fr;
    }

    .aum-hero-title {
        font-size: 30px;
    }
}

/* Card */
.aum-card {
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.aum-card-media {
    position: relative;
    display: block;
    height: 180px;
    background: #f3f4f6;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.aum-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    font-size: 12px;
    font-weight: bold;
    color: #1e6fff;
}

.aum-card-body {
    padding: 14px 14px 16px 14px;
}

.aum-card-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    line-height: 1.35;
}

.aum-card-title a {
    color: #111;
    text-decoration: none;
}

.aum-card-title a:hover {
    text-decoration: underline;
}

.aum-card-excerpt {
    margin: 0 0 14px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    min-height: 48px;
    border-bottom: 1px solid #eee;
}

.aum-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #888;
    font-size: 13px;
}

.aum-card-more {
    text-decoration: none;
    color: #888;
}

.aum-card-more:hover {
    text-decoration: underline;
}

/* Pagination */
.aum-pagination {
    margin-top: 26px;
    display: flex;
    justify-content: center;
}

.aum-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    margin: 0 6px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.aum-pagination .page-numbers.current {
    border-color: #1e6fff;
    color: #1e6fff;
}

.aum-empty {
    padding: 40px 0;
    text-align: center;
    color: #666;
}





/* ====== Single ====== */
.aum-single {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-single-top {
    padding: 64px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgb(239, 246, 255), rgb(255, 255, 255));
}

.aum-single-top .aum-single {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.aum-single-term {
    margin: 10px 0 12px;
}

.aum-term-pill {
    position: relative;
    /* 添加相对定位 */
    display: inline-flex;
    align-items: center;
    padding: 4px 12px 4px 24px;
    /* 左侧padding从12px改为24px，为圆点留空间 */
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    text-decoration: none;
    font-size: 13px;
    color: #1e6fff;
    background: #fff;
}

/* 分类标签前的闪烁圆点 */
.aum-term-pill .pill-dot {
    position: absolute;
    left: 8px;
    /* 距离左侧8px */
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #1e6fff;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.aum-single-title {
    margin: 0 0 30px 0;
    font-size: 44px;
    line-height: 1.15;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.aum-single-meta {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.aum-single-meta .meta-item {
    display: flex;
    gap: 8px;
    align-items: center;
}

.aum-single-meta .k {
    color: #999;
}

.aum-single-meta .v {
    color: #111;
    font-weight: 600;
}

/* Layout */
.aum-single-main {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding-top: 26px;
}

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

.aum-single-sidebar {
    width: 360px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Content typography (简单好用) */
.aum-single-content p {
    line-height: 1.9;
    color: #222;
    font-size: 16px;
}

.aum-single-content h2 {
    margin-top: 28px;
}

.aum-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.aum-single-content table {
    width: 100%;
    border-collapse: collapse;
}

.aum-single-content th,
.aum-single-content td {
    border: 1px solid #eee;
    padding: 10px;
}

/* Sidebar: related product card */
.aum-sidecard {
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.aum-sidecard-media {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px;
    background: #f7f8fb;
}

.aum-sidecard-media img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 14px;
}

.aum-sidecard-body {
    padding: 14px 16px 16px;
}

.aum-sidecard-label {
    color: #1e6fff;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.aum-sidecard-title {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
}

.aum-sidecard-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.aum-sidecard-btn {
    display: flex;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #1e6fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
}

.aum-sidecard-btn:hover {
    background: #1d4ed8ff;
    color: #fff;
}

/* Sidebar widgets */
.aum-widget {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    padding: 14px 14px 12px;
}

.aum-widget-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

.aum-widget-icon {
    color: #666;
}

.aum-widget-title {
    font-weight: 500;
    color: #111;
}

.aum-widget-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aum-tax-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    color: #111;
}

.aum-tax-item .count {
    min-width: 28px;
    text-align: right;
    color: #999;
    font-size: 12px;
}

.aum-tax-item.is-active {
    border-color: #1e6fff;
    color: #1e6fff;
    background-color: #eff6ff;
}

.aum-tax-item:hover {
    border-color: #bbb;
}

.aum-related-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aum-related-item {
    text-decoration: none;
    color: #111;
    line-height: 1.5;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

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

.aum-related-item:hover {
    text-decoration: underline;
}

/* Bottom more */
.aum-more {
    padding-top: 28px;
}

.aum-more-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.aum-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aum-more-card {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.aum-more-date {
    color: #1e6fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aum-more-card-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.aum-more-card-title a {
    color: #111;
    text-decoration: none;
}

.aum-more-card-title a:hover {
    text-decoration: underline;
}

.aum-more-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .aum-single-main {
        flex-direction: column;
    }

    .aum-single-sidebar {
        width: 100%;
    }

    .aum-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aum-single-title {
        font-size: 34px;
    }

    .aum-single {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .aum-more-grid {
        grid-template-columns: 1fr;
    }
}






/* ===== 产品中心 ===== */
.aum-product-center {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-product-box .aum-pc-hero .aum-product-center {
    margin-top: 20px;
    padding: 64px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.aum-product-center .aum-breadcrumbs a {
    color: #fff;
}

.aum-product-center .aum-breadcrumbs .current-page-text {
    color: #fff;
}

.aum-pc-hero {
    background: linear-gradient(90deg, #1e3a89, #0f1a30);
    color: #fff;
}

.aum-pc-hero-left {
    flex: 1;
    min-width: 0;
}

.aum-pc-hero-title {
    font-size: 48px;
    margin: 8px 0 10px;
    line-height: 1.1;
}

.aum-pc-hero-desc {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    max-width: 720px;
}

.aum-pc-download {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 16px;
    padding: 16px 18px;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.aum-pc-download-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: #dbeafe;
    border-radius: 6px;
}

.aum-pc-download-icon svg {
    color: #1947a2;
}

.aum-pc-download .name {
    color: #1947a2;
    font-weight: 600;
}

.aum-pc-download .sub {
    color: #94a3b8;
    font-size: 10px;
}

.aum-pc-tip {
    padding: 38px 0;
    border-bottom: 1px solid #eee;
    background-color: rgba(239, 246, 255, 0.5);
}

.aum-pc-tip .aum-product-center {
    display: flex;
    gap: 20px;
}

.aum-pc-tip-i {
    width: 30px;
    height: 30px;
    background-color: #003399;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
}

.aum-pc-tip-i svg path {
    fill: #fff;
}

.aum-pc-tip-title {
    font-weight: 600;
    margin-bottom: 8px;
}

.aum-pc-tip-content {
    color: #333;
    line-height: 1.8;
}

.aum-pc-body {
    padding-top: 22px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.aum-pc-filter {
    width: 260px;
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.aum-pc-filter .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.aum-pc-filter .head .title {
    font-weight: 600;
}

.aum-pc-filter .head .reset {
    border: none;
    background: transparent;
    color: #1e6fff;
    font-weight: 600;
    cursor: pointer;
}

.aum-pc-filter .group-title {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.aum-pc-filter .check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    cursor: pointer;
}

.aum-pc-filter input {
    transform: translateY(1px);
}

.aum-pc-results {
    flex: 1;
    min-width: 0;
}

.aum-pc-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.aum-pc-results-bar .count {
    color: #111;
    font-weight: 600;
}

.aum-pc-results-bar select {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.aum-pc-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.aum-pc-card {
    border: 1px solid #eee;
    padding: 24px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
    transition: all 0.3s ease;
}


.aum-pc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}


.aum-pc-card .media {
    width: 100%;
    height: 180px;
    display: block;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.aum-pc-card .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aum-pc-card .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.aum-pc-card .title a {
    text-decoration: none;
    color: #111;
}

.aum-pc-card .title a:hover {
    text-decoration: underline;
}

.aum-pc-card .desc {
    color: #666;
    line-height: 1.7;
    margin-bottom: 12px;
    min-height: 48px;
}

.aum-pc-card .tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid #eee;
    font-size: 12px;
    color: #677896;
    margin-bottom: 12px;
    background: #f1f5f9;
}

.aum-pc-card .btn {
    display: flex;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #414a59;
    text-decoration: none;
    font-weight: 600;
}

.aum-pc-card .btn:hover {
    filter: brightness(.97);
}

.aum-pc-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.aum-pc-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    margin: 0 6px;
    border-radius: 10px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
}

.aum-pc-pagination .page-numbers.current {
    border-color: #1e6fff;
    color: #1e6fff;
}

#aumPcList.is-loading {
    opacity: .6;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .aum-pc-hero {
        flex-direction: column;
    }

    .aum-pc-download {
        min-width: 0;
        width: 100%;
    }

    .aum-pc-body {
        flex-direction: column;
    }

    .aum-pc-filter {
        width: 100%;
    }

    .aum-pc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aum-product-box .aum-pc-hero .aum-product-center{
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .aum-product-center{
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 640px) {
    .aum-pc-grid {
        grid-template-columns: 1fr;
    }

    .aum-pc-hero-title {
        font-size: 34px;
    }
}



/* ===== AUM Product Single ===== */
.aum-product-single {
    width: 100%;
}

.aum-ps-hero {
    background: linear-gradient(90deg, #1e3a89, #0f1a30);
    padding: 64px 0;
}

.aum-ps-hero .aum-breadcrumbs a {
    color: #fff;
}

.aum-ps-hero .aum-breadcrumbs .current-page-text {
    color: #fff;
}

.aum-ps-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
}

.aum-ps-left {
    flex: 1;
    min-width: 0;
    color: #fff;
}

.aum-ps-right {
    width: 420px;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.aum-ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #192e6c;
    border: 1px solid #2563eb;
    font-size: 12px;
    margin: 10px 0 14px;
    line-height: 1;
}

.aum-ps-badge-point {
    width: 10px;
    height: 10px;
    background-color: #49dd7f;
    border-radius: 99px;
}

.aum-ps-title {
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 14px 0;
    font-weight: 600;
}

.aum-ps-desc {
    color: rgba(255, 255, 255, .82);
    line-height: 1.9;
    font-size: 16px;
    max-width: 720px;
    margin-bottom: 18px;
}

.aum-ps-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 14px;
    background: #1e6fff;
    color: #fff;
    text-decoration: none;
}

.aum-ps-btn:hover {
    filter: brightness(.95);
}

.aum-ps-hero-imgwrap {
    transform: rotate(6deg);
    transition: transform .25s ease;
    border-radius: 18px;
    width: 300px;
    height: 300px;
}

.aum-ps-hero-imgwrap:hover {
    transform: rotate(0deg);
}

.aum-ps-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

/* 下方信息区 */
.aum-ps-info {
    background: #f4f8fe;
    padding: 30px 0 42px;
    border-bottom: 1px solid #eef0f4;
}

.aum-ps-info-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.aum-ps-def {
    flex: 1;
    min-width: 0;
}

.aum-ps-scene {
    width: 420px;
    max-width: 45%;
    border-left: 1px dashed #c6defe;
    padding-left: 20px;
    margin-left: 20px;
}

.aum-ps-kicker {
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 10px;
    color: #003ca3;
}

.aum-ps-text {
    color: #222;
    line-height: 1.9;
}

.aum-ps-scenelist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aum-ps-sceneitem {
    color: #111;
}

.aum-ps-muted {
    color: #777;
}

@media (max-width: 1024px) {
    .aum-ps-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        padding-right: 20px;
    }

    .aum-ps-info-inner{
        padding-left: 20px;
        padding-right: 20px;
    }

    .aum-ps-right {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .aum-ps-title {
        font-size: 40px;
    }

    .aum-ps-info-inner {
        flex-direction: column;
    }

    .aum-ps-scene {
        width: 100%;
        max-width: 100%;
    }
}



/* ===== 开发工具下载：归档/分类页 ===== */
.aum-dev-tools {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-dt-hero {
    padding: 64px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgb(239, 246, 255), rgb(255, 255, 255));
}

.aum-dt-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}

.aum-dt-title {
    font-size: 44px;
    margin: 10px 0 8px;
    font-weight: 600;
}

.aum-dt-desc {
    color: #667085;
    line-height: 1.8;
    max-width: 720px;
}

/* ===== dev-tools 搜索框：对齐 taxonomy 搜索框布局 ===== */
.aum-dt-search {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.aum-dt-search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.aum-dt-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    color: #999;
}

.aum-dt-search input[type="search"] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

.aum-dt-search:focus-within .aum-dt-search-icon {
    color: #1e6fff;
}

.aum-dt-groups {
    padding-top: 16px;
}

.aum-dt-group {
    margin-top: 26px;
}

.aum-dt-group-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.aum-dt-group-head .bar {
    width: 6px;
    height: 22px;
    border-radius: 99px;
    background: #7c3aed;
}

.aum-dt-group-head .name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.aum-dt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.aum-dt-card {
    border: 1px solid #eee;
    border-radius: 18px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: all .3s;
}



.aum-dt-card .top {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.aum-dt-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 0 0 auto;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.aum-dt-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aum-dt-card .icon .letter {
    font-size: 26px;
    font-weight: 600;
    color: #475569;
}

.aum-dt-card .meta .t {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 2px;
}

.aum-dt-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.aum-dt-card .tag {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #e6e8ee;
    background: #fff;
    color: #344054;
}

.aum-dt-card .tag:nth-child(odd) {
    background: #dcfce7;
    color: #168989;
    font-weight: bold;
    border-color: #a5f3c7;
}

.aum-dt-card .desc {
    margin-top: 14px;
    color: #667085;
    line-height: 1.8;
    min-height: 64px;
}

.aum-dt-card .btn {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid #e6e8ee;
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    transition: all .3s;
}

.aum-dt-card .btn:hover {
    background: #f7f8fb;
}

.aum-dt-card .sys {
    margin-top: 10px;
    font-size: 12px;
    color: #98a2b3;
    text-align: center;
}

.aum-dt-card:nth-child(odd) .icon {
    background: #faf5ff;
}

.aum-dt-card:nth-child(odd) .icon .letter {
    color: #7c3aed;
}

.aum-dt-card:nth-child(odd) .btn {
    background: #7c3aed;
    color: #fff;
}

.aum-dt-card:nth-child(odd) .btn:hover {
    background: #7e22ce;
}

.aum-dt-card:nth-child(odd):hover .meta .t {
    color: #7c3aed;
}

.aum-dt-card:nth-child(odd):hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}


.aum-dt-card:hover .meta .t {
    color: #475569;
}

.aum-dt-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
}

@media (max-width: 960px) {
    .aum-dt-hero-inner {
        flex-direction: column;
    }

    .aum-dt-grid {
        grid-template-columns: 1fr;
    }

    .aum-dev-tools{
        padding-left: 20px;
        padding-right: 20px;
    }

    .aum-dt-hero-right{
        width: 100%;
    }
}



/* ===== 开发文档库 ===== */
.aum-dev-docs {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-dd-hero {
    padding: 64px 0;
    border-bottom: 1px solid #eee;
    background-image: linear-gradient(rgb(239, 246, 255), rgb(255, 255, 255));
}

.aum-dd-hero-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
}

.aum-dd-title {
    font-size: 44px;
    margin: 10px 0 8px;
    font-weight: 600;
}

.aum-dd-desc {
    color: #667085;
    line-height: 1.8;
    max-width: 720px;
}

.aum-dd-search {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.aum-dd-search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.aum-dd-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    pointer-events: none;
    color: #999;
}

.aum-dd-search input[type="search"] {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
    box-sizing: border-box;
}

/* 聚焦时 icon 变色（更稳的写法） */
.aum-dd-search:focus-within .aum-dd-search-icon {
    color: #1e6fff;
}

.aum-dd-body {
    padding-top: 40px;
}

.aum-dd-body-inner {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.aum-dd-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 260px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    position: sticky;
    top: 18px;
}

.aum-dd-nav-title {
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    padding: 12px 20px;
    background-color: #f8fafc;
}

.aum-dd-nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    padding: 12px 0;
}

.aum-dd-nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    text-decoration: none;
    color: #111;
}

.aum-dd-nav-item .count {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #f2f4f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6a798f;
}

.aum-dd-nav-item.is-active {
    background: #f8fafc;
    color: #1e6fff;
    font-weight: 600;
    border-right: 3px solid #1e6fff;
}

.aum-dd-nav-item.is-active .count {
    background: #e8f0ff;
    color: #1e6fff;
}

.aum-dd-groups {
    flex: 1;
    min-width: 0;
}

.aum-dd-group {
    margin-bottom: 34px;
}

.aum-dd-group-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef0f4;
}

.aum-dd-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.aum-dd-card {
    border: 1px solid #eee;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.aum-dd-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.aum-dd-card-media {
    position: relative;
    min-height: 56px;
    padding: 24px;
}

.aum-dd-card-media-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.aum-dd-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.aum-dd-card-time {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 12px;
    color: #98a2b3;
}

.aum-dd-card-body {
    padding: 0 24px;
}

.aum-dd-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.aum-dd-card-desc {
    color: #667085;
    line-height: 1.8;
    min-height: 52px;
}

@media (max-width: 980px) {
    .aum-dd-hero-right{
            width: 100%;
    }
    .aum-dev-docs{
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .aum-dd-hero-inner {
        flex-direction: column;
    }

    .aum-dd-search {
        width: 100%;
    }

    .aum-dd-body-inner {
        flex-direction: column;
    }

    .aum-dd-nav {
        width: 100%;
        position: relative;
        top: auto;
    }

    .aum-dd-grid {
        grid-template-columns: 1fr;
    }
}



/* ===== dev_docs 单篇（三栏） ===== */
.aum-dev-docs-single {
    max-width: 1200px;
    margin: 0 auto;
}

.aum-dds-layout {
    padding-top: 40px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.aum-dds-left {
    width: 260px;
    background-color: #fdfdfe;
    height: 100%;
}

.aum-dds-left-inner {
    position: sticky;
    top: 18px;
    border-right: 1px solid #eee;
    padding: 12px;
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.aum-dds-group {
    padding: 20px 8px;
    border-bottom: 1px solid #f1f3f6;
}

.aum-dds-group:last-child {
    border-bottom: none;
}

.aum-dds-group-title {
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.aum-dds-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 10px;
}

.aum-dds-link {
        text-decoration: none;
    color: #344054;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.aum-dds-link:hover {
    background: #f7f8fb;
}

.aum-dds-link.is-active {
    border-right: 2px solid #1e6fff;
    background: #eff6ff;
    color: #1e6fff;
    font-weight: 600;
}

.aum-dds-center {
    flex: 1;
    min-width: 0;
}

.aum-dds-title {
    font-size: 44px;
    margin: 0 0 10px;
    font-weight: 600;
}

.aum-dds-meta {
display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f3f6;
    margin-bottom: 30px;
}

.aum-dds-read {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #667085;
    font-size: 13px;
}

.aum-dds-read span{
    line-height: 1;
}

.aum-dds-term {
    color: #1e6fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
    background: #dbeafe;
    font-weight: 600;
}

/* 正文基础排版 */
.aum-dds-content {
    line-height: 1.9;
    color: #101828;
    font-size: 16px;
}

.aum-dds-content h2 {
    margin-top: 1.8em;
    margin-bottom: .6em;
    font-size: 28px;
    font-weight: 600;
}

.aum-dds-content h3 {
    margin-top: 1.2em;
    margin-bottom: .5em;
    font-size: 20px;
    font-weight: 600;
}

.aum-dds-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.aum-dds-content table {
    width: 100%;
    border-collapse: collapse;
}

.aum-dds-content table td,
.aum-dds-content table th {
    border: 1px solid #eef0f4;
    padding: 10px;
}

.aum-dds-pn {
    display: flex;
    gap: 18px;
    margin-top: 34px;
}

.aum-dds-pn>div {
    flex: 1;
}

.aum-dds-pn a {
    display: block;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 16px;
    text-decoration: none;
    background: #fff;
}

.aum-dds-pn .k {
    display: block;
    font-size: 12px;
    color: #98a2b3;
    font-weight: 600;
    margin-bottom: 8px;
}

.aum-dds-pn .t {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.aum-dds-right {
    width: 280px;
}

.aum-dds-right .aum-dds-box {
    position: sticky;
    top: 18px;
    margin-bottom: 24px;
}

.aum-dds-download{
    padding: 12px;
}

.aum-dds-right .aum-dds-download{
    background: #f8fafc;
    border: 1px solid #f1f3f6;
    border-radius: 10px;
}

.aum-dds-box-title {
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.aum-dds-toc-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 1px solid #f1f3f6;
    padding-left: 10px;
}

.aum-dds-toc-item {
    text-decoration: none;
    color: #344054;
    padding: 6px 8px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
}

.aum-dds-toc-item:hover {
    background: #f7f8fb;
}

.aum-dds-toc-item.is-h3 {
    padding-left: 18px;
    color: #667085;
    font-size: 13px;
}

.aum-dds-toc-empty {
    color: #98a2b3;
    font-size: 13px;
}

.aum-dds-res {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aum-dds-res-item {
    text-decoration: none;
    color: #1e6fff;
    font-size: 14px;
}


@media (max-width: 1100px) {
    .aum-dds-layout {
        flex-direction: column;
    }

    .aum-dds-left,
    .aum-dds-right {
        width: 100%;
    }

    .aum-dds-left,.aum-dds-right{
        display: none;
    }

    .aum-dds-left-inner,
    .aum-dds-right .aum-dds-box {
        position: relative;
        top: auto;
        max-height: none;
    }

    .aum-dds-left-inner,.aum-dds-right .aum-dds-box{
        padding-left: 0;
        padding-right: 0;
    }

    .aum-dds-layout{
        padding-left: 20px;
        padding-right: 20px;
    }

    .aum-dds-title {
        font-size: 34px;
    }

    .aum-dds-pn {
        flex-direction: column;
    }
}



/* ===== 搜索页 ===== */
.aum-search{ padding: 30px 0 80px; }
.aum-search-inner{ max-width: 980px; margin: 0 auto; padding: 0 16px; }

.aum-search-title{ font-size: 44px; font-weight: 900; margin: 10px 0 18px; }

.aum-search-form{
  display:flex; gap: 14px; align-items:center;
  margin-bottom: 18px;
}
.aum-search-form input[type="search"]{
  flex:1;
  padding: 14px 16px;
  border: 1px solid #e6e8ee;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}
.aum-search-form button{
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  background: #0b3aa9;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.aum-search-count{ color:#667085; font-size: 14px; margin: 12px 0 24px; }

.aum-search-item{ padding: 18px 0; border-top: 1px solid #eef0f4; }
.aum-search-item:first-child{ border-top: none; }

.aum-search-item-meta{
  color:#98a2b3;
  font-size: 13px;
  display:flex; align-items:center; gap: 8px;
  margin-bottom: 8px;
}
.aum-search-item-meta .type{ font-weight: 600; color:#667085; }
.aum-search-item-title{ margin: 0 0 10px; font-size: 22px; font-weight: 900; }
.aum-search-item-title a{ color:#101828; text-decoration:none; }
.aum-search-item-title a:hover{ color:#0b3aa9; }
.aum-search-item-excerpt{ color:#667085; line-height: 1.8; }

.aum-search-pagination{ margin-top: 26px; }
.aum-search-pagination .page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  margin-right: 8px;
  border-radius: 10px;
  border: 1px solid #e6e8ee;
  text-decoration:none;
  color:#344054;
  font-weight: 600;
}
.aum-search-pagination .page-numbers.current{
  background:#0b3aa9;
  color:#fff;
  border-color:#0b3aa9;
}











/* ===== 表单容器 ===== */
.cf7-custom-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

/* ===== 行布局 ===== */
.cf7-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.cf7-col {
  flex: 1;
}

.cf7-col-full {
  flex: 1;
  width: 100%;
}

.cf7-row p {
  margin: 0;
  width: 100%;
}

/* ===== 标签 ===== */
.cf7-label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.cf7-label .required {
  color: #e53e3e;
  margin-left: 2px;
}

/* ===== 输入框 ===== */
.cf7-input {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.2s;
  outline: none;
}

.cf7-input:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.cf7-input::placeholder {
  color: #aaa;
}

/* ===== 文本域 ===== */
.cf7-textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s;
  outline: none;
}

.cf7-textarea:focus {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
}

.cf7-textarea::placeholder {
  color: #aaa;
}

/* ===== 提交按钮 ===== */
.cf7-submit-row {
  margin-top: 10px;
}

.cf7-submit {
  display: inline-block;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #4a90e2;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cf7-submit:hover {
  background-color: #357abd;
}

/* ===== 隐私政策 ===== */
.cf7-privacy {
  margin-top: 16px;
  font-size: 12px;
  color: #999;
}

.cf7-privacy a {
  color: #4a90e2;
  text-decoration: none;
}

.cf7-privacy a:hover {
  text-decoration: underline;
}

/* ===== 验证错误提示 ===== */
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #e53e3e;
}

.wpcf7-not-valid {
  border-color: #e53e3e !important;
}

.wpcf7-response-output {
  margin-top: 16px;
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 4px;
}

.wpcf7-mail-sent-ok {
  border: 1px solid #68d391;
  background-color: #f0fff4;
  color: #276749;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted {
  border: 1px solid #fc8181;
  background-color: #fff5f5;
  color: #c53030;
}

/* ===== 响应式 ===== */
@media (max-width: 640px) {
  .cf7-custom-form {
    padding: 20px;
  }

  .cf7-row {
    flex-direction: column;
    gap: 0;
  }
}


.aum-ps-content-inner{
    width: 100%;
}