* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header {
    box-shadow: 0 0 10px rgba(0, 0, 0, .075);
    height: 60px;
    line-height: 60px;
}

.nav-content {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 32px;
}

.nav-list {
    display: flex;
}

.nav-list .nav-list__item {
    background-color: #FFF;
    color: #000;
    display: block;
    width: 120px;
    text-align: center;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.nav-list .nav-list__item:hover {
    background-color: #0E6EB8;
    color: #FFF;
}

.body {
    padding-bottom: 50px;
}

.banner {
    height: 400px;
    overflow: hidden;
}
.banner .banner-image {
    background: url('/assets/banner_1.png') center center no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.content-section {
    width: 1000px;
    margin: 0 auto;
    font-size: 28px;
    padding-top: 50px;
    margin-bottom: 20px;
}

.description-container {
    background-color: #F5F6FA;
}
.description {
    width: 1000px;
    margin: 0 auto;
    margin-top: 50px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.description .description__title {
    padding: 28px 0;
    font-size: 28px;
}
.description .description__line {
    border-top: 4px solid #0E6EB8;
    width: 100px;
}
.description .description__subtitle {
    margin-top: 28px;
}

.footer {
    background-color: #1E1E1E;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-content {
    width: 1000px;
    margin: 0 auto;
    color: #FFF;
    font-size: 12px;
}
