:root {
    --theme: #4591FB;
    --color: #333333;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-family: uucn;
    -webkit-box-sizing: border-box;
    -moapp-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: var(--color);
    text-decoration: none;
    background-color: transparent;
    outline: none;
    cursor: pointer;
    -webkit-text-decoration-skip: objects;
}

li {
    list-style-type: none;
}

body {
    font-size: 13px;
    color: var(--color);
    background-color: #F8F8F8;
    font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
}
table {
    width: 100%;
    border-collapse: collapse;
}

table thead tr th {
    opacity: .9;
    min-width: 20px;
    padding: 10px;
    font-size: 13px;
    text-align: left;
    font-weight: 500;
    white-space: nowrap;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5
}

table tbody tr td {
    min-width: 0;
    padding: 10px;
    font-size: 13px;
    transition: .3s;
    white-space: nowrap;
    background-color: #fff;
    border-bottom: 1px solid #f5f5f5;
}
.app-main {}

.app-home-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 630px;
    background-image: url(../imgs/topbg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.app-navs {
    z-index: 2000;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #fff;
    border-top: 1px solid #d7d7d7;

}

.app-navs .data {
    height: 80px;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.app-navs .data a {
    gap: 4px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.app-navs .data a img {
    width: 30px;
}