/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 0.375rem #e7e7e7;
    border-radius: 4px;
    background-color: #e7e7e7;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    box-shadow: inset 0 0 0.375rem #999;
    background-color: #e7e7e7;
}

body {
    font-size: .75rem;
    line-height: 1.6;
    color: #000;
    font-family: -apple-system, BlinkMacSystemFont, SF Pro SC, SF Pro Text, Helvetica Neue, Helvetica, PingFang SC, Segoe UI, Roboto, Hiragino Sans GB, Arial, microsoft yahei ui, Microsoft YaHei, SimSun, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f6f7fb;
}

article, aside, blockquote, body, button, code, dd, details, div, dl, dt, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, input, legend, li, menu, nav, ol, p, pre, section, td, textarea, th, ul {
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none !important;
    background-color: transparent;
    outline: none !important;
}

a:hover {
    color: inherit;
    text-decoration: none !important;
}

a:not([href]), a:not([href]):hover {
    color: inherit !important;
    text-decoration: none !important;
    outline: none !important;
}

ol, ul {
    list-style: none;
}

.tsp-content {
    padding: 0;
    background-color: #fff;
}

/*.ai-chatbot {*/
/*    position: fixed;*/
/*    bottom: 120px;*/
/*    right: 8px;*/
/*    z-index: 998;*/
/*    transition: all .3s ease-out;*/
/*    cursor: pointer;*/
/*}*/

/*.ai-chatbot img {*/
/*    width: 120px;*/
/*    height: auto;*/
/*}*/

.breadcrumb-wrapper {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: auto;
    z-index: 10001;
}

.h__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem;
}

.breadcrumb-wrapper .h__breadcrumb {
    overflow: hidden;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: rgba(34, 34, 34, .4);
    background: none;
}

.breadcrumb-wrapper .h__breadcrumb li {
    float: left;
    color: rgba(34, 34, 34, .4);
    line-height: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breadcrumb__separator {
    margin: 0 8px;
    width: 16px;
    height: 16px;
    text-align: center;
}

.breadcrumb__separator img {
    width: 100%;
    height: auto;
}

.breadcrumb__item {
    cursor: pointer;
}

.breadcrumb-wrapper .h__breadcrumb li:hover {
    color: #2C82FD;
}

.h__breadcrumb li:last-child {
    color: rgba(34, 34, 34, .9);
    font-weight: 500;
}

.breadcrumb__item:last-child {
    cursor: default;
}

.h__breadcrumb li:last-child:hover {
    color: rgba(34, 34, 34, .9);
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-1 {
    margin-top: 10px;
}

.pl-1 {
    padding-left: 10px;
}

.ml-1 {
    margin-left: 10px;
}

.py-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.dot-before::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #2F68FC;
    border-radius: 50%;
    margin-right: 5px; /* 圆点与文本之间的间距 */
}

.text-content {
    font-size: 18px;
    color: #666;
}

.font-16 {
    font-size: 16px;
    color: #666;
}