.academic-course-banner{
    width: 100%;
}

/* 解决方案内容样式 */
.soul-solution-content {
    margin: 60px 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 65px;
    margin: 0 auto;
}

.solution-card {
    background: #FFFFFF;
    padding: 40px 30px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #F0F0F0;
    display: flex;
    align-items: center;
    gap: 45px;
   
}
.solution-card:nth-child(1){
    border-top-left-radius:240px ;
    border-bottom-left-radius:240px ;
    border-top-right-radius:240px ;
}
.solution-card:nth-child(2){
    border-top-right-radius:240px ;
    border-bottom-right-radius:240px ;
    border-top-left-radius:240px ;
}
.solution-card:nth-child(3){
    border-top-left-radius:240px ;
    border-bottom-left-radius:240px ;
    border-bottom-right-radius:240px ;
}
.solution-card:nth-child(4){
    border-top-right-radius:240px ;
    border-bottom-right-radius:240px ;
    border-bottom-left-radius:240px ;
}
.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 编号定位 - 1和2在右下角 */
.solution-card:nth-child(1) .solution-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(237, 46, 65, 0.4);
    font-family: MiSans;
}
.solution-card:nth-child(2) .solution-number {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(237, 46, 65, 0.4);
     
    font-family: MiSans;
}
.solution-card:nth-child(3) .solution-number{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(237, 46, 65, 0.4);
    font-family: MiSans;
}
/* 编号定位 - 3和4在左上角 */

.solution-card:nth-child(4) .solution-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    font-weight: 700;
    color: rgba(237, 46, 65, 0.4);
    font-family: MiSans;
}
.solution-card:hover{
    background-color: #ED2E41;
    color: #ffffff;
}
.solution-card:hover .solution-title{
    color: #ffffff;
}
.solution-card:hover .solution-desc{
    color: #ffffff;
}
.solution-card:hover .solution-number{
    color: #ffffff;
}
.solution-icon {
    width: 168px;
    height: 168px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-content {
    flex: 1;
}

.solution-title {
    font-family: MiSans;
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 14px;
    line-height: 1.4;
}

.solution-desc {
    font-family: MiSans;
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* 适用人群内容样式 */
.suitable-for-people-content {
    margin: 60px 0;
}

.suitable-people-container {
    display: flex;
    align-items: center;
    gap: 109px;
    margin: 0 auto;
}

.suitable-people-left {
    flex: 0 0 340px;
}

.suitable-people-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.suitable-people-right {
    flex: 1;
    min-height: 400px;
}

.people-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.people-card {
    padding: 30px 25px;
    border-radius: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.people-card-red {
    background: #ED2E41;
    color: #FFFFFF;
}

.people-card-white {
    background: #FFFFFF;
    color: #333333;
    border: 1px solid #E0E0E0;
    margin-bottom: 10px;
}

/* 第一个卡片默认悬浮状态 */
.people-card-active {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.people-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: #ED2E41;
    color: #FFFFFF;
}

/* 悬浮时显示白色图标 */
.people-card:hover .people-icon {
    content: url('../img/academicCourse/people-icon-white.png');
}

/* 悬浮时文字颜色变为白色 */
.people-card:hover .people-title,
.people-card:hover .people-subtitle {
    color: #FFFFFF;
}

/* 第一个卡片默认显示白色图标 */
.people-card-active .people-icon {
    content: url('../img/academicCourse/people-icon-white.png');
}

.people-icon {
    position: absolute;
    top: 0px;
    right: 10px;
    width: 57px;
    height: 57px;
}
 

.people-title {
    font-family: MiSans;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
}

.people-subtitle {
    margin-top: 14px;
    font-family: MiSans;
    font-size: 24px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
}

/* 独家优势内容样式 */
.exclusive-advantage-content {
    margin: 0px auto 20px;
    width: 100%;
}

.advantage-diagram {
    width: 100%;
    position: relative;
    margin: 0 auto;
}

.advantage-center {
    width: 638px;
    height: 679px;
    z-index: 10;
    margin: 0 auto;
}

.advantage-center img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.advantage-item {
    position: absolute;
    width: 423px;
}
 


.advantage-title {
    font-family: MiSans;
    font-size: 32px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #ED2E41;
}

.advantage-desc {
    margin-top: 14px;
    font-family: MiSans;
    font-size: 20px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;
    
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #3D3D3D;
}

/* 六个优势块的位置 - 按照设计稿布局 */
.advantage-item-1 {
    top: 190px;
    left: 70px;
}

.advantage-item-2 {
    top: 190px;
    right:45px;
}

.advantage-item-3 {
    top: 378px;
    left: 215px;
}

.advantage-item-4 {
    top: 390px;
    right:85px;
}

.advantage-item-5 {
    bottom: 10px;
    left: 350px;
}

.advantage-item-6 {
    bottom: 20px;
    right: 204px;
}

/* 产品服务流程样式 */
.product-service-process-content {
    margin: 0px 0 0px;
}

.process-steps {
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step-label-content {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.step-label {
    font-family: MiSans;
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0em;
    display: inline-block;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    color: #FFFFFF;
    padding:16px 14px;
    background: #ED2E41;
    color: #FFFFFF;
    border-radius: 40px;
    font-family: MiSans;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    margin-right: 30px;
    flex-shrink: 0;
}

.step-content {
    flex: 1; 
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    margin-top: 30px;
}

.step-content-img {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    height: 8px;
    border-top: 2px dotted rgba(237, 46, 65, 0.3);
}

.step-content-img::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #ED2E41;
    border-radius: 50%;
}
.step-number {
    padding:16px 11px;
    flex-shrink: 0;
    box-sizing: border-box;
    opacity: 1;
    background: linear-gradient(180deg, rgba(237, 46, 65, 0.17) 0%, rgba(255, 255, 255, 0) 100%);
    font-family: MiSans;
    font-size: 48px;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;

    /* position: absolute;
    right: 0; */
    color: rgba(237, 46, 65, 0.1);
    z-index: 1;
}

/* 为每个步骤单独设置宽度 */
.process-step:nth-child(1) .step-number { /* Step 6 */
    width: 589px;
    height: 98px;
}

.process-step:nth-child(2) .step-number { /* Step 5 */
    width: 632px;
height: 98px;
}

.process-step:nth-child(3) .step-number { /* Step 4 */
    width: 679px;
height: 98px;
}

.process-step:nth-child(4) .step-number { /* Step 3 */
    width: 727px;
    height: 98px;
}

.process-step:nth-child(5) .step-number { /* Step 2 */
    width: 776px;
    height: 98px;
}

.process-step:nth-child(6) .step-number { /* Step 1 */
    width: 824px;
    height: 98px;
}

.step-description {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 14px;
    font-family: MiSans;
    font-size: 18px;
    font-weight: normal;
    line-height: normal;
    letter-spacing: 0em;
    color: #3D3D3D;
    font-variation-settings: "opsz" auto;
    font-feature-settings: "kern" on;
    white-space: nowrap;
}

/* 中大屏笔记本适配 (1441px-1600px) */
@media (max-width: 1600px) and (min-width: 1441px) {
    body{
        zoom: 0.80;
    }
     
    /* 通用间距调整 */
    .common-pd {
        padding: 0 100px;
    }
}
 @media (max-width: 1440px) {
    body{
        zoom: 0.75;
    }
    
    /* 通用间距调整 */
    .common-pd {
        padding: 0 100px;
    }
 }