/* 滁州代母页面样式 - 模板5：表格对比布局 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* 检测介绍 */
.testing-intro {
    padding: 80px 0;
    background: #fff;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* 检测服务 */
.testing-services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-table {
    max-width: 1100px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.table-header {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    padding: 25px;
    text-align: center;
}

.table-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border-bottom: 1px solid #f0f0f0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: #f8f9fa;
}

.table-label {
    padding: 25px;
    font-weight: bold;
    color: #30cfd0;
    background: rgba(48, 207, 208, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 18px;
}

.table-content {
    padding: 25px;
}

.table-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.table-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.table-content ul {
    list-style: none;
    margin-top: 15px;
}

.table-content ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.table-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #30cfd0;
    font-weight: bold;
}

/* 检测优势 */
.testing-advantages {
    padding: 80px 0;
    background: #fff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.advantage-card:hover {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    color: #fff;
    transform: translateY(-5px);
}

.advantage-card:hover h3,
.advantage-card:hover p {
    color: #fff;
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #30cfd0;
    transition: color 0.3s;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    transition: color 0.3s;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-label {
        padding: 15px;
    }
}
