/* 封装弹性盒子 */

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.j-c {
    justify-content: center;
}

.j-s-a {
    justify-content: space-around;
}

.j-s-b {
    justify-content: space-between;
}

.j-s-e {
    justify-content: space-evenly;
}

.a-c {
    align-items: center;
}

.flex-1 {
    flex: 1;
    overflow: auto;
}
html,
body {
    width: 100%;
    height: 100%;
}
* {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.bigBox {
    width: 100%;
    height: 100%;
}
.header {
    width: 100%;
    height: 60px;
    box-sizing: border-box;
}
.container {
    width: 100%;
    /* flex: 1; */
}
.footer {
    width: 100%;
    height: 100px;
    background: url(../img/botbg.jpg) center bottom no-repeat;
    background-size: cover;
}
.header .imgBox {
    height: 100%;
    margin-left: 20px;
}
.header .imgBox img {
    width: 100px;
}
a {
    text-decoration: none;
    /* color: #000; */
}
.header a {
    color: #000;
}
.header .listBox {
    box-sizing: border-box;
    margin-left: 180px;
    height: 100%;
}
.header .listBox li {
    margin-right: 40px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}
.listBox li:hover {
    border-color: red !important;
}
.active {
    border-color: red !important;
}
.footer * {
    color: #a3a6ac;
}
.footer-body {
    /* box-sizing: border-box; */
    padding: 30px 10px 0 20px;
    text-align: right;
    font-size: 8px;
    line-height: 16px;
}
.footer-right img {
    vertical-align: top;
}
