
.banner{
    width: 100%;
    height: auto;
}
.banner>img{
    display: block;
    width: 100%;
    position: sticky;
    top: 80px;
}
.content{
    width: 100%;
    height: 280px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}
.c1 .right{
    width: 980px;
    height: 280px;
    border-radius: 140px 0 0 140px;
    background-color: #ffefcb;
}
.c1 h1{
    font-size: 48px;
    padding-top: 30px;
    text-align: center;

}
.c1 p{
    width: 650px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 25px;
}
.c2 .left{
    width: 980px;
    height: 280px;
    border-radius: 0 140px 140px 0;
    background-color: #72a2e5;
    position: relative;
}
.c2 h1{
    padding-top: 35px;
    font-size: 48px;
    text-align: center;
    width: 100%;
}
.c2 p{
    width: 640px;
    margin: 0 auto;
    margin-top: 20px;
}
.c2 .pic1{
    position: absolute;
    height: 380px;
    left: 25px;
    bottom: 190px;
}
.c2 .pic2{
    height: 280px;
    position: absolute;
    bottom: 0;
    right: -130px;
}
.c3 .left{
    width: 340px;
    position: relative;
}
.c3 img{
    height: 220px;
    position: absolute;
    left: 35px;
    bottom: 99px;
}
.c3 .right{
    width: 980px;
    height: 280px;
    background-color: #ffa85c;
    border-radius: 140px 0 0 140px;
}
.c3 h1{
    padding-top: 30px;
    font-size: 48px;
    text-align: center;
}
.c3 p{
    width: 650px;
    margin: 0 auto;
    margin-top: 25px;
    font-size: 18px;
}
.c3 a {
    position: absolute;
    left: 12%;
    bottom: 45px;
    width: 76%;
    height: 58px;
    line-height: 58px;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    border-radius: 14px;
    background-color: #faa702;
    /* background-color: #fee105; */
    color: #fff;
}

.c3 a:hover {
    box-shadow: 5px 5px 9px rgba(0, 0, 0, .21);
    transform: translate(-2px, -3px);
    transition: all .3s;
}
footer{
    margin-top: 99px;
}
@media (max-width: 760px) {
    .banner>img{
        top: 0;
    }
    .content{
        height: auto;
        display: block;
    }
    .c1 .right{
        width: 100%;
        height: auto;
        border-radius: 0;
        padding-bottom: 35px;
    }
    .c1 p{
        width: 89%;
        margin-left: 5%;
    }
    .c2 .left{
        width: 100%;
        height: auto;
        padding: 35px 0;
        border-radius: 0;
    }
    .c2  p{
        width: 90%;
        margin-left: 5%;
    }
    .c2 .pic1{
        display: none;
    }
    .c2 .pic2{
        display: none;
    }
    .c3 .left{
        width: 100%;
        padding-bottom: 35px;

    }
    .c3 img{
        position: relative;
        display: block;
        width: 50%;
        height: auto;
        margin-left: 25%;
        left: 0;
        bottom: 0;
    }
    .c3 .right{
        width: 100%;
        height: auto;
        border-radius: 0;
        padding: 35px;
    }
    .c3 p{
        width: 80%;
        margin-left: 10%;
    }
    .c3 a{
        display: block;
        position: relative;
        bottom: 0;
        left: 0;
        margin-left: 12%;
    }
    footer{
        margin-top: 0;
    }
}