.banner {
    position: relative;
}

.banner .banner-img {
    width: 100%;
    display: block;
}

.banner .banner-link {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 15%;
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.banner .banner-link a {
    width: 300px;
    border-radius: 50px;
    height: 90px;
    line-height: 90px;
    background-color: #fff;
    box-shadow: 0px 10px 0px 0px rgba(110, 31, 28, 0.35);
    text-align: center;
    font-size: 45px;
    color: #f98855;
}


@media screen and (max-width: 1200px) {

    .banner .banner-link {
        width: 12rem;
        font-size: 14px;
    }

    .banner .banner-link a {
        width: 2.5rem;
        height: 0.7rem;
        box-sizing: border-box;
        line-height: 0.7rem;
        font-size: 0.375rem;
        box-shadow: .1rem .1rem 0px 0px rgba(110, 31, 28, 0.35);
    }

}