/* 跟踪审计智慧监管系统专属样式 */

/* Hero 区域 */
.audit-hero {
    height: 400px;
    padding: 0;
    display: flex;
    align-items: center;
    background: url('../static/audit/跟踪审计智慧监管系统.png') center center / cover no-repeat;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.audit-hero .container {
    position: relative;
    z-index: 1;
    text-align: left;
}

.audit-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    line-height: 1.2;
}

.audit-hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0px;
}

.audit-hero-desc {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0 0 28px;
    max-width: 700px;
}

.audit-hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #176BF8;
    color: #fff;
    text-decoration: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-hero-btn:hover {
    background: #0d5ce0;
    transform: translateY(-2px);
    color: #fff;
}

.audit-hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.audit-hero-tags span {
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
}

.audit-hero-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-hero-img img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

/* 通用区块 */
.audit-section {
    padding: 60px 0;
    background: #fff;
}

.audit-section-gray {
    background: #F9FAFB;
}

.audit-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 auto 32px;
    padding-bottom: 12px;
    border-bottom: 3px solid #176BF8;
    display: block;
    text-align: center;
    width: fit-content;
}

.audit-section-title-light {
    color: #fff;
    border-bottom-color: #fff;
}

/* 核心优势卡片 */
.audit-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audit-feature-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.audit-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 107, 248, 0.12);
    border-color: #176BF8;
}

.audit-feature-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-feature-icon img {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.audit-feature-card p {
    font-size: 16px;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* 产品简介 */
.audit-intro-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.audit-intro-img {
    flex: 0 0 420px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-intro-img img {
    width: 100%;
    height: auto;
}

.audit-intro-card {
    flex: 1;
    padding: 36px 40px;
    background: #F5F8FC;
    border-left: 4px solid #176BF8;
    border-radius: 0;
}

.audit-intro-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.9;
    margin: 0;
    text-align: justify;
}

/* 行业管理痛点 */
.audit-module-section {
    padding: 60px 0;
    background: url('../static/audit/行业管理痛点.png') center center / cover no-repeat;
    position: relative;
}

.audit-module-section .container {
    position: relative;
    z-index: 1;
}

.audit-module-section .audit-section-title {
    color: #fff;
    border-bottom-color: #fff;
}

.audit-module-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audit-module-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.audit-module-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 107, 248, 0.2);
    border-color: #176BF8;
}

.module-num {
    font-size: 24px;
    font-weight: 700;
    color: #176BF8;
    line-height: 1;
    flex-shrink: 0;
    margin-bottom: 0;
    margin-top: 2px;
}

.module-content p {
    font-size: 14px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

/* 核心功能 */
.audit-core-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.audit-core-item {
    display: flex;
    gap: 32px;
    padding: 28px;
    background: #F5F8FC;
    border-left: 4px solid #E5E7EB;
    transition: all 0.3s ease;
    border-radius: 0;
}

.audit-core-item:hover {
    background: #eaf0f7;
}

.audit-core-num {
    width: auto;
    height: auto;
    flex-shrink: 0;
    font-size: 28px;
    font-weight: 700;
    color: #176BF8;
    line-height: 1;
    background: transparent;
    border-radius: 0;
    display: block;
}

.audit-core-content {
    flex: 1;
}

.audit-core-content h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.audit-core-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 六大核心技术优势 */
.audit-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audit-tech-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.audit-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 107, 248, 0.12);
}

.tech-num {
    font-size: 28px;
    font-weight: 700;
    color: #176BF8;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.tech-card-text {
    flex: 1;
}

.tech-card-text h5 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.tech-card-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.tech-icon {
    width: 72px;
    height: 72px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F8FC;
    border-radius: 16px;
    flex-shrink: 0;
}

.tech-icon img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

/* 典型应用场景 */
.audit-apply-section {
    padding: 80px 0;
    background: #fff;
}

.audit-apply-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: center;
}

.audit-apply-left {
    background: url('../static/audit/典型应用场景Bg.png') no-repeat center/cover;
    border-radius: 16px;
    padding: 40px;
    color: #fff;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
}

.audit-apply-left-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.audit-apply-left-title img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.audit-apply-customer {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audit-apply-customer-card {
    background: url('../static/audit/审计局Bg.png') no-repeat center/cover;
    border-radius: 12px;
    padding: 0 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.customer-icon {
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.audit-apply-customer-card > span {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.audit-apply-right-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.audit-apply-right-title::before {
    content: '';
    width: 28px;
    height: 28px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23176BF8' stroke-width='2'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.audit-apply-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audit-apply-list li {
    font-size: 16px;
    color: #333;
    padding: 16px 0;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.audit-apply-list li:last-child {
    border-bottom: none;
}

.apply-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #176BF8;
    border-radius: 50%;
    flex-shrink: 0;
}

.apply-check::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translate(1px, -1px);
}

/* 标杆案例 */
.audit-case-section {
    padding: 80px 0;
    background: #F9FAFB;
}

.audit-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-height: 450px;
}

.audit-case-left {
    background: url('../static/audit/宜都市跟踪审计智慧监管Bg.png') no-repeat center/cover;
    min-height: 450px;
}

.audit-case-right {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.audit-case-right h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.audit-case-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.audit-case-effect {
    background: #F5F8FC;
    border-left: 4px solid #176BF8;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
}

.effect-label {
    font-size: 16px;
    font-weight: 700;
    color: #176BF8;
    display: block;
    margin-bottom: 8px;
}

.audit-case-effect p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* 应用价值 */
.audit-value-section {
    padding: 80px 0;
    background: #fff;
}

.audit-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.audit-value-card {
    background: #F5F8FC;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.audit-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(23, 107, 248, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 40px;
    height: 40px;
}

.audit-value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.audit-value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.audit-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.data-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

.data-info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.data-value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.data-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

/* 适用客户 */
.audit-customer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: #F9FAFB;
    border: 1px solid #e8edf2;
    border-radius: 14px;
}

.audit-customer-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAF2FF;
    border-radius: 16px;
    flex-shrink: 0;
}

.audit-customer-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.audit-customer-info {
    display: flex;
    flex-direction: column;
}

.customer-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 6px;
}

.customer-desc {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

/* CTA */
.audit-cta {
    padding: 80px 0;
    background: url('../static/audit/在线咨询Bg.png') no-repeat center/cover;
    position: relative;
    overflow: hidden;
}

.audit-cta-content {
    color: #fff;
}

.audit-cta-grid {
    margin-bottom: 48px;
}

.audit-cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
}

.audit-cta-features li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    padding-left: 32px;
    position: relative;
}

.audit-cta-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.audit-cta-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 11px;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

.audit-cta-action {
    text-align: center;
}

.audit-cta-btn {
    display: inline-block;
    padding: 14px 48px;
    background: #fff;
    color: #005BAC;
    text-decoration: none;
    border-radius: 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.audit-cta-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* 响应式 */
@media (max-width: 992px) {
    .audit-feature-cards,
    .audit-data-grid,
    .audit-value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audit-module-grid,
    .audit-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audit-hero-title {
        font-size: 32px;
    }

    .audit-intro-wrapper {
        flex-direction: column;
    }

    .audit-intro-img {
        flex: none;
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .audit-section,
    .audit-module-section,
    .audit-data-section,
    .audit-cta {
        padding: 40px 0;
    }

    .audit-module-grid,
    .audit-tech-grid,
    .audit-data-grid {
        grid-template-columns: 1fr;
    }

    .audit-feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .audit-feature-card {
        padding: 20px 12px;
    }

    .audit-feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .audit-feature-icon img {
        width: 64px;
        height: 64px;
    }

    .audit-feature-card p {
        font-size: 13px;
    }

    .audit-value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .audit-value-card {
        padding: 28px 16px;
    }

    .audit-value-card h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .value-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .audit-value-card p {
        font-size: 13px;
    }

    .audit-case-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .audit-case-left {
        min-height: 220px;
    }

    .audit-case-right {
        padding: 28px 24px;
    }

    .audit-case-right h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .audit-hero {
        height: 240px;
        padding: 0;
    }

    .audit-hero-desc {
        display: none;
    }

    .audit-hero-title {
        font-size: 26px;
    }

    .audit-hero-subtitle {
        font-size: 18px;
    }

    .audit-section-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .audit-customer {
        flex-direction: column;
        text-align: center;
    }

    .audit-apply-section {
        padding: 40px 0;
    }

    .audit-apply-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-apply-left {
        padding: 24px;
        aspect-ratio: 1;
        min-height: 280px;
    }

    .audit-apply-customer-card {
        padding: 0 24px;
    }

    .audit-apply-right-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .audit-apply-list li {
        font-size: 14px;
        padding: 12px 0;
    }
}
