*{
    margin: 0;
    padding: 0;
}
body,html{
    width: 100%;
    height: 100%;
}
.header{
    height: 290px;
    width: 100%;
    background-color: #1851be;
}
.yellowline{
    height: 30px;
    background-color: #ffb72c;
}
.content{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #fceccd;
    position: relative;
    display: flex;
    overflow: hidden;
}
.content-box{
    width: 90%;
    background-color: white;
    border-radius: 12px;
    margin: 0 auto;
    padding: 50px;
    box-sizing: border-box;
    z-index: 5;
}
#people{
    width: 90%;
    position: absolute;
    top:126px;
    z-index: 2;
    animation: moveInleft 1s lineare forwards;
   
}
#water{
    width: 100%;
    position: absolute;
    right: 0;
    top: -1px;}
   
#title{
    width: 75%;
    position: absolute;
    z-index: 4;
    left: 50px;
    top: 20px;
    transform: translateX(-50%);
   animation: bounceInDown 0.8s ease-in-out forwards;
}
#shengluehao{
    width: 40px;
    position: absolute;
    z-index: 4;
    right: 37px;
    top: 122px;
}
#yezi{
    width: 70px;
    position: absolute;
    z-index: 5;
    right:0;
    top: 165px;
    animation: uopIndown 1s lineare forwards;
}
#yezi2{
    width: 50px;
    position: absolute;
    z-index: 5;
    left:0;
    top: 238px;
    animation: moveInleft 1s lineare forwards;
}
.box1{
    border-left: 4px solid #1851be;
    padding-left: 10px;
}
.box2{
    margin-top: 20px;
    display: flex;
}
.left-box{
    width: 100px;
}
.right-box{
    width: calc(100% - 100px);
    padding-left: 10px;
}
.right-box p{
    font-size: 12px;
    text-align: justify;
}
.left-box h2{
    border-left: 4px solid #1851be;
    padding-left: 10px;
}
.left-box h4{
    text-align: center;
    margin-top: 5px;
}
.circle1{
    height: 100px;
    width: 100px;
    background-color: #1952bf;
    z-index:3;
    position:absolute;
    top: 20%;
    left: 1px;
    border-radius: 50%;
   animation: zoomIn 1s lineare forwards;
}
.circle2{
    height: 350px;
    width: 350px;
    background-color: #1952bf;
    z-index:3;
    position:absolute;
    top: 79%;
    right: -150px;
    border-radius: 50%;
    animation: zoomIn 1s lineare forwards;
}
.circle3{
    height: 180px;
    width: 180px;
    background-color: #1952bf;
    z-index:3;
    position:absolute;
    bottom:-22px;
    left: -90px;
    border-radius: 50%;
   animation: zoomIn 1s lineare forwards;
}
#zhi01{
    width: 50px;
    position: absolute;
    z-index: 6;
    left:10px;
    top: 50%;
   animation: fadeIn 1s lineare forwards;
}
#zhi02{
    width: 50px;
    position: absolute;
    z-index: 6;
    right:10px;
    top: 85%;
   animation: fadeIn 1s lineare forwards;
}
#bird{
    width: 55px;
    position: absolute;
    z-index: 6;
    right:5px;
    top: 25%;
   
}
#yezi3{
    width: 100px;
    position: absolute;
    z-index: 6;
    left:0;
    bottom:0;
    
}
@keyframes moveInleft{
    0%{
        transform: translateX(-100%);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes moveInuo{
    0%{
        transform: translateY(100%);}
100%{
        transform: translateY(0);
    }
}
@keyframes zoomIn {
    0% {
        transform: scale(0.2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes fadeIn {
    0% {
        transition: scale(0.1);
        opacity: 0;
    }
    100% {
        transition: scale(1);
        opacity: 1;
    }
}
@keyframes uoIndown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes bounceInDown {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }
    60% {
        transform: translateY(0px);
      
    }
    80% {
        transform: translateY(-60px);}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}