.section5 {
    overflow: hidden;
    background: #F8F8F8;
}

.section5 .IndexBox {
    padding: 0;
}

.box5 {
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
}

.box5 .text {
    width: 60%;
    padding-top: 120px;
    padding-bottom: 60px;
    padding-left: var(--container);
    padding-right: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box5 .text>h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(91.02deg, #DF8900 2.11%, #E06300 50.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.box5 .text>h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #515E5E;
    margin: 30px 0;
}

.box5 .text>h3 {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #757575;
    opacity: 0.8;
}

.box5 .text span {
    margin: 50px 0 100px;
    width: 100%;
    height: 160px;
    background: #E7D8C4;
    box-shadow: -4px 4px 4px rgba(255, 255, 255, 0.4), inset 4px 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    display: flex;
    justify-content: space-between;
}

.box5 .text span .item {
    display: flex;
    align-items: center;
}

.box5 .text span .item:nth-child(2) {
    width: 53%;
    background: linear-gradient(270deg, #E7D8C4 0%, #FAECDA 100%);
    box-shadow: -4px 4px 4px rgba(255, 255, 255, 0.2), inset 4px 10px 30px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
}

.box5 .text span .item img {
    padding: 0 45px;
}

.number h1 {
    font-weight: bold;
    font-size: 68px;
    line-height: 58px;
    background: linear-gradient(91.02deg, #DF8900 2.11%, #E06300 50.52%), #AE5730;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 10px;
}

.number h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    color: #AE5730;
}

.box5 .More {
    width: 340px;
}

.box5 .More img {
    width: 100%;
    display: block;
    filter: drop-shadow(0px 20px 20px rgba(0, 0, 0, 0.15));
    transition: 0.5s;
    position: relative;
    top: 0;
}

.box5 .More:hover img {
    filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.3));
    top: 5px;
}

@media (max-width: 1600px) {
    .box5 .text {
        width: 60%;
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

@media (max-width: 1440px) {
    .box5 .text>h1 {
        font-size: 38px;
    }

    .number {
        padding-right: 30px;
    }

    .number h1 {
        font-size: 48px;
        line-height: 1;
    }

    .box5 .text span .item img {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    .box5 .text {
        padding: 60px 5vw;
    }

    .box5 {
        display: flex;
        flex-wrap: wrap;
    }

    .box5 .text {
        width: 100%;
    }

    .box5 .imgBox {
        width: 100%;
    }

    .box5 .More {
        width: 300px;
    }
}

@media (max-width:720px) {
    .box5 .text>h1 {
        font-size: 30px;
    }

    .box5 .text>h2 {
        font-size: 18px;
        margin: 20px 0;
    }

    .number {
        padding: 0 15px;
    }

    .box5 .text span {
        height: 120px;
        margin: 30px 0 60px;
    }

    .box5 .text span .item img {
        width: 90px;
        padding: 0px;
        padding-left: 30px;
    }

    .number h1 {
        font-size: 32px;
        line-height: 1;
    }
}

@media (max-width:500px) {
    .box5 .text>h1 {
        line-height: 1.5;
    }

    .box5 .More {
        width: 200px;
    }

    .box5 .text span {
        margin: 30px 0;
        width: 100%;
        height: auto;
        background: #fff0;
        box-shadow: none;
        display: flex;
        flex-wrap: wrap;
    }

    .box5 .text span .item {
        height: 90px;
        width: 100% !important;
        background: linear-gradient(270deg, #E7D8C4 0%, #FAECDA 100%);
        box-shadow: -4px 4px 4px rgba(255, 255, 255, 0.2), inset 4px 10px 30px rgba(0, 0, 0, 0.25);
        border-radius: 100px;
        margin-bottom: 30px;
    }
}


/* 图 */
.box5 .imgBox {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.box5 .imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.box5 .imgBox:hover img {
    transform: scale(1.08);
}


@media (max-width: 1200px) {
    .box5 .imgBox {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}