﻿/*----------------Style 1--------------------------*/
.pd-detail-wrap {
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.7;
    color: #222;
}

    /* 顶部简介块 */
    .pd-detail-wrap .pd-hero {
        background: linear-gradient(135deg, #0f5fff 0%, #2b92ff 50%, #37c9ff 100%);
        color: #fff;
        border-radius: 10px;
        padding: 18px 20px 16px;
        margin-bottom: 20px;
        box-shadow: 0 12px 25px rgba(15, 95, 255, 0.35);
    }

    .pd-detail-wrap .pd-hero-title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .pd-detail-wrap .pd-hero-sub {
        font-size: 13px;
    }

    /* 每个板块 */
    .pd-detail-wrap .pd-section {
        background: #fff;
        border-radius: 8px;
        border: 1px solid #E3E6EF;
        padding: 16px 18px 18px;
        margin-bottom: 16px;
    }

    .pd-detail-wrap .pd-section-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

        .pd-detail-wrap .pd-section-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: #0E3EA8;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .pd-detail-wrap .pd-section-header h3 i {
                font-size: 19px;
                color: #165DFF;
            }

    .pd-detail-wrap .pd-section-header-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg,#E7F0FF,transparent);
    }

    .pd-detail-wrap .pd-section-body p {
        margin-bottom: 8px;
        color: #333;
    }

        .pd-detail-wrap .pd-section-body p:last-child {
            margin-bottom: 0;
        }

    /* 卡片/栅格 */
    .pd-detail-wrap .pd-grid {
        display: grid;
        gap: 12px;
    }

    .pd-detail-wrap .pd-grid-2 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .pd-detail-wrap .pd-grid-3 {
        grid-template-columns: repeat(3,minmax(0,1fr));
    }

    .pd-detail-wrap .pd-grid-4 {
        grid-template-columns: repeat(4,minmax(0,1fr));
    }

    .pd-detail-wrap .pd-card {
        background: #F4F7FF;
        border-radius: 6px;
        border: 1px solid #D6E3FF;
        padding: 10px 12px 12px;
        border-left: 4px solid #aab5d4;
        border-bottom: 0;
    }

    .pd-detail-wrap .pd-card-title {
        font-size: 13px;
        font-weight: 600;
        color: #0E3EA8;
        margin-bottom: 4px;
    }

    .pd-detail-wrap .pd-card p {
        font-size: 13px;
        color: #2b3b52;
        margin-bottom: 0;
    }

    .pd-detail-wrap .pd-card ul {
        margin: 4px 0 0;
        padding-left: 18px;
        font-size: 13px;
    }

        .pd-detail-wrap .pd-card ul li {
            margin-bottom: 2px;
        }

    /* 参数表 */
    .pd-detail-wrap .pd-spec-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 13px;
    }

        .pd-detail-wrap .pd-spec-table thead {
            background: #165DFF;
            color: #fff;
        }

        .pd-detail-wrap .pd-spec-table th,
        .pd-detail-wrap .pd-spec-table td {
            padding: 7px 10px;
            border: 1px solid #E3E6EF;
            text-align: left;
            vertical-align: top;
        }

        .pd-detail-wrap .pd-spec-table th {
            white-space: nowrap;
            font-weight: 600;
            background: #1d59b2;
            text-align: center;
        }

        .pd-detail-wrap .pd-spec-table tbody tr:nth-child(even) {
            background: #F8FAFF;
        }

    /* 免责声明 */
    .pd-detail-wrap .pd-disclaimer-box {
        border-radius: 6px;
        border-left: 4px solid #5cb2ed;
        background: #ddf4ff;
        padding: 10px 12px;
        font-size: 12px;
        color: #000;
    }

/* 响应式 */
@media (max-width: 992px) {
    .pd-detail-wrap .pd-grid-3,
    .pd-detail-wrap .pd-grid-4 {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 640px) {
    .pd-detail-wrap .pd-hero {
        padding: 14px 12px;
    }

    .pd-detail-wrap .pd-grid-2,
    .pd-detail-wrap .pd-grid-3,
    .pd-detail-wrap .pd-grid-4 {
        grid-template-columns: 1fr;
    }
}



/*----------------Style 2--------------------------*/ 

.pd2-detail-wrap {
    margin-top: 1px;
    padding: 20px 22px 18px;
    border-radius: 14px;
    background: #f5f7ff;
    border: 1px solid #e0e6ff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    font-size: 14px;
    line-height: 1.7;
    color: #222;
}

/* 顶部总览块：淡蓝卡片，跟页面主色统一 */
.pd2-detail-wrap .pd2-overview {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #dde5ff;
    padding: 16px 18px;
    margin-bottom: 18px;
    box-shadow: 0 10px 24px rgba(15, 95, 255, 0.08);
}
.pd2-detail-wrap .pd2-overview-title {
    font-size: 15px;
    font-weight: 600;
    color: #102a6b;
    margin-bottom: 6px;
}
.pd2-detail-wrap .pd2-overview-sub {
    font-size: 13px;
    color: #4b5563;
}

/* 公共 section 标题：蓝色图标 + 渐变底线 */
.pd2-detail-wrap .pd2-section {
    margin-bottom: 18px;
}
.pd2-detail-wrap .pd2-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.pd2-detail-wrap .pd2-section-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
}
.pd2-detail-wrap .pd2-section-header h3 i {
    font-size: 17px;
    color: #1d72ff; /* 蓝色强调 */
}
.pd2-detail-wrap .pd2-section-header-line {
    flex: 1;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,#dbe5ff,transparent);
}
.pd2-detail-wrap .pd2-section-body p {
    margin-bottom: 8px;
    color: #374151;
}
.pd2-detail-wrap .pd2-section-body p:last-child {
    margin-bottom: 0;
}

/* 关键要点 2×3 卡片区域：白底+细边框+左侧蓝色条 */
.pd2-detail-wrap .pd2-key-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3,minmax(0,1fr));
}
.pd2-detail-wrap .pd2-key-card {
    border-radius: 10px;
    border: 1px solid #dde5ff;
    background: #ffffff;
    padding: 10px 12px 12px;
    position: relative;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}
.pd2-detail-wrap .pd2-key-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(#1d72ff,#38bdf8);
}
.pd2-detail-wrap .pd2-key-title {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
    padding-left: 8px;
}
.pd2-detail-wrap .pd2-key-card p {
    font-size: 13px;
    margin-bottom: 0;
    color: #4b5563;
}

/* 技术参数表：蓝色表头，淡蓝条纹行 */
.pd2-detail-wrap .pd2-spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.pd2-detail-wrap .pd2-spec-table th,
.pd2-detail-wrap .pd2-spec-table td {
    padding: 7px 10px;
    border: 1px solid #e1e7ff;
    text-align: left;
    vertical-align: top;
}
.pd2-detail-wrap .pd2-spec-table th {
    width: 36%;
    background: #1d72ff;
    color: #ffffff;
    font-weight: 600;
}
.pd2-detail-wrap .pd2-spec-table td {
    background: #ffffff;
}
.pd2-detail-wrap .pd2-spec-table tbody tr:nth-child(even) td {
    background: #f4f7ff;
}

/* 应用场景卡片：浅蓝虚线卡片，跟右侧“服务/优势”风格一致 */
.pd2-detail-wrap .pd2-app-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.pd2-detail-wrap .pd2-app-card {
    border-radius: 10px;
    border: 1px dashed #8bb4ff;
    background: #eef5ff;
    padding: 10px 12px;
}
.pd2-detail-wrap .pd2-app-title {
    font-size: 13px;
    font-weight: 600;
    color: #0f3c96;
    margin-bottom: 4px;
}
.pd2-detail-wrap .pd2-app-card p {
    font-size: 13px;
    color: #1f2937;
    margin-bottom: 0;
}

/* 免责声明：浅蓝提示条 */
.pd2-detail-wrap .pd2-disclaimer-box {
    border-radius: 8px;
    border-left: 4px solid #1d72ff;
    background: #e4f1ff;
    padding: 10px 12px;
    font-size: 12px;
    color: #0f172a;
}

/* ===== Style 2 – Pinout & Package blocks ===== */

/* 图片容器：后续放从规格书截出来的图 */
.pd2-detail-wrap .pd2-pin-img,
.pd2-detail-wrap .pd2-package-img {
    margin-top: 8px;
    border-radius: 10px;
    border: 1px dashed #dbe5ff;
    background: #ffffff;
    padding: 10px 12px;
    text-align: center;
}
.pd2-detail-wrap .pd2-pin-img img,
.pd2-detail-wrap .pd2-package-img img {
    max-width: 100%;
    height: auto;
}

/* 小说明文字 */
.pd2-detail-wrap .pd2-pin-note,
.pd2-detail-wrap .pd2-package-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

/* 响应式 */
@media (max-width: 992px) {
    .pd2-detail-wrap .pd2-key-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}
@media (max-width: 640px) {
    .pd2-detail-wrap {
        padding: 16px 12px 14px;
        border-radius: 10px;
    }
    .pd2-detail-wrap .pd2-key-grid,
    .pd2-detail-wrap .pd2-app-grid {
        grid-template-columns: 1fr;
    }
}



