main > ul{
    width: 900px;
    /* background-color: blueviolet; */
    margin: 30px auto 0;
}
main > ul > li:first-of-type{
    width: 100%;
    /* height: 800px; */
    /* background-color: burlywood; */
}
main > ul > li:first-of-type > ul{
    display: flex;/*弹性盒模型*/
}
main > ul > li:first-of-type > ul > li:first-of-type{
    width: 500px;
    height: 462px;
    background-color: rgb(218, 218, 218);
    margin: auto;
    border-radius: 200px 200px 200px 200px/300px 300px 300px 300px;/*圆角大小*/
}
main > ul > li:first-of-type > ul > li:first-of-type > img{
    width: 500px;
    height: 462px;
}
main > ul > li:first-of-type > ul > li:nth-child(2){
    width: 400px;
    height: 436px;
    /* background-color: gold; */
}
main > ul > li:first-of-type > ul > li:nth-child(2) > p{
    margin: 25px  127px;
    font-size:28px;/*字体大小*/
    /* font-weight:bold;字体粗细 */
}
main > ul > li:first-of-type > ul > li:nth-child(2) > p:first-of-type{
    margin-top: 110px;
}
main > ul > li:nth-child(2){
    width: 100%;
    height: 617px;
    margin-top: 20px;
    background-color: rgb(255, 242, 242);
}
main > ul > li:nth-child(2) > p{
    height: 50px;
    background-color: rgb(246, 255, 121);
    font-size:30px;/*字体大小*/
    font-weight:bold;/*字体粗细*/
    line-height:45px;/*字体垂直居中*/
    text-align:center;/*字体水平居中*/
}
main > ul > li:nth-child(2) > ul > li{
    float: left;
    width: 210px;
    height: 169px;
    margin: 20px 0 0 20px;
    background-color: cornflowerblue;
}
main > ul > li:nth-child(2) > ul > li:first-of-type{
    margin: 20px 0 0 0;
}
main > ul > li:nth-child(2) > ul > li:nth-child(5){
    margin: 20px 0 0 0;
}
main > ul > li:nth-child(2) > ul > li:nth-child(9){
    margin: 20px 0 0 0;
}
main > ul > li:nth-child(2) > ul > li > a{
    display: inline-block;/*变元素*/
    width: 210px;
    height: 169px;
}
main > ul > li:nth-child(2) > ul > li > a > img{
    display: inline-block;/*变元素*/
    width: 210px;
    height: 133px;
}
main > ul > li:nth-child(2) > ul > li > a > p{
    background-color: rgb(65, 65, 65);
    font-size:13px;/*字体大小*/
    color: rgb(245, 245, 245);
    text-align:center;/*字体水平居中*/
}
main > ul > li:nth-child(2) > ul > li > a:hover > p{
    background-color: rgb(224, 224, 224);
    color: rgb(0, 82, 83);
}