.section2 {
    padding: 45px 0;
    position: relative;
}

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

.box2 .left {
    width: 280px;
    display: flex;
    flex-direction: column;
}

.box2 .left h1 {
    background: var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    letter-spacing: 5px;
    color: #fff;
    height: 100px;
    margin: 0;
}

.box2 .left h1 img {
    margin-right: 10px;
    mix-blend-mode: lighten;
    filter: grayscale(20);
}

.box2 .left span {
    background: #f5f5f5;
    padding: 0px 5px;
}

.box2 .left span a {
    display: block;
    color: #999;
    font-size: 18px;
    line-height: 55px;
    border-bottom: 1px solid #cfcfcf;
    position: relative;
}

.box2 .left span:last-of-type a {
    border-bottom: 0px;
}

.box2 .left span a::before {
    content: "\e86c";
    font-family: "iconfont";
    margin: 0 10px;
    color: #cfcfcf;
    transition: .5s;
}

.box2 .left span:hover a {
    color: var(--color);
}

.box2 .left span:hover a::before {
    color: var(--color);
}

.box2 .left h2 {
    margin: 0;
    background: var(--color);
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box2 .left h2 p {
    margin: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
    font-weight: 100;
    margin-bottom: 30px;
}

.box2 .left h2 a {
    width: 130px;
    height: 40px;
    background: #fff;
    color: var(--color);
    text-align: center;
    line-height: 40px;
}

.box2 .right {
    width: calc(100% - 300px);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    margin-top: -15px;
}

.box2 .right .item {
    overflow: hidden;
    width: calc(33.333% - 30px);
    display: block;
    margin: 15px;
    border: 1px solid var(--color);
}

.box2 .right .item img {
    width: 100%;
}

.box2 .right .item h1 {
    border-top: 1px solid #c80a10;
    line-height: 50px;
    height: 50px;
    font-size: 16px;
    margin: 0;
    color: #333;
    text-align: center;
}

@media screen and (max-width: 1700px) and (min-width: 0px) {}

@media screen and (max-width: 1440px) and (min-width: 0px) {}

@media screen and (max-width: 1200px) and (min-width: 0px) {
    .box2 .left {
        width: 200px;
    }

    .box2 .right {
        width: calc(100% - 200px);
    }

    .box2 .left h1 {
        font-size: 24px;
        height: 80px;
    }

    .box2 .left h2 {
        height: 180px;
    }

    .box2 .left h2 p {
        font-size: 20px;
    }
}

@media screen and (max-width: 992px) and (min-width: 0px) {
    .box2 .right .item {
        width: calc(50% - 30px);
    }

    .box2 .right {
        width: calc(100% - 240px);
    }
}

@media screen and (max-width: 640px) and (min-width: 0px) {
    .box2 .left {
        width: 300px;
        margin: 0 auto;
        margin-bottom: 45px;
    }

    .box2 .left h2 {
        display: none;
    }

    .box2 .right {
        width: 100%;
    }

    .box2 .right .item {
        width: calc(50% - 20px);
        margin: 10px;
    }
}