footer{
    height: 360px;
    margin-top: 80px;
    background-color: rgb(77, 77, 77);
}
footer > section:first-of-type{
    display: flex;/*弹性盒模型*/
    width: 1200px;
    height: 250px;
    justify-content: space-around;/* 主轴两侧间距对齐 */
    /* background-color: antiquewhite; */
    margin: auto;
    padding-top: 80px;
}
footer > section:first-of-type > section:first-of-type{
    display: flex;/*弹性盒模型*/
    width: 700px;
    height: 200px;
    flex-wrap: wrap;/*弹性换行*/
    align-content: space-between;/* 测轴两侧对齐 */
    /* background-color: chartreuse; */
}
footer > section:first-of-type > section:first-of-type > dl{
    display: flex;/*弹性盒模型*/
    width: 700px;
    justify-content: space-between;/* 主轴两侧对齐 */
    /* background-color: aquamarine; */
}
footer > section:first-of-type > section:first-of-type > dl > dd > a{
    color: rgb(255, 255, 255);
}
footer > section:first-of-type > section:first-of-type > dl > dd > a:hover{
    cursor: pointer;
    color: rgb(229, 255, 0);
}
footer > section:first-of-type > section:first-of-type > dl > dt > a{
    color: rgb(255, 255, 255);
}
footer > section:first-of-type > section:first-of-type > dl > dt > a:hover{
    color: rgb(229, 255, 0);
}
footer > section:first-of-type > section:first-of-type > section{
    display: flex;/*弹性盒模型*/
    width: 700px;
    justify-content: space-between;/* 主轴两侧对齐 */
    align-items: flex-end;/* 测轴从后往前 */
    /* background-color: blueviolet; */
}
footer > section:first-of-type > section:first-of-type > section > dl:first-of-type{
    display: flex;/*弹性盒模型*/
    height: 65px;
    color: rgb(255, 255, 255);
    flex-wrap: wrap;/*弹性换行*/
    align-content: space-between;/* 测轴两侧对齐 */
    /* background-color: rgb(31, 94, 73); */
}
footer > section:first-of-type > section:first-of-type > section > dl:first-of-type > dt{
    width: 300px;
    font-size:20px;/*字体大小*/
}
footer > section:first-of-type > section:first-of-type > section > dl:first-of-type > dd{
    width: 300px;
    font-size:13px;/*字体大小*/
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type{
    position: relative;/*相对定位*/
    top: 52px;
    color: rgb(255, 255, 255);
    /* background-color: rgb(33, 42, 39); */
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type > dt{
    display: flex;/*弹性盒模型*/
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type > dd{
    display: flex;/*弹性盒模型*/
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type > dt > p{
    width: 113px;
    margin: -3px 0 0 5px;
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type > dd:first-of-type > p{
    width: 113px;
    margin: -3px 0 0 5px;
}
footer > section:first-of-type > section:first-of-type > section > dl:last-of-type > dd:last-of-type > p{
    margin: -3px 0 0 5px;
}
footer > section:first-of-type > section:first-of-type > section:last-of-type{
    width: 280px;
}
footer > section:first-of-type > section:first-of-type > section:last-of-type > p{
    color: rgb(255, 255, 255);
}
footer > section:first-of-type > section:last-of-type{
    display: flex;/*弹性盒模型*/
    width: 460px;
    height: 200px;
    /* background-color: burlywood; */
}
footer > section:last-of-type > section:last-of-type > img{
    margin-left: 30px;
}
footer > section:last-of-type{
    width: 1200px;
    height: 280px;
    margin: auto;
    /* background-color: coral; */
}