.banner {
    min-width: 1200px;
    height: 40px;
    background: #C71717;
}

.campaign {
    margin: auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .campaign .logo {
        height: 90px;
    }

    .campaign .contact {
    }

    .campaign .hotline {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #333;
    }

        .campaign .hotline .icon {
            width: 42px;
            height: 42px;
            margin-right: 10px;
        }

        .campaign .hotline .box .one {
            display: flex;
            align-items: center;
        }

        .campaign .hotline .box .number {
            font-weight: 700;
            color: #C71717;
            font-size: 20px;
        }


        .campaign .hotline .phone-number {
            font-size: 20px;
            color: #666;
            padding-top: 2px;
            margin-left: 80px;
        }

    .campaign .email {
        display: flex;
        align-items: center;
        font-size: 16px;
        color: #333;
    }

        .campaign .email .one {
            font-size: 16px;
            color: #333;
        }

        .campaign .email .info {
            font-size: 16px;
            color: #666;
        }

.navigator-bar {
    background-color: #C71717;
}

.navigator {
    position: relative;
    display: flex;
    z-index: 1;
}

    .navigator .item {
        flex: 1;
        position: relative;
        width: auto;
    }

        .navigator .item .title {
            font-size: 16px;
            color: #FFFFFF;
            background: #C71717;
            height: 70px;
            line-height: 70px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

            .navigator .item .title::before {
                content: "";
                display: block;
                background-image: url("../image/header-item-icon.png");
                background-size: contain;
                width: 10px;
                height: 20px;
                margin-right: 6px;
            }

        .navigator .item.on-hover .title {
            background: #A30000;
            text-decoration: none;
        }

        .navigator .item .title.active {
            background: #A30000;
        }

    .navigator .menu {
        position: absolute;
        width: 100%;
        display: none;
    }

    .navigator .item.on-hover .menu {
        display: block;
    }

    .navigator .menu .menu-item {
        height: 40px;
        line-height: 40px;
        text-align: center;
        background: #F1F1F1;
        cursor: pointer;
        color: #000000;
    }

        .navigator .menu .menu-item:hover {
            background: #FFFFFF;
            text-decoration: none;
        }

    .navigator:hover .hover-menu {
        display: block;
    }
