main > ul{
    width: 1000px;
    height: 1357px;
    /* background-color: aqua; */
    margin: 60px auto 0;
}
main > ul > li{
    width: 1000px;
    height: 308px;
    margin-bottom: 40px;
}
main > ul > li > a{
    display: flex;/*弹性盒模型*/
    width: 1000px;
    height: 308px;
    background-color: azure;
}
main > ul > li > a > section{
    width: 370px;
    height: 400px;
    /* background-color: blue; */
}
main > ul > li > a > section{
    width: 695px;
    /* background-color: brown; */
}
main > ul > li > a > i.iconfont{
    width: 255px;
    height: 255px;
    background-color: rgb(180, 180, 180);
    margin: 25px 0 0 23px;
    font-size:165px;/*字体大小*/
    color: rgb(255, 255, 255);
    line-height:270px;/*文字垂直居中 */
    text-align: center; /*文字水平居中 */
    border-radius: 5%;/*圆角*/
}
main > ul > li > a > section > p{
    color: rgb(80, 80, 80);
    text-align: center; /*文字水平居中 */
}
main > ul > li > a > section > p:first-of-type{
    margin-top: 95px;
    font-size:50px;/*字体大小*/
}
main > ul > li > a > section > p:nth-child(2){
    font-size:24px;/*字体大小*/
}
main > ul > li:hover > a > section > p{
    color: rgb(173, 0, 204);
}
main > ul > li:hover > a > i{
    color: rgb(80, 80, 80);
}
main > ul > li{
    position: relative;/*相对定位*/
    top: 5px;
    transition: 0.1s linear;
}
main > ul > li:hover{
    top: 0;
    box-shadow:0px 30px 25px 5px rgb(155, 155, 155);/*阴影*/
}