/* 头部 */
.header {
    height: 72px;
    background: #45533C;
    color: #FFFFFF;
}
.header-logo {
    display: flex;
    align-items: center;
    padding: 0 3.44vw;
}
.header-logo__img {
    width: 54px;
    height: 48px;
    margin-right: 10px;
}
.header-logo__text {
    font-size: 1.75rem;
    font-weight: 500;
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3.44vw;
    list-style: none;
}
.nav-list__item {
    width: 130px;
    height: 72px;
    line-height: 72px;
    text-align: center;
}
.nav-list__item:hover {
    background: rgba(255, 255, 255, 0.18);
    transition: all 0.3s linear;
}
.nav-list__item--active {
    background: rgba(255, 255, 255, 0.18);
}
.nav-list__link {
    display: block;
    color: #FFFFFF;
    font-size: 1rem;
    text-decoration: none;
}
.header-phone__icon {
    width: 1rem;
    height: 1.125rem;
}
.header-phone {
    color: #FFFFFF;
    font-size: 1rem;
    text-decoration: none;
}
.header-phone__text {
    padding-left: 10px;
}
.header-phone__box {
    margin-left: 1.4vw;
    padding-left: 36px;
    position: relative;
}
.header-phone__box:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 26px;
    background: #FFFFFF;
    vertical-align: middle;
    margin-right: 10px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.4;
}


/* 尾部 */
.footer {
    background: url("../images/footer-bg.png") no-repeat;
    background-size: cover;
}
.footer-container {
    width: 1400px;
    margin: 0 auto;
    padding: 78px 0;
}
.footer-container__left-logo {
    width: 240px;
    height: 73px;
}
.footer-container__left-desc {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.69);
    line-height: 22px;
    margin-top: 27px;
}
.footer-container__bottom-text {
    font-size: 2rem;
}
.footer-container__left-desc {
    font-size: 16px;
    color: #fff;
}
.footer-container__bottom-text {
    font-size: 2rem;
    color: #fff;
}
.footer-container__left-desc a {
    text-decoration: none;
    color: #fff;
    font-size: 2rem;
}
.footer-container__right-item {
    margin: 0 10px;
}
.footer-container__right-text {
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
}
.copyright {
    height: 82px;
    background: rgba(255, 255, 255, 0.05);
}
.copyright-container {
    width: 1400px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.69);
    line-height: 82px;
}
.copyright-container a{
    color: rgba(255, 255, 255, 0.69);
    text-decoration: none;
}


@media screen and (max-width: 768px) {
    .footer-container {
        width: 100%;
        margin: 0 auto;
        padding: 35px 0;
    }
    .copyright {
        height: 45px;
    }
    .copyright-container {
        width: 100%;
        font-size: 12px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.69);
        line-height: 45px;
        text-align: center;
    }
    .footer-contact a{
        color: #fff;
        text-decoration: none;
        padding-left: 10px;
        font-size: 20px;
        opacity: 0.8;
    }
    .footer-slogan {
        font-size: 20px;
        font-weight: 500;
        color: #FFFFFF;
        margin-top: 12px;
        opacity: 0.8;
    }

    .header-logo__img {
        width: 120px;
        height: 36px;
    }
    .header-logo {
        width: 100%;
    }
    .nav-box {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        flex-direction: column;
        color: #333;
        z-index: 9999;
    }
    .nav-list {
        display: flex;
        flex-direction: column;
        background: #fff;
    }
    .nav-list__item {
        width: 100%;
        text-align: left;
        padding-left: 10px;
        border-bottom: 1px solid #eee;
    }
    .nav-list__item:last-child {
        border-bottom: none;
    }
    .header-phone__box {
        display: none;
    }
    .nav-list__link {
        display: block;
        color: #333;
        font-size: 14px;
    }
    .show-close {
        display: none;
    }
    .header-show-menu .show-menu {
        display: none;
    }
    .header-show-menu .show-close {
        display: block;
    }
    .header-show-menu .nav-box {
        display: flex;
    }
}
