    .section2 {
        background: #F7F7F7;
        position: relative;
        overflow: hidden;
        padding: 60px 0px;
    }


    .Box2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: url(/assets/images/f_bj.png) right top no-repeat;
    }

    .List2Box {
        width: 280px;
        display: flex;
        flex-wrap: wrap;
        grid-gap: 5px;
    }

    .List2 {
        width: 100%;
        height: 50px;
        background: url(/assets/images/x01.png) no-repeat;
        color: #373737;
        font-size: 20px;
        padding-left: 30px;
        display: flex;
        align-items: center;
    }

    .List2:hover {
        background: url(/assets/images/x02.png) no-repeat;
    }

    .List2.on {
        background: url(/assets/images/x02.png) no-repeat;
    }

    .img2Box {
        width: 390px;
    }

    .img2Box .img2 {
        display: none;
        border-radius: 5px;
        background: #fff;
        padding: 5px;
        overflow: hidden;
    }

    .img2Box .img2.on {
        display: block;
    }

    .img2Box .img2 img {
        width: 100%;
    }

    .text2 {
        width: calc(100% - 390px - 280px - 80px);
    }

    .text2 h1 {
        font-weight: bold;
        font-size: 24px;
        color: #bc9d5d;
    }

    .text2 p {
        color: #666666;
        font-size: 14px;
        margin: 15px 0;
        padding-right: 30px;
    }

    .text2 a {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        padding: 6px 18px;
        background: #51311a;
        color: #fff;
        text-align: center;
        border-radius: 5px;
        margin-left: auto;
        margin-right: 30px;
        width: 90px;
    }

    @media (max-width: 1200px) {
        .Box2 {
            display: flex;
            flex-wrap: wrap;
            background: #fff0;
        }

        .img2Box {
            width: calc(100% - 320px);
        }

        .text2 {
            margin-top: 30px;
            width: 100%;
        }
    }

    @media (max-width: 720px) {
        .List2Box {
            width: 100%;
        }

        .List2 {
            background: url(/assets/images/x01.png) right no-repeat #eeeeee;
        }

        .List2:hover,
        .List2.on {
            background: url(/assets/images/x02.png) right no-repeat #ccb76c;
        }

        .img2Box {
            width: 100%;
            margin: 30px 0;
        }

        .text2 {
            margin-top: 0px;
            width: 100%;
        }
    }

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