    /* 标题 */
    :root {
        --white: rgb(255, 255, 253);
        --black: #131112;
        --color1: #916F54;
        --color2: #FF1F00;
        --jb: linear-gradient(90deg, #008244 0%, #00C562 100%);
        --bold: PuHuiTi400;
        --bolder: PuHuiTi700;
    }

    .sectionTitle {
        font-weight: 400;
        font-size: 40px;
        line-height: 1;
        color: #000000;
        margin-bottom: 45px;
    }


    @media (max-width: 1540px) {
        .sectionTitle {
            font-size: 32px;
        }
    }

    @media (max-width: 1200px) {
        .sectionTitle {
            font-size: 24px;
            margin-bottom: 30px;
        }
    }

    @media (max-width: 460px) {
        .sectionTitle {
            font-size: 24px;
            margin-bottom: 20px;
        }
    }


    section {
        padding: 43px 0;
        background: var(--white);
        position: relative;
        z-index: 1;
    }


    @media (max-width: 1540px) {
        section {
            padding: 35px 0;
        }
    }

    @media (max-width: 1200px) {
        section {
            padding: 30px 0;
        }
    }

    @media (max-width: 460px) {
        section {
            padding: 20px 0;
        }
    }

    /* 按钮 */
    .AMore {
        transition: 0.5s;
        width: 180px;
        height: 50px;
        color: #fff;
        background: var(--color);
        border-radius: 6px;
        position: relative;
        transition: 0.5s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .AMore:hover {
        color: var(--color);
        background: #BFBFBF;
    }

    @media (max-width: 1200px) {
        .AMore {
            width: 140px;
            height: 45px;
        }
    }

    @media (max-width: 720px) {
        .AMore {
            width: 120px;
            height: 40px;
            font-size: 14px;
        }
    }




    @keyframes text {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.2);
        }
    }

    /* Box1 */
    .section1 {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        height: auto;
        max-height: 100vh;
        padding: 0;
    }

    .bannerBox {
        position: relative;
        z-index: 2;
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 100vh;
    }

    .bannerSwiper {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 100vh;
    }

    .bannerSlide {
        overflow: hidden;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        position: relative;
        z-index: 2;
    }

    .bannerSlide .text {
        position: absolute;
        z-index: 4;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        padding: 0 var(--container);
        padding-bottom: 200px;
        background: #00000000;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .bannerSlide .text h1 {
        margin-bottom: 30px;
    }

    .bannerSlide .text h1,
    .bannerSlide .text h1 b {
        font-weight: 400;
        font-size: 20px;
        line-height: 1;
        color: var(--white);
        display: flex;
        margin-right: 2px;
    }

    .bannerSlide .text h2 {
        display: flex;
        align-items: center;
    }

    .bannerSlide .text h2,
    .bannerSlide .text h2 b {
        font-weight: 100;
        font-size: 80px;
        line-height: 1;
        color: var(--white);
        display: flex;
        margin-right: 2px;
        font-family: 'Impact';
    }

    .bannerSlide .text h2 p,
    .bannerSlide .text h2 p b {
        font-weight: bold;
        font-size: 40px;
        line-height: 1;
        color: var(--white);
        display: flex;
        margin-right: 2px;
    }


    .bannerSlide .bj {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 3;
        animation: text 20s linear infinite;
    }

    .section1 .next1 {
        width: 17px;
        height: 29px;
        background: url(/assets/images/right.png) no-repeat 100% 100%;
        background-size: contain;
        margin: 0;
        top: auto;
        bottom: 75px;
        left: calc(var(--container) + 60px);
        right: auto;
    }

    .section1 .prev1 {
        width: 17px;
        height: 29px;
        background: url(/assets/images/left.png) no-repeat 100% 100%;
        background-size: contain;
        margin: 0;
        top: auto;
        bottom: 75px;
        left: var(--container);
        right: auto;
    }

    .section1 .swiper-button-next:after,
    .section1 .swiper-button-prev:after {
        display: none;
    }

    @media (max-width: 1440px) {}

    @media (max-width: 1200px) {
        .section1 {
            margin-top: 60px;
        }

        .bannerSlide .text h1,
        .bannerSlide .text h1 b {
            font-size: 18px;
        }

        .bannerSlide .text h2,
        .bannerSlide .text h2 b {
            font-size: 60px;
        }

        .bannerSlide .text h2 p,
        .bannerSlide .text h2 p b {
            font-size: 32px;
        }


    }

    @media (max-width: 720px) {
        .bannerSlide .text {
            padding-bottom: 0;
            display: flex;
            justify-content: center;
        }
    }

    @media (max-width: 460px) {

        .bannerSlide .text h1,
        .bannerSlide .text h1 b {
            font-size: 16px;
            display: flex;
            flex-wrap: wrap;
            margin: 2px;
        }

        .bannerSlide .text h1 {
            margin-bottom: 15px;
        }

        .bannerSlide .text h2,
        .bannerSlide .text h2 b {
            font-size: 30px;
        }

        .bannerSlide .text h2 p,
        .bannerSlide .text h2 p b {
            font-size: 20px;
        }
    }



    .Number {
        border-top: 1px solid #ffffff80;
        position: absolute;
        z-index: 2;
        left: 0;
        bottom: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
    }

    .NumberItem {
        padding: 30px 0;
    }

    .NumberItem h1 {
        font-family: 'Impact';
        font-weight: 100;
        font-size: 40px;
        line-height: 1;
        background: linear-gradient(242.13deg, #FFFFFF 19.52%, #997C65 95.78%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        display: flex;
    }

    .NumberItem h1 span {
        font-family: 'Impact';
        font-weight: 100;
        font-size: 40px;
    }

    .NumberItem h2 {
        margin-top: 10px;
        font-weight: bold;
        font-size: 16px;
        line-height: 1;
        background: linear-gradient(245.45deg, #FFFFFF 8.2%, #997C65 99.64%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }

    @media (max-width: 720px) {
        .Number {
            position: relative;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .NumberItem {
            width: 33%;
            padding: 15px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .NumberItem h1,
        .NumberItem h2 {
            background: linear-gradient(242.13deg, #fbd48a 19.52%, #997C65 95.78%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-fill-color: transparent;
        }
    }

    @media (max-width: 460px) {
        .NumberItem {
            width: 50%;
        }

        .NumberItem h1,
        .NumberItem h1 span {
            font-size: 28px;
        }
    }

    /* box2 */
    .index_banner {
        position: relative;
        z-index: -2;
    }

    .index_banner img {
        width: 100%;
        height: 100%;
        max-height: 100vh;
    }

    @media (max-width: 1200px) {
        .index_banner {
            margin-top: 60px;
        }

    }

    @media (max-width: 720px) {
        .index_banner {
            margin-bottom: 150px;
        }

        .NumberItem {
            width: 33.333%;
        }

        .NumberItem:nth-child(4),
        .NumberItem:nth-child(5) {
            width: 40%;
        }
    }

    @media (max-width: 460px) {

        .NumberItem h1,
        .NumberItem h2 {
            color: var(--color1);
            background: unset;
            -webkit-text-fill-color: unset;
        }

        .NumberItem h2 {
            font-size: 14px;
        }
    }

    .section2 {
        padding-top: 90px;
        background: var(--white);
        position: relative;
        z-index: 2;
    }

    .Box2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .item2 {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .item2 .img {
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .item2 .text {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 2;
        padding: 50px 45px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        flex-direction: column;
    }

    .item2 .text h1 {
        font-size: 20px;
        line-height: 1;
        color: var(--white);
        margin-bottom: 15px;
    }

    .item2 .text h1 b {
        font-weight: bold;
    }

    .item2 .text span {
        width: 120px;
        height: 40px;
        background: var(--color2);
        font-size: 14px;
        color: var(--white);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @media (max-width: 1540px) {
        .section2 {
            padding-top: 80px;
        }

        .item2 .text {
            padding: 30px 35px;
        }

        .item2 .text h1 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .item2 .text span {
            height: 34px;
        }
    }

    @media (max-width: 1200px) {
        .section2 {
            padding-top: 60px;
        }

        .item2 .text span {
            width: 110px;
            height: 30px;
        }

        .item2 .text {
            background: #00000080;
            padding: 30px 20px;
        }

        .item2 .text h1 {
            font-size: 16px;
        }
    }

    @media (max-width:800px) {
        .Box2 {
            grid-template-columns: repeat(1, 1fr);
            grid-template-rows: repeat(3, 0.5fr);
        }
    }

    @media (max-width: 460px) {
        .section2 {
            padding-top: 40px;
        }

        .Box2 {
            grid-template-rows: repeat(3, 1fr);
        }
    }

    /* box3 */
    .section3 {
        overflow: hidden;
        position: relative;
    }


    .box3 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 40px 20px;
    }

    .item3 {
        width: 100%;
    }

    .item3:nth-child(1) {
        grid-column: 1 / 3;
    }

    .img3 {
        position: relative;
        width: 100%;
    }

    .item3 * {
        transition: all 0.5s ease;
    }

    .img3::after {
        transition: all 0.5s ease;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: linear-gradient(250deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 3;
        opacity: 0;
    }

    .item3:hover .img3::after {
        opacity: 1;
    }

    .img3 img {
        width: 100%;
    }

    .img3 .img1 {
        position: relative;
        z-index: 1;
    }

    .img3 .img2 {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 2;
        display: none;
    }

    .item3:hover .img3 .img2 {
        display: block;
    }

    .img3 span {
        display: block;
        width: 120px;
        height: 40px;
        border-radius: 50px;
        font-size: 14px;
        color: #fff;
        background: var(--color2);
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        z-index: 4;
        bottom: 30px;
        left: calc(50% - 60px);
        opacity: 0;
    }

    .item3:hover .img3 span {
        opacity: 1;
    }


    .text3 h1 {
        font-size: 20px;
        line-height: 1;
        color: #000000;
        margin: 25px 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .text3 span {
        display: flex;
        grid-gap: 10px;
        flex-wrap: wrap;
        overflow: hidden;
        height: 38px;
    }

    .text3 span p {
        display: block;
        padding: 0 20px;
        height: 38px;
        border: 1px solid rgba(153, 124, 101, 0.5);
        font-size: 16px;
        line-height: 1;
        color: rgba(153, 124, 101, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box3More {
        transition: all 0.5s ease;
        margin: 0 auto;
        margin-top: 40px;
        font-size: 20px;
        line-height: 1;
        color: var(--color1);
        width: 460px;
        height: 80px;
        border: 1px solid var(--color1);
        background: var(--white);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box3More:hover {
        border: 1px solid var(--color2);
        background: var(--color2);
        color: #fff;
    }

    @media (max-width: 1540px) {
        .box3More {
            width: 360px;
            height: 60px;
        }
    }

    @media (max-width: 1200px) {
        .box3 {
            grid-template-columns: repeat(4, 1fr);
            grid-gap: 30px 10px;
        }

        .img3 span {
            width: 100px;
            height: 30px;
            left: calc(50% - 50px);
        }

        .text3 h1 {
            font-size: 18px;
            margin: 15px 0;
        }

        .text3 span {
            height: 30px;
        }

        .text3 span p {
            width: auto;
            padding: 0 15px;
            height: 30px;
            font-size: 14px;
        }

        .box3More {
            width: 210px;
            height: 45px;
            font-size: 16px;
        }
    }

    @media (max-width: 800px) {


        .img3 span {
            bottom: 20px;
        }
    }

    @media (max-width: 720px) {
        .box3 {
            grid-template-columns: repeat(2, 1fr);
        }

        .box3More {
            margin-top: 30px;
        }

    }

    @media (max-width: 460px) {
        .text3 h1 {
            font-size: 16px;
        }

        .text3 span p {
            font-size: 12px;
        }
    }

    /* box4 */
    .section4 {
        background: var(--white);

    }

    .section4_1 {
        position: relative;
        overflow: hidden;
        background: url(https://ss-res.oss-cn-hangzhou.aliyuncs.com/site_res/220/20240518131954_hhOWqtEK.png) no-repeat center;
        background-size: cover;
    }

    .section4 .sectionTitle {
        padding: 0 var(--container);
        height: 160px;
        line-height: 160px;
        border-bottom: 1px solid #ffffff80;
        color: var(--white);
        margin: 0;
    }

    .Box4 {
        padding: 90px 0;
        display: flex;
        justify-content: space-between;
        position: relative;
    }

    .lt4 {
        width: 560px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .item4 {
        width: 100%;
    }

    .text4 {
        display: flex;
        align-items: center;
    }

    .text4 h1 {
        width: 100px;
        font-family: 'Impact';
        font-size: 40px;
        line-height: 1;
        color: #FFFFFF;
    }

    .text4 h1 span {
        font-family: 'Impact';
    }

    .text4 h2 {
        margin-left: 10px;
        font-size: 16px;
        line-height: 1;
        color: #FFFFFF;
    }

    .item4 .aa {
        margin-top: 15px;
        display: block;
        width: 100%;
        height: 6px;
        border-radius: 50px;
        overflow: hidden;
    }

    .item4 .a1 {
        display: block;
        height: 6px;
        position: relative;
        border-radius: 50px;
        overflow: hidden;
    }

    @keyframes progress-animation {
        0% {
            background-position: 100% 0;
            /* 渐变开始位置在最右边 */
        }

        100% {
            background-position: -100% 0;
            /* 渐变结束位置在最左边，完成一个循环 */
        }
    }

    .item4 .a2 {
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        width: 0%;
        height: 100%;
        background: linear-gradient(90deg, #000000 0%, #FFCFA9 30%, #FFFFFF 50%, #FFCFA9 70%, #000000 100%);
        background-size: 200% 100%;
        animation: progress-animation 5s linear infinite;
    }

    .item4 .a2.active {
        width: 100%;
        transition: 5s ease;
    }

    .rt4 {
        width: 920px;
        height: 400px;
        overflow: hidden;
    }

    .swiper4 {
        width: calc(100% + 2px);
        height: calc(100% + 2px);
    }

    .swiper4 .swiper-slide {
        height: 33.3333%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #ffffff80;
        border-right: 1px solid #ffffff80;
    }

    .swiper4 .swiper-slide img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
    }

    @media (max-width: 1700px) {
        .lt4 {
            width: 500px;
        }

        .rt4 {
            width: 900px;
        }
    }

    @media (max-width: 1540px) {
        .lt4 {
            width: 400px;
        }

        .rt4 {
            width: 600px;
            height: 300px;
        }
    }

    @media (max-width: 1200px) {
        .Box4 {
            padding: 60px 0;
        }

        .section4 .sectionTitle {
            height: 120px;
            line-height: 120px;
        }

        .lt4 {
            width: 350px;
        }

        .text4 h1 {
            width: 72px;
            font-size: 32px;
        }

        .rt4 {
            width: 450px;
            height: 250px;
        }
    }

    @media (max-width: 900px) {
        .Box4 {
            flex-wrap: wrap;
        }

        .lt4 {
            width: 100%;
        }

        .item4 {
            margin-bottom: 45px;
        }

        .rt4 {
            width: 100%;
            height: 250px;
        }
    }

    @media (max-width: 720px) {
        .section4 .sectionTitle {
            height: 90px;
            line-height: 90px;
        }

        .Box4 {
            padding: 45px 0;
        }

        .swiper4 {
            width: calc(100% + 3px);
            height: calc(100% + 3px);
            position: relative;
            left: -1px;

        }
    }

    @media (max-width: 460px) {}

    /* box5 */
    .section5 {
        position: relative;
        overflow: hidden;

    }

    .top5 {
        display: flex;

    }


    .nav5 {
        margin-left: 35px;
        display: flex;
        grid-gap: 20px;
    }

    .nav5 a {
        transition: 0.5s;
        width: 120px;
        height: 40px;
        background: var(--white);
        border: 1px solid rgba(153, 124, 101, 0.5);
        border-radius: 50px;
        font-size: 16px;
        line-height: 1;
        color: rgba(153, 124, 101, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav5 a:hover {
        color: var(--white);
        background: var(--color2);
        border: 1px solid var(--color2);
    }

    .Box5 * {
        transition: 0.5s;
    }

    .swiper5 {
        position: relative;
        left: -20px;
        padding: 0 20px;
        padding-bottom: 15px;
        width: calc(100% + 40px);
    }

    .text5 {
        background: var(--white);
        padding: 30px;
    }

    .text5 span {
        font-size: 20px;
        line-height: 1;
        color: var(--color1);
    }

    .text5 h1 {
        font-size: 20px;
        line-height: 1;
        color: var(--black);
        margin: 25px 0 20px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .text5 h2 {
        font-size: 16px;
        line-height: 1.5;
        color: var(--color1);
        opacity: 0.5;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }


    .item5:hover {
        box-shadow: 0px 4px 15px rgba(153, 124, 101, 0.2);
    }

    .item5:hover .text5 {
        background: #fff;
    }

    .item5:hover .img5 img {
        transform: scale(1.08);
    }


    .section5 .box3More {
        margin-top: 20px;
    }

    @media (max-width: 1540px) {
        .text5 {
            background: var(--white);
            padding: 30px 15px;
        }

        .text5 h1 {
            font-size: 18px;
            margin: 20px 0 15px;
        }
    }

    @media (max-width: 720px) {
        .top5 {
            display: flex;
            flex-direction: column;
        }

        .nav5 {
            margin: 0;
            margin-bottom: 30px;
        }

        .nav5 a {
            width: 110px;
            height: 35px;
        }

        .section5 .box3More {
            margin-top: 0;
        }
    }

    @media (max-width: 460px) {
        .nav5 a {
            font-size: 14px;
        }

        .text5 span {
            font-size: 16px;
        }

        .text5 h1 {
            font-size: 16px;
            margin: 15px 0;
        }

        .text5 h2 {
            font-size: 14px;
        }
    }

    /* box6 */
    .section6 {
        position: relative;
        padding-bottom: 0;
    }

    .Box6 {
        background: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .lt6 {
        width: 50%;
        padding-right: 30px;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lt6 .bj6 {
        position: relative;
        z-index: 2;
        width: 100%;
        opacity: 1;
        transition: 0.5s;
    }

    .lt6:hover .bj6 {
        opacity: 1;
    }

    .lt6 a {
        display: block;
        width: 300px;
        height: 80px;
        background: var(--color2);
        border-radius: 50px;
        font-size: 20px;
        line-height: 1;
        color: #FFFFFF;
        position: absolute;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: 0.1s linear;
    }

    .lt6:hover a {
        opacity: 1;
    }

    .lt6 a img {
        width: 18px;
        position: relative;
        top: 2px;
        left: 5px;
    }

    .rt6 {
        padding: 30px 0;
        padding-left: 30px;
        padding-right: 160px;
        width: 50%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .rt6 .title6 {
        font-size: 26px;
        line-height: 1;
        color: #000000;
        margin-bottom: 45px;
    }

    .form6 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .form6 label {
        width: 100%;
        margin-bottom: 30px;
    }

    .form6 .label1 {
        width: calc(50% - 15px);

    }

    .form6 h1 {
        font-size: 16px;
        line-height: 1;
        color: rgba(153, 124, 101, 0.5);
    }

    .form6 h1 sup {
        color: var(--color2);
        top: 0;
        left: 5px;
        font-size: 16px;
        font-weight: bold;
    }

    .form6 label input {
        height: 40px;
        width: 100%;
        border-bottom: 1px solid rgba(153, 124, 101, 0.5);
        background: #FFF;
    }

    .form6 .label2 {
        width: calc(50% - 15px + 130px);

    }

    .form6 .anniu6 {
        display: flex;
        grid-gap: 20px;
    }

    .form6 .anniu6 button {
        width: 140px;
        height: 38px;
        background: #D9D9D9;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form6 .anniu6 button:nth-child(1) {
        background: var(--black);
    }

    .form6 .anniu6 button:hover {
        background: var(--color2);
    }

    @media (max-width: 1540px) {
        .lt6 {
            width: 60%;
            padding-right: 0;
        }

        .rt6 {
            width: 40%;
            padding-right: var(--container);
        }

        .lt6 span {
            font-size: 18px;
            width: 280px;
            height: 60px;
        }
    }

    @media (max-width: 1200px) {
        .rt6 {
            padding-left: 15px;
        }

        .rt6 .title6 {
            font-size: 24px;
            margin-bottom: 25px;
        }



        .form6 label input {
            height: 30px;
            width: 100%;
        }

        .form6 label {
            margin-bottom: 20px;
        }

        .form6 .anniu6 button {
            height: 30px;
        }
    }

    @media (max-width: 900px) {
        .Box6 {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column-reverse;
        }

        .rt6 {
            width: 100%;
            padding-top: 0;
            padding: 30px var(--container);
        }

        .lt6 {
            width: 100%;
        }
    }

    @media (max-width: 460px) {
        .rt6 .title6 {
            font-size: 22px;
        }

        .lt6 span {
            font-size: 16px;
            width: 240px;
            height: 50px;
        }
    }