html{
    height: 100%;
} 
body{height: calc(100% - 64px);}
.page-container {
    margin-bottom: 50px; 
    justify-content: center;
}
.page { 
    position: relative; 
    width: 2000px; /* 根据需要调整宽度 */
    border: 1px solid #ccc; /* 可选：增加边框来更清晰地看到页面区域 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* 可选：增加阴影效果 */
    page-break-after: always;
    height: 1200px; /* 页面高度 */
    margin-bottom: 20px;
}
.text-block { 
    position: relative; 
}
.line { 
    margin: 0; 
    padding: 0; 
    position: absolute; 
    white-space: pre; 
}



.body{
    background-color: black;
}
.blink {
    animation: blink-animation 1s infinite;
    }
    @keyframes blink-animation {
    0% { background-color: red; }
    50% { background-color: yellow; }
    100% { background-color: red; }
}
.title_{
    margin: 0 auto;
    height: 70px;
    background-color: white;
    /*justify-content: center;*/
    align-items: center;
}
.code{
    display: inline-block;
    max-width: 120px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    vertical-align: middle;
    padding: 4px 8px;
    margin-right: 10px;
    color: #fff;
    background-color: rgba(0,0,0,0.5);
    vertical-align: top;
    line-height: 18px;
}
.main-wrapper{
    /* width: 1400px; */
    /* margin: 0 auto; */
    margin: 0 150px 0 100px;
    height: calc(100% - 46px);
    
}
.title_text{
    font-weight: bold;
    font-size:17px;
}
.title-main{
    font-weight: bold;
    font-size:15px;
    padding: 20px 0 20px 0;
}
.url{
    margin-left: 10px;
    color: rgb(255, 104, 98);
}
.main{
    width: 100%;
    height: calc(100% - 70px);
    /* height: 900px; */
    display: flex;
}
.navigation{
    width: 430px;
    background-color: white;
    /* height: 900px; */
}
.content{
    margin-left: 30px;
    flex:1;
    border: 1px solid #ccc;
    /* width: 69%; */
    /* height: 750px; */
    /* margin-left: auto; */
    overflow-y: auto;
    overflow-x: auto;
    height: 100%;
    border-top: 1px solid #d5d5d5;
}
.layui-container{
    width: 100%;
}
.layui-col-md8{
    width: 180px;
    padding: 5px 0 5px 0;
}
.layui-col-md4{
    float: right;
    padding: 5px 5px 5px 0;
}
.layui-tab-brief>.layui-tab-title .layui-this {
    color: rgb(255, 104, 98);!important
}
.layui-tab-brief>.layui-tab-more li.layui-this:after, .layui-tab-brief>.layui-tab-title .layui-this:after {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid rgb(255, 104, 98);
}
.searchBtn{
    float: right;
}
.layui-input{
    width: 365px;;
}
.layui-input:focus, .layui-textarea:focus {
     border-color: rgb(255, 104, 98)!important; 
     box-shadow: 0 0 0 3px rgba(255, 104, 98,.08); 
}
.layui-btn-primary:hover {
    border-color: rgb(255, 104, 98);
    color: rgb(255, 104, 98);
}
.searchIems{
    padding: 5px;
}
.pageSearch,.pageIndex {
    max-height: 600px;
    overflow-y: auto;
}
.notice{
    background: #eee ;
}
.searchItems,.pageItems{
    padding: 8px;
    border-bottom: 1px dotted #e5e6ee;
    display: flex;
    align-items: center;
}
.contentSearchItem{
    flex-grow: 1; /* 让内容占据剩余的空间 */
}
.layui-tab-content{
    padding: 0;
}
.info{
    /*position: absolute;*/
    font-size: 14px;
    line-height: 1.8;
    color: #999;
    display: inline-block;
    font-weight: normal;
    /*left: 767px;*/
    float: right;
}
.up{
    color: red;
}
.down{
    color: green;
}
::-webkit-scrollbar {
    width: 5px; /* 设置滚动条的宽度 */
    height: 6px;
}
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* 设置滚动槽的背景色 */
}

::-webkit-scrollbar-thumb {
    background-color: #393D49; /* 设置滚动条的颜色 */
    border-radius: 6px; /* 设置滚动条的圆角 */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* 鼠标悬停时滚动条的颜色 */
}