
    /* 基础全局设置，避免与建站系统冲突 */
    .apas-release-wrap {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        color: #333333;
        background-color: #f8fafc;
        margin: 0;
        padding: 20px 10px;
    }
    
    .apas-container {
        max-width: 900px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* 顶部 Hero 区域 */
    .apas-hero {
        background: linear-gradient(135deg, #003366 0%, #004b99 100%);
        color: #ffffff;
        padding: 50px 40px;
        text-align: center;
    }
    .apas-hero h1 {
        margin: 0 0 15px 0;
        font-size: 32px;
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }
    .apas-hero p {
        font-size: 16px;
        color: #e2e8f0;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        font-weight: 600;
    }

    /* 优化后的图片框：适配图片、无空隙、工业高级质感 */
    .apas-img-box {
        background: #ebf0f5;
        border-radius: 6px;
        display: block;
        margin: 25px 0;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); /* 工业质感阴影 */
        border: 1px solid #e2e8f0; /* 硬朗细边框，提升高级感 */
        position: relative;
    }
    .apas-img-box span {
        display: block;
        width: 100%;
        height: 100%;
    }
    .apas-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* 保证图片完美适配，没有任何空余白边 */
        display: block;
        transition: transform 0.4s ease; /* 增加轻微悬浮动画质感 */
    }
    .apas-img-box:hover img {
        transform: scale(1.02); /* 鼠标悬浮微微放大，提升交互质感 */
    }
    
    .apas-img-caption {
        font-size: 13px;
        color: #718096;
        text-align: center;
        margin-top: -15px;
        margin-bottom: 25px;
        display: block;
    }

    /* 内容通用区域 */
    .apas-section {
        padding: 40px;
        border-bottom: 1px solid #edf2f7;
    }
    .apas-section:last-child {
        border-bottom: none;
    }
    
    .apas-title {
        color: #003366;
        font-size: 24px;
        margin: 0 0 20px 0;
        padding-bottom: 10px;
        border-bottom: 3px solid #00509e;
        display: inline-block;
    }

    .apas-text {
        font-size: 16px;
        color: #4a5568;
        margin-bottom: 15px;
        line-height: 1.7;
    }

    /* 交替式图文布局 (针对核心产品) */
    .apas-feature-row {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 40px;
    }
    .apas-feature-row:nth-child(even) {
        flex-direction: row-reverse;
    }
    .apas-feature-content {
        flex: 1;
    }
    .apas-feature-media {
        flex: 1;
    }
    .apas-feature-title {
        font-size: 20px;
        color: #1a202c;
        margin: 0 0 15px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* 展位信息表格 */
    .apas-table-wrap {
        background: #f8fafc;
        border-radius: 8px;
        padding: 30px;
        margin-top: 20px;
        border: 1px solid #e2e8f0;
    }
    .apas-info-table {
        width: 100%;
        border-collapse: collapse;
    }
    .apas-info-table th, .apas-info-table td {
        padding: 15px 10px;
        border-bottom: 1px solid #cbd5e1;
        text-align: left;
        font-size: 16px;
    }
    .apas-info-table tr:last-child th,
    .apas-info-table tr:last-child td {
        border-bottom: none;
    }
    .apas-info-table th {
        color: #003366;
        width: 30%;
        font-weight: 700;
    }
    .apas-info-table td {
        color: #4a5568;
    }

    /* 底部 CTA 区域 */
    .apas-cta {
        background: #f0f5fa;
        text-align: center;
        padding: 50px 40px;
    }
    .apas-cta h2 {
        color: #003366;
        margin: 0 0 15px 0;
        font-size: 26px;
    }
    .apas-btn {
        display: inline-block;
        background: #d9230f; /* 强烈的红色号召按钮 */
        color: #ffffff;
        text-decoration: none;
        padding: 16px 40px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 4px;
        margin-top: 25px;
        transition: background 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 6px rgba(217, 35, 15, 0.2);
    }
    .apas-btn:hover {
        background: #b71c0c;
        transform: translateY(-2px);
    }

    /* 响应式调整 */
    @media (max-width: 768px) {
        .apas-hero {
            padding: 40px 20px;
        }
        .apas-hero h1 {
            font-size: 26px;
        }
        .apas-section {
            padding: 30px 20px;
        }
        .apas-feature-row, .apas-feature-row:nth-child(even) {
            flex-direction: column;
        }
        .apas-info-table th, .apas-info-table td {
            display: block;
            width: 100%;
        }
        .apas-info-table th {
            padding-bottom: 5px;
            border-bottom: none;
        }
        .apas-info-table td {
            padding-top: 5px;
            margin-bottom: 10px;
        }
    }
