* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;

    font-family: Arial, sans-serif;
}

#app {
    width: 100%;
    min-height: 100%;
    height: auto;
    position: relative;
    background: #f5f5f5;
}

.header-img {
    width: 100%;
    height: 100%;
}


.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    min-width: 1200px;
    background: url(../image/bottomBck.png) #409eff;
    background-size: 1920px auto;
    padding-bottom: 20px;
    margin-top: 40px;
}

.footer-content {
    width: 1200px;
    margin: 0 auto;
    display: flex;
}

.footer-content-left {
    flex: 1;
}


.footer-content-right {
    width: 320px;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 48px;
}

.footer-content-right>div {
    background-color: #409eff;
}

.bottomWord {
    width: 370px;
    margin-top: 47px;
}

.bottomOneRow {
    font-size: 16px;
    color: #fff;
    line-height: 35px;
}

.bottomTwoRow {
    font-size: 16px;
    color: #fff;
    line-height: 35px;
}

.footer_separate {
    margin: 0 15px;
}

a {
    text-decoration: none;
}

.header-txt a {
    cursor: pointer;
    color: #fff;
    display: inline-block;
}

.bottomTwoRow a {
    cursor: pointer;
    color: #fff;
    display: inline-block;
}

.footer-content-img {
    width: 140px;
    height: 140px;
}

.footer-content-txt {
    font-size: 18px;
    color: #fff;
    height: 18px;
    line-height: 18px;
    margin-top: 10px;
}

.avue-crud__pagination {
    position: relative;
    padding: 25px 0 20px 20px;
    text-align: right;
}

/* 回到顶部按钮样式 */
#back-to-top {
    right: 100px;
    position: fixed;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #409eff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .12);
    cursor: pointer;
    z-index: 5;
    bottom: 150px;
}