/*内容页面统一样式*/
body {
    font-family:sans-serif; 
    /* position: relative; */
    height: 100vh;
}

/* 1、头部：菜单样式 */
.nav {
    /* border-bottom-width:2px; */
    border-bottom-style:inset;
    /* border-bottom-color:#D8D8D8; */
    /* border-bottom:medium inset rgb(10,49,70); */
    /* background-image: url('bg_nav.jpg'); */
}
/* 菜单项样式 */
.nav-item {
    /* border: 1px solid #D8D8D8; */
    /* background-color: #E0E0E0; */
    margin: 3px;
    padding: 2px 0px;
    border-radius: 5px;
}
/* 菜单链接样式 */
.nav-link {
    display: inline;
    padding: 4px 0px;
}

/* Bootstrap5 导航栏下拉菜单由鼠标点击改为鼠标经过下拉 */
.dropdown1-menu {
    display: none;
    position: absolute;
}  
.dropdown1:hover .dropdown1-menu {
  display: block;
}

/* 2、中间：内容展示区 */

/* 3、底部：页脚样式 */
#footer {
    height: 25px;
    background-color: #fff;
    color: #c0c0c0;
    text-align: center;
    border-top: solid 1px #eee;
    font-size: 12px;
    padding: 2px;
}
#footer a {
    margin: 0px 2px;
}
.image_beian {
    margin: 0px 0px 0px 2px;
    width: 16px;
    height: 17.28px;
}

/*所有链接标签样式*/
a {
    text-decoration:none;
    color:#c0c0c0;
}
/*a:link {background-color:#B2FF99;}    /* 未访问链接 */
/*a:visited {background-color:#FFFF85;} /* 已访问链接 */
/*a:hover {background-color:#FF704D;}   /* 鼠标移动到链接上 */

/*进度条重定义*/
.progress {
    position:relative;
    height:22px;
}
/*进度条颜色*/
.progress-bar {
    background-color:#32CD32;
}
/*进度条标签*/
.progress-tag {
    position:absolute;
    /*text-align:center;*/
    /*padding: 2px 0;*/
    width:100%;
    height:100%;
    color:black;
    font-weight:bolder; /*加粗*/
    font-size:15px;   	
}

/* 表格表头样式 */
.sticky th{
	position: -webkit-sticky;
	position: sticky;
	top: -8px;
	/*padding: 5px;*/
	background-color: #cae8ca;
    /* background-color: #cae8ca; */
	/*border: 1px solid #4CAF50;*/
    text-align: center;
}

/* 搜索框样式 */
.search {
    border-radius: 38px;
}

/* 输入为空值背景色设置为淡蓝色,使用js进行判断 isInputEmpty(); */
.input-not-empty {
    background-color: #E8F0FE;
}

