/* 审计与合规-------------------------------------------------------------------------*/

/* 系统优势部分 */
        .advantages-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            color: #0a2e5c;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4dabf7, #0e74f6);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 20px auto 0;
        }

        /* 优势卡片 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .advantage-card {
            background: white;
            border-radius: 12px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e9ecef;
        }

        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #4dabf7 0%, #0e74f6 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: white;
        }

        .advantage-card h3 {
            font-size: 22px;
            color: #0a2e5c;
            margin-bottom: 15px;
            text-align: center;
        }

        .advantage-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }

        .feature-list li:before {
            content: '';
            position: absolute;
            left: 0;
            color: #0e74f6;
            font-weight: bold;
        }

        /* 审计合规专区 */
        .audit-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }

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

        .audit-text h3 {
            font-size: 32px;
            color: #0a2e5c;
            margin-bottom: 25px;
        }

        .audit-text p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 16px;
        }

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

        .audit-feature {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-left: 4px solid #0e74f6;
        }

        .audit-feature h4 {
            color: #0a2e5c;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .audit-image {
            text-align: center;
        }

        .audit-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        /* 对比表格 */
        .comparison-section {
            padding: 80px 0;
            background-color: white;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border-radius: 10px;
            overflow: hidden;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px;
            text-align: center;
            border: 1px solid #e9ecef;
        }

        .comparison-table th {
            background: linear-gradient(135deg, #0e74f6 0%, #2d80e9 100%);
            color: white;
            font-weight: 600;
        }

        .comparison-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .good {
            color: #28a745;
            font-weight: 600;
        }

        .bad {
            color: #dc3545;
            font-weight: 600;
        }

        /* 技术架构 */
        .tech-architecture {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .architecture-diagram {
            max-width: 900px;
            margin: 40px auto;
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .architecture-layer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 25px;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #e3f2fd, #bbdefb);
            border-radius: 8px;
            border-left: 5px solid #0e74f6;
        }

        .layer-number {
            background: #0e74f6;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
        }

        .layer-content {
            flex: 1;
            margin-left: 20px;
        }

        .layer-content h4 {
            color: #0a2e5c;
            margin-bottom: 8px;
        }
/* 审计与合规结尾------------------------------------------------------------------------- */