/* 整站页面样式 主题色：#0012B1 */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

@font-face {
    font-family: "Source Han Sans CN";
    src: url('../font/SourceHanSansCN-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap; /* 预加载系统字体，待自定义字体加载完毕后再切换过去，避免文字长时间空白 */
}

@font-face {
    font-family: "Source Han Sans CN Medium";
    src: url('../font/SourceHanSansCN-Medium.ttf') format('truetype');
    font-weight: 700; /* 半粗 */
    font-style: normal;
    font-display: swap; /* 预加载系统字体，待自定义字体加载完毕后再切换过去，避免文字长时间空白 */
}

body {
    font-family: "Source Han Sans CN";
    font-size: 14px;
    line-height: 1.618;
    margin: 0;
    padding: 0;
    height: 100%;
}

.bold {
    font-family: "Source Han Sans CN Medium";
}

/* 去除超连接点击之后的虚线框 */
a {
    outline: none; /* For Firefox */
}
a:focus {
    -moz-outline-style: none; /* 超连接获得焦点时无轮廓 For Firefox */
    outline-style: none !important; /* 去除 Safari 超连接点击之后的虚线框 */
}
a:link, a:visited {
    color: #12457C;
}
a:hover {
    color: #0F0 !important;
}
a:active, a:focus {
    color: #12457C !important;
}
a, a:link, a:hover, a:active, a:visited, a:focus {
    text-decoration: none !important;
}

/* 字体颜色 */
.red, .red_bg {
    color: #F00;
}

.green, .green_bg {
    color: #0F0;
}

.blue {
    color: #00F;
}
.theme_blue {
    color: #2574FF;
}

.grey {
	color: #9a9a9a;
}

.gray {
	color: #EEEEEE;
}

.yellow {
	color: #FF0;
}

.yellow_bg {
	background: #FF0;
}

.blue_bg {
	background: #F0F;
}

.red_bold {
    color: #F00;
	font-weight: bold;
}

.green_bold {
    color: #0F0;
	font-weight: bold;
}

.size_16 {
	font-size: 16px;
}

.size_18 {
	font-size: 18px;
}

.size_20 {
	font-size: 20px;
}

.size_30 {
	font-size: 30px;
}

ul {
    list-style: none;
}

.center {
	text-align: center;
}

/* 上下居中 */
.valign {
    vertical-align: middle !important;
}

/* 设置所有的radio、checkbox、label 等鼠标移上的时候，光标变成小手 */
input[type="radio"], input[type="checkbox"], label {
    cursor: pointer;
}

/* 鼠标移动变成默认的箭头，不是小手 */
.cursor_default {
    cursor: default;
}

/* radio 的简单样式 */
.radio1 {
    width: 15px;
    height: 15px;
}

/* 多个radio之间的间距 */
#isDeclare1, #priceAccording1, #priceAccording2, #priceAccording3, #groupSize1, #groupSize2, #groupSize3, #groupSize4, #groupSize5 {
    margin-left: 8px;
}


/* 登录容器样式 */
.loginContainer {
    height: 100%;
    /* background-image: linear-gradient(to bottom, #075BAC 0%, #943bea 100%); */
    background: no-repeat url("../system/login.png");
    background-size: cover;
}

/* 登录容器的包装样式  */
.loginContainerWrapper {
    width: 400px;
    margin: 0 0 5% calc(65% - 100px);
    -ms-flex-item-align: center;
    align-self: center;
    position: relative;
    top: 25%;
}

/* 登录logo */
.loginHeader {
    text-align: center;
}

.loginTitle {
    color: #FFF;
    font-size: 40px;
    font-weight: 900;
    padding-bottom: 10px;
}

/* 登录输入框 */
.loginInput {
    color: #FFF;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #FFF;
    font-size: 16px;
    background: transparent;
    border-radius: 5px;
}

/* 登录按钮 */
.loginButton {
    border: 0;
    color: #FFF;
    background-color: #2574FF;
    font-size: 16px;
    text-align: center;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

/* 登录错误提示 */
.loginTips {
    color: #FF0000;
    font-size: 14px;
    padding: 0 0 10px;
    text-align: center;
}

/* 右侧主体布局 */
.layout {
    z-index: 1;
}

.layout .header {
    display: flex;
    box-shadow: 1px 1px 4px #9aa0b9;
    align-items: center;
    padding: 20px;
    background-color: #FFF;
}

.layout .content {
    display: flex;
    padding: 15px 15px 0 15px;
    flex-direction: column;
}

/* 每个页脚下的版权信息 */
.footer {
    text-align: center;
    margin-top: auto;
    padding: 20px 0 5px 0;
}


/* header左边占8份 */
.header_left {
    flex: 8;
}

/* header右边占2份 */
.header_right {
    flex: 2;
    text-align: right; /* 居右显示 */
}

/* header右边的间隙 */
.header_right_gaps {
    padding-right: 5px;
}

.header_left_title {
    font-size: 18px;
}

/* 每个页面顶部的标题和搜索区域 */
.title {
    display: flex;
    justify-content: space-between;
}


/* 分页样式 */
#pageNav {
    display: flex;
    justify-content: flex-end; /* flex布局的靠右 */

    font-size: 13px;
    margin-right: 10px;
}

#pageNav a {
    padding: 0 2px;
}

/* 当前激活的分页 */
.page_active {
    color: #F00 !important;
}




/* 右侧的tab有左右滚动条，覆盖 Bootstrap 默认的 -15px */
.row {
	margin-right: -10px !important;
	margin-left: -10px !important;
    overflow: auto;
}

/* 右侧 tab 导航 */
.nav > ul {
    height: 30px;
    font-size: 15px;
    padding-left: 0 !important;
    margin: 10px 8px 10px 15px;
    padding-bottom: 26px;
    border-bottom: 1px solid #EEE; /* ul 底部的边线 */
}

/* 右侧 tab 切换 */
.nav > ul > li {
    float: left; /* 让 li 并排显示 */
    width: 100px;
    text-align: center;
    border-top: none; /* 去掉左侧菜单顶部的横线 */
    margin-left: 3px; /* 设置每个下划线的间距 */
    padding-bottom: 7px;
}

/* 鼠标移上 tab */
.nav > ul > li:hover {
    font-weight: 900;
    border-bottom: 2px solid #0012B1;
}

.nav > ul > li > a:hover {
    color: #0012B1 !important;
}

/* 当前激活的 tab, 受理弹出层的左边导航 */
.current, #acceptMenu li:hover {
    color: #18191a;
    font-weight: 900;
    border-bottom: 2px solid #0012B1 !important;
}


/* 搜索框 */
.search {
    display: flex;
    float: right;
    color: #9A9A9A;
    font-size: 14px;
    margin-bottom: 0;
    border-radius: 3px;
}
/* 搜索框的左边 */
.search1 {
    float: left;
    border: 1px solid #EEE;
}
/* 高级搜索 */
.advancedSearch {
    display: flex;
    align-items: center;
    float: left;
    color: #9A9A9A;
    font-size: 14px;
    padding-left: 5px;
    cursor: pointer;
}

.advancedSearchContent {
    /* absolute 能遮盖下面的div（有position: relative;） */
    position: absolute;
    z-index: 9;
    background-color: #F9F9F9;
    margin-left: 15px;
    border: 1px solid #EEE;
    border-radius: 5px;
}


/* 主体数据的搜索框
.search_ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.search_li {
    float: right !important;
    margin-right: 200px;
}
*/

/* 鼠标移到搜索框上的时候，不需要下划线、字体不要变化 */
/* .search_li:hover {
    font-weight: normal !important;
    border-bottom: none !important;
} */

/* 搜素输入框 */
.search_input {
    border: none;
    font-size: 14px;
    width: 500px;
    height: 28px !important;
}

/* 清除输入框的叉号样式 */
.clear_input {
    display: none;
    /* cursor: pointer; */
    color: #9aa0b9;
}

/* placeholder样式 */
input::-webkit-input-placeholder {
    color: #ABAEB3;
    font-size: 12px;
    font-weight: 400;
}


/* 鼠标移上时显示可点击的小手 */
.select dd:hover {
    cursor: pointer;
}

.selectTitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    font-weight: 900;
    border-radius: 5px;
    background-color: #EBF3FF;
    padding: 7px 0;
    margin: 5px 1% 5px 0;
}
.select dt {
    width: 100px;
    margin-bottom: 5px;
    position: absolute;
    top: 0;
    color: #666;
}
.select dd {
    float: left;
    width: 100px;
    display: inline;
    text-align: center;
}

.filterProvince, .filterMonth, .filterDetect {
    border: none;
    border-radius: 5px;
    background-color: #F9F9F9;
    padding: 7px 0;
    color: #606266;
    margin: 5px 1% 5px 0;
}

/* 选中 */
.selected {
    color: #5999FC;
    background-color: #EBF3FF;
    position: relative;
}

.selected:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    border: 9px solid #5999FC;
    border-top-color: transparent;
    border-left-color: transparent;
}

.selected:after {
    content: "";
    width: 5px;
    height: 11px;
    position: absolute;
    right: 3px;
    bottom: 2px;
    border: 1px solid #FFF;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}

/* 批量审核、批量审批、批量打印显示的使用单位名称 */
.mergeUseUnitName {
    font-size: 18px;
    padding: 20px 0;
    font-weight: 900;
}

/* 列表顶部的过滤条件 */
.select {
    padding-left: 0;
    margin-bottom: 20px !important;
}

.selectAll {
    margin-left: 10px;
}
.select .selectLi {
    border-bottom: 1px dashed #eee;
}
.select dl {
    position: relative;
    line-height: 24px;
    margin: 5px 0;
}
.select dl:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    overflow: hidden;
}

.select a {
    display: inline-block;
    white-space: nowrap;
    padding: 0 10px;
    text-decoration: none;
    border-radius: 2px;
}






/* 当前激活的 tab */
.nocurrent {
    border-bottom: 2px solid #DDD;
}

/* tab 与右边的距离 */
.col-md-12 {
    padding: 0 7px !important;
}

.header1 {
    padding: 0 10px;
    /* font-weight: 800; */
}

/* 表格中所有数据在上下居中 */
.table > thead > tr > td, .table > tbody > tr > td {
    vertical-align: middle !important;
}


/* 设备详情中的表格 */
.equTable, .equTable1 {
    width: 100%;
    /* border: 1px solid #EEE; */
    border: none !important;
    font-size: 15px;
}
.equTable tr, .equTable1 tr {
    height: 35px;
}
.equTable td {
    border: 1px solid #EEE;
}
.equTable1 td {
    border: 1px solid #EEE;
}
.equTitle {
    background-color: #F9F9F9;
    font-weight: 500;
    text-align: right;
    padding-right: 10px;
}
.equTitle1 {
    background-color: #FFF;
    font-weight: 500;
    text-align: center !important;
}
.equTitle1bg {
    background-color: #F9F9F9;
}
.equValue {
    text-align: left;
}
/* 固定值 */
.fixed {
    padding-left: 10px;
}
/* input 去边框、缩进 */
.equTable input {
    width: 100%;
    text-indent: 10px;
    border: transparent;
}

.panel-body {
    padding: 0 !important;
    border: 0 !important;
}

.panel-heading {
    border-left: 1px solid #DDD !important;
    border-right: 1px solid #DDD !important;
}

.panel {
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
}


/* 以下是 Confirm dialog 的遮罩层透明度样式，需要覆盖默认的 fancybox.css */
/* .fancybox-bg {
    background: #eee !important;
    opacity: 0.55 !important;
} */

/* 解决弹出遮罩层的时候，背景有缩起的现象 */
.fancybox-active {
    height: 100% !important;
}

/* 弹出层四周的间距（默认是44，太大了） */
.fancybox-content {
    border-radius: 5px;
    /* padding: 10px 50px 0 50px !important; */
    padding: 15px 80px 15px 80px;
    overflow: hidden;
}

/* 每个iframe与底部的距离 */
/* .form-group {
    margin-bottom: 0 !important;
} */


/* 弹出层的标题 */
.animated-modal {
    max-width: 650px;
    border-radius: 5px;
    transform: translateY(-50px);
    transition: all .7s;
    border: 1px solid #E0E0E0;
}

/* 弹出层的标题 */
.animated-modal h2 {
    font-size: 28px;
    /* margin-bottom: 30px; */
}


/* 红色星号，必填项 */
.redStar {
    color: #FF0000;
    font-size: 18px;
    vertical-align: middle;
    padding-top: 8px;
    height: 15px;
}

/* 表单上的输入框等样式 */
.form-control {
    font-size: 14px;
    color: #000000 !important;
    padding: 13px 5px !important;
    height: 40px !important;
}

/* 表单上的下拉选择框样式 (在下拉选项再加上这个样式，否则下拉框会缩小，覆盖bootstarp的样式) */
.form-control-select {
    padding-top: 5px !important;
    padding-bottom: 1px !important;
}

/* 表单中的按钮 */
.btn {
    padding: 6px 25px !important;
    margin: 10px 0 0 5px;
}

/* 审核和审批页面上按钮之间的间距 */
.btn_gaps {
    margin-left: 20px;
}

/* 按钮颜色 */
.btn-info.btn-fill {
    color: #FFF;
    background-color: #1DC7EA;
    opacity: 1;
    filter: alpha(opacity=100);
}
.btn:hover {
    background-color: #0012B1;
    color: #FFF;
}

.btn_cancel {
    border-color: #82d6e7 !important;
    background-color: #82d6e7 !important;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}
.blink {
    animation: blink 1.5s linear infinite;
    -webkit-animation: blink 1.5s linear infinite;
    -moz-animation: blink 1.5s linear infinite;
    -ms-animation: blink 1.5s linear infinite;
    -o-animation: blink 1.5s linear infinite;
    color: #F00 !important;
    font-weight: bold;
}


/* 数字带圆圈 */
.message {
    float: left;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

/* 消息框 */
.msg {
    position: relative;
    width: 8px;
    height: 8px;
    float: left;
    z-index: 1000;
}

/* 消息框中提示的数字，大于99 */
.alarm {
    position: absolute;
    color: #FFF;
    background-color: #F00;
    height: 25px;
    width: 25px;
    line-height: 22px;
    right: -100%;
    top: -7px;
    border-radius: 50%;
    text-align: center;
}

/* 消息框中提示的数字，小于99 */
.alarm1 {
    font-size: 18px;
    height: 25px;
    line-height: 25px !important;
    font-weight: 500;
}


.layout .sidebar .menu .menu-item a span {
    line-height: 30px;
}


.layout .sidebar .menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.layout .sidebar .menu .menu-item a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    color: #b3b8d4;
}
.layout .sidebar .menu .menu-item a .menu-icon {
    font-size: 1.2rem;
    width: 35px;
    min-width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    display: inline-block;
    margin-right: 10px;
    border-radius: 2px;
    transition: color 0.3s;
}

.layout .sidebar .menu .menu-item a .menu-icon i {
    display: inline-block;
}

/* 导航父名称 */
.layout .sidebar .menu .menu-item a .menu-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex-grow: 1;
    transition: color 0.3s;
}

/* 当前激活的菜单 */
.active::before {
    content: '';
    border: 3px solid #F00;
    border-radius: 3px;
    position: absolute;
    z-index: 1000;
    left: 57px;
}

.menu-title-parent {
    font-size: 15px;
    font-weight: 700;
}
.menu-title-sub {
    padding-left: 24px;
}

.layout .sidebar .menu .menu-item a .menu-suffix {
    display: inline-block;
    padding: 5px;
    opacity: 1;
    transition: opacity 0.3s;
}
.layout .sidebar .menu .menu-item a:hover .menu-title {
    color: #dee2ec;
}
.layout .sidebar .menu .menu-item a:hover .menu-icon {
    color: #dee2ec;
}
.layout .sidebar .menu .menu-item a:hover .menu-icon i {
    animation: swing ease-in-out 0.5s 1 alternate;
}
.layout .sidebar .menu .menu-item a:hover::after {
    border-color: #dee2ec !important;
}
.layout .sidebar .menu .menu-item.sub-menu {
    position: relative;
}


/* 导航父名称后面的箭头样式 */
.layout .sidebar .menu .menu-item.sub-menu > a::after {
    content: "";
    transition: transform 0.3s;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
}

.layout .sidebar .menu .menu-item.sub-menu > .sub-menu-list {
    padding-left: 20px;
    display: none;
    overflow: hidden;
    z-index: 999;
}
.layout .sidebar .menu .menu-item.sub-menu.open > a::after {
    transform: rotate(45deg);
}
.layout .sidebar .menu .menu-item.active > a .menu-title {
    color: #dee2ec;
}
.layout .sidebar .menu .menu-item.active > a::after {
    border-color: #dee2ec;
}
.layout .sidebar .menu .menu-item.active > a .menu-icon {
    color: #dee2ec;
}
.layout .sidebar .menu > ul > .sub-menu > .sub-menu-list {
    background-color: #0b1a2c;
}
.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon, .layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon, .layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
    background-color: #0b1a2c;
}
.layout .sidebar .menu.icon-shape-circle .menu-item a .menu-icon {
    border-radius: 50%;
}
.layout .sidebar .menu.icon-shape-rounded .menu-item a .menu-icon {
    border-radius: 4px;
}
.layout .sidebar .menu.icon-shape-square .menu-item a .menu-icon {
    border-radius: 0;
}
.layout .sidebar:not(.collapsed) .menu > ul > .menu-item.sub-menu > .sub-menu-list {
    visibility: visible !important;
    position: static !important;
    transform: translate(0, 0) !important;
}

.layout .sidebar.collapsed .menu > ul > .menu-item > a .menu-suffix {
    opacity: 0;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a::after {
    content: "";
    width: 5px;
    height: 5px;
    background-color: currentColor;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 50%;
    border: none;
    transform: translateY(-50%);
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > a:hover::after {
    background-color: #dee2ec;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.sub-menu > .sub-menu-list {
    transition: none !important;
    width: 200px;
    margin-left: 3px !important;
    border-radius: 4px;
    display: block !important;
}
.layout .sidebar.collapsed .menu > ul > .menu-item.active > a::after {
    background-color: #dee2ec;
}
.layout .sidebar.has-bg-image .menu.icon-shape-circle .menu-item a .menu-icon, .layout .sidebar.has-bg-image .menu.icon-shape-rounded .menu-item a .menu-icon, .layout .sidebar.has-bg-image .menu.icon-shape-square .menu-item a .menu-icon {
    background-color: rgba(11, 26, 44, 0.6);
}
.layout .sidebar.has-bg-image:not(.collapsed) .menu > ul > .sub-menu > .sub-menu-list {
    background-color: rgba(11, 26, 44, 0.6);
}


/* 受理弹出层中的导航 */
#acceptMenu, #acceptMenu_ {
    padding: 0 !important;
}
#acceptMenu li {
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
}
#acceptMenu_ li {
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
}






.layout {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    flex-grow: 1;
}
.layout.has-sidebar {
    flex-direction: row;
}
.layout .header {
    transition: width, 0.3s;
    height: 64px;
    min-height: 64px;
    position: relative;
}
.layout .sidebar {
    width: 250px;
    min-width: 250px;
    transition: width, left, right, 0.3s;
}
.layout .sidebar.collapsed {
    width: 80px;
    min-width: 80px;
}

.layout .content {
    flex-grow: 1;
}
.layout .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 99;
    display: none;
}
.layout.fixed-sidebar {
    height: 100%;
}
.layout.fixed-sidebar .sidebar {
    height: 100%;
    overflow: auto;
}
.layout.fixed-sidebar .sidebar ~ .layout {
    height: 100%;
    overflow: auto;
}

.layout.fixed-header .header {
    position: fixed;
    width: 100%;
    z-index: 2;
}

/* 内容与顶部的间距 */
.layout.fixed-header .header ~ .layout, .layout.fixed-header .header ~ .content {
    margin-top: 64px;
}

/* 后台管理header顶部的宽度计算 - 菜单展开时 */
.layout.fixed-header.fixed-sidebar .header {
    width: calc(100% - 250px);
}

/* 后台管理header顶部的宽度计算 - 菜单收起时 */
.layout.fixed-header.fixed-sidebar .sidebar.collapsed ~ .layout .header {
    width: calc(100% - 80px);
}




.sidebar {
    color: #b3b8d4;
    overflow-x: hidden !important;
    position: relative;
    background-color: #0c1e35;
}

.sidebar .sidebar-layout {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.sidebar .sidebar-layout .sidebar-header {
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-bottom: 1px solid rgba(83, 93, 125, 0.3);
}
.sidebar .sidebar-layout .sidebar-header > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.sidebar .sidebar-layout .sidebar-content {
    flex-grow: 1;
    padding: 10px 0;
}
.sidebar .sidebar-layout .sidebar-footer {
    height: 64px;
    min-height: 64px;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(83, 93, 125, 0.3);
    padding: 0 20px;
}
.sidebar .sidebar-layout .sidebar-footer > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* 系统右上角的消息进度条 */
.progress {
    width: 95%;
    margin-top: 5px;
    margin-bottom: 15px !important;
    background-color: #FFF;
}

/* 导航中间的右箭头 */
.right-row {
    display: inline-block;
    width: 9px;
    height: 9px;
    border-top: 1px solid #aa9f9f;
    border-right: 1px solid #9a9a9a;
    transform: rotate(45deg);
    margin: 0 10px;
}

/* 每一个块样式（有边框） */
.card {
    margin: 5px 0 20px 0;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(63, 63, 68, 0.1);
}

.header-statistic, .title-statistic, .content-statistic {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

/* 首页统计块 */
.statistic {
    padding: 10px 0;
}

.statistic_icon {
    float: left;
    width: 55px;
    height: 60px;
    /* display: inline-block; */
}

/* 统计中的icon图标大小 */
.statistic_icon i {
    font-size: 40px;
    color: #12457C;
}

.statistic_info {
    font-size: 12px;
    padding-top: 2px;
}

/* 统计数字字体大小 */
.statistic_info span {
    display: block;
    font-size: 24px;
}

.clearFix:before, .clearFix:after {
    display: table;
    content: " ";
}
.clearFix:after {
    clear: both;
}

/* 统计中的文字 */
.tips {
	color: #9A9A9A;
	font-weight: normal !important;
	font-size: 12px !important;
}

/* 首页功能块的标题文字 */
.header-title {
    padding: 15px 0 0 5px;
	font-size: 16px !important;
}


/* 横向的时间轴 */
.timeline {
    display: flex;
}

/* 时间轴的每一个节点 */
.timeline_node {
    position: relative;
    flex: 1;
    text-align: center;
}

/* 时间轴的下面文字间距 */
.timeline_top {
    padding-top: 20px;
    height: 20px;
}
.timeline_bottom {
    padding-top: 15px;
    height: 15px;
}

.greenCircle {
    top: calc(50% - 7px);
    left: calc(50% - 7px);
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #5981B8;
}

/* .now {
    z-index: 3;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #5981B8;
    border: 2px solid #0F0;
} */

.now1 {
    background-color: #0F0 !important;
    width: 13px !important;
    height: 13px !important;
}

.greyCircle {
    top: calc(50% - 7px);
    left: calc(50% - 7px);
    position: absolute;
    z-index: 3;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px #ccc solid;
    background-color: #FFF;
}

.greenLine {
    width: 100%;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    height: 3px;
    background-color: #5981B8;
    position: absolute;
}

.greyLine {
    height: 0;
    border: 1.5px dashed #ccc;
    width: 93%;
    top: calc(50% - 2px);
    left: calc(50% - 2px);
    position: absolute;
    margin-left: 10px;
}


/* 纵向的时间轴 */
.timeline_item {
    height: 50px; /* 每一个块的高度 */
    position: relative;
}
/* 伪类选择器使左边的边框缩小 */
.timeline_item:before {
    content: '';
    position: absolute;
    top: 13px;
    height: 47px;  /* 左边线的高度 */
    width: 1px;
    background-color: #DDD;
}
.timeline_time {
    padding-left: 10px;
}
.timeline_circle {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #DDD;
    border-radius: 50%;
    left: -4px;
    margin-top: 5px;
}
.timeline_content {
    padding-left: 10px;
}



/* 右侧悬浮功能区域 */
.rightFloat {
    display: flex;
    position: fixed;
    cursor: pointer;
    right: 32px; /* mac下safari是18px; Windows下是32px; */
    bottom: 200px;
    align-items: center; /* 上下居中 */
    flex-direction: column; /* 垂直 */
    z-index: 999;
}

.audit, .auth {
    padding-left: 15px;
    font-size: 15px;
    font-weight: 500;
}


/* highcharts */
/* 将highcharts.com不显示的logo */
.highcharts-credits {
    fill: #FFF !important;
}

.highcharts-figure,
.highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 1em auto;
}


.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}



/* 所有的 icon 属性 */
.icon-nav {
    font-size: 20px !important;
}

.icon-qrcode {
    color: #00F;
}
.icon-pdf, .icon-attention {
    color: #F00;
}

/* 设备列表右边悬浮的功能图标 */
.icon-return, .icon-del, .icon-load-test, .icon-zhekou, .icon-new, .icon-rollback, .icon-save, .icon-audit, .icon-auth,
.icon-print, .icon-close, .icon-baocun, .icon-excel {
    color: #005bac;
    font-size: 34px !important;
    opacity: 0.4;
    height: 35px !important;
    width: 35px !important;
}

/* 鼠标以上之后的透明度变成完全不透明 */
.icon-return:hover, .icon-checkall:hover, .icon-del:hover, .icon-load-test:hover, .icon-zhekou:hover, .icon-new:hover,
.icon-rollback:hover, .icon-save:hover, .icon-audit:hover, .icon-auth:hover, .icon-print:hover, .icon-close:hover,
.icon-retry:hover, .icon-sign:hover, .icon-baocun:hover, .icon-forward:hover {
    opacity: 1;
    font-weight: 700;
    cursor: pointer;
}

/* 全选的单独样式 */
.icon-checkall {
    color: #005bac;
    font-size: 36px !important;
    opacity: 0.4;
    height: 36px !important;
    width: 36px !important;
}

/* 新增加号、注销的图标 */
.icon-new, .icon-logout, .icon-shaixuan {
    font-size: 15px !important;
}
.icon-shaixuan, .icon-search, .icon-more {
    color: #9A9A9A;
    font-size: 14px !important;
}
.icon-search {
    color: #DDD;
}

/* 部门管理树的文件夹 */
.icon-folder1, .icon-folder2, .icon-file, .icon-retry, .icon-sign, .icon-forward {
    color: #0200b9;
    font-size: 17px !important;
}

.icon-edit, .icon-del {
    font-size: 12px !important;
    opacity: 0.4;
}

.icon-edit:hover, .icon-del:hover {
    font-size: 12px !important;
    opacity: 1;
}

.icon-clear, .icon-video {
    font-size: 24px !important;
}

.icon-insu {
    color: #F00;
    font-weight: 900;
    font-size: 20px !important;
}

.icon-success {
    color: #00FF00 !important;
    font-size: 30px !important;
}

.icon-system, .icon-gps {
    color: #0090FF !important;
}

.icon-kejian {
    color: #0000FF !important;
}

.icon-logo {
    font-size: 125px !important;
}

.icon-download {
    font-size: 32px !important;
}

.icon-detectBill {
    font-size: 45px !important;
}

.icon-report {
    font-size: 38px !important;
    line-height: 60px;
}

.icon-dianti {
    font-size: 35px !important;
    line-height: 60px;
}

.icon-excel {
    color: #559B30 !important;
}

.icon-warn {
    color: #F0AA41 !important;
}

.icon-video1 {
    color: #0F0 !important;
    font-size: 16px !important;
}

.icon-nodata {
    color: #DDD !important;
    font-size: 60px !important;
}

.icon-toggle, .icon-toggle2 {
    color: #b0b6f1 !important;
    font-size: 17px !important;
}
