.items {
    margin: 1.25rem 0;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0.75rem;
}
.items .item {
    width: calc((100% - 1.25rem) / 2);
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    transition: all .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover {
        background-color: #049b54;
        border-color: #049b54;
    }
}
.items .item a {
    display: block;
    height: 100%;
    padding:0.4rem 1.25rem;
    position: relative;
}
.items .item a:before {
    content: '';
    width: 0.6rem;
    height: 0.6rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icon-4-1.png);
    position: absolute;
    left: 0.3rem;
    top: calc(50% - 0.3rem);
    transition: all .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover a:before {
        background-image: url(../img/icon-4-2.png);
    }
}
.items .item .tit {
    padding-left: 0.3rem;
    border-left: 1px solid #e8e8e8;
    font-size: max(16px, 0.325rem);
    color: #333333;
    transition: color .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover .tit {
        color: #fff;
    }
}
.items .item a:after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/icon-5-1.png);
    position: absolute;
    right: 0.5rem;
    top: calc(50% - 0.3rem);
    transition: all .3s ease;
}
@media (any-hover: hover) {
    .items .item:hover a:after {
        background-image: url(../img/icon-5-2.png);
    }
}
@media screen and (max-width: 767px) {
    .items .item {
        width: 100%;
    }
    .items .item a {
        padding: 0.5rem 1.3rem;
    }
    .items .item a:before {
        left: 0.4rem;
        width: 0.7rem;
        height: 0.7rem;
    }
    .items .item .tit {
        font-size: 14px;
    }
    .items .item a:after {
        right: 0.4rem;
        width: 0.7rem;
        height: 0.7rem;
    }
}




















