@charset "utf-8";
/* CSS Document */
       .navbar1 {
            display: flex;
            justify-content: space-between;
            background-color: #f8f8f8;
            border-top: 1px solid #ccc;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100vw;
            height: 50px;
            box-sizing: border-box;
            padding: 0;
            z-index: 1000;
        }
        .navbar-nav1 {
            display: flex;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
        }
        .navbar-nav1 li {
            flex: 1;
            text-align: center;
        }
        .navbar-nav1 a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            font-size: 12px;
            color: #777;
            text-decoration: none;
        }
        .navbar-nav1 a i {
            font-size: 16px;
            margin-bottom: 3px;
        }
        .navbar-nav1 .active a {
            color: #555;
            background-color: #e7e7e7;
        }
        @media (min-width: 768px) {
            .navbar1 {
                display: none;
            }
        }