﻿.row {
    --bs-gutter-y: .5rem;
    --mud-palette-primary: rgb(0, 86, 255);
}

html, body {
    height: 100%;
}

a {
    text-decoration: inherit;
    cursor: pointer;
}

.page {
    display: flex;
    flex-flow: column;
}

    .page .main {
        flex: 1;
    }

.header {
}

.topbar {
    padding: 20px 0;
    background-image: url('../images/web/topbar.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}

    .topbar .btn {
        color: #163674;
    }

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0154a2;
}

    .logo:hover {
        color: #0154a2;
    }

.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: #0154a2;
}

    .footer p {
        margin: 0;
        font-size: 14px;
        line-height: 30px;
        color: #e4f2ff;
    }

.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: 13px 0;
    border-style: dashed;
    white-space: nowrap;
}

.titlebar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

    .titlebar h1 {
        margin: 0;
        color: #03a9f4;
        font-weight: bold;
        font-size: 1.25rem;
        padding-left: .625rem;
        border-left: 4px solid #03a9f4;
    }

    .titlebar .action {
        font-size: .875rem;
        color: #1ca9f4;
        margin-right: 1rem;
        font-weight: initial;
    }


.search {
    position: relative;
    display: inline-flex;
    width: 300px;
}

.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.zq-datatable__pager-link_active {
        color: #fff;
        background-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;
}

/*24.8.15过滤条件*/
.filter {
    display: flex;
    margin-bottom: 1rem;
    font-size: .875rem;
}

.filter-label {
    min-width: 90px;
    margin: .25rem;
    padding: .25rem;
    color: #666;
}

.filter-value {
    flex: 1;
}

    .filter-value a {
        display: inline-block;
        margin: .25rem;
        padding: .25rem .5rem;
        color: inherit;
    }

        .filter-value a.active {
            color: white;
            background-color: var(--bs-primary);
            border-radius: .5rem;
            -webkit-border-radius: .5rem;
            -moz-border-radius: .5rem;
            -ms-border-radius: .5rem;
            -o-border-radius: .5rem;
        }

            .filter-value a.active:hover {
                color: white !important;
            }

        .filter-value a:hover {
            color: var(--bs-primary) !important;
        }

.tab-wrap {
    margin: 1.5rem 0;
    padding: 0 1.5rem;
    background-color: #f6f6f6;
}

.tab-line .nav-link {
    margin-right: 3rem;
    padding: .75rem 1rem;
    color: rgba(0, 0, 0, .65);
}

    .tab-line .nav-link.active {
        position: relative;
        color: #3a69df;
        font-weight: 500;
    }

        .tab-line .nav-link.active:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background-color: currentColor;
        }

.aspect-ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* 16:9 宽高比 */
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aspect-ratio-info {
    position: absolute;
    text-align: center;
    color: #fff;
    line-height: 2;
    color: rgba(255,255,255,.6);
    font-weight: 700;
    font-size: 1.125rem;
}

.aspect-ratio-pic {
    width: 100%;
    height: 100%;
}

.card-text {
    color: #333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.card {
    position: relative;
    cursor: pointer;
}

    .card:hover .card-mask {
        display: block;
    }

.card-mask {
    display: none;
    position: absolute;
    height: 100%;
    width:100%;
}

.introduce {
    display: flex;
    flex-flow: column;
    padding: 1rem;
    height: 100%;
    color: rgba(255,255,255,1);
    background-color: rgba(13,110,253,.85);
}

.introduce-title {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.introduce-text {
    flex: 1;
    font-size: .875rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.introduce .btn {
    margin: auto;
    margin-top: 1rem;
    display: inline-block;
    width: 120px;
    border-radius: 3rem;
}

.patent-info-text {
    font-size: .875rem;
}

    .patent-info-text .row {
        --bs-gutter-y: 1rem;
    }

.patent-info-pic {
    text-align: center;
}

    .patent-info-pic img {
        margin: auto;
        max-width: 100%;
    }

.titleline {
    padding-left: .75rem;
    border-left: 4px solid #3388ff;
    line-height: 1;
    font-size: 1.125rem;
    font-weight: bold;
}

.panel {
}

.panel-hd {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: .5rem 0;
}

.panel-bd {
    line-height: 2;
}

    .panel-bd .table > :not(:last-child) > :last-child > * {
        color: #333;
        background-color: #eee;
    }
