body{
    min-width: 1200px;
}

.Main__header{
    width: 100%;
    background-color: #8ac13e;
    height: 200px;
}
.Main__header .left{
    color: #fff;
    height: 100%;
    line-height: 200px;
    width: 40%;
    text-align: center;
    float: left;
}
.Main__header .left a{
    color: #fff;
    
}
.right{
    font-size: 40px;
    color: #fff;
    font-weight: 700;
    line-height: 200px;
}
.content{
    min-width: 1200px;
    margin: 0 auto;
}
.content ul{
    display: flex;
    flex-wrap: wrap;
    min-width: 1200px;
    max-width: 800px;
    margin: 0 auto;
}
.content ul li{
    width: 23%;
    margin: 40px auto 0;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    height: 450px;

}
.content ul li hr{
    width: 30px;
    height: 1px;
    color: #8ac13e;
    background-color: #8ac13e;
    border-color: #8ac13e;
    border: none;
}
.content ul li img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.content ul li .content-title{
    font-size: 14px;
}
.content ul li .button{
    width: 130px;
    height: 40px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    background-color: #8ac13e;
    margin: 60px auto 10px;
    border-radius: 50px;
    display: none;
}
.content ul li:hover{
    box-shadow: 0px 0px 20px #b3b3b3;
    cursor: pointer;
    
}
.content ul li:hover .button{
    display: block;
}
@media (max-width: 990px) {
    .content ul li{
        width: 50%;
        height: 550px;
    }
    .content ul li img{
        width: 300px;
        height: 300px;
        border-radius: 50%;
        margin-bottom: 20px;
    }
    .content ul li .content-name{
        font-size: 46px;
    }
    .content ul li hr{
        width: 50px;
        height: 2px;
        color: #8ac13e;
        background-color: #8ac13e;
        border-color: #8ac13e;
        border: none;
    }
    .content ul li .content-title{
        font-size: 24px;
    }
    .Main__header .left{
        float: none;
        width: 100%;
        height: 80px;
        line-height: 80px;
        font-size: 24px;
    }
    .Main__header .right{
        height: 150px;
        text-align: center;
        line-height: 60px;
        font-size: 70px;
    }
}
@media (max-width: 520px) {
    .content ul li .content-name{
        font-size: 40px;
    }
    .content ul li hr{
        width: 50px;
        height: 4px;
        margin: 20px auto;

    }
    .content ul li .content-title{
        font-size: 26px;
    }
}
@media (max-width: 570px){
    .content ul li{
        width: 100%;
    }
    .content ul li img{
        float: left;
        margin-left: 50px;
        width: 500px;
        height: 500px;
        margin-right: 50px;
    }
    .content ul li>div{
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        height: 100%;
        justify-content: center;
        
    }
    .content ul li .content-name{
        font-size: 55px;
        text-align: left;

    }
    .content ul li hr{
        width: 150px;
        height: 4px;
        text-align: left;
        margin: 40px 0;
    }
    .content ul li .content-title{
        font-size: 35px;
        text-align: left;
    }
} 