* {
    margin: 0;
    box-sizing: border-box;
}
.banner {
    width: 100%;
    background-image: url(../banner_images/banner_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 210px;
    padding-bottom: 95px;
    overflow: hidden;
}
.banner-content {
    width: 1500px;
    margin-left: 9.375%;
    display: flex;
    /* align-items: center; */
    position: relative;
    padding-right: 50px;
}
.banner-content .left-info {
    text-align: center;
    width: 750px;
    /*max-width: 800px;*/
    /*width: 665px;*/
   
}
.banner-content .left-info h3{
    font-size: 28px;
    font-weight: bold;
    color: #030303;
    margin-bottom: 30px;
    line-height: 1;
     font-family: '微软雅黑';
}
.banner-content .left-info p {
    font-size: 18px;
    line-height: 30px;
    color: #5f5f5f;
    font-family: '微软雅黑';
}
.banner-content .left-info a.link-btn {
    display: block;
    width: 180px;
    height: 46px;
    font-size: 21px;
    line-height: 46px;
    text-align: center;
    color: #fff;
    background-color: #5d63fe;
    margin: 0 auto;
    margin-top: 26px;
    border-radius: 40px;
    text-decoration: none;
    font-family: '微软雅黑';
}
.banner-content .right-img {
    max-width: 590px;
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}
.banner-content .right-img img {
    width: 100%;
    display: block;
}

@media(max-width:1650px) {
    .banner-content {
        width: 1200px;
    }
    /*.banner-content .left-info {*/
    /*    max-width: 550px;*/
    /*    width: 550px;*/
    /*}*/
    .banner-content .right-img {
        max-width: 450px;
    }
}

@media(max-width:1440px) {
    .banner-content {
        width: 1170px;
    }
}
@media(max-width:1350px) {
    .banner-content {
        margin: 0 auto;
        padding-right: 0;
    }
    .banner-content {
        width: 991px;
    }
    .banner-content .right-img {
        right: -100px;
    }
}

