*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    font-size: 14px;
}

h1,h2,h3,h4,h5,h6{
    font-weight: normal;
}


a {
    text-decoration: none;
    color: #000;
}

ul,li {
    list-style: none;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto
}

.btn{
    display: inline-block;
    padding: 12px;
    min-width: 80px;
    border-radius: 20px;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary{
    background-color: #F8F8F8;
    color: #000;
}


/* 头部样式 */

.header{
    padding: 10px 0;
}

.header > .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    display: flex;
    align-items: center;
}

.logo-txt{
    font-family: "Montserrat Alternates Black Italic";
}

.header-r{
    display: flex;
}

.navbar{
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.navbar li{
    margin: 0 8px;
    vertical-align: middle;
}

.navbar li a{
    padding: 12px;
    border-radius: 20px;
}

.navbar li.active a{
    background-color: #113AED;
    color: #fff;
}


/* 底部样式 */
.footer{
    background-color: #1C274C;
}

.footer *{
    color: #fff;
}

.footer-main{
    padding: 40px 0;
}

.footer-header{
    display: flex;
    align-items: center;
}

.footer-header p{
    font-size: 20px;
    line-height: 24px;
}

.footer-header img{
    height: 30px;
    margin-left: 12px;
}

.footer-links{
    display: flex;
    justify-content: space-between;
    margin: 20px 0 30px;
}

.footer-links-l{
    display: flex;
}

.footer-links-l ul{
    margin-right: 120px;
}

.footer-links-l li{
    margin-bottom: 12px;
}

.footer-links-l li:last-child{
    margin-bottom: 0;
}

.footer-links-r a + a{
    margin-top: 12px;
}

.footer-links-b a{
    margin-right: 80px;
}

.footer-contact{
    /* margin-top: 40px; */
    line-height: 20px;
}

.footer-contact p{
    margin-bottom: 12px;
    text-transform: uppercase;
}

.footer-contact p:last-child{
    margin-bottom: 0;
}

.footer-copyright{
    background-color: #000;
    line-height: 60px;
}

.footer-copyright p{
    text-align: center;
    color: #fff
}