.qp-service-process{
    background: var(--second-color);
    padding: 100px 0;
}
.qp-service-process .container{
    position: relative;
}
.qp-service-process .bg{
    position: absolute;
    top: 25%;
    width: 100%;
    height: 518px;
    border: 4px dashed var(--primary-color);
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
    border-left: none;
}
.qp-service-process .bg::after{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    left: 0;
    top: -2px;
    transform: translate(-50%,-50%);
}
.qp-service-process .bg::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    left: 0;
    bottom: -2px;
    transform: translate(-50%,50%);
}
.qp-service-process .title{
    color: var(--text-color-black);
    text-align: center;
    font-family: var(--font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
    max-width: 1200px;
    margin: 0 auto;
}
.qp-service-process .desc{
    color: #666;
    text-align: center;
    font-family: var( --font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-desc-weight);
    line-height: var(--line-height); /* 150% */
    max-width: 1000px;
    margin: 12px auto 0;
}

.qp-service-process .process-list{
    padding: 60px 100px 0;
}
.process-list ul{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 60px;
    column-gap: 100px;
}
.process-list ul li:nth-child(4){
    grid-row: 2; /* 固定在第2行 */
    grid-column: 3; /* 第3列（最右侧） */
}
.process-list ul li:nth-child(5) { /* 第二行第2个元素 → 放在第2列 */
    grid-row: 2;
    grid-column: 2; /* 第2列 */
}
.process-list ul li .img{
    width: 100%;
    position: relative;
}
.process-list ul li img{
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}
.process-list ul li .img .num{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-color-white);
    border-radius: 50%;
    border: 2px solid #fff;
    left: 30px;
    bottom: -30px;
    color: var(--text-color-white);
    text-align: center;
    font-family: var(--font-title-family);
    font-size: 26px;
    font-style: var(--font-style);
    font-weight: 600;
    line-height: 153.846%; /* 153.846% */
    text-transform: capitalize;
}
.process-list ul li .list-title{
    color: var(--text-color-black);
    font-family: var(--font-title-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
    margin-top: 50px;
}
.process-list ul li .list-desc{
    color: #666;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: var(--font-style);
    font-weight: 400;
    line-height: 157.143%; /* 157.143% */
}

@media screen and (max-width: 1500px) {
    .process-list ul{
        row-gap: 30px;
        column-gap: 50px;
    }
    .process-list ul li .img .num{
        font-size: 24px;
    }
    .qp-service-process .bg{
        height: 450px;
    }
}
@media screen and (max-width: 1200px) {
    .qp-service-process .bg{
        top: 20%;
    }
}
@media screen and (max-width: 992px) {
    .qp-service-process .bg{
        display: none;
    }
    .qp-service-process .process-list{
        padding: 60px 0;
    }
    .process-list ul{
        grid-template-columns: repeat(2, 1fr);
    }
    .process-list ul li:nth-child(4){
        grid-row: auto; /* 固定在第2行 */
        grid-column: auto; /* 第3列（最右侧） */
    }
    .process-list ul li:nth-child(5) { /* 第二行第2个元素 → 放在第2列 */
        grid-row: auto;
        grid-column: auto; /* 第2列 */
    }
}
@media screen and (max-width: 767px) {
    .qp-service-process {
        padding: 50px 0;
    }
    .qp-service-process .process-list {
        padding-bottom: 0;
    }
}