@charset "utf-8";
/* ==========================================================================
   产品详情内容样式（view_product.htm）
   ========================================================================== */

/* 详情区块容器 */
.pd-content {
    margin-top: 30px;
}

/* 详情标签栏 */
.pd-content-tab {
    background: #0a6e3c;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 14px 30px;
    border-radius: 6px 6px 0 0;
}

/* 详情内容卡片 */
.pd-content article {
    background: #fff;
    padding: 40px 45px;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-radius: 0 0 6px 6px;
    color: #444;
    font-size: 15px;
    line-height: 1.9;
}

/* 段落 */
.pd-content article p {
    margin: 0 0 14px;
    text-align: justify;
}

/* 小标题 */
.pd-content article h3 {
    position: relative;
    font-size: 20px;
    color: #0a6e3c;
    font-weight: bold;
    padding: 0 0 12px 16px;
    margin: 34px 0 18px;
    letter-spacing: 1px;
}

.pd-content article h3:first-child {
    margin-top: 0;
}

.pd-content article h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 16px;
    width: 5px;
    border-radius: 3px;
    background: #0a6e3c;
}

.pd-content article h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #0a6e3c 80px, #e8e8e8 80px);
}

/* 性能特点列表 */
.pd-content article ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.pd-content article ul li {
    position: relative;
    padding: 6px 0 6px 30px;
    text-align: justify;
}

.pd-content article ul li::before {
    content: "\2714";
    position: absolute;
    left: 2px;
    top: 6px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #e8f5ee;
    color: #0a6e3c;
    font-size: 12px;
    border-radius: 50%;
}

/* 技术参数表格 */
.pd-content article table {
    width: 100%;
    border-collapse: collapse;
    margin: 6px 0 20px;
    font-size: 14px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #e8e8e8;
}

.pd-content article table th {
    background: #0a6e3c;
    color: #fff;
    font-weight: normal;
    padding: 12px 16px;
    text-align: left;
    letter-spacing: 1px;
}

.pd-content article table td {
    padding: 11px 16px;
    border-top: 1px solid #f0f0f0;
}

.pd-content article table tr:nth-child(even) td {
    background: #f7fbf9;
}

.pd-content article table tr:hover td {
    background: #eef7f2;
}

.pd-content article table td:first-child {
    color: #0a6e3c;
    font-weight: bold;
    width: 32%;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .pd-content article {
        padding: 22px 16px;
        font-size: 14px;
    }

    .pd-content article h3 {
        font-size: 17px;
    }

    .pd-content article table td:first-child {
        width: 38%;
    }
}
