.content-detail table {
    display: table;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-collapse: collapse;
    border-spacing: 0;
}
.content-detail .right {
    padding-bottom: 20px;
}

.content-detail .glbf-content {
    margin-left: 25px;
    margin-right: 25px;
    max-height: 800px;
    overflow-y: auto;
    /*width: 100%;*/
    overflow-x: hidden;
    padding: 0 24px;
}

.content-detail .glbf-content p{
    font-size: 16px;
    width: 100% !important;
    color: #4d4d4d;
    margin-bottom: 15px;
    text-align: justify;width: 100%;
}
::-webkit-scrollbar {
    width: 10px !important;  /* 滚动条的宽度 */
    min-height: 800px; /* 如果需要垂直滚动条，可以设置高度 */
}
/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f2f2f2; /* 轨道颜色 */
    border-radius: 6px; /* 滑块圆角 */

}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #2d66a5; /* 滑块颜色 */
    border-radius: 6px; /* 滑块圆角 */
}
.content-detail .glbf-content a {
    color: #000 !important; /* 强制黑色显示 */
    text-decoration: none !important; /* 去掉下划线 */
}

.content-detail .glbf-content a:hover {
    color: #333 !important; /* 悬停时稍加深色 */
    text-decoration: none !important;
}