/*:root {*/
/*    --scrollbar-width: 0px;*/
/*}*/

/*html {*/
/*    margin-left: calc(100vw - 100%);*/
/*    margin-right: 0;*/
/*}*/

 /*隐藏默认滚动条 */
html {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

 /*Chrome/Safari */
html::-webkit-scrollbar {
    display: none;
}

 /*添加自定义滚动条容器 */
body::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 17px; /* 标准滚动条宽度 */
    height: 100vh;
    background: transparent;
    pointer-events: none;
}


body{
    background-color: #f5f5f5;
    padding: 0;
}

a{
    text-decoration: none;
}
.container-fluid{
    max-width: 1800px;
}
/*.container{*/
/*    max-width: 100%;*/
/*}*/
/*.fixed-submit-btn {*/
/*    position: fixed;*/
/*    bottom: 40px; !* 调整按钮距离底部的距离 *!*/
/*    right: 40px; !* 调整按钮距离右侧的距离 *!*/
/*    z-index: 1000; !* 确保按钮在其他内容之上 *!*/
/*}*/

.item{
    /*background: radial-gradient(125% 125% at 50% 10%, #eeeeee  50%, #5066f1 100%);*/
    background-color: #ffffff;
    /*border: solid 2px #1a1f39;*/
    border-radius: 8px  ;
}
.item_desc{
    height: 20px;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all; /* 强制长单词换行 */
}
.item_name{
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-all; /* 强制长单词换行 */
}
@media (min-width: 1800px) {
    /*.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {*/
    /*    max-width: 1700px;*/
    /*}*/
}

/* 网格背景CSS代码 */
.grid-background {
    background-color: #ffffff;
    background-image:
            linear-gradient(rgba(201, 201, 201, 1) 1px, transparent 1px),
            linear-gradient(90deg, rgba(201, 201, 201, 1) 1px, transparent 1px);
    background-size: 15px 15px;
    background-position: -1px -1px;
}