.homeword-turoring-banner-img {
    width: 100%;
}

/* 学生面临的问题 - 四宫格卡片 */
.problem-section { padding: 0 20px 24px; }
.problem-wrap {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
}
.problem-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 12px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.problem-card-icon {
    width: 50px;
    height: 48px;
    margin-right: auto;
    display: block;
    object-fit: contain;
}
.problem-card-title {
    font-family: MiSans;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
    text-align: left;
}
.problem-card-desc {
    font-family: MiSans;
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
    text-align: left;
    margin-top: 12px;
}

/* 适用人群 - 竖向列表卡片（右侧 person-icon） */
.audience-section { padding: 0 20px 24px; }
.audience-wrap {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.audience-card {
    background: #fff;
    border-radius: 12px;
    padding: 8px 12px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.audience-card-content { flex: 1; min-width: 0; }
.audience-card-title {
    margin: 0 0 6px;
    
    font-family: MiSans;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
    text-align: left;
}
.audience-card-desc {
    margin: 0;
    font-family: MiSans;
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
    text-align: left;
}
.audience-card-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    object-fit: contain;
}

/* 独家产品优势 - 轮播（3块，每块2张卡片） */
.advantage-carousel-wrap {
    position: relative;
    /* padding: 0 20px 24px; */
    margin-top: 12px;
}
.advantage-carousel {
    overflow: hidden;
}
.advantage-slide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 2px;
}
.advantage-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    /* background-size: cover; */
    background-position: center;
    /* background-color: #c41e3a; */
    min-height: 130px;
    display: flex;
    align-items: center;
}
 
.advantage-card-content {
    position: relative;
    z-index: 1;
    padding: 12px 10px;
    width: 100%;
    box-sizing: border-box;
}
.advantage-card-title {
    margin: 0 0 6px;
    font-family: MiSans;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
}
.advantage-card-desc {
    margin: 0;
    font-family: MiSans;
    font-size: 10px;
    font-weight: normal;
    line-height: normal;
    text-align: justify; /* 浏览器可能不支持 */
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
}
.advantage-pagination {
    margin-top: 12px;
}
.advantage-pagination .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}
.advantage-pagination .swiper-pagination-bullet-active {
    background: #c41e3a;
    width: 16px;
    border-radius: 4px;
}

/* 产品服务流程 - 六步流程 */
.process-steps-wrap {
    margin-top: 12px;
}
.process-step {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 13px 21px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(237, 46, 65, 0.17) 0%, rgba(255, 255, 255, 0) 100%);
    position: relative;
    margin-bottom: 20px;
    /* height: 65px; */
}
.process-step:last-child {
    margin-bottom: 0;
}
.process-step-badge {
    position: absolute;
    right: 10px;
    top: 0;
    font-family: MiSans;
    opacity: 0.1;
    font-size: 20px;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
}
.process-step-title {
    display: block;
    margin-right: auto;
    border-radius: 30px;
    padding: 4px 12px;
    opacity: 1;
    background: #ED2E41;
    color: #fff;
    font-family: MiSans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}
.process-step-desc-highlight {
    color: #ED2E41;
}
.process-step-desc {
    
    margin: 0;
    font-family: MiSans, sans-serif;
    font-size: 12px;
    text-align: left;
    font-weight: normal;
    line-height: 1.5;
    color: #3D3D3D;
    width: 100%;
    margin-top: 10px;
}
