/*通用的底部展示*/
/* Footer */
.footer {
    display: flex;
    align-items: center;
    height: 252px;
    background: url("../img/pageBottomBg.png") no-repeat top;
    background-size: cover;
}
.footerMain{
    flex: 1;
    padding: 50px;
}
.footer .bottomIcons{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
}
.footer .bottomIcons .leftIcon img{
    height: 71px;
}
.footer .bottomIcons .rightIcons{
    display: flex;
    align-items: center;
}
.footer .bottomIcons .rightIcons .rightIconsList{
    margin-left: 20px;
    cursor: pointer;
}
.footer .bottomIcons .rightIcons .rightIconsList img{
    height: 48px;
    width: auto;
}
.footer .bottomTexts{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
    color: #BFBFBF;
}
.footer .bottomTexts .bottomTextsRight{
    display: flex;
}
.footer .bottomTexts .bottomTextsRight .bottomTextsRightList{
    margin-left: 20px;
    cursor: pointer;
    text-decoration: underline;
}
