#technical {
    font-size: 0.32rem;
}


#technical .list-technical {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: .32rem;
}

#technical .list-technical .item {
    border: 2px solid var(--z-page-primary-color);
    color: var(--z-page-primary-color);
    width: 100%;
    height: 1.76rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

#technical .list-technical .item div {
    white-space: nowrap;
}

/* 模态层样式重写 */
#technical .modal.show .modal-dialog,
#technical .modal.fade .modal-dialog  {
    top: var(--z-body-top-position);
    width: 100%;
    margin: 0;
}

#technical .modal-header {
    border: 0;
    padding: 0.2rem 0.2rem;
    width: 100%;
    position: absolute;
    z-index: 1;
    flex-direction: row-reverse;
    border-radius: 0;
}

#technical .modal-header img {
    width: .4rem;
    height: .4rem;
    color: white;
    cursor: pointer;
}

#technical .modal-content {
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

#technical .modal-body {
    padding: .68rem .32rem .32rem;
    height: calc(100vh - var(--z-body-top-position));
    overflow-y: auto;
    overflow-x: hidden;
    word-break: break-word;
    word-break: break-all;
    word-wrap: break-word;
}

/* 重写 scorll 下拉条开始 */
/* WebKit 浏览器滚动条样式 */
#technical .modal-body::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
#technical .modal-body::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #f1f1f1, #e0e0e0);
    border-radius: 10px;
  }
#technical .modal-body::-webkit-scrollbar-thumb {
    background: var(--z-modal-scroll-color);
    border-radius: 10px;
    cursor: pointer;
  }

#technical .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--z-page-primary-color);
  }
/* 重写 scorll下拉条结束 */

#technical .third-title::before {
    display: none;
}

#technical .introduction-box .list{
    display: flex;
    flex-wrap: wrap;
    gap: .32rem;
}

@media screen and (min-width: 768.5px) {
    #technical {
        font-size: 1.28rem;
    }

    #technical .list-technical {
        gap: 1.28rem;
    }

    #technical .list-technical .item {
        width: 14.88rem;
        height: 7.04rem;
    }

    /* 模态层样式重写 */
    #technical .modal-content {
        border-radius: 6px;
    }

    #technical .modal.show .modal-dialog,
    #technical .modal.fade .modal-dialog  {
        max-width: 700px;
        top:50%;
        transform: translateY(-50%);
        margin: 0 auto;
    }

    #technical .modal-header {
        padding: 1.5rem 2rem;
    }

    #technical .modal-header img {
        width: 2.5rem;
        height: 2.5rem;
    }

    #technical .modal-body {
        padding: 4.5rem 6.4rem 4.8rem 6.4rem;
        max-height: 80vh;
        height: auto;
    }

    #technical .introduction-box .list{
        gap: 2.56rem;
    }
}
