/**
 * 门户样式
 * @author Link
 * @date 2024/10/21
 */
* {
    box-sizing: border-box;
}
html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
    background: #eee;
}
.page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.temp-navigation {
    width: 100%;
    height: 60px;
    opacity: 0;
    visibility: hidden;
}
.bln-navigation {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    z-index: 9;
}
.bln-navigation .navigation-wrap {
    display: flex;
    width: 100%;
    max-width: 1340px;
    padding: 0 20px;
    height: 100%;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}
.bln-navigation .navigation-wrap .logo-box {
    display: flex;
    width: 240px;
    flex-shrink: 0;
    align-items: center;
}
.bln-navigation .logo-box .logo-image {
    display: block;
    width: 110px;
    height: 25px;
    background: url('./../images/logo.png') left top no-repeat;
    background-size: 100% 100%;
}
.bln-navigation .logo-box .logo-line {
    width: 1px;
    height: 16px;
    margin-left: 10px;
    margin-right: 10px;
    background: #323335;
}
.bln-navigation .logo-box .logo-text {
    font-size: 20px;
    color: #323335;
    font-weight: 800;
}
.bln-navigation .navigation-list {
    font-size: 14px;
}
.bln-navigation .navigation-list .nav-item {
    margin-right: 60px;
    color: #323335;
    text-decoration: none;
    transition: all 0.3s;
}
.bln-navigation .navigation-list .nav-item:last-child {
    margin-right: 0;
}
.bln-navigation .navigation-list .nav-item:hover {
    text-decoration: underline;
}
.bln-navigation .show-navigation-btn {
    display: none;
}
.bln-wrap {
    width: 100%;
    max-width: 1340px;
    padding: 0 20px;
    margin: auto;
    flex-grow: 1;
}
.system-wrap {
    width: 100%;
    padding-bottom: 30px;
}
.system-wrap .category-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid #ccc;
}
.system-wrap .category-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.system-wrap .category-item .category-title {
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 5px;
    background-color: #323335;
}
.system-wrap .category-title .category-name {
    display: inline-block;
    font-size: 16px;
    color: #efc395;
}
.system-wrap .system-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}
.system-wrap .system-list .item-wrap {
    display: flex;
    justify-content: center;
}
.system-wrap .system-list .item-wrap > .item {
    display: flex;
    position: relative;
    width: calc(100% - 10px);
    height: 110px;
    padding: 10px;
    margin-bottom: 10px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: space-between;
    transition: background 0.36s;
    background: #fff;
}
.system-wrap .system-list .item-wrap > .item .item-content {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.system-wrap .system-list .item-wrap > .item .item-content .system-name {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 800;
    color: #323335;
}
.system-wrap .system-list .item-wrap > .item .item-content .system-desc {
    font-size: 12px;
    color: #929395;
}
.system-wrap .system-list .item-wrap > .item .item-footer {
    text-align: center;
}
.system-wrap .system-list .item-wrap > .item .item-footer .item-detail-btn {
    font-size: 12px;
    color: #626365;
    cursor: pointer;
}
.system-wrap
    .system-list
    .item-wrap
    > .item
    .item-footer
    .item-detail-btn:hover {
    text-decoration: underline;
}
.system-wrap .system-list .item-wrap > .item .preview-box {
    position: absolute;
    right: -327px;
    top: -100px;
    width: 327px;
    height: 157px;
    padding: 5px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none; /* 禁止元素的点击等交互 */
    transition: opacity 0.3s ease;
    z-index: 9;
}

/* 突出重点样式 */
.system-wrap
    .system-list
    .item-wrap.emphasize
    > .item
    .item-content
    .system-name,
.system-wrap
    .system-list
    .item-wrap.emphasize
    > .item
    .item-content
    .system-desc {
    color: #fa1e1e;
}
.system-wrap .system-list .item-wrap > .item .preview-box > img {
    width: 100%;
    height: 100%;
}
.system-wrap .system-list .item-wrap > .item.hover {
    background: #323335;
}

.system-wrap .system-list .item-wrap > .item.hover .item-content {
    border-color: #efc395;
}
.system-wrap .system-list .item-wrap > .item.hover .preview-box {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 2s ease;
}
.system-wrap .system-list .item-wrap > .item.hover .item-content .system-name,
.system-wrap .system-list .item-wrap > .item.hover .item-content .system-desc,
.system-wrap
    .system-list
    .item-wrap
    > .item.hover
    .item-footer
    .item-detail-btn {
    color: #efc395;
}
.bln-modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    z-index: 99;
}
.bln-modal .modal-wrap {
    width: 300px;
    padding: 20px;
    background: #fff;
}
.bln-modal .modal-wrap .modal-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.bln-modal .modal-wrap .modal-title .title-text {
    font-size: 20px;
    font-weight: 600;
    color: #323335;
}
.bln-modal .modal-wrap .modal-title .modal-close-btn {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #929395;
    cursor: pointer;
}
.bln-modal .modal-content .qr-code-box {
    width: 260px;
    height: 260px;
    border: 1px solid #ddd;
}
.bln-modal .modal-content .qr-code-box .qr-code-image {
    width: 100%;
    height: 100%;
}
.bln-modal.show {
    display: flex;
    opacity: 1;
}
.right-tool-bar {
    position: fixed;
    right: 10px;
    bottom: 160px;
    width: 80px;
    background: #323335;
}
.right-tool-bar .bar-item {
    width: 100%;
    cursor: pointer;
}
.right-tool-bar .bar-item .item-icon {
    padding: 10px 0 5px 0;
    font-size: 20px;
    color: #efc395;
    text-align: center;
}
.right-tool-bar .bar-item .item-icon .item-image {
    width: 60px;
    height: 60px;
}
.right-tool-bar .bar-item .item-text {
    padding-bottom: 10px;
    margin: 0 10px;
    font-size: 12px;
    color: #efc395;
    text-align: center;
    border-bottom: 1px solid #424345;
}
.right-tool-bar .bar-item:last-child .item-text {
    border-bottom: 0;
}
.right-tool-bar .bar-item:hover .item-text {
    text-decoration: underline;
}
.bln-copyright {
    display: flex;
    width: 100%;
    height: 100px;
    font-size: 12px;
    color: #929395;
    align-items: center;
    justify-content: center;
    background: #323335;
}
.navigation-panel {
    display: none;
}

/* 响应式代码 */
@media (min-width: 1300px) {
    .system-wrap .system-list .item-wrap {
        width: 16.666666667%;
    }
    .system-wrap .system-list .item-wrap:nth-child(6n + 1) {
        justify-content: flex-start;
    }
    .system-wrap .system-list .item-wrap:nth-child(6n) {
        justify-content: flex-end;
    }
    .system-wrap .system-list .item-wrap:nth-child(5n) > .item .preview-box,
    .system-wrap .system-list .item-wrap:nth-child(6n) > .item .preview-box {
        right: auto;
        left: -327px;
    }
}
/* 屏幕宽度介于 1100px 和 1300px 之间时的样式 */
@media (min-width: 1100px) and (max-width: 1299px) {
    .system-wrap .system-list .item-wrap {
        width: 20%;
    }
    .system-wrap .system-list .item-wrap:nth-child(5n + 1) {
        justify-content: flex-start;
    }
    .system-wrap .system-list .item-wrap:nth-child(5n) {
        justify-content: flex-end;
    }
    .system-wrap .system-list .item-wrap:nth-child(4n) > .item .preview-box,
    .system-wrap .system-list .item-wrap:nth-child(5n) > .item .preview-box {
        right: auto;
        left: -327px;
    }
}
/* 屏幕宽度介于 1099px 和 861px 之间时的样式 */
@media (min-width: 861px) and (max-width: 1099px) {
    .system-wrap .system-list .item-wrap {
        width: 25%;
    }
    .system-wrap .system-list .item-wrap:nth-child(4n + 1) {
        justify-content: flex-start;
    }
    .system-wrap .system-list .item-wrap:nth-child(4n) {
        justify-content: flex-end;
    }
    .system-wrap .system-list .item-wrap:nth-child(4n + 3) > .item .preview-box,
    .system-wrap .system-list .item-wrap:nth-child(4n) > .item .preview-box {
        right: auto;
        left: -327px;
    }
}
/* 视窗小于等于860，采用rem布局 */
@media (max-width: 860px) {
    .temp-navigation {
        height: 1rem;
    }
    .bln-navigation {
        width: 100%;
        height: 1rem;
        box-shadow: 0 0 0.2rem 0 rgba(0, 0, 0, 0.15);
    }
    .bln-navigation .navigation-wrap {
        padding: 0 0.2rem;
        margin-top: 0;
    }
    .bln-navigation .navigation-wrap .logo-box {
        display: flex;
        width: 3.15rem;
        flex-shrink: 0;
        align-items: center;
    }
    .bln-navigation .logo-box .logo-image {
        width: 1.32rem;
        height: 0.3rem;
    }
    .bln-navigation .logo-box .logo-line {
        width: 0.01rem;
        height: 0.24rem;
        margin-left: 0.3rem;
        margin-right: 0.3rem;
    }
    .bln-navigation .logo-box .logo-text {
        font-size: 0.3rem;
    }
    .bln-navigation .navigation-list {
        display: none;
    }
    .bln-navigation .show-navigation-btn {
        display: flex;
        height: 0.4rem;
        color: #323335;
        align-items: center;
    }
    .bln-navigation .show-navigation-btn .blnIcon {
        font-size: 0.3rem;
    }
    .navigation-panel {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 99;
    }
    .navigation-panel .panel-wrap {
        position: absolute;
        right: 0;
        top: 0;
        width: 3.6rem;
        height: 100%;
        background: #fff;
    }
    .navigation-panel .panel-wrap .panel-title {
        display: flex;
        height: 1rem;
        padding-right: 0.2rem;
        align-items: center;
        justify-content: flex-end;
    }
    .navigation-panel .panel-title .navigation-close-btn {
        display: flex;
        height: 0.5rem;
        color: #323335;
        align-items: center;
    }
    .navigation-panel .panel-title .navigation-close-btn .blnIcon {
        font-size: 0.4rem;
    }
    .navigation-panel .panel-navigation-list {
        width: 100%;
        border-top: 0.01rem solid #eee;
    }
    .navigation-panel .panel-navigation-list .nav-item {
        display: flex;
        width: 100%;
        height: 0.9rem;
        align-items: center;
        justify-content: center;
        font-size: 0.26rem;
        color: #323335;
        background: #fff;
        transition: background 0.3s;
        border-bottom: 0.01rem solid #eee;
        text-decoration: none;
    }
    .navigation-panel .panel-navigation-list .nav-item:active {
        background: #f4f4f4 !important;
    }
    .bln-wrap {
        padding: 0 0.2rem;
        flex-grow: 1;
    }
    .system-wrap {
        padding-bottom: 0.6rem;
    }
    .system-wrap .category-item {
        padding-top: 0.3rem;
        border-bottom-width: 0.01rem;
    }
    .system-wrap .category-item .category-title {
        display: flex;
        height: 0.8rem;
        margin-top: 0;
        margin-bottom: 0.2rem;
        padding: 0 0.3rem;
        align-items: center;
    }
    .system-wrap .category-title .category-name {
        font-size: 0.28rem;
    }
    .system-wrap .system-list .item-wrap {
        width: 50%;
    }
    .system-wrap .system-list .item-wrap:nth-child(odd) {
        justify-content: flex-start;
    }
    .system-wrap .system-list .item-wrap:nth-child(even) {
        justify-content: flex-end;
    }
    .system-wrap .system-list .item-wrap > .item {
        width: calc(100% - 0.1rem);
        height: 2rem;
        padding: 0.2rem;
        margin-bottom: 0.2rem;
    }
    .system-wrap .system-list .item-wrap > .item:active {
        background: #f4f4f4;
    }
    .system-wrap .system-list .item-wrap > .item .item-content {
        padding-bottom: 0.3rem;
        border-bottom-width: 0.01rem;
    }
    .system-wrap .system-list .item-wrap > .item .item-content .system-name {
        height: 0.26rem;
        margin-bottom: 0.15rem;
        font-size: 0.26rem;
        line-height: 0.26rem;
        overflow: hidden;
    }
    .system-wrap .system-list .item-wrap > .item .item-content .system-desc {
        height: 0.2rem;
        font-size: 0.2rem;
        line-height: 0.2rem;
        overflow: hidden;
    }
    .system-wrap .system-list .item-wrap > .item .item-footer,
    .system-wrap .system-list .item-wrap > .item .item-footer .item-detail-btn {
        font-size: 0.24rem;
    }
    .system-wrap .system-list .item-wrap > .item .preview-box {
        display: none;
    }
    .bln-modal .modal-wrap {
        width: 5rem;
        padding: 0.2rem;
    }
    .bln-modal .modal-wrap .modal-title {
        margin-bottom: 0.2rem;
    }
    .bln-modal .modal-wrap .modal-title .title-text {
        font-size: 0.3rem;
    }
    .bln-modal .modal-wrap .modal-title .modal-close-btn {
        width: 0.4rem;
        height: 0.4rem;
    }
    .bln-modal .modal-wrap .modal-title .modal-close-btn .blnIcon {
        font-size: 0.4rem;
    }
    .bln-modal .modal-content .qr-code-box {
        width: 4.6rem;
        height: 4.6rem;
        border-width: 0.01rem;
    }

    .right-tool-bar {
        right: 0.2rem;
        bottom: 1.4rem;
        width: 1rem;
        padding: 0 0.1rem;
        background: rgba(50, 51, 53, 0.8);
        border-radius: 0.03rem;
    }
    .right-tool-bar .bar-item {
        padding-top: 0.2rem;
        background: none !important;
    }
    .right-tool-bar .bar-item .item-icon {
        padding: 0 0 0.1rem 0;
    }
    .right-tool-bar .bar-item .item-icon .blnIcon {
        font-size: 0.3rem;
    }
    .right-tool-bar .bar-item .item-icon .item-image {
        width: 0.6rem;
        height: 0.6rem;
    }
    .right-tool-bar .bar-item .item-text {
        padding-bottom: 0.2rem;
        margin: 0;
        font-size: 0.22rem;
        border-bottom: 0.01rem solid rgba(146, 147, 149, 0.9);
        text-decoration: none !important;
    }
    .bln-copyright {
        height: 1.2rem;
        padding: 0 0.5rem;
        font-size: 0.22rem;
        color: #6b6b6a;
    }
    .bln-copyright .copyright-con {
        text-align: center;
    }
}
