﻿body {
    --mud-palette-primary: rgb(7, 108, 224);
}

.row {
    --bs-gutter-y: .5rem;
}

    .row.row-4 {
        --bs-gutter-y: 2rem;
    }

html, body {
    height: 100%;
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px;
}

a {
    text-decoration: inherit;
    cursor: pointer;
}

.page {
    display: flex;
    flex-flow: column;
    background-image: url(bg.png);
    background-repeat: repeat;
    background-position: left top;
    position: relative;
    --theme-primary: #005bc3;
    --theme-color: #808080;
    --theme-desc: #989898;
    --theme-border: #cecece;
    color: var( --theme-color);
    background-attachment: fixed;
}

    .page .main {
        flex: 1;
    }

.header {
    /*background-color: white;*/
}

.topbar {
    padding: 20px 0;
}

    .topbar .btn {
        color: var(--theme-primary);
    }

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0154a2;
    /*filter: grayscale(100%);*/
}

    .logo:hover {
        color: #0154a2;
    }

.search {
    position: relative;
}

.search-icon {
    position: absolute;
    top: calc(50% - 12px);
    left: 1rem;
    color: var(--theme-primary);
}

.search .form-control {
    padding-left: 2.5rem;
    border-radius: 1.5rem;
    color: var(--theme-primary);
    border: 1px solid var(--theme-primary);
}


.nav-link:focus, .nav-link:hover {
    color: inherit;
}

.nav-link {
    color: inherit;
    padding: 0.75rem 1rem;
}

.menubar {
    background-color: #0154a2;
}

    .menubar .nav-item {
        flex: 1;
        text-align: center;
    }

    .menubar .nav-link {
        color: #fff;
        padding: 0.75rem 1rem;
    }

        .menubar .nav-link.active {
            background-color: #00376b;
            border-bottom: 2px solid #FAFF00;
        }

        .menubar .nav-link:hover {
            background-color: #00376b;
        }

.footer {
    padding: 30px;
    text-align: center;
    color: #fff;
    background-color: #393939;
    background-image: url(menu_bg.jpg);
    background-repeat: repeat;
    background-position: left top;
}

    .footer p {
        margin: 0;
        font-size: 14px;
        line-height: 30px;
        color: #fff;
    }

.footer-links {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.fixed {
    position: fixed;
}

.fixed_right {
    right: 10px;
    bottom: 30%;
    z-index: 2;
}

.links {
    margin-bottom: 20px;
    text-align: center;
    display: inline-flex;
    justify-content: center;
}

.links__title {
    display: inline-block;
    margin-right: 15px;
    line-height: 30px;
    font-size: large;
}

.links__name {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
    max-width: 70%;
}

    .links__name li {
        display: inline-block;
        margin: 0 15px;
        line-height: 30px;
    }

    .links__name a {
        color: inherit;
    }

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.w-80 {
    width: 80%;
}

.list-group {
    margin-bottom: 1.25rem;
}

.list-group-item {
    padding: 1rem;
    border-style: dashed;
    white-space: nowrap;
}

.titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    border-bottom: 1px solid var(--theme-border);
}

    .titlebar h1 {
        margin: 0;
        font-weight: bold;
        font-size: 1.25rem;
    }

    .titlebar .name {
        position: relative;
        font-size: 18px;
    }

        .titlebar .name:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translate(-50%, -50%);
            bottom: -15px;
            height: 3px;
            background-color: var(--theme-primary);
            width: 100%;
        }

    .titlebar .action {
        font-size: .875rem;
        color: #909090;
        /*margin-right: 1rem;*/
        font-weight: initial;
    }


.search {
    position: relative;
    display: inline-flex;
    width: 200px;
    max-width: 50%;
}

.search__input {
    width: 100%;
    border-radius: 50px;
    border: 1px solid #163674;
    padding: 5px 20px;
    padding-right: 65px;
}

.search__btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    color: white;
    background-color: #163674;
    border: none;
    border-radius: 50px;
    width: 50px;
}

.btn-action {
    margin: .25rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    color: white;
    background-color: #03a9f4;
    font-size: .875rem;
    border-radius: .25rem;
}

    .btn-action i {
        font-size: 1.25rem;
        line-height: 2rem;
    }

    .btn-action:hover {
        color: white;
        background-color: #0154a2;
    }

.topic {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 48%;
    margin-bottom: 1rem;
    color: #fff;
}

.topic__text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-align: center;
}

.topic:hover {
    color: white;
}

.topic img {
    width: 100%;
    object-fit: cover;
}
/*文章*/
.article {
    padding: 2rem 1rem;
}

.article__title {
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
}

.article__info {
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
    text-align: center;
}

    .article__info li {
        display: inline-block;
        margin: 0 1rem;
    }

.article h2 {
    font-weight: bold;
    margin: 40px 0 60px 0;
    text-align: center;
}

.article h3 {
    margin-top: 50px;
    margin-bottom: 30px;
    padding: 0 32px;
    font-size: 20px;
    line-height: 1.5;
    color: #333;
    font-weight: bold;
}

.article b, .article strong {
    color: #222;
}

.article ol {
    font-size: 16px;
    line-height: 2;
    padding-left: 40px;
    list-style: decimal;
}

    .article ol li {
        margin-bottom: 10px;
    }

.article p {
    font-size: 16px;
    color: #3f5263;
    line-height: 2;
    text-indent: 32px;
}

.article section {
    margin: 50px 0;
    padding: 0;
}

.article img {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    width: auto;
    height: auto;
}

.article table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

    .article table th, .article table td {
        border: 1px solid #666;
        padding: 3px 5px;
        min-width: 50px;
        height: 20px;
    }

.menubar .dropdown:hover .dropdown-menu {
    display: block;
}

.menubar .dropdown-menu {
    background-color: #0154a2;
}

    .menubar .dropdown-menu .dropdown-item {
        color: #fff;
    }

.menubar .dropdown-item:focus, .menubar .dropdown-item:hover {
    color: #fff;
    background-color: #00376b;
}

.dropdown-toggle::after {
    margin-left: .5em;
}

.dropdown-menu {
    min-width: 7rem;
}

.text-right {
    text-align: right;
}

.grid {
    display: block;
    margin: 1rem auto;
    text-align: center;
    /*color: inherit;*/
}

.grid__icon i {
    font-size: 4rem;
}

.grid__label {
    margin-top: 1rem;
    font-size: 1.25rem;
}

.link {
    display: block;
    margin-top: .5rem;
    padding: .25rem;
    color: #2e5fd8;
}

    .link:hover {
        color: #00376b;
    }

.card {
    border-color: #F1F1F2;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.03);
    /*background-color: #f7f7f8;*/
}

.table > :not(caption) > * > * {
    border-style: dashed;
    padding: .75rem .5rem;
    text-align: center;
}

.table > :not(:last-child) > :last-child > * {
    border-style: solid;
    border-color: #dee2e6;
    color: #fff;
    background-color: #3388FF;
}

.table-hover > tbody > tr:hover {
    cursor: pointer;
}

.pic {
    display: block;
    margin-bottom: 1.5rem;
    width: 100%;
}

    .pic img {
        width: 100%;
    }

.card-header {
    color: #fff;
    background-color: #218BFF;
}

.nav.flex-column .nav-link {
    color: #333333;
}

    .nav.flex-column .nav-link.active, .nav.flex-column .nav-link:focus, .nav.flex-column .nav-link:hover {
        color: rgb(33 139 255 / 100%);
        background-color: rgb(33 139 255 / 8%);
    }

.dropdown-item {
    padding: .5rem 1rem;
}

.flex-1 {
    flex: 1;
}

.secure {
    margin-bottom: 2rem;
    flex-direction: row;
    align-items: center;
}

    .secure .grid {
        position: relative;
        /*background-color: #F9F9F9;*/
        padding: 1rem;
        margin: 0;
    }

    .secure .flex-1:not(:last-child) .grid {
        margin-right: 2rem;
    }

        .secure .flex-1:not(:last-child) .grid::after {
            position: absolute;
            top: calc(50% - .75rem);
            right: -1.6rem;
            font-size: 1.5rem;
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            content: "\f101";
            color: rgba(1, 84, 162,1);
        }

    .secure .grid__icon {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        width: 3.5rem;
        height: 3.5rem;
        color: #fff;
        /*background-color: rgba(1, 84, 162,1);*/
        background-image: linear-gradient(to right bottom,#138ffa,#2754d1);
        border-radius: 50%;
    }

    .secure .grid__icon {
    }

        .secure .grid__icon i {
            font-size: 1.75rem;
            /*color: #163674;*/
        }

    .secure .grid__label {
        margin-top: .5rem;
        font-size: 1rem;
    }

    .secure .card-header {
        background-color: white;
        border: none;
        color: #777;
        font-size: 14px;
        width: 160px;
    }

.btn-white {
    padding: .25rem .75rem;
    color: #222;
    font-size: .75rem;
    background-color: #fff;
    border-color: #fff;
    border-radius: 5rem;
    min-width: 85px;
}

.secure-icon {
    margin-bottom: .5rem;
}

    .secure-icon i {
        font-size: 2.25rem;
    }

.secure-title {
    display: block;
    margin: -.5rem -1rem;
    padding: .5rem 1rem;
    background-color: #DC0000;
    font-size: 1rem;
    color: white;
    text-align: center;
}

.secure-text {
    padding: .5rem;
    font-size: .75rem;
}

.linear1 {
    background-image: linear-gradient(to right bottom,rgba(255,115,115,1),rgba(218,18,18,1));
}

.linear2 {
    background-image: linear-gradient(to right bottom,#FFCFA4,#FF994F);
}

.linear3 {
    background-image: linear-gradient(to right bottom,#1BFBFB,#32C5C5);
}

.linear4 {
    background-image: linear-gradient(to right bottom,#73D5FF,#127ADA);
}

.linear5 {
    background-image: linear-gradient(to right bottom,#AEACFF,#8E12DA);
}

.linear6 {
    background-image: linear-gradient(to right bottom,#FF9AB2,#FF1B44);
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

.pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
}

.zq-datatable__pager-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.zq-datatable__pager-link {
    display: inline-block;
    margin: 2px;
    /*padding: 5px 10px;*/
    min-width: 30px;
    font-size: .875rem;
    /*background-color: #f4f4f5;
    color: #606266;
    text-align: center;
    border-radius: 4px;*/
}

    .zq-datatable__pager-link:hover {
        color: #218BFF;
    }

    .zq-datatable__pager-link .page-link {
        color: #666;
        border-radius: 4px;
    }

    .zq-datatable__pager-link.zq-datatable__pager-link_active .page-link {
        color: #fff;
        background-color: #218BFF;
        border-color: #218BFF;
    }

.layer {
    position: relative;
    display: block;
    color: white;
    width: 100%;
    padding-bottom: 66.66%;
}

    .layer:hover {
        color: white;
        opacity: 1;
    }

/* .layer:hover img {
            transform: scale(1.1);
            -webkit-transform: scale(1.1);
        }*/

.layer__pic {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    overflow: hidden;
}

    .layer__pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.layer__cover {
    display: block;
    position: absolute;
    z-index: 29;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    -webkit-transition: 600ms;
    transition: 600ms;
    padding: 30px;
}

.layer__icon i {
    font-size: 50px;
}

.layer__info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    background: rgba(46, 136, 228, 0.9);
}

.fs-5 {
    font-weight: 600;
}

.modal-header {
    padding: .75rem 1rem;
    background-color: #F8F8F8;
}

.modal-title {
    font-size: 1rem;
}

.btn-close {
    background-size: .75rem;
}

.modal-footer {
    padding: .5rem .75rem;
    border: none;
}

    .modal-footer > * {
        margin: 0 .25rem;
    }

    .modal-footer .btn {
        padding: .25rem .5rem;
        font-size: .875rem;
        border-radius: .2rem;
    }

.remind {
    margin: .5rem 0;
    line-height: 1.5;
    word-break: break-all;
    font-size: 1rem;
}


.msg {
    display: flex;
    height: 100%;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.msg__icon {
    width: 15rem;
    height: 15rem;
}

    .msg__icon img, .msg__img {
        display: block;
        margin: auto;
        width: 100%;
        height: auto;
    }

.msg__info {
    margin-top: -1.5rem;
}

.msg-title {
    font-size: 1.25rem;
    color: #8db9fa;
}

.msg-desc {
}

.carousel-caption {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: .5rem;
    text-align: left;
    background: rgb(0 0 0 / 35%);
}

.carousel-indicators {
    bottom: 6%;
}

.align-center {
    align-items: center;
}

.pa-0 {
    padding: 0 !important;
}

.declare {
    display: block;
    color: inherit;
}

.declare__img {
    display: block;
    width: 100%;
}

.declare__text {
    display: block;
    padding: .75rem;
}

.declare {
    border: 1px solid #E1E1E1;
}

    .declare:hover {
        box-shadow: 1px 2px 21px 1px #65b5f5;
        cursor: pointer;
    }

.subbanner {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.list-info {
    color: #666;
    font-size: 14px;
    line-height: 26px;
    margin-top: 10px;
    white-space: normal;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    -webkit-line-clamp: 2;
}

.text-desc {
    color: var(--theme-desc);
    font-size: 14px;
}
/*章节*/
.section {
    padding: 20px 0;
}

.section__title {
    position: relative;
    margin: 30px;
    color: #808080;
    text-align: center;
    font-size: 26px;
    background-color: initial;
}

    .section__title:after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        bottom: -15px;
        height: 3px;
        background-color: var(--theme-primary);
        width: 50px;
    }

.text-title {
    font-size: 26px;
}

.text-subtitle {
    margin-bottom: 10px;
    font-size: 18px;
    text-transform: uppercase;
}

.section__desc {
    margin: 40px;
    color: rgb(119, 119, 119);
    font-size: 14px;
    text-align: center;
}

.section__info {
}

.bg_gray {
    background-color: #fafafa;
}

.btn-round {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
}

.nav-link.active {
    color: var(--mud-palette-primary);
}

.indexcard {
    margin-bottom: 30px;
}

    .indexcard .card-body {
        padding: 1.5rem;
        text-align: center;
        background-color: #fafafa;
    }

    .indexcard .card-title {
        margin-bottom: 1rem;
        font-size: 1rem;
    }

    .indexcard .card-text {
        font-size: .875rem;
        color: #666;
    }

.sidemenu {
    margin-top: 15px;
}

    .sidemenu .list-group-item {
        padding: .75rem 1rem;
        border-style: solid;
    }

        .sidemenu .list-group-item.active {
            color: var(--mud-palette-primary);
            background-color: transparent;
            border-color: rgba(0,0,0,.125);
        }

.list-group-title {
    padding-left: .5rem;
    color: white !important;
    background: #076ce0;
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/*.dropdown.active .dropdown-menu,*/
.dropdown:hover .dropdown-menu {
    display: block;
    position: absolute;
    left: calc(50% - 3.5rem);
    /*transform: translate(50%, 0%);*/
}

.nav-link.active {
    font-weight: bold;
}

/*24.3.8首页修改*/
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 100px) !important;
}

.notice {
    position: relative;
    /*min-height: 400px;*/
}

.notice-card {
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 20px;
    z-index: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
}

    .notice-card .list-group-item {
        background-color: transparent;
    }

.notice-title {
    position: relative;
    height: 60px;
    line-height: 45px;
    width: 13rem;
    text-align: center;
    color: white;
}

    .notice-title img {
        position: absolute;
        left: 0;
        top: -2px;
        z-index: -1;
        width: 13rem;
    }

.section .nav {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--theme-border);
}

.section .nav-item {
    width: 30%;
}

.section .nav-link {
    text-align: center;
    color: var(--theme-desc);
    font-size: 18px;
}

    .section .nav-link .procure {
        display: block;
        margin: 5px auto;
    }

    .section .nav-link.active {
        position: relative;
        color: inherit;
        font-weight: normal;
    }

        .section .nav-link.active:after {
            content: '';
            position: absolute;
            bottom: -3px;
            height: 3px;
            background-color: var(--theme-primary);
            width: 70px;
            left: calc(50% - 35px);
        }



.news__bg {
}

/*通知公告*/
.notice {
}
/*供应链*/
.procure {
}
/*新闻*/
.news {
    display: flex;
    justify-content: end;
    align-items: center;
    background-image: url(news.png);
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 500px;
}

.news__list {
    width: 70%;
    margin-left: auto;
    padding: 0 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
}

.list-group-item {
    background-color: transparent;
    color: var(--theme-color);
}
/*主营业务*/
.business {
    margin-bottom: 40px;
}

.business-card {
    position: relative;
    display: block;
    cursor: pointer;
}

    .business-card:hover {
        transform: scale(1.05);
    }

    .business-card img {
        object-fit: contain;
        width: 100%;
    }

.business-card__title {
    position: absolute;
    bottom: 0;
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px;
}

    .business-card__title .card-title {
        font-weight: bold;
        font-size: 1.5rem;
    }

.zq-msg {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    justify-content: center;
}

.zq-msg__icon img {
    display: block;
    margin: auto;
    width: 120px;
    height: 120px;
}

.zq-msg__text {
    margin-top: 10px;
    color: #aaa;
}
/*新闻列表*/
.card.card_news {
    border-color: transparent;
    box-shadow: none;
    background: none;
}

.card_news .card-text {
    color: #0026aa;
}

.card_news .card-title {
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    height: 90px;
    color: var(--theme-color);
}

.card_news .card-img {
    margin-bottom: 2.5rem;
    width: 100%;
    aspect-ratio: 16 / 9; /* 16:9 宽高比 */
    background-color: white;
    object-fit: cover;
}

.card_news .btn {
    padding: .375rem 1.25rem;
    border-radius: 2rem;
    background-color: #0026aa;
    border-color: #0026aa;
}
.list-video {
    position:relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 16:9 宽高比 */
}

    .list-video img, .list-video video {
        width: 100%;
        height: 100%;
    }
.list-video-title {
    position: absolute;
    bottom: 0;
    margin: 0;
    padding: 0 1rem;
    width: 100%;
    line-height: 2;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white;
    background-color: rgba(0,0,0,.5)
}

.list-number {
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: 1px solid rgba(0, 0, 0, .2);
}

.text-date {
    min-width: 100px;
    color: var(--theme-desc);
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, .2);
}

.wizard {
    display: flex;
    margin-top: 1rem;
    color: var(--theme-color);
}

.wizard__item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .wizard__item.active {
        color: var(--theme-primary);
    }

.wizard-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .5rem;
    font-weight: bold;
    border-radius: 50%;
    background-color: currentColor;
}

.wizard-text {
    line-height: 1.2;
}

.header-right {
    display: flex;
    align-items: center;
}


.center-video {
    display: block; /* 将视频作为块级元素 */
    margin: 0 auto; /* 水平居中 */
    max-width: 100%; /* 防止视频超出容器宽度 */
    height: auto; /* 保持视频比例 */
    width: 80%; /* 设置视频宽度为容器宽度的80% */
}


.nodatacontainer {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}

@media (min-width: 1200px) {
    .wizard__item {
        flex: 0 0 auto;
        width: 14.28%;
    }

    .wizard-number {
        font-size: 1.75rem;
        width: 3.5rem;
        height: 3.5rem;
    }

    .wizard-text {
        font-size: 1.35rem;
    }
}

@media (max-width: 1199.5px) {
    .wizard__item {
        flex: 0 0 auto;
        width: 14.28%;
    }

    .wizard-number {
        font-size: 1.25rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .wizard-text {
        font-size: 1.15rem;
    }
}

@media (max-width: 991.5px) {
    .wizard__item {
        flex: 0 0 auto;
        width: 14.28%;
    }

    .wizard-number {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }

    .wizard-text {
        font-size: .875rem;
    }
}

@media (max-width: 767.5px) {
    .wizard {
        flex-wrap: wrap;
    }

    .wizard__item {
        flex: 0 0 auto;
        width: 20%;
        margin: 2%;
    }

    .wizard-number {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }

    .wizard-text {
        font-size: .875rem;
    }
}

@media (min-width: 576px) {
    .menu-toggler {
        display: none;
    }
    /*菜单栏*/
    .head-menu {
        color: white;
        /*background: linear-gradient(to right,#a9e782,#45d59a);*/
        background-color: #393939;
        background-image: url(menu_bg.jpg);
        background-repeat: repeat-x;
        background-position: left top;
        position: relative;
    }

        .head-menu .navbar-nav {
            flex-direction: row;
            width: 100%;
        }

            .head-menu .navbar-nav .nav-item {
                flex: auto;
                text-align: center;
                border-right: 1px solid rgba(0,0,0,1);
                border-left: 1px solid rgba(255,255,255,.3);
            }

                .head-menu .navbar-nav .nav-item:first-child {
                    border-left: none;
                }

                .head-menu .navbar-nav .nav-item:last-child {
                    border-right: none;
                }


        .head-menu .nav-link.active {
            position: relative;
            font-weight: normal;
            color: white;
            background-color: var(--theme-primary);
        }
}

@media (max-width: 575.5px) {
    .wizard {
        flex-wrap: wrap;
    }

    .wizard__item {
        flex: 0 0 auto;
        width: 29%;
        margin: 2%;
    }

    .wizard-number {
        font-size: 1rem;
        width: 2rem;
        height: 2rem;
    }

    .wizard-text {
        font-size: .875rem;
    }

    .header-right {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-around;
    }

    .menu-toggler {
        display: block;
    }

    .head-menu {
       display:none;
    }

        .head-menu .navbar-nav {
            height: 100%;
            width: 180px;
            position: fixed;
            z-index: 99;
            top: 0;
            left: 0;
            overflow-x: hidden;
            transition: 0.5s;
            padding: 1.5rem 0;
            background-color: #393939;
            background-image: url(menu_bg.jpg);
            background-repeat: repeat;
            background-position: left top;
        }

        .head-menu .close-btn {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 36px;
            margin-left: 50px;
        }

    .open-btn {
        font-size: 20px;
        cursor: pointer;
        background-color: #111;
        color: white;
        padding: 10px 15px;
        border: none;
    }

    .head-menu .container {
        padding: 0;
    }

    .head-menu .navbar-nav .dropdown-menu {
        display: block;
        padding: 0;
        color: #fff;
        border: none;
        background-color: transparent;
    }

    .head-menu .dropdown.active .dropdown-menu, .head-menu .dropdown:hover .dropdown-menu {
        position: inherit;
        transform: none;
    }

    .head-menu a.nav-link {
        padding: .5rem 1rem;
    }

        .head-menu a.nav-link.active {
            color: white;
            font-weight: normal;
            background-color: var(--theme-primary);
        }

    .head-menu a.dropdown-item {
        padding: .5rem .5rem .5rem 2.5rem;
        text-decoration: none;
        color: var(--theme-color);
        display: block;
        transition: 0.3s;
    }

        .head-menu a.dropdown-item.active {
            color: white;
            background-color: var(--theme-primary);
        }
    body.modal-open {
        overflow: hidden;
    }
    .mask {
        position: fixed;
        z-index: 98;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,.6);
    }
}
