*{
    margin:0;
    padding:0;
    list-style: none; 
    text-decoration: none;
}
html,body{
    width: 100%;
    min-width: 1200px;
    height: 100%;
}
.header{
    height: 92px;
}
.header > div{
    width: 1200px;
    height: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo{
    display: flex;
    align-items: center;
}
.header .logo p{
    margin-left: 14px;
    color: #171717;
    font-size: 41px;
}
.header .nav{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav .current-nav a{
    color: #4C35E2;
}

.header .nav li a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #171717;
    text-align: center;
}

.header .nav li a p{
    font-size: 16px;
}
.header .nav li a span{
    font-size: 12px;
}

footer{
    width: 100%;
    margin: auto;
    text-align: center;
    padding: 20px 0;
    background-color: rgba(0,0,0,.7);
    color: #fff;
}
footer a{
    color: #9eaa2e;
}