﻿body, html {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
/* 顶部div样式 */




#topDiv {
    height: 60px;
    background-color: lavenderblush; /* 顶部div背景色 */
    line-height: 60px; /* 文字垂直居中 */
    border-bottom-style: ridge;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 20px;
}
/*子页面的顶部*/
#topDiv2 {
    height: 36px;
    background-color: lavenderblush; /* 顶部div背景色 */
    line-height: 36px; /* 文字垂直居中 */
    border-bottom-style: ridge;
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 20px;
}

    #topDiv2 .RighttopDiv {
        display: flex;
        align-items: center;
    }

        #topDiv2 .RighttopDiv a {
            border-radius: 0;
            padding-right: 15px;
            padding-left: 15px;
            font-size: 10pt;
            height: 100%;
            border-top-style: none;
            border-bottom-style: none;
            display: flex;
            align-items: center;
        }

/* 页面内容容器样式 */
#contentContainer {
    display: flex;
    height: calc(100vh - 60px); /* 100%视口高度减去顶部div高度 */
}


/* 页面内容容器样式 */
#contentContainer2 {
    display: flex;
    height: calc(100vh - 36px); /* 100%视口高度减去顶部div高度 */
}

/* 左侧div样式 */
.leftDiv {
    width: 20%;
    background-color: #f0f0f0; /* 左侧div背景色 */
    box-sizing: border-box; /* 边框包含内边距 */
    overflow-y: auto;
    overflow-x: hidden;
}
/* 右侧div样式 */
.rightDiv {
    flex: 1; /* 自适应宽度 */
    background-color: #fff; /* 右侧div背景色 */
    box-sizing: border-box; /* 边框包含内边距 */
    overflow-y: auto;
    overflow-x: hidden;
    border-left-style: ridge;
}

::-webkit-scrollbar {
    width: 1px;
    background-color: #F5F5F5;
}

* {
    font-size: 10pt;
    user-select: none;
}
/*通栏标题文字特效*/
.tx2 {
    letter-spacing: 3px; /*设置文字间距*/
    font-size: 30px; /*设置文字大小*/
    color: #74771e; /*设置文字颜色*/
    text-shadow: 0 8px 10px #a27396; /*设置文字阴影*/
    font-weight: bolder; /*设置文字宽度*/
    text-align: left; /*设置文字居中*/
    font-family: cursive;
}

.tx3 {
    color: #3a1e77ab;
    text-shadow: 0 8px 10px #a27396;
    font-family: cursive;
    margin-top: 8px;
    font-weight: 600;
}

/*导航树*/
.list-group-item {
    background-color: transparent;
    padding-top: 8px;
    padding-bottom: 8px;
}

.list-group {
    margin-bottom: 0px
}

.mr6 {
    margin-right: 6px;
}
