/* ========================================
   XFCAMTOP_MINI 系列产品页面样式
   ======================================== */

/* 产品概述模块 */
.product-series-detail {
    padding: 80px 0;
}

.detail-section {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: var(--transition-normal);
}

.detail-section:hover {
    box-shadow: var(--shadow-md);
}

.detail-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-title i {
    color: var(--primary-color);
}

.detail-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.detail-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.detail-content p:last-child {
    margin-bottom: 0;
}

/* 技术特点卡片 */
.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.feature-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card .card-title i {
    color: var(--primary-color);
}

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

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

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

.feature-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 应用领域卡片 */
.application-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.application-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.application-card .card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.application-card .card-title i {
    color: var(--primary-color);
}

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

.application-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
    line-height: 1.6;
}

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

.application-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* 产品优势部分 */
.product-advantages {
    background: var(--bg-light);
    padding: 80px 0;
}

.advantage-item {
    padding: 30px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.advantage-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}

.advantage-icon {
    margin-bottom: 20px;
}

.advantage-icon i {
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.advantage-item:hover .advantage-icon i {
    transform: scale(1.1);
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.advantage-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* 产品表格样式增强 */
.afdm-product-table {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.afdm-product-table thead {
    background: var(--gradient-primary);
}

.afdm-product-table thead th {
    color: #fff;
    font-weight: 600;
    padding: 15px 10px;
    border: none;
    text-align: center;
    font-size: 14px;
}

.afdm-product-table tbody tr {
    transition: var(--transition-fast);
}

.afdm-product-table tbody tr:hover {
    background: var(--bg-hover);
}

.afdm-product-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

/* 表格单元格样式 */
.framerate-info div {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 2px 0;
}

.storage-format div {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 2px 0;
}

.autofocus-precision {
    font-weight: 600;
    color: var(--primary-color);
}

/* 接口徽章样式 */
.interface-badge {
    display: inline-block;
    padding: 3px 8px;
    margin: 2px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.interface-badge.hdmi {
    background: rgba(47, 128, 237, 0.1);
    color: var(--primary-color);
}

.interface-badge.usb2 {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.interface-badge.wifi {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .detail-section,
    .feature-card,
    .application-card {
        padding: 20px;
    }

    .detail-title,
    .feature-card .card-title,
    .application-card .card-title {
        font-size: 18px;
    }

    .afdm-product-table {
        font-size: 12px;
    }

    .afdm-product-table thead th {
        padding: 10px 5px;
        font-size: 12px;
    }

    .afdm-product-table tbody td {
        padding: 8px 5px;
    }
}

@media (max-width: 576px) {
    .product-series-detail,
    .product-advantages {
        padding: 50px 0;
    }

    .advantage-item {
        padding: 20px;
    }

    .advantage-title {
        font-size: 16px;
    }
}


