/* ==================== 面包屑 ==================== */
.yp-breadcrumb-inner .yp-bc-label {
    color: #A7A7A7;
}

/* ==================== 文章内容 ==================== */
.yp-article {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px 32px 32px;
}

.yp-article-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #101010;
    line-height: 1.4;
    margin-bottom: 16px;
}

.yp-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #949698;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.yp-article-meta-sep {
    color: #e0e0e0;
}

/* ==================== 摘要 ==================== */
.yp-article-abstract {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 24px;
    color: #666;
}

.yp-abstract-tag {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
}

.yp-article-abstract p {
    font-size: 14px;
    line-height: 1.7;
}

/* ==================== 文章正文 ==================== */
.yp-article-body {
    font-size: 15px;
    color: #393F4A;
    line-height: 1.8;
}



.yp-article-body a {
    text-decoration: underline;
    color: rgb(0, 0, 238);
}

.yp-article-body h2 {
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    margin: 24px 0 14px;
}

.yp-article-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    margin: 20px 0 10px;
}

.yp-article-body p {
    margin-bottom: 14px;
}

.yp-article-body strong {
    color: #101010;
}

/* ==================== 服务分类网格 ==================== */
.yp-service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.yp-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 195px;
    height: 130px;
    border-radius: 8px;
    border: 1px dashed rgba(0, 0, 0, 0.15);
    transition: all 0.2s;
}

.yp-service-card:hover {
    transform: translateY(-2px);
}

.yp-svc-name {
    font-size: 28px;
    font-weight: 700;
}

.yp-svc-desc {
    font-size: 16px;
    color: #949698;
}

.yp-svc-orange {
    background: url(/e_images/common/kaoshi/yp_ad6-1.png) no-repeat center;
}

.yp-svc-orange .yp-svc-name {
    color: #ED4D28;
}

.yp-svc-blue {
    background: url(/e_images/common/kaoshi/yp_ad6-2.png) no-repeat center;
}

.yp-svc-blue .yp-svc-name {
    color: #3B75DB;
}

.yp-svc-pink {
    background: url(/e_images/common/kaoshi/yp_ad6-3.png) no-repeat center;
}

.yp-svc-pink .yp-svc-name {
    color: #D82859;
}

.yp-svc-purple {
    background: url(/e_images/common/kaoshi/yp_ad6-4.png) no-repeat center;
}

.yp-svc-purple .yp-svc-name {
    color: #1368E9;
}

.yp-svc-yellow {
    background: url(/e_images/common/kaoshi/yp_ad6-5.png) no-repeat center;
}

.yp-svc-yellow .yp-svc-name {
    color: #832DF4;
}

.yp-svc-lightblue {
    background: url(/e_images/common/kaoshi/yp_ad6-6.png) no-repeat center;
}

.yp-svc-lightblue .yp-svc-name {
    color: #EF9A2C;
}

.yp-svc-blue2 {
    background: url(/e_images/common/kaoshi/yp_ad6-7.png) no-repeat center;
}

.yp-svc-blue2 .yp-svc-name {
    color: #1368E9;
}

.yp-svc-orange2 {
    background: url(/e_images/common/kaoshi/yp_ad6-8.png) no-repeat center;
}

.yp-svc-orange2 .yp-svc-name {
    color: #FB7121;
}

/* ==================== 热门推荐 ==================== */
.yp-article-hot {
    margin-top: 30px;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}

.yp-article-hot-title {
    margin-bottom: 16px;
}

.yp-article-hot-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: #101010;
    position: relative;
    padding-left: 14px;
}

.yp-article-hot-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background-color: #FF7033;
    border-radius: 2px;
}

.yp-article-hot-cols {
    display: flex;
    gap: 60px;
}

.yp-article-hot-col {
    flex: 1;
    min-width: 0;
}

.yp-article-hot-col li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f0f0f0;
}

.yp-article-hot-col li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.yp-article-hot-col li a {
    flex: 1;
    min-width: 0;
    font-size: 16px;
    color: #393F4A;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.2s;
}

.yp-article-hot-col li a:hover {
    color: #FF7033;
}

.yp-hot-date {
    flex-shrink: 0;
    font-size: 16px;
    color: #949698;
    margin-left: 10px;
}

/* ==================== 侧边栏课程卡片 ==================== */
.yp-course-label {
    font-size: 12px;
    color: #949698;
    margin-bottom: 6px;
}

.yp-course-card-info h4 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}