header aside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}


header aside>div:first-child {
    height: 4rem;
}

header aside>div:first-child>img {
    height: 100%;
}

header aside>div:last-child>p {
    font-size: 1.4rem;
    font-weight: bold;
}

.mainContent {
    min-width: 1200px;
    max-width: 1200px;
    margin: auto;
}

nav {
    background-color: black;
}

nav ul>li>a {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 1.2rem 0; */
    height: 3.5rem;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
}

nav ul {
    /* padding: 0 2rem; */
    width: 100%;
}

nav ul>li {
    /* height: 3.5rem; */
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul>li:hover {
    background-color: #0061bf;

}

nav ul>li>a:hover {
    color: white;
}

footer {
    background-color: black;
    color: white;
    padding: 20px;
    padding-bottom: 30px;
}

footer .head {
    margin-bottom: 20px;
}

footer .main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .main .left li>div:first-child {
    margin-bottom: 15px;
}

footer .main .left span {
    /* font-size: 0.8rem; */
    opacity: 0.5;
    padding: 5px;
    font-size: 0.9rem;
}

footer .main .left span:hover {
    opacity: 1;
    cursor: pointer;
}

footer .main .left {
    display: flex;
    /* flex: 1; */
    justify-content: flex-start;
    padding: 0 20px;
}

footer .main .left .items {
    display: flex;
    flex-direction: column;
    margin-right: 60px;

}

footer .main .right {
    display: flex;
}

footer .scan {
    width: 120px;
    height: 120px;
    padding: 10px;
    background-color: white;
    border-radius: 5px;
}

footer .scanEffect {
    width: 10px;
    height: 20px;
    margin-top: 50px;
    margin-right: 20px;
}

footer .scanEffectEffect {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 120px;
}

footer .scanEffectEffect>li {
    /* width: 100px; */
    padding: 5px 20px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.3);
    font-size: small;
    display: flex;
    align-items: center;
}

footer .scanEffectEffect>li>img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin-right: 10px;
}

footer .scanEffectEffect>li:hover {
    background-color: white;
    color: black;
    cursor: pointer;
}

footer .scanEffectEffect>li:hover img {
    background-color: black;
}

h1 {
    font-size: 2rem;
}

.h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

.h2 {
    font-size: 1.5rem;
}

.mainColor {
    color: #0061bf;
}

.mainBgColor {
    background-color: #0061bf;
}