/* 主色调定义 */
:root {
    --primary-color: #f5b135;
    --primary-hover: #e09f22;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f9f9f9;
    --border-color: #eeeeee;
}
/* body {
    font-family: "Microsoft YaHei", sans-serif;
    color: #333333;
    line-height: 1.6;
} */
/* 课程核心板块样式 */
.qepp-section {
    padding: 60px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.qepp-section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}
.qepp-section-title h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.qepp-section-title p{
    margin-bottom: 1rem;
}
.qepp-section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #f5b135;
    margin: 0 auto;
}
.qepp-section .row{
    justify-content: space-evenly;
}
.qepp-section .fa-wrench .fa-book{
    color: #f5b135 !important;
}
.qepp-card {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    /* height: 100%; */
}
.qepp-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #f5b135;
}
.qepp-card .card-icon {
    font-size: 36px;
    color: #f5b135;
    margin-bottom: 20px;
}
.qepp-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.qepp-card p {
    color: 666666;
    margin-bottom: 0;
}
.qepp-card .fa{
    color: #f5b135;
}
/* 表格样式 */
.qepp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.qepp-table th, .qepp-table td {
    border: 1px solid #eeeeee;
    padding: 12px 15px;
    text-align: left;
}
.qepp-table th {
    background-color: #f9f9f9;
    font-weight: 700;
    color: #333333;
}
.qepp-table tr:hover {
    background-color: rgba(245,177,53,0.05);
}
/* 流程图样式 */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
}
.process-flow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #f5b135;
    transform: translateY(-50%);
    z-index: 1;
}
.flow-step {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 30px 10px;
}
.flow-step .step-circle {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #f5b135;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-step .step-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 20px;
}
.flow-step .step-desc {
    font-size: 14px;
    color: 666666;
    line-height: 1.4;
}
/* 配套资料板块样式 */
.card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.card-header {
    background-color: #003366;
    color: #fff;
    font-weight: 600;
}
.gold-text {
    color: #f5b135;
}
.qepp-resource{
    margin: 10px 0;
}
/* 证书样张板块样式 - 新增样式 */
.certificate-card {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 30px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.certificate-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}
.certificate-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* 适配样式 */
@media (max-width: 768px) {
    .qepp-section {
        padding: 40px 20px;
    }
    .qepp-section-title h2 {
        font-size: 24px;
    }
    .qepp-card {
        padding: 20px;
    }
    .process-flow {
        flex-direction: column;
    }
    .process-flow::before {
        display: none;
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .flow-step {
        min-width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 20px;
    }
    .flow-step .step-circle {
        margin: 0 15px 0 0;
    }
    .flow-content {
        flex: 1;
    }
    .materials-list {
        gap: 15px;
    }
    .material-item {
        width: 100px;
    }
    /* 证书板块移动端适配 */
    .certificate-card {
        padding: 20px 15px;
    }
}