.page2 {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 7% 0 25%;
    z-index: 1;
}

.page2 .page2_left {
    width: 35%;
    float: left;
    color: var(--li);
    font-size: max(28px, 2.188vw);
    font-weight: 700;
}

.page2 .page2_right {
    width: 44%;
    float: right;
    color: #666666;
    font-size: max(14px, 0.833vw);
    line-height: 185%;
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
}

.page2>img {
    position: absolute;
    bottom: 4%;
    width: 52%;
    height: auto;
    left: 50%;
    transform: translate(-50%, 50%);
}

.page3 {
    width: 100%;
    background: url("/src/img/skid/page3.jpg") no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 21% 0 7.813vw;
}

.page3>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.Page3Title {
    color: #fff;
    font-size: max(32px, 2.188vw);
    font-weight: 700;
    text-align: center;
}

.Page3Content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    margin-top: 8.5%;
    z-index: 1;
}

.page3ContentBox {
    width: 50%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 4% 5%;
}

.page3ContentBox:nth-child(-n+2) {
    padding-top: 0;
}

.page3ContentBox:nth-child(n+3) {
    padding-bottom: 0;
}

.page3ContentBox>div:nth-child(1) {
    color: #fff;
    display: inline-block;
}

.page3ContentBox>div:nth-child(1) b {
    display: block;
    font-size: max(16px, 0.938vw);
    font-weight: 400;
}

.page3ContentBox>div:nth-child(1)>p {
    color: var(--li);
    font-size: max(50px, 4.271vw);
    font-weight: 400;
}

.page3ContentBox>div:nth-child(1)>p i {
    font-style: normal;
    font-size: max(24px, 1.563vw);
}

.page3ContentBox>div:nth-child(1) .ts {
    font-size: max(24px, 2.083vw);
}

.page3ContentBox>img {
    margin-left: auto;
    width: 3.125vw;
    height: 3.125vw;
    object-fit: contain;
}

.Line {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.Line>div:nth-child(1) {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.Line>div:nth-child(2) {
    width: 1px;
    height: 100%;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
}

.page4 {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 7% 0 8%;
    box-sizing: border-box;
    background-color: #f1f3f5;
}

.page4>div>div:nth-child(1) {
    color: var(--li);
    font-size: max(32px, 2.188vw);
    font-weight: bold;
    margin-bottom: 7%;
    width: 100%;
    text-align: center;
}

.page4Content {
    width: 100%;
    display: flex;
    gap: 3.125vw;
    flex-wrap: wrap;
}

.page4Content>div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    counter-increment: Advantage;
}

.page4Content>div>img {
    width: 43.6%;
    border-radius: 10px;
    overflow: hidden;
}

.page4Content>div>div {
    width: 43.6%;
}

.Page4Title {
    color: #000;
    font-size: max(24px, 1.563vw);
    font-weight: bold;
    margin-bottom: 5%;
}

.Page4Content {
    color: #666666;
    font-size: max(14px, 0.833vw);
    line-height: 185%;
}

.Page4Title::before {
    content: counter(Advantage, decimal-leading-zero) '.';
    margin-right: 1%;
}

.page4Content>div:nth-of-type(2n) {
    flex-flow: row-reverse;
}



@media (max-width: 768px) {

    .page2 {
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
    }

    .page3 {
        padding: 50px 0;
    }

    .page2>img {
        width: 90%;
        position: static;
        transform: none;
        margin-top: 30px;
    }

    .page2 .page2_left {
        width: 100%;
        float: none;
        font-size: 24px;
        text-align: left;
    }

    .page2 .page2_right {
        width: 100%;
        float: none;
        text-align: left;
        margin-top: 20px;
        gap: 12px;
    }

    .page2>div:nth-child(1) {
        font-size: 40px;
        text-align: center;
    }

    .page4Content>div {
        flex-direction: column !important;
        margin-bottom: 10%;
    }

    .page4Content>div>img,
    .page4Content>div>div {
        width: 100%;
    }

    .Page4Filp {
        flex-flow: nowrap !important;
        flex-direction: column !important;
    }

    .Page4Title {
        margin: 20px 0 10px;
        font-size: 18px;
    }

    .page5>div>img {
        width: 100%;
    }

    .Page3Content {
        width: 100%;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .page3ContentBox {
        width: 100%;
        margin-bottom: 0;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgb(255 255 255 / 20%);
    }

    .page3ContentBox>img {
        width: 48px;
        height: auto;
    }

    .page3ContentBox>div:nth-child(1) b {
        font-size: 14px;
    }

    .page3ContentBox>div:nth-child(1)>p {
        font-size: 42px;
    }

    .Line {
        display: none;
    }

    .page4 {
        padding: 50px 0;
    }

}